@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Beyonders';
  src: url('/fonts/Beyonders.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Beyonders';
  src: url('/fonts/Beyonders-Italic.ttf') format('truetype');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --black: #050507;
  --black-2: #09090d;
  --panel: #0d0d14;
  --panel-2: #11111a;
  --white: #f7f7fb;
  --muted: #a6a6b5;
  --pink: #ff0aa9;
  --violet: #9b3cff;
  --orange: #ff7a00;
  --yellow: #ffc400;
  --green: #39ff88;
  --border: rgba(255, 255, 255, .11);
  --glow-pink: 0 0 28px rgba(255, 10, 169, .24);
  --glow-orange: 0 0 28px rgba(255, 122, 0, .22);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 96px 0;
}

.section--bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 7, .88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 10, 169, .35);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-logo {
  display: block;
  height: 38px;
  width: auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--pink);
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--glow-pink);
}

.brand-mark--small {
  width: 22px;
  height: 22px;
  font-size: 14px;
}

.brand-wordmark {
  font-size: 15px;
  line-height: .86;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.main-nav a,
.login-link {
  color: #d8d8e2;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a:hover,
.login-link:hover {
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  padding: 10px 16px;
  font-size: 13px;
}

.button--large {
  padding: 15px 22px;
  font-size: 15px;
}

.button--primary {
  color: #08080b;
  background: linear-gradient(100deg, var(--pink), var(--orange), var(--yellow));
  box-shadow: 0 8px 30px rgba(255, 65, 76, .25);
}

.button--outline {
  color: var(--white);
  background: rgba(255, 255, 255, .02);
  border-color: var(--pink);
}

.button--outline:hover {
  box-shadow: var(--glow-pink);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
  color: var(--white);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 22px;
  border-top: 1px solid var(--border);
  background: var(--panel);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 4px;
  color: #d8d8e2;
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav a:hover {
  color: var(--pink);
}

.mobile-nav__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 4px;
}

.hero {
  padding-top: 76px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.eyebrow--pink {
  color: var(--pink);
}

.eyebrow--violet {
  color: #bd72ff;
}

.eyebrow--green {
  color: var(--green);
}

.hero-title,
h1,
h2,
h3 {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 6.2rem);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: var(--white, #fff);
}

.hero-title__accent {
  display: block;
  margin: 0.06em 0 0.02em;
  font-size: 1.12em;
  line-height: 0.9;
  letter-spacing: -.04em;
  color: var(--pink);
  background: linear-gradient(95deg, #ff3bb8 0%, var(--pink) 30%, var(--orange) 70%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 10px rgba(255, 10, 169, 0.95)) drop-shadow(0 0 26px rgba(255, 122, 0, 0.75)) drop-shadow(0 0 44px rgba(255, 10, 169, 0.45));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title__accent {
    -webkit-text-fill-color: currentColor;
    color: var(--pink);
    text-shadow:
      0 0 10px rgba(255, 10, 169, 1),
      0 0 28px rgba(255, 122, 0, 0.8),
      0 0 52px rgba(255, 10, 169, 0.55);
  }
}

.hero-lede {
  max-width: 590px;
  margin: 24px 0 0;
  color: #d3d3dc;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  gap: 25px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d6d6df;
  font-size: 12px;
  font-weight: 600;
}

.point-icon {
  font-size: 20px;
  font-weight: 900;
}

.point-icon--pink {
  color: var(--pink);
}

.point-icon--orange {
  color: var(--orange);
}

.point-icon--green {
  color: var(--green);
}

.hero-product {
  position: relative;
  min-width: 0;
}

/* Photo is a CSS background inside a min-width query so mobile never
   downloads the file. `display: none` on an <img> still fetches it. */
.hero-photo {
  display: none;
}

.product-window {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border: 1px solid var(--pink);
  border-radius: 20px;
  background: linear-gradient(135deg, #0b0b12, #11111a);
  box-shadow: 0 0 45px rgba(255, 10, 169, .18), inset 0 0 40px rgba(155, 60, 255, .05);
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.product-window--live {
  cursor: pointer;
  transition: box-shadow .25s ease, transform .25s ease;
}

.product-window--live.is-pulse {
  transform: scale(0.985);
  box-shadow: 0 0 60px rgba(255, 10, 169, .45), inset 0 0 40px rgba(155, 60, 255, .08);
}

.product-window--live .progress-fill {
  animation: mock-progress 5s ease-in-out infinite;
}

.product-window--live .check-row--anim {
  animation: mock-check-row 5s ease-in-out infinite;
}

.product-window--live .check-row--anim>span::after {
  content: '✓';
  opacity: 0;
  animation: mock-check-tick 5s ease-in-out infinite;
}

.product-window--live .check-row--anim>span {
  animation: mock-check-box 5s ease-in-out infinite;
}

@keyframes mock-progress {

  0%,
  100% {
    width: 50%;
  }

  45%,
  55% {
    width: 66%;
  }
}

@keyframes mock-check-row {

  0%,
  40% {
    color: #c6c6d0;
  }

  45%,
  90% {
    color: #d8ffe8;
  }

  100% {
    color: #c6c6d0;
  }
}

@keyframes mock-check-tick {

  0%,
  40% {
    opacity: 0;
  }

  45%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes mock-check-box {

  0%,
  40% {
    background: transparent;
    border-color: #555563;
    color: transparent;
  }

  45%,
  90% {
    background: var(--green);
    border-color: var(--green);
    color: #07100b;
  }

  100% {
    background: transparent;
    border-color: #555563;
    color: transparent;
  }
}

.product-app-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-app-nav span {
  color: #878795;
  padding: 6px 10px;
  border-radius: 6px;
}

.product-app-nav .is-active {
  color: white;
  background: rgba(255, 10, 169, .22);
}

.product-main {
  padding: 20px;
}

.product-caption {
  margin: 16px 0 0;
  color: #676773;
  font-size: 10px;
  font-style: italic;
}

.product-topbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-date {
  color: #878795;
  font-size: 9px;
  text-transform: none;
}

.checklist-card {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 122, 0, .65);
  border-radius: 12px;
  background: #0a0a0f;
  box-shadow: var(--glow-orange);
}

.card-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}

.card-heading>div {
  display: flex;
  gap: 7px;
  align-items: center;
}

.due-pill {
  padding: 3px 6px;
  border-radius: 99px;
  background: rgba(255, 122, 0, .18);
  color: var(--yellow);
  font-size: 8px;
}

.completion-count {
  color: #aaaab8;
  font-size: 10px;
}

.progress-track {
  height: 6px;
  margin: 12px 0;
  border-radius: 99px;
  background: #25252d;
  overflow: hidden;
}

.progress-track span,
.progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: #c6c6d0;
  font-size: 10px;
}

.check-row>span {
  width: 14px;
  height: 14px;
  border: 1px solid #555563;
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-size: 9px;
}

.check-row--done>span {
  background: var(--green);
  border-color: var(--green);
  color: #07100b;
}

.assignment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
  color: #a6a6b5;
  font-size: 9px;
}

.assignment-row button,
.product-continue {
  border: 0;
  border-radius: 7px;
  padding: 7px 10px;
  background: var(--orange);
  color: #0b0b0d;
  font-size: 9px;
  font-weight: 800;
}

.product-continue {
  display: inline-block;
  pointer-events: none;
}

.split-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 72px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.problem-list li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: #c9c9d3;
  font-size: 14px;
}

.problem-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
  font-size: 19px;
  line-height: 1;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.workflow-card {
  position: relative;
  min-height: 190px;
  padding: 18px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #101017, #09090d);
}

.workflow-number {
  color: var(--pink);
  font-weight: 900;
  font-size: 11px;
}

.workflow-icon {
  margin: 9px 0;
  font-size: 30px;
  font-weight: 800;
}

.workflow-icon--pink {
  color: var(--pink);
}

.workflow-icon--orange {
  color: var(--orange);
}

.workflow-icon--violet {
  color: #c13cff;
}

.workflow-icon--yellow {
  color: var(--yellow);
}

.workflow-card h3 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.workflow-card p {
  margin: 10px 0 0;
  color: #b0b0bb;
  font-size: 13px;
  line-height: 1.55;
}

.features {
  padding-top: 108px;
  padding-bottom: 108px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 12px 18px;
  border-right: 1px solid var(--border);
}

.feature-item:first-child {
  padding-left: 0;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.feature-icon--green {
  color: var(--green);
}

.feature-icon--pink {
  color: var(--pink);
}

.feature-icon--orange {
  color: var(--orange);
}

.feature-icon--violet {
  color: #c13cff;
}

.feature-icon--yellow {
  color: var(--yellow);
}

.feature-item h3 {
  margin: 0 0 8px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.feature-item p {
  margin: 0;
  color: #b4b4bf;
  font-size: 14px;
  line-height: 1.55;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #d6d6de;
  font-size: 12px;
}

.industry-icon {
  color: var(--pink);
  font-size: 28px;
  line-height: 1;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
}

.story {
  border-top: 1px solid var(--border);
}

.story-grid {
  display: grid;
  grid-template-columns: .75fr .9fr 1.25fr;
  gap: 30px;
  align-items: center;
}

.founder-visual {
  min-height: 270px;
  display: grid;
  place-items: end center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 70%, rgba(155, 60, 255, .28), transparent 55%), #09090e;
}

.founder-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 10, 169, .18);
  filter: blur(35px);
}

