:root {
  color-scheme: dark;
  --bg: #050713;
  --panel: rgba(8, 13, 28, 0.82);
  --panel-strong: rgba(10, 16, 34, 0.96);
  --line: rgba(102, 242, 255, 0.32);
  --line-strong: rgba(154, 130, 255, 0.68);
  --text: #f6f3ff;
  --muted: rgba(222, 230, 255, 0.72);
  --cyan: #66f2ff;
  --green: #9a82ff;
  --yellow: #f0e7ff;
  --coral: #d678ff;
  --red: #ff6b73;
  --ink: #050713;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: #050713;
  color: var(--text);
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(154, 130, 255, .72);
  outline-offset: 3px;
}

.product-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(180deg, #050713, #0a0e20);
}
.product-loading span {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.product-loading strong { font-size: 1.45rem; }

.product-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7, 8, 6, .24), #050713 720px),
    radial-gradient(circle at 12% 24%, rgba(102, 242, 255, .08), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(154, 130, 255, .08), transparent 32%),
    #050713;
}

.topbar {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1120px, calc(100% - 24px));
  padding: 10px 16px;
  transform: translateX(-50%);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(3, 6, 12, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38), inset 0 0 34px rgba(102, 242, 255, 0.08);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}
.brand strong { font-size: 1.7rem; letter-spacing: 0; }
.brand span { color: var(--cyan); font-size: .78rem; font-weight: 900; }
nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
}
nav a:hover { color: var(--text); }
.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 130, 255, .42);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--green);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 900;
}

.product-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 126px 0 54px;
  isolation: isolate;
  overflow: hidden;
}
.product-hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .46;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 6, .94), rgba(7, 8, 6, .48) 58%, rgba(7, 8, 6, .82)),
    linear-gradient(180deg, rgba(7, 8, 6, .12), #050713 94%);
}
.product-hero-inner {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
  gap: 22px;
  align-items: end;
}
.product-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 4.25rem;
  line-height: .98;
  letter-spacing: 0;
}
.product-headline {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.42;
  font-weight: 820;
}
.product-subhead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.56;
}
.product-hero-actions, .detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.primary-action, .secondary-action {
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.primary-action {
  background: linear-gradient(135deg, var(--green), var(--yellow));
  color: var(--ink);
  border-color: transparent;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(154, 130, 255, 0.22);
}
.secondary-action { background: rgba(255,255,255,.055); }
.primary-action:disabled {
  cursor: wait;
  opacity: .68;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(0,0,0,.28);
  color: rgba(248, 251, 244, .84);
  font-size: .78rem;
  font-weight: 850;
}

.checkout-panel,
.product-demo-panel,
.detail-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 0 38px rgba(102, 242, 255, .06);
  backdrop-filter: blur(18px);
}
.checkout-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}
.deal-topline,
.info-line,
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.deal-topline strong,
.section-kicker strong { color: var(--yellow); }
.checkout-panel h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}
.checkout-panel p,
.detail-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}
.checkout-form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}
input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(0,0,0,.34);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}
input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(102, 242, 255, .12);
}
.checkout-message {
  min-height: 22px;
  color: var(--yellow);
  font-size: .86rem;
  font-weight: 850;
}
.checkout-message.error { color: var(--red); }
.secure-note {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.section-band {
  padding: 70px 0;
}
.section-band.tight { padding-top: 36px; }
.section-inner {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}
.section-title {
  max-width: 760px;
  margin-bottom: 24px;
}
.section-title h2 {
  margin-bottom: 10px;
  font-size: 2.35rem;
  line-height: 1.03;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.product-demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .72fr);
  gap: 18px;
  padding: 18px;
  align-items: stretch;
}
.demo-frame {
  min-height: 390px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(0,0,0,.34);
  overflow: hidden;
}
.product-demo-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
.demo-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}
.demo-copy h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.06;
}

.detail-grid,
.outcome-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.detail-card,
.faq-card {
  min-height: 190px;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.detail-card strong,
.faq-card strong {
  color: var(--green);
  font-size: 1.03rem;
}
.detail-card span {
  color: var(--muted);
  line-height: 1.5;
}
.outcome-grid .detail-card {
  border-color: rgba(154, 130, 255, .28);
  background: linear-gradient(180deg, rgba(31, 24, 11, .72), rgba(5, 10, 13, .86));
}

.steps {
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.step-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255,255,255,.04);
}
.step-row::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 130, 255, .34);
  border-radius: 8px;
  color: var(--ink);
  background: var(--green);
  font-weight: 950;
}
.step-row span {
  color: var(--muted);
  line-height: 1.48;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(154, 130, 255, .16), rgba(102, 242, 255, .08)),
    rgba(8, 13, 28, .86);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.final-cta h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.06;
}
.final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.related-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 900;
}
.related-link:hover { color: var(--yellow); }

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #050713, #101711);
}
.not-found-panel {
  max-width: 720px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
}
.not-found-panel h1 {
  font-size: 2.6rem;
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }
  nav { display: none; }
  .product-hero {
    min-height: auto;
    padding-top: 112px;
  }
  .product-hero-inner,
  .product-demo-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 3.1rem;
  }
  .detail-grid,
  .outcome-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    top: 8px;
    width: calc(100% - 16px);
    gap: 10px;
    padding: 8px 10px;
  }
  .brand strong { font-size: 1.42rem; }
  .brand span { display: none; }
  .nav-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: .78rem;
  }
  .product-hero {
    padding: 94px 0 38px;
  }
  h1 {
    font-size: 2.35rem;
    line-height: 1.02;
  }
  .product-headline {
    font-size: 1.08rem;
  }
  .section-band {
    padding: 48px 0;
  }
  .section-title h2 {
    font-size: 1.85rem;
  }
  .primary-action,
  .secondary-action {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .demo-frame,
  .product-demo-frame {
    min-height: 280px;
  }
}
