:root {
  --bg: #030712;
  --bg-elevated: #0a1024;
  --bg-panel: rgba(15, 23, 42, 0.72);
  --line: rgba(56, 189, 248, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #38bdf8;
  --accent-2: #22d3ee;
  --accent-deep: #0ea5e9;
  --success: #34d399;
  --danger-soft: #f87171;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.55);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-headline: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --wrap: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(14, 165, 233, 0.22), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(34, 211, 238, 0.08), transparent 50%),
    linear-gradient(180deg, #06101f 0%, var(--bg) 28%, #020617 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(56, 189, 248, 0.12), transparent 32%),
    radial-gradient(circle at 20% 70%, rgba(14, 165, 233, 0.05), transparent 25%);
  z-index: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.2), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-inner {
  max-width: 920px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(8, 20, 40, 0.75);
  color: #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pill-icon {
  color: #fbbf24;
}

.hero-title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(3.1rem, 10vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
}

.hero-accent {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 42%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-acronym {
  margin: 1.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  letter-spacing: 0.42em;
  color: rgba(148, 163, 184, 0.9);
}

.hero-support {
  margin: 1.35rem auto 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.stack-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(15, 23, 42, 0.65);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--soft);
}

.stack-plus {
  color: var(--accent);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #3b66f5 0%, #7c3aed 55%, #a346f0 100%);
  box-shadow:
    0 0 28px rgba(124, 58, 237, 0.45),
    0 12px 36px rgba(59, 102, 245, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 36px rgba(163, 70, 240, 0.55),
    0 16px 44px rgba(59, 102, 245, 0.4);
}

.btn-ghost {
  color: var(--soft);
  border-color: rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.45);
}

.btn-ghost:hover {
  border-color: rgba(56, 189, 248, 0.45);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head.center,
.section-head-center,
.snapshot .section-head {
  margin-inline: auto;
  text-align: center;
}

.section-head-center {
  max-width: none;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.section-copy {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 40rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--accent);
  font-weight: 700;
}

/* Snapshot */
.snapshot-panel {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.08), transparent 40%),
    var(--bg-panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.snapshot-panel .section-copy {
  margin-inline: auto;
}

/* Video */
.video {
  padding-top: 0.5rem;
}

.video-frame {
  position: relative;
  width: min(860px, 100%);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.65);
  background: #020617;
  box-shadow:
    0 0 12px rgba(163, 70, 240, 0.55),
    0 0 36px rgba(124, 58, 237, 0.45),
    0 0 72px rgba(59, 102, 245, 0.28),
    0 24px 80px rgba(2, 6, 23, 0.55);
  animation: video-neon 3.2s ease-in-out infinite;
}

@keyframes video-neon {
  0%,
  100% {
    box-shadow:
      0 0 12px rgba(163, 70, 240, 0.5),
      0 0 36px rgba(124, 58, 237, 0.4),
      0 0 72px rgba(59, 102, 245, 0.24),
      0 24px 80px rgba(2, 6, 23, 0.55);
  }
  50% {
    box-shadow:
      0 0 18px rgba(163, 70, 240, 0.75),
      0 0 48px rgba(124, 58, 237, 0.55),
      0 0 96px rgba(168, 85, 247, 0.35),
      0 24px 80px rgba(2, 6, 23, 0.55);
  }
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-row li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Pillars */
.pillar-list {
  display: grid;
  gap: 1rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.4rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(8, 15, 30, 0.9));
}

.pillar-index {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: rgba(56, 189, 248, 0.75);
  line-height: 1;
  padding-top: 0.15rem;
}

.pillar p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.pillar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pillar li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--soft);
  font-size: 0.96rem;
}

.pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* Bonuses */
.bonuses {
  background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.04), transparent);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bonus {
  padding: 1.35rem 1.3rem;
  border-top: 1px solid rgba(56, 189, 248, 0.35);
  background: transparent;
}

.bonus p {
  margin: 0;
  color: var(--muted);
}

/* Value */
.value-panel {
  max-width: 640px;
  margin-inline: auto;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(8, 15, 30, 0.9);
  box-shadow: var(--shadow);
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.value-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--soft);
  font-size: 0.98rem;
}

.strike {
  color: var(--muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin: 1.35rem 0 1.2rem;
}

.value-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-was {
  margin: 0.25rem 0 0;
  font-size: 1.4rem;
  color: #64748b;
  text-decoration: line-through;
}

.value-price {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.9;
  color: var(--accent-2);
}

.value-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  margin-left: 0.15rem;
}

.fine-print {
  margin: 0.9rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote {
  margin: 0;
  padding: 1.35rem;
  border-left: 2px solid rgba(56, 189, 248, 0.55);
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.08), transparent 70%);
}

.quote blockquote {
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
}

.quote figcaption {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Order */
.order {
  background:
    radial-gradient(700px 320px at 80% 20%, rgba(14, 165, 233, 0.12), transparent 60%),
    transparent;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 15, 30, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.order-card-wide {
  max-width: 640px;
  margin-inline: auto;
}

.order-card-top {
  padding: 1.35rem 1.35rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), transparent);
  text-align: center;
}

.order-plan {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-amount {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.9;
}

.order-amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
}

.order-note {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.order-benefits {
  padding: 1.25rem 1.35rem 1.4rem;
}

.order-benefits-label {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}

.order-includes {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.order-includes li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--soft);
  font-size: 0.98rem;
}

.order-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.form-note {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  padding: 0.2rem 0 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.7rem 1.6rem 0.7rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.65rem;
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

/* Final CTA */
.final-cta {
  padding-bottom: 5rem;
}

.final-inner {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(56, 189, 248, 0.18), transparent 70%),
    rgba(8, 15, 30, 0.9);
}

.final-inner p {
  margin: 1rem auto 1.5rem;
  max-width: 34rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding: 1.6rem 0 2.2rem;
}

.footer-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner p {
  margin: 0;
}

.footer-sub {
  margin-top: 0.35rem !important;
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .video-frame {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .proof-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(1120px, calc(100% - 1.5rem));
  }

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

  .hero-acronym {
    letter-spacing: 0.28em;
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .value-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}