.founder-placeholder {
  position: relative;
  color: #777;
  font-family: Beyonders, Inter, system-ui, sans-serif;
  font-size: 26px;
  line-height: .9;
  text-align: center;
  opacity: .45;
}

.quote-mark {
  color: var(--pink);
  font-size: 72px;
  line-height: .6;
  text-shadow: 0 0 24px rgba(255, 10, 169, .35);
}

.founder-copy {
  padding: 8px 0 8px 4px;
}

.founder-copy blockquote {
  margin: 16px 0;
  color: #ececf2;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -.01em;
}

.founder-name {
  margin: 0;
  color: var(--orange);
  font-weight: 800;
}

.founder-role {
  margin: 2px 0 0;
  color: #9999a6;
  font-size: 13px;
}

.founder-role a {
  color: var(--pink);
  text-decoration: underline;
}

.trial-card {
  padding: 30px;
  border: 1px solid var(--orange);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 10, 169, .08), rgba(255, 122, 0, .05));
  box-shadow: var(--glow-orange);
}

.trial-card h2 {
  font-size: 2rem;
}

.trial-card p:not(.eyebrow) {
  color: #b8b8c4;
}

.pricing {
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.price-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 10, 169, .55);
  border-radius: 16px;
  background: #0b0b11;
}

.price-card--featured {
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 5px 11px;
  border-radius: 99px;
  background: var(--pink);
  color: white;
  font-size: 9px;
  font-weight: 900;
}

.plan-name {
  margin: 0;
  font-family: Beyonders, Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.plan-description {
  margin: 8px 0 0;
  max-width: 320px;
  color: #a8a8b4;
  font-size: 13px;
  line-height: 1.5;
}

.price {
  margin-top: 18px;
  color: var(--orange);
  font-family: Beyonders, Inter, system-ui, sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.price span {
  margin-left: 5px;
  color: #9999a6;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: #d0d0da;
  font-size: 14px;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  color: var(--pink);
  font-weight: 900;
  margin-right: 8px;
}

.final-cta {
  padding-top: 24px;
  overflow: visible;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 36px;
  border: 1px solid var(--pink);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(255, 10, 169, .08), rgba(255, 122, 0, .07));
  box-shadow: var(--glow-pink);
  overflow: visible;
}

.final-cta h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.final-cta p:last-child {
  margin: 8px 0 0;
  color: #a8a8b4;
}

.contact {
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}

.contact-grid>div>p:last-child {
  color: #9e9eaa;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #bdbdc7;
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px;
  background: #0b0b10;
  color: white;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

.form-message {
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 9px;
  font-size: 13px;
}

.form-message--success {
  border: 1px solid var(--green);
  color: var(--green);
}

.form-message--error {
  border: 1px solid #ff5555;
  color: #ff7777;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 42px 0 20px;
  background: #030305;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

.footer-grid>div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-grid strong {
  color: #777783;
  font-size: 10px;
  letter-spacing: .1em;
}

.footer-grid a:not(.brand) {
  color: #a8a8b3;
  font-size: 12px;
}

.footer-grid a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: #676773;
  font-size: 10px;
}

.launchbuff-badge {
  display: inline-flex;
  line-height: 0;
}

.launchbuff-badge img {
  display: block;
  width: 160px;
  height: auto;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    max-width: 850px;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trial-card {
    grid-column: 1 / -1;
  }

  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }
}

/* ── SEE IT IN ACTION ───────────────────────────── */
.see-it {
  padding: 92px 0;
}

.see-it__layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  margin-top: 36px;
  align-items: start;
}

/* Player */
.see-it__player {
  border: 1px solid rgba(255, 10, 169, .55);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0b12, #11111a);
  box-shadow: 0 0 45px rgba(255, 10, 169, .18);
}

.see-it__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #08080b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.see-it__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s;
}

.see-it__video.is-loaded {
  opacity: 1;
}

.see-it__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}

.see-it__overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.see-it__mock {
  position: absolute;
  inset: 14px 14px 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0a0a0f;
  padding: 14px;
  opacity: .5;
}

.see-it__mock-bar {
  display: flex;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.see-it__mock-pill {
  padding: 3px 7px;
  border-radius: 4px;
}

.see-it__mock-pill--active {
  background: rgba(255, 10, 169, .22);
  color: var(--white);
}

.see-it__mock-progress {
  margin-top: 10px;
  height: 6px;
  width: 55%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.see-it__mock-lines {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.see-it__mock-line {
  height: 6px;
  background: #1c1c26;
  border-radius: 99px;
}

.see-it__play-btn {
  position: relative;
  width: 84px;
  height: 84px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(100deg, var(--pink), var(--orange));
  color: #08080b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(255, 10, 169, .5);
  transition: transform .15s;
}

.see-it__play-btn:hover {
  transform: scale(1.07);
}

.see-it__play-icon--pause {
  display: none;
}

.is-playing .see-it__play-icon--play {
  display: none;
}

.is-playing .see-it__play-icon--pause {
  display: block;
}

.see-it__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 99px;
  background: rgba(5, 5, 7, .75);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.see-it__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 7, .6);
}

.see-it__ctrl-play {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  padding: 0;
}

.see-it__progress-wrap {
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: #25252d;
  overflow: hidden;
  cursor: pointer;
}

.see-it__progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transition: width .25s linear;
}

.see-it__time {
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Chapters */
.see-it__chapters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.see-it__chapter {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: inherit;
  transition: border-color .15s, background .15s;
}

.see-it__chapter:hover {
  border-color: rgba(255, 255, 255, .22);
}

.see-it__chapter--active {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(255, 10, 169, .08), rgba(255, 122, 0, .05));
}

.see-it__chapter-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.see-it__chapter--active .see-it__chapter-icon {
  background: linear-gradient(100deg, var(--pink), var(--orange));
  border-color: transparent;
  color: #08080b;
}

.see-it__chapter-title {
  font-weight: 800;
  font-size: 14px;
}

.see-it__chapter-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.see-it__hint {
  font-size: 11px;
  color: #55555f;
  margin: 4px 0 0;
}

/* Feature strip */
.see-it__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.see-it__strip-thumb {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0a0a0f;
  padding: 14px;
  min-height: 155px;
}

.see-it__strip-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .08em;
}

.see-it__strip-item {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #0d0d14;
}

.see-it__strip-item--active {
  border: 1px solid rgba(255, 122, 0, .65);
}

.see-it__strip-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
}

.see-it__strip-item-count {
  color: var(--muted);
}

.see-it__strip-item-bar {
  height: 5px;
  margin: 7px 0;
  border-radius: 99px;
  background: #25252d;
}

.see-it__strip-item-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.see-it__strip-item-task {
  font-size: 9px;
  color: #c6c6d0;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.see-it__strip-check {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border: 1px solid #555563;
  border-radius: 3px;
  display: inline-block;
}

.see-it__strip-check--done {
  background: var(--green);
  border-color: var(--green);
}

.see-it__strip-clock {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.see-it__strip-ring {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 4px solid var(--pink);
  border-right-color: #25252d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.see-it__strip-status {
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
}

.see-it__strip-btn {
  margin-top: 8px;
  padding: 5px 12px;
  border-radius: 7px;
  background: linear-gradient(100deg, var(--pink), var(--orange));
  color: #08080b;
  font-size: 10px;
  font-weight: 800;
  display: inline-block;
}

.see-it__strip-history {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.see-it__strip-history-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #c6c6d0;
}

.see-it__strip-done {
  color: var(--green);
  font-weight: 800;
}

.see-it__strip-partial {
  color: var(--yellow);
  font-weight: 800;
}

.see-it__strip-title {
  margin: 10px 0 0;
  font-weight: 800;
  font-size: 14px;
}

.see-it__strip-body {
  color: var(--muted);
  font-size: 12px;
  margin: 3px 0 0;
}

@media (min-width: 801px) {
  .hero-photo {
    display: block;
    position: absolute;
    top: -30px;
    right: -16px;
    width: 42%;
    max-width: 220px;
    aspect-ratio: 390 / 566;
    border-radius: var(--radius);
    z-index: 0;
    opacity: .9;
    background: url("/images/hero-staff-member.jpg") center / cover no-repeat;
    -webkit-mask-image: linear-gradient(200deg, black 50%, transparent 90%);
    mask-image: linear-gradient(200deg, black 50%, transparent 90%);
  }
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .login-link {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 800px) {
  .see-it__layout {
    grid-template-columns: 1fr;
  }

  .see-it__strip {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 66px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-points {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .final-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta .flip-btn {
    width: 100%;
  }

  .final-cta .flip-btn .text {
    width: 100%;
    padding: 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    height: 28px;
  }

  .button--small {
    padding: 8px 12px;
    font-size: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .hero-title {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .glitch-btn,
  .button--large {
    width: 100%;
  }

  .final-cta__inner {
    padding: 24px 20px;
  }

  .workflow-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 400px) {

  /* Signup stays in the hamburger menu; hiding it here prevents header overflow. */
  .header-actions .button {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   GLITCH BUTTON — hero CTA
   ═══════════════════════════════════════════ */
.glitch-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--panel);
  color: var(--white);
  border: 1px solid rgba(255, 10, 169, 0.45);
  border-radius: 10px;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  /* Soft brand glow at rest so desktop (no touch) still reads as "live" */
  box-shadow:
    0 0 0 1px rgba(57, 255, 136, 0.12),
    0 0 18px rgba(255, 10, 169, 0.18),
    0 0 28px rgba(57, 255, 136, 0.08);
  animation: idle-glitch 3.2s infinite;
}

.glitch-btn__text {
  position: relative;
  z-index: 1;
}

/* Duplicated text layers — RGB split. Pseudos with background:inherit were too weak. */
.glitch-btn__layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  background: transparent;
  border-radius: inherit;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 2;
}

.glitch-btn__layer--r {
  color: var(--pink);
  /* Stronger resting RGB so the glitch reads without hover (esp. desktop) */
  opacity: 0.95;
  animation: glitch-r 2.4s infinite linear alternate-reverse;
}

.glitch-btn__layer--g {
  color: var(--green);
  opacity: 0.9;
  animation: glitch-g 1.8s infinite linear alternate-reverse;
}

.glitch-btn__layer--scan {
  color: var(--white);
  opacity: 0.7;
  animation: glitch-scan 2s infinite steps(2, end);
}

@keyframes glitch-r {
  0% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(-3px, 0);
  }

  10% {
    clip-path: inset(80% 0 0% 0);
    transform: translate(2px, 1px);
  }

  20% {
    clip-path: inset(10% 0 70% 0);
    transform: translate(-1px, -1px);
  }

  30% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(3px, 0);
  }

  40% {
    clip-path: inset(0% 0 85% 0);
    transform: translate(-2px, 1px);
  }

  50% {
    clip-path: inset(65% 0 10% 0);
    transform: translate(1px, 0);
  }

  60% {
    clip-path: inset(20% 0 55% 0);
    transform: translate(-3px, -1px);
  }

  70% {
    clip-path: inset(90% 0 0% 0);
    transform: translate(2px, 1px);
  }

  80% {
    clip-path: inset(5% 0 75% 0);
    transform: translate(-1px, 0);
  }

  90% {
    clip-path: inset(45% 0 35% 0);
    transform: translate(3px, -1px);
  }

  100% {
    clip-path: inset(70% 0 5% 0);
    transform: translate(-2px, 0);
  }
}

@keyframes glitch-g {
  0% {
    clip-path: inset(70% 0 5% 0);
    transform: translate(2px, 0);
  }

  10% {
    clip-path: inset(15% 0 60% 0);
    transform: translate(-3px, 1px);
  }

  20% {
    clip-path: inset(55% 0 25% 0);
    transform: translate(1px, -1px);
  }

  30% {
    clip-path: inset(0% 0 80% 0);
    transform: translate(-2px, 0);
  }

  40% {
    clip-path: inset(85% 0 0% 0);
    transform: translate(3px, 1px);
  }

  50% {
    clip-path: inset(30% 0 45% 0);
    transform: translate(-1px, 0);
  }

  60% {
    clip-path: inset(75% 0 10% 0);
    transform: translate(2px, -1px);
  }

  70% {
    clip-path: inset(5% 0 70% 0);
    transform: translate(-3px, 0);
  }

  80% {
    clip-path: inset(60% 0 20% 0);
    transform: translate(1px, 1px);
  }

  90% {
    clip-path: inset(25% 0 50% 0);
    transform: translate(-2px, -1px);
  }

  100% {
    clip-path: inset(40% 0 35% 0);
    transform: translate(3px, 0);
  }
}

@keyframes glitch-scan {
  0% {
    clip-path: inset(0 0 92% 0);
    transform: translate(2px, 0);
  }

  50% {
    clip-path: inset(88% 0 0 0);
    transform: translate(-2px, 0);
  }

  100% {
    clip-path: inset(40% 0 45% 0);
    transform: translate(1px, 0);
  }
}

@keyframes idle-glitch {

  0%,
  82%,
  100% {
    transform: translate(0);
    border-color: rgba(255, 10, 169, 0.45);
    box-shadow:
      0 0 0 1px rgba(57, 255, 136, 0.12),
      0 0 18px rgba(255, 10, 169, 0.18),
      0 0 28px rgba(57, 255, 136, 0.08);
  }

  86% {
    transform: translate(-3px, 1px) skew(-1deg);
    border-color: rgba(57, 255, 136, 0.65);
    box-shadow:
      0 0 0 1px rgba(57, 255, 136, 0.35),
      0 0 22px rgba(57, 255, 136, 0.28),
      0 0 36px rgba(255, 10, 169, 0.15);
  }

  90% {
    transform: translate(3px, -1px) skew(0.5deg);
    border-color: rgba(255, 10, 169, 0.7);
    box-shadow:
      0 0 0 1px rgba(255, 10, 169, 0.4),
      0 0 24px rgba(255, 10, 169, 0.35),
      0 0 40px rgba(57, 255, 136, 0.12);
  }

  94% {
    transform: translate(-2px, 0) skew(0deg);
    border-color: rgba(255, 122, 0, 0.55);
    box-shadow:
      0 0 0 1px rgba(255, 122, 0, 0.25),
      0 0 20px rgba(255, 122, 0, 0.22);
  }

  97% {
    transform: translate(2px, 1px) skew(-0.5deg);
    border-color: rgba(57, 255, 136, 0.55);
    box-shadow:
      0 0 0 1px rgba(57, 255, 136, 0.3),
      0 0 22px rgba(57, 255, 136, 0.25),
      0 0 32px rgba(255, 10, 169, 0.12);
  }
}

.glitch-btn.is-burst {
  animation: burst 0.3s linear !important;
  border-color: var(--pink) !important;
  box-shadow: 0 0 30px rgba(255, 10, 169, 0.4), 0 0 60px rgba(57, 255, 136, 0.2);
}

.glitch-btn.is-burst .glitch-btn__layer--r {
  animation: burst-r 0.3s linear !important;
}

.glitch-btn.is-burst .glitch-btn__layer--g {
  animation: burst-g 0.3s linear !important;
}

.glitch-btn.is-burst .glitch-btn__layer--scan {
  animation: burst-r 0.3s linear !important;
  opacity: 0.9;
}

@keyframes burst {
  0% {
    transform: translate(0) skew(0);
  }

  15% {
    transform: translate(-4px, 2px) skew(-3deg);
  }

  30% {
    transform: translate(4px, -2px) skew(2deg);
  }

  45% {
    transform: translate(-3px, 0) skew(-1deg);
  }

  60% {
    transform: translate(2px, 1px) skew(1.5deg);
  }

  75% {
    transform: translate(-1px, -1px) skew(-0.5deg);
  }

  100% {
    transform: translate(0) skew(0);
  }
}

@keyframes burst-r {
  0% {
    clip-path: inset(0 0 70% 0);
    transform: translate(-6px, 0);
  }

  25% {
    clip-path: inset(30% 0 30% 0);
    transform: translate(5px, 2px);
  }

  50% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(-4px, -1px);
  }

  75% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(3px, 1px);
  }

  100% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(-2px, 0);
  }
}

@keyframes burst-g {
  0% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(5px, 0);
  }

  25% {
    clip-path: inset(10% 0 50% 0);
    transform: translate(-6px, -2px);
  }

  50% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(4px, 1px);
  }

  75% {
    clip-path: inset(70% 0 5% 0);
    transform: translate(-3px, -1px);
  }

  100% {
    clip-path: inset(20% 0 50% 0);
    transform: translate(2px, 0);
  }
}

/* ═══════════════════════════════════════════
   FLIP BUTTON — final CTA
   ═══════════════════════════════════════════ */
.flip-btn {
  position: relative;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
}

.flip-btn:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
  border-radius: 8px;
}

.flip-btn .text {
  display: block;
  visibility: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0 24px;
  white-space: nowrap;
}

.flip-btn .flip-front,
.flip-btn .flip-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  box-sizing: border-box;
  border-radius: 8px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.flip-btn .flip-front {
  background: var(--panel);
  color: var(--white);
  border: 1px solid var(--pink);
  -webkit-transform: rotateX(0deg) translateZ(25px);
  -ms-transform: rotateX(0deg) translateZ(25px);
  -o-transform: rotateX(0deg) translateZ(25px);
  transform: rotateX(0deg) translateZ(25px);
  /* Resting pulse so desktop shows it's alive without needing hover */
  animation: flip-idle-glow 2.8s ease-in-out infinite;
}

.flip-btn .flip-back {
  background: var(--pink);
  color: var(--black);
  -webkit-transform: rotateX(90deg) translateZ(25px);
  -ms-transform: rotateX(90deg) translateZ(25px);
  -o-transform: rotateX(90deg) translateZ(25px);
  transform: rotateX(90deg) translateZ(25px);
}

@keyframes flip-idle-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 10, 169, 0.15), 0 0 12px rgba(255, 10, 169, 0.2);
  }

  50% {
    box-shadow: 0 0 0 3px rgba(255, 10, 169, 0.12), 0 0 22px rgba(255, 10, 169, 0.4);
  }
}

/* Fine-pointer desktops: give a tiny periodic tilt tease (not a full flip) */
@media (hover: hover) and (pointer: fine) {
  .flip-btn:not(:hover):not(.is-flipped) .flip-front {
    animation:
      flip-idle-glow 2.8s ease-in-out infinite,
      flip-idle-nudge 5.5s ease-in-out infinite;
  }
}

@keyframes flip-idle-nudge {
  0%,
  88%,
  100% {
    transform: rotateX(0deg) translateZ(25px);
  }

  92% {
    transform: rotateX(-18deg) translateZ(25px);
  }

  96% {
    transform: rotateX(8deg) translateZ(25px);
  }
}

.flip-btn:hover .flip-front,
.flip-btn.is-flipped .flip-front {
  animation: none;
  -webkit-transform: rotateX(-90deg) translateZ(25px);
  -ms-transform: rotateX(-90deg) translateZ(25px);
  -o-transform: rotateX(-90deg) translateZ(25px);
  transform: rotateX(-90deg) translateZ(25px);
}

.flip-btn:hover .flip-back,
.flip-btn.is-flipped .flip-back {
  -webkit-transform: rotateX(0deg) translateZ(25px);
  -ms-transform: rotateX(0deg) translateZ(25px);
  -o-transform: rotateX(0deg) translateZ(25px);
  transform: rotateX(0deg) translateZ(25px);
}

@media (prefers-reduced-motion: reduce) {

  .glitch-btn,
  .glitch-btn__layer {
    animation: none !important;
  }

  .product-window--live .progress-fill,
  .product-window--live .check-row--anim,
  .product-window--live .check-row--anim>span,
  .product-window--live .check-row--anim>span::after {
    animation: none !important;
  }

  .flip-btn .flip-front,
  .flip-btn .flip-back {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}