/* ============================================================
   Ai Cartel — VSL landing
   Dark navy / fintech. Glowing blue accents, Inter type.
   Video-forward layout · moving wave glow over a grid.
   ============================================================ */

:root {
  --bg:          #04060f;
  --bg-2:        #060912;
  --ink:         #ffffff;
  --body:        #e6ecff;
  --muted:       #b8c5e0;
  --hint:        #7d8ab0;
  --line:        rgba(110,207,255,0.14);
  --line-soft:   rgba(140,170,230,0.10);
  --blue:        #2b7bff;
  --cyan:        #1ec8ff;
  --hi:          #6ecfff;
  --grad:        linear-gradient(120deg, #2b7bff 0%, #1ec8ff 78%, #6ecfff 100%);
  --grad-soft:   linear-gradient(120deg, #3a8fff, #1ec8ff);
  --card:        rgba(9,15,38,0.66);
  --card-solid:  rgba(8,14,36,0.92);
  --shadow:      0 30px 80px -40px rgba(0,0,0,0.9);
  --ring:        0 0 0 1px rgba(110,207,255,0.18);
  --maxw:        1120px;
  --r:           14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(43,123,255,0.35); color: #fff; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { margin: 0; color: var(--ink); letter-spacing: -0.025em; line-height: 1.08; }
p { margin: 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Background — hero backdrop only: black · drifting glow · grid UNDER the video ===== */
.bg-wrap {
  position: absolute; top: 0; left: 0; right: 0; height: 1500px; z-index: 0;
  pointer-events: none; overflow: hidden; background: transparent;
}
/* soft blue glow drifting on the left (the "wave") */
.bg-wave {
  position: absolute; inset: -12% -18%;
  background:
    radial-gradient(28% 24% at 18% 42%, rgba(43,123,255,0.20), transparent 62%),
    radial-gradient(26% 22% at 82% 32%, rgba(43,123,255,0.10), transparent 64%);
  filter: blur(58px);
  animation: wave 22s ease-in-out infinite alternate;
}
@keyframes wave {
  0%   { transform: translate3d(-3%, -1%, 0) scale(1.05); }
  50%  { transform: translate3d(2%, 3%, 0) scale(1.12); }
  100% { transform: translate3d(-1%, 1.5%, 0) scale(1.08); }
}
/* drifting radio-wave cloud that travels across the screen */
.bg-cloud {
  position: absolute; top: 2%; left: -45%;
  width: 80%; height: 78%;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(58,143,255,0.40), rgba(43,123,255,0.14) 46%, transparent 72%),
    radial-gradient(42% 56% at 44% 46%, rgba(30,200,255,0.22), transparent 70%);
  filter: blur(64px); border-radius: 50%;
  animation: cloud 30s ease-in-out infinite;
}
@keyframes cloud {
  0%   { transform: translate(0, 6%) scale(1); opacity: 0.5; }
  25%  { transform: translate(75%, -4%) scale(1.18); opacity: 0.95; }
  50%  { transform: translate(150%, 8%) scale(1.05); opacity: 0.8; }
  75%  { transform: translate(80%, -2%) scale(1.2); opacity: 0.95; }
  100% { transform: translate(0, 6%) scale(1); opacity: 0.5; }
}

/* clean flat grid, sitting UNDER the video — absent at the top, fading out below */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(130,170,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,170,255,0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: linear-gradient(180deg, transparent 26%, #000 42%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 26%, #000 42%, #000 84%, transparent 100%);
}
/* faint spotlight so the video pops off the black */
.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(46% 40% at 50% 42%, rgba(43,123,255,0.10), transparent 62%);
}
/* grain — the single biggest "this wasn't churned out" tell */
.bg-grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Layout ============================================== */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section, header, footer { position: relative; z-index: 2; }
.section { padding: 60px 0; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--hi); opacity: 0.85;
}

/* ===== Buttons ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  color: #04122e; background: var(--grad-soft);
  border: 0; cursor: pointer;
  padding: 14px 26px; border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(110,207,255,0.40),
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 14px 34px -12px rgba(43,123,255,0.7);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(110,207,255,0.55), 0 1px 0 rgba(255,255,255,0.6) inset, 0 20px 46px -12px rgba(43,123,255,0.85); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow { font-weight: 600; }

.btn-ghost {
  color: var(--body); background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 13px 22px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); color: #fff; transform: translateY(-1px); }

/* ===== Header — logo floats on black, no bar ===== */
.site-header {
  position: relative; z-index: 5;
  background: transparent; border: 0;
}
.header-inner { display: flex; align-items: center; justify-content: center; padding: calc(34px + env(safe-area-inset-top, 0px)) 0 6px; }
.brand img { height: 32px; width: auto; opacity: 0.98; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14px; font-weight: 500; color: #c5d0ea; position: relative;
  transition: color .15s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--hi); transition: width .22s ease;
}
.nav a:hover { color: var(--hi); }
.nav a:hover::after { width: 100%; }

/* ===== Hero (video-forward) =============================== */
.hero { padding: 56px 0 40px; text-align: center; }
.hero-inner { max-width: 1040px; margin: 0 auto; }

.pill {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  color: #cfe0ff;
  padding: 7px 16px 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,207,255,0.22);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 4px rgba(30,200,255,0.18), 0 0 12px 2px rgba(30,200,255,0.8);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(30,200,255,0.05), 0 0 18px 3px rgba(30,200,255,0.55); } }

/* Step 1 & Step 2 pills — larger */
.hero .pill, .apply-wrap .pill {
  font-size: 16px; padding: 11px 22px 11px 18px; gap: 11px;
}
.hero .pill .dot, .apply-wrap .pill .dot { width: 10px; height: 10px; }

.hero h1 {
  margin: 22px auto 0; max-width: 940px;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero .sub {
  margin: 20px auto 0; max-width: 640px;
  font-size: 17.5px; color: var(--muted); line-height: 1.55; text-wrap: pretty;
}

/* video — the hero star */
.video {
  position: relative; max-width: 1000px; margin: 44px auto 0;
  padding: 2px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(110,207,255,0.7), rgba(43,123,255,0.2) 42%, rgba(110,207,255,0.1) 60%, rgba(43,123,255,0.6));
  box-shadow: var(--shadow), 0 0 130px -45px rgba(43,123,255,0.6);
}
.video-inner {
  position: relative; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  background:
    radial-gradient(85% 125% at 50% -5%, rgba(43,123,255,0.28), transparent 58%),
    radial-gradient(75% 95% at 50% 120%, rgba(30,200,255,0.18), transparent 55%),
    linear-gradient(180deg, #08102c, #04081a);
  display: grid; place-items: center; cursor: pointer;
}
.video-inner::before { /* faux frame texture so it isn't a flat box */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(120,180,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,180,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px; opacity: 0.6;
  mask-image: radial-gradient(62% 62% at 50% 45%, transparent, #000);
  -webkit-mask-image: radial-gradient(62% 62% at 50% 45%, transparent, #000);
}
.play {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--grad-soft); display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset, 0 0 0 12px rgba(43,123,255,0.10), 0 20px 50px -12px rgba(43,123,255,0.9);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; z-index: 2;
}
.video-inner:hover .play { transform: scale(1.06); box-shadow: 0 0 0 1px rgba(255,255,255,0.3) inset, 0 0 0 16px rgba(43,123,255,0.10), 0 26px 62px -12px rgba(43,123,255,1); }
.play svg { margin-left: 5px; }
.play.sm { width: 54px; height: 54px; box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset, 0 0 0 7px rgba(43,123,255,0.10), 0 12px 30px -10px rgba(43,123,255,0.8); }
.play.sm svg { transform: scale(0.6); margin-left: 3px; }

/* click-for-sound pill (from the reference) */
.sound-pill {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-size: 13px; font-weight: 600; color: #eaf1ff;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(4,8,22,0.7); border: 1px solid rgba(110,207,255,0.28);
  backdrop-filter: blur(8px); cursor: pointer; transition: border-color .15s, background .15s;
}
.sound-pill:hover { border-color: rgba(110,207,255,0.55); background: rgba(4,8,22,0.85); }

.vid-chip {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums;
  color: #dce6ff; padding: 5px 11px; border-radius: 8px;
  background: rgba(4,8,22,0.72); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.vid-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3;
  background: rgba(255,255,255,0.08);
}
.vid-progress::after { content: ""; position: absolute; inset: 0 64% 0 0; background: var(--grad-soft); }

.hero-cta { margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.trust {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--muted);
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft);
}
.stars { color: #ffcc44; letter-spacing: 1px; font-size: 13px; }
.trust .dim { color: var(--hint); }
.trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--hint); display: inline-block; }

/* ===== Companies strip ===================================== */
.strip { padding: 8px 0 70px; text-align: center; }
.strip .cap { font-size: 13px; color: var(--hint); margin-bottom: 24px; }
.logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px;
}
.logos span {
  font-size: 19px; font-weight: 700; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.40); transition: color .18s ease;
}
.logos span:hover { color: rgba(255,255,255,0.85); }

/* ===== Application card ==================================== */
.apply-wrap { padding: 8px 0 56px; }
.app-card {
  max-width: 720px; margin: 0 auto; padding: 44px;
  background: var(--card-solid); backdrop-filter: blur(20px);
  border: 1px solid rgba(110,207,255,0.22); border-radius: 24px;
  box-shadow: var(--shadow), 0 0 90px -50px rgba(43,123,255,0.6);
  position: relative;
}
.app-card .head { text-align: center; margin-bottom: 30px; }
.app-card h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin-top: 16px; letter-spacing: -0.03em; }
.app-card .head p { margin: 14px auto 0; max-width: 560px; color: var(--muted); font-size: 15.5px; }

form { display: flex; flex-direction: column; gap: 18px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: 13px; font-weight: 600; color: #c5d0ea; }
.input, textarea.input {
  width: 100%; font: inherit; font-size: 14px; color: #fff;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(110,207,255,0.18);
  border-radius: 10px; padding: 13px 14px; transition: border-color .15s, background .15s, box-shadow .15s;
}
.input::placeholder, textarea.input::placeholder { color: #5f6d92; }
.input:focus, textarea.input:focus {
  outline: none; border-color: var(--blue); background: rgba(43,123,255,0.06);
  box-shadow: 0 0 0 3px rgba(43,123,255,0.14);
}
textarea.input { resize: vertical; min-height: 84px; line-height: 1.5; }

.choice > .legend { font-size: 13px; font-weight: 600; color: #c5d0ea; margin-bottom: 10px; }
.opts { display: flex; flex-direction: column; gap: 8px; }
.opt {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft);
  border-radius: 10px; padding: 11px 13px; transition: border-color .14s, background .14s;
}
.opt:hover { border-color: rgba(110,207,255,0.32); background: rgba(255,255,255,0.05); }
.opt input {
  appearance: none; -webkit-appearance: none; margin: 0;
  width: 18px; height: 18px; border-radius: 50%; flex: 0 0 auto;
  border: 2px solid rgba(110,207,255,0.4); background: transparent;
  transition: border-color .14s, box-shadow .14s; position: relative;
}
.opt input:checked { border-color: var(--cyan); box-shadow: 0 0 10px -1px rgba(30,200,255,0.5); }
.opt input:checked::after {
  content: ""; position: absolute; inset: 2px; border-radius: 50%; background: var(--grad-soft);
}
.opt:has(input:checked) { border-color: rgba(110,207,255,0.45); background: rgba(43,123,255,0.07); }
.opt span { font-size: 14px; color: var(--body); }

.submit-note { font-size: 12px; color: var(--hint); text-align: center; margin-top: -2px; }

.success {
  display: none; text-align: center; padding: 18px 20px; border-radius: 14px;
  background: rgba(28,180,120,0.10); border: 1px solid rgba(40,210,140,0.38);
  color: #c9f5df; font-size: 15.5px; font-weight: 500;
}
.success.show { display: block; }
.success strong { color: #fff; }

/* ===== Section headings (shared) ========================== */
.head-c { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.head-c h2 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; letter-spacing: -0.032em; }
.head-c p { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ===== Metrics =========================================== */
.ratings {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.ratings .big-stars { color: #ffcc44; font-size: 20px; letter-spacing: 2px; }
.ratings .rev { font-size: 14px; color: var(--muted); }
.chips { display: inline-flex; gap: 8px; }
.chip {
  font-size: 12.5px; font-weight: 600; color: #cfe0ff;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric {
  background: rgba(8,14,36,0.6); border: 1px solid rgba(110,207,255,0.16);
  border-radius: 16px; padding: 24px 22px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.metric::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,207,255,0.5), transparent); }
.metric:hover { border-color: rgba(110,207,255,0.34); transform: translateY(-2px); }
.metric .label { font-size: 14px; font-weight: 600; color: #c5d0ea; }
.metric .num {
  font-size: clamp(34px, 4vw, 44px); font-weight: 800; line-height: 1; margin: 12px 0 10px;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff, #6ecfff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.metric .sub { font-size: 13px; color: #8d9bc0; line-height: 1.45; }

/* ===== Timeline ========================================== */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(180deg, rgba(110,207,255,0.4), rgba(43,123,255,0.1));
}
.tl-item { display: flex; gap: 28px; align-items: flex-start; position: relative; }
.tl-item + .tl-item { margin-top: 38px; }
.tl-num {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 800; color: #06122c; font-variant-numeric: tabular-nums;
  background: var(--grad-soft);
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 7px rgba(110,207,255,0.2), 0 0 28px -6px rgba(43,123,255,0.8);
  position: relative; z-index: 2;
}
.tl-body { padding-top: 4px; }
.tl-body h3 { font-size: 24px; font-weight: 800; }
.tl-body p { margin-top: 9px; color: var(--muted); font-size: 16px; line-height: 1.58; text-wrap: pretty; }

/* ===== Wins ============================================= */
.wins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.win {
  background: rgba(8,14,36,0.65); border: 1px solid rgba(110,207,255,0.16);
  border-radius: 18px; padding: 14px;
  transition: border-color .2s, transform .2s;
}
.win:hover { border-color: rgba(110,207,255,0.32); transform: translateY(-2px); }
.win-vid {
  position: relative; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden;
  background:
    radial-gradient(78% 110% at 50% 0%, rgba(43,123,255,0.24), transparent 62%),
    linear-gradient(180deg, #08102c, #04081a);
  display: grid; place-items: center; cursor: pointer;
}
.win-meta { padding: 16px 8px 6px; }
.win h3 { font-size: 17px; font-weight: 700; line-height: 1.34; letter-spacing: -0.02em; }
.win-chip {
  display: inline-flex; margin-top: 14px; font-size: 12px; font-weight: 600; color: #cfe0ff;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}

/* ===== FAQ ============================================== */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: rgba(8,14,36,0.55); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: border-color .2s, background .2s;
}
.faq details[open] { border-color: rgba(110,207,255,0.3); background: rgba(8,14,36,0.78); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 19px 22px; font-size: 16px; font-weight: 600; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: 0 0 auto; font-size: 22px; line-height: 1; color: var(--hi); font-weight: 400;
  transition: transform .22s ease;
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.62; max-width: 660px; }

/* ===== Final CTA ======================================== */
.final { text-align: center; padding: 24px 0 64px; }
.final h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; letter-spacing: -0.035em; }
.final .btn { margin-top: 34px; }

/* ===== Free-training — "what you'll discover" cards ===== */
.discover { padding: 18px 0 26px; text-align: center; }
.discover-head {
  font-size: clamp(19px, 2.3vw, 27px); font-weight: 800; letter-spacing: 0.005em;
  text-transform: uppercase; color: #fff; margin: 0 auto 38px; max-width: none; white-space: nowrap;
}
.discover-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1060px; margin: 0 auto;
}
.dcard {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 20px; text-align: center;
  padding: 40px 30px 36px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,32,68,0.72), rgba(8,13,32,0.66));
  border: 1px solid rgba(110,207,255,0.20);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 22px 44px -26px rgba(0,0,0,0.75),
    0 6px 20px -14px rgba(43,123,255,0.45);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,215,255,0.7), transparent);
}
.dcard::after {
  content: ""; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 160px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(43,123,255,0.32), transparent 68%);
}
.dcard:hover {
  transform: translateY(-4px); border-color: rgba(110,207,255,0.42);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 30px 56px -28px rgba(0,0,0,0.8), 0 10px 28px -14px rgba(43,123,255,0.6);
}
.dcard .check {
  position: relative; z-index: 1; flex: 0 0 auto; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-soft); color: #04122e;
  box-shadow: 0 0 0 6px rgba(43,123,255,0.12), 0 0 0 1px rgba(255,255,255,0.42) inset, 0 12px 26px -6px rgba(43,123,255,0.95);
}
.dcard .check svg { width: 25px; height: 25px; }
.dcard p {
  position: relative; z-index: 1;
  color: #eef3ff; font-size: 16px; font-weight: 600; line-height: 1.5;
  letter-spacing: -0.01em; text-wrap: balance; max-width: 252px;
}
.dcard p b { color: var(--hi); font-weight: 800; }
.dcard p b { color: #fff; font-weight: 800; }
.discover-foot { display: flex; justify-content: center; margin-top: 42px; }
@media (max-width: 860px) {
  .discover-grid { grid-template-columns: 1fr; max-width: 540px; }
  .discover-head { margin-bottom: 28px; white-space: normal; max-width: 480px; font-size: 19px; }
}

/* ===== VSL static thumbnail trigger ===== */
.vsl-trigger { display: block; border: 0; cursor: pointer; padding: 2px; width: 100%; }
.vsl-trigger .video-inner { aspect-ratio: 16/9; cursor: pointer; }
.vsl-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.vsl-cta {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.vsl-cta::before {
  content: ""; position: absolute; z-index: -1; left: 50%; top: 50%;
  width: 360px; height: 300px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(2,4,12,0.5), transparent 68%);
  pointer-events: none;
}
.vsl-play {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--grad-soft);
  display: grid; place-items: center;
  transition: transform .2s ease, filter .2s ease;
  animation: playPulse 2.2s ease-in-out infinite;
}
.vsl-play svg { margin-left: 4px; }
.vsl-trigger:hover .vsl-play { transform: scale(1.08); filter: brightness(1.06); }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 0 0 0 rgba(43,123,255,0.5), 0 0 34px 4px rgba(43,123,255,0.5), 0 14px 36px -10px rgba(43,123,255,0.85); }
  50%      { box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 0 0 18px rgba(43,123,255,0), 0 0 56px 10px rgba(43,123,255,0.85), 0 14px 36px -10px rgba(43,123,255,0.85); }
}
.vsl-hint {
  font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; color: #04122e; white-space: nowrap;
  padding: 11px 22px; border-radius: 999px;
  background: var(--grad-soft); border: 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 10px 30px -6px rgba(43,123,255,0.85);
}
.vsl-trigger:hover .vsl-hint { filter: brightness(1.06); }
@media (prefers-reduced-motion: reduce) {
  .vsl-play { animation: none; box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 0 44px 6px rgba(43,123,255,0.6), 0 14px 36px -10px rgba(43,123,255,0.85); }
}

/* ===== Opt-in modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: 24px;
  background: rgba(2,4,10,0.74); backdrop-filter: blur(7px);
  opacity: 0; transition: opacity .22s ease;
}
.modal-overlay.open { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal {
  width: 100%; max-width: 440px; position: relative;
  max-height: calc(100dvh - 40px); overflow-y: auto;
  padding: 36px 30px 30px; border-radius: 20px; text-align: center;
  background: linear-gradient(180deg, rgba(16,26,58,0.97), rgba(7,11,28,0.99));
  border: 1px solid rgba(110,207,255,0.30);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.92), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 0 130px -50px rgba(43,123,255,0.85);
  transform: translateY(14px) scale(0.97); transition: transform .26s cubic-bezier(.2,.7,.2,1);
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 15px; width: 34px; height: 34px;
  border: 0; cursor: pointer; border-radius: 50%; font-size: 22px; line-height: 1;
  color: #b8c5e0; background: rgba(255,255,255,0.05);
  transition: background .15s ease, color .15s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.10); color: #fff; }
.modal-badge {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 auto;
  font-size: 12px; font-weight: 700; letter-spacing: 0.005em; color: #cfe0ff; white-space: nowrap;
  padding: 8px 16px 8px 13px; border-radius: 999px;
  background: rgba(43,123,255,0.12); border: 1px solid rgba(110,207,255,0.32);
}
.modal h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.032em; margin-top: 18px; line-height: 1.12; }
.modal-sub { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin: 12px auto 0; max-width: 332px; }
.modal-sub b { color: #fff; font-weight: 700; }
.modal-proof {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; white-space: nowrap;
  font-size: 12.5px; font-weight: 600; color: #c5d0ea;
}
.modal-proof .stars { color: #ffc24d; font-size: 14px; letter-spacing: 2px; }
#optinForm { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; text-align: left; }
.field { position: relative; display: flex; flex-direction: row; align-items: center; }
.field-ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: #6f7da3; pointer-events: none; transition: color .15s ease; }
.field input {
  width: 100%; font-family: inherit; font-size: 15.5px; font-weight: 500; letter-spacing: -0.01em; color: #fff;
  padding: 15px 16px 15px 47px; border-radius: 13px;
  background: rgba(4,8,22,0.72); border: 1px solid rgba(110,207,255,0.2);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder { color: #6b7798; }
.field input:focus { outline: none; border-color: rgba(110,207,255,0.65); background: rgba(4,8,22,0.92); box-shadow: 0 0 0 3px rgba(43,123,255,0.2); }
.field:focus-within .field-ic { color: var(--hi); }
.field input.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,0.16); }
.field:has(input.invalid) .field-ic { color: #ff8d8d; }

/* phone field with country code */
.phone-field { gap: 8px; align-items: stretch; flex-wrap: nowrap; }
.phone-field input { padding-left: 16px; flex: 1 1 0; width: auto; min-width: 0; }
.phone-field .ccode { position: relative; flex: 0 0 auto; display: flex; align-items: center; }
.phone-field .cc-display { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); z-index: 1; pointer-events: none; font-size: 15px; font-weight: 600; color: #fff; }
.phone-field select {
  appearance: none; -webkit-appearance: none; font-family: inherit; font-size: 14.5px; font-weight: 600; color: transparent;
  width: 82px; overflow: hidden;
  padding: 15px 26px 15px 14px; border-radius: 13px; cursor: pointer;
  background: rgba(4,8,22,0.72); border: 1px solid rgba(110,207,255,0.2);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.phone-field select:focus { outline: none; border-color: rgba(110,207,255,0.65); box-shadow: 0 0 0 3px rgba(43,123,255,0.2); }
.phone-field .ccode::after {
  content: ""; position: absolute; right: 12px; top: 50%; width: 8px; height: 8px; pointer-events: none;
  border-right: 1.7px solid #7d8ab0; border-bottom: 1.7px solid #7d8ab0;
  transform: translateY(-65%) rotate(45deg);
}
.phone-field option { background: #0a1124; color: #fff; }

/* SMS consent */
.consent { display: flex; align-items: flex-start; gap: 11px; text-align: left; cursor: pointer; margin-top: 4px; }
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-box {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 6px; margin-top: 1px;
  border: 1px solid rgba(110,207,255,0.42); background: rgba(4,8,22,0.7);
  display: grid; place-items: center; transition: background .15s ease, border-color .15s ease;
}
.consent-box svg { width: 13px; height: 13px; color: #04122e; opacity: 0; transition: opacity .12s ease; }
.consent input:checked + .consent-box { background: var(--grad-soft); border-color: transparent; }
.consent input:checked + .consent-box svg { opacity: 1; }
.consent input:focus-visible + .consent-box { box-shadow: 0 0 0 3px rgba(43,123,255,0.28); }
.consent-text { font-size: 10.5px; line-height: 1.5; color: var(--hint); font-weight: 500; }
.modal .btn { margin-top: 8px; }
.cta-pop {
  position: relative; overflow: hidden;
  animation: ctaPulse 2.2s ease-in-out infinite;
}
.cta-pop::after {
  content: ""; position: absolute; top: 0; left: -65%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: ctaShine 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(110,207,255,0.42), 0 1px 0 rgba(255,255,255,0.5) inset, 0 14px 34px -12px rgba(43,123,255,0.7), 0 0 0 0 rgba(43,123,255,0.5); }
  50%      { box-shadow: 0 0 0 1px rgba(110,207,255,0.6), 0 1px 0 rgba(255,255,255,0.5) inset, 0 20px 48px -10px rgba(43,123,255,0.95), 0 0 30px 5px rgba(43,123,255,0.55); }
}
@keyframes ctaShine {
  0%   { left: -65%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-pop { animation: none; }
  .cta-pop::after { display: none; }
}
.form-error { color: #ff8d8d; font-size: 13px; font-weight: 600; margin: 0; padding-left: 2px; }
.form-error[hidden] { display: none; }
.modal-fine { display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: var(--hint); font-size: 12px; margin-top: 8px; }
.modal-fine svg { width: 14px; height: 14px; color: #6ecfff; opacity: 0.75; flex: 0 0 auto; }
.modal-legal { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; }
.modal-legal a { font-size: 11px; color: #4a5878; transition: color .15s ease; }
.modal-legal a:hover { color: #8ea0c8; }
.modal-legal span { font-size: 11px; color: #2c3650; }

/* ===== Legal pages (privacy / terms) ===== */
.legal-page { max-width: 820px; margin: 0 auto; padding: 30px 28px 100px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--hint); font-size: 14px; font-weight: 500; margin-bottom: 34px; transition: color .15s ease; }
.legal-back:hover { color: var(--hi); }
.legal-page h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -0.032em; }
.legal-eff { color: var(--hint); font-size: 13.5px; margin-top: 14px; letter-spacing: 0.02em; }
.legal-page h2 { font-size: 20px; font-weight: 800; margin-top: 40px; letter-spacing: -0.02em; color: #fff; }
.legal-page h3 { font-size: 15.5px; font-weight: 700; margin-top: 22px; color: #dce6ff; }
.legal-page p { color: var(--muted); font-size: 15.5px; line-height: 1.72; margin-top: 13px; }
.legal-page p strong { color: #eef3ff; font-weight: 700; }
.legal-page a { color: var(--hi); }
.legal-page a:hover { text-decoration: underline; }
.legal-rule { height: 1px; background: var(--line-soft); margin: 30px 0 0; }

/* ===== Legal document popup ===== */
.doc-overlay {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center; padding: 24px;
  background: rgba(2,4,10,0.82); backdrop-filter: blur(7px);
  opacity: 0; transition: opacity .22s ease;
}
.doc-overlay.open { opacity: 1; }
.doc-overlay[hidden] { display: none; }
.doc-box {
  position: relative; width: 100%; max-width: 860px; height: min(86vh, 920px);
  background: #04060f; border: 1px solid rgba(110,207,255,0.26); border-radius: 18px; overflow: hidden;
  box-shadow: 0 44px 110px -30px rgba(0,0,0,0.92), 0 0 130px -50px rgba(43,123,255,0.7);
  transform: translateY(14px) scale(0.985); transition: transform .26s cubic-bezier(.2,.7,.2,1);
}
.doc-overlay.open .doc-box { transform: none; }
.doc-box iframe { width: 100%; height: 100%; border: 0; display: block; background: #04060f; }
.doc-close {
  position: absolute; top: 12px; right: 14px; z-index: 2; width: 38px; height: 38px;
  border: 1px solid rgba(110,207,255,0.3); cursor: pointer; border-radius: 50%; font-size: 22px; line-height: 1;
  color: #eaf1ff; background: rgba(8,14,30,0.82); backdrop-filter: blur(6px);
  transition: background .15s ease, color .15s ease;
}
.doc-close:hover { background: rgba(22,34,66,0.92); color: #fff; }
@media (max-width: 480px) {
  .modal { padding: 32px 20px 24px; }
  .modal h2 { font-size: 22px; }
  .vsl-play { width: 74px; height: 74px; }
}
.final p { margin: 18px auto 30px; max-width: 520px; color: var(--muted); font-size: 17.5px; }

/* ===== Footer ========================================== */
.site-footer { border-top: 1px solid var(--line-soft); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner img { height: 22px; opacity: 0.7; }
.foot-links { display: flex; gap: 26px; }
.foot-links a { font-size: 14px; color: var(--hint); transition: color .15s; }
.foot-links a:hover { color: var(--hi); }
.copy { font-size: 13px; color: var(--hint); }

/* ===== New-copy components ===== */
/* announcement top bar */
.topbar { position: relative; z-index: 5; text-align: center; padding: 12px 0 2px; }
.topbar span { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hint); }
.topbar .dot { width: 6px; height: 6px; }

/* what you'll learn */
.learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.learn { background: rgba(8,14,36,0.6); border: 1px solid rgba(110,207,255,0.16); border-radius: 16px; padding: 30px 28px; position: relative; overflow: hidden; transition: border-color .2s, transform .2s; }
.learn::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(110,207,255,0.5), transparent); }
.learn:hover { border-color: rgba(110,207,255,0.34); transform: translateY(-2px); }
.learn .n { font-size: 13px; font-weight: 800; letter-spacing: 0.14em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.learn h3 { margin-top: 13px; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.26; }
.learn p { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* timeline step kicker + outcome badge */
.step-k { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hi); margin-bottom: 6px; }
.outcome { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; margin-top: 16px; font-size: 13px; color: #dce8ff; padding: 8px 14px; border-radius: 999px; background: rgba(43,123,255,0.10); border: 1px solid rgba(110,207,255,0.3); }
.outcome b { color: #fff; font-weight: 700; }
.outcome .lbl { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hint); }

/* mentor */
.mentor { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 46px; align-items: center; max-width: 1040px; margin: 0 auto; }
.mentor-photo { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 1px solid rgba(110,207,255,0.2); background: linear-gradient(180deg, #0a1230, #05091d); display: grid; place-items: center; box-shadow: var(--shadow); }
.mentor-photo::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(120,170,255,0.05) 0 11px, transparent 11px 22px); }
.mentor-photo .ph { position: relative; font-family: ui-monospace, 'SF Mono', monospace; font-size: 12px; letter-spacing: 0.04em; color: #5f6d92; }
.mentor-body h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.03em; margin-top: 12px; }
.mentor-body p { margin-top: 16px; color: var(--muted); font-size: 15.5px; line-height: 1.62; }
.mentor-stats { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.mentor-stats .s b { display: block; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; background: linear-gradient(180deg, #fff, #6ecfff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mentor-stats .s span { font-size: 12.5px; color: var(--hint); }

/* testimonial cards */
.tcard { background: rgba(8,14,36,0.65); border: 1px solid rgba(110,207,255,0.16); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 14px; transition: border-color .2s, transform .2s; }
.tcard:hover { border-color: rgba(110,207,255,0.32); transform: translateY(-2px); }
.tcard .qstars { color: #ffcc44; font-size: 14px; letter-spacing: 2px; }
.tcard blockquote { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--body); }
.tcard .who { margin-top: 6px; }
.tcard .who .nm { font-weight: 700; color: #fff; font-size: 15px; }
.tcard .who .res { font-size: 12.5px; color: var(--hi); margin-top: 3px; }

/* fit checklist */
.fit { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line-soft); }
.fit-h { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hi); margin-bottom: 16px; text-align: center; }
.fit ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fit li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--body); line-height: 1.45; }
.fit li .ck { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--grad-soft); display: grid; place-items: center; margin-top: 1px; box-shadow: 0 0 0 1px rgba(110,207,255,0.3); }

/* embeds */
.video .vidalytics { position: relative; border-radius: 20px; overflow: hidden; }
/* hero Vidalytics embed — round + clip to sit inside the gradient frame */
.video > div[id] { border-radius: 20px; overflow: hidden; }
/* Typeform: contained, padded, with its own rounded frame so it pops off the card */
.tf-embed {
  width: 100%; margin-top: 26px;
  border-radius: 16px; overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px -28px rgba(0,0,0,0.7);
}
.tf-embed > div {
  width: 100%;
  height: clamp(560px, 70vh, 680px);
}

/* footer disclaimer */
.disclaimer { max-width: 880px; margin: 26px auto 0; font-size: 11.5px; line-height: 1.6; color: #5b6685; text-align: center; }

/* ===== Reference-layout components ===== */
/* section CTA button row */
.sec-cta { display: flex; justify-content: center; margin-top: 44px; }

/* video testimonial column */
.vtest { max-width: 760px; margin: 0 auto; padding: 26px; border: 1px solid rgba(110,207,255,0.26); border-radius: 22px; background: rgba(8,14,36,0.5); }
.vtest .vt { margin-bottom: 34px; }
.vtest .vt:last-child { margin-bottom: 0; }
.vtest .vt h3 { text-align: center; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; max-width: 520px; margin: 0 auto 16px; }
.vt-video { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: radial-gradient(70% 100% at 50% 0%, rgba(43,123,255,0.2), transparent 60%), linear-gradient(180deg,#0a1230,#05091d); display: grid; place-items: center; cursor: pointer; }

.vt-portrait {
  max-width: 330px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(110,207,255,0.26);
  box-shadow: var(--shadow), 0 0 90px -46px rgba(43,123,255,0.7);
  background: #05091d;
}
.vt-portrait wistia-player { display: block; width: 100%; border-radius: 16px; overflow: hidden; }
.vt-land {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(110,207,255,0.26);
  box-shadow: var(--shadow), 0 0 90px -46px rgba(43,123,255,0.7);
  background: #05091d;
}
.vt-land wistia-player { display: block; width: 100%; border-radius: 16px; overflow: hidden; }

/* short-form vertical testimonials — three portrait videos side by side */
.vshorts { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.vshorts .vt { margin: 0; }
.vshorts .vt h3 { text-align: center; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; max-width: 340px; margin: 0 auto 14px; }
@media (max-width: 860px) { .vshorts { grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 760px; } }
@media (max-width: 560px) { .vshorts { grid-template-columns: 1fr; gap: 36px; } }

/* comparison */
.cmp { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; align-items: stretch; }
.cmp-col { display: flex; flex-direction: column; }
.cmp-head { text-align: center; font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px; margin-bottom: 14px; border-radius: 12px; }
.cmp-head.them { color: var(--muted); background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); }
.cmp-head.us { color: #eaf3ff; background: linear-gradient(120deg, rgba(43,123,255,0.3), rgba(30,200,255,0.14)); border: 1px solid rgba(110,207,255,0.4); }
.cmp-logo { display: block; height: 18px; width: auto; margin: 0 auto; }
.cmp-col .cmp-card { flex: 1; }
.cmp-vs { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 4; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 800; letter-spacing: 0.04em; color: #06122c; background: var(--grad-soft); box-shadow: 0 0 0 6px var(--bg), 0 0 0 7px rgba(110,207,255,0.25), 0 12px 30px -8px rgba(43,123,255,0.9); }
.cmp-card { border-radius: 18px; padding: 26px 24px; }
.cmp-card.them { background: rgba(8,14,36,0.55); border: 1px solid var(--line-soft); }
.cmp-card.us { background: linear-gradient(160deg, rgba(43,123,255,0.24), rgba(30,200,255,0.10)); border: 1px solid rgba(110,207,255,0.42); box-shadow: 0 0 80px -36px rgba(43,123,255,0.8); }
.cmp-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.cmp-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; }
.cmp-card.them li { color: var(--muted); }
.cmp-card.us li { color: #eef4ff; }
.ic { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; }

/* process cards (carousel-ish grid) */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* divider + path sub-head inside the merged section */
.path-divider { max-width: 760px; height: 1px; margin: 76px auto 0; background: linear-gradient(90deg, transparent, rgba(110,207,255,0.45), transparent); }
.path-head { text-align: center; max-width: 720px; margin: 0 auto 48px; padding-top: 56px; }
.path-head .eyebrow { display: block; }
.path-head h2 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; letter-spacing: -0.032em; }
.path-head p { margin-top: 16px; color: var(--muted); font-size: 17px; }
.pcard { background: rgba(8,14,36,0.6); border: 1px solid rgba(110,207,255,0.16); border-radius: 18px; overflow: hidden; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; }
.pcard:hover { border-color: rgba(110,207,255,0.34); transform: translateY(-3px); }
.pcard-img { position: relative; aspect-ratio: 4/3; background: repeating-linear-gradient(135deg, rgba(120,170,255,0.06) 0 11px, transparent 11px 22px), linear-gradient(180deg,#0a1230,#05091d); display: grid; place-items: center; }
.pcard-img .ph { font-family: ui-monospace, monospace; font-size: 11px; color: #5f6d92; }
.pcard-body { padding: 24px; }
.pcard .tag { display: inline-flex; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: #cfe0ff; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); margin-bottom: 16px; }
.pcard h3 { font-size: 18px; font-weight: 800; line-height: 1.28; letter-spacing: -0.01em; text-transform: uppercase; }
.pcard p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.pcard .pcard-body { display: flex; flex-direction: column; flex: 1; }
.pproof { margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 9px; font-size: 13px; }
.pproof .lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hi); opacity: 0.8; }
.pproof b { color: #fff; font-weight: 700; }
.proc-foot { max-width: 680px; margin: 38px auto 0; text-align: center; color: var(--muted); font-size: 16.5px; line-height: 1.55; }
.proc-foot b { color: #fff; }
.proc-hint { display: none; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--hint); }
.proc-hint .swipe-dot { width: 18px; height: 4px; border-radius: 999px; background: rgba(110,207,255,0.3); }
.proc-hint .swipe-dot.on { background: var(--cyan); }

/* ===== Modules carousel ===== */
.mod-carousel { position: relative; margin-top: 44px; }
.mod-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 22px; scrollbar-width: none;
}
.mod-track::-webkit-scrollbar { display: none; }
.mod {
  flex: 0 0 332px; scroll-snap-align: start; display: flex; flex-direction: column;
  background: rgba(8,14,36,0.6); border: 1px solid rgba(110,207,255,0.16);
  border-radius: 18px; overflow: hidden; transition: border-color .2s, transform .2s;
}
.mod:hover { border-color: rgba(110,207,255,0.34); transform: translateY(-3px); }
.mod-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background:
    radial-gradient(78% 110% at 50% 0%, rgba(43,123,255,0.26), transparent 62%),
    repeating-linear-gradient(135deg, rgba(120,170,255,0.06) 0 11px, transparent 11px 22px),
    linear-gradient(180deg, #0a1230, #05091d);
  border-bottom: 1px solid var(--line-soft);
}
.mod-num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #cfe0ff; padding: 5px 11px; border-radius: 999px;
  background: rgba(4,8,22,0.72); border: 1px solid var(--line); backdrop-filter: blur(6px);
}
.mod-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left bottom; display: block; }
.mod-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; }
.mod-body .tag { align-self: flex-start; }
.mod-body h3 { font-size: 18.5px; font-weight: 800; line-height: 1.26; letter-spacing: -0.01em; text-transform: uppercase; }
.mod-body p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.mod-arrow {
  position: absolute; top: 33%; transform: translateY(-50%); z-index: 6;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: #06122c; background: var(--grad-soft); border: 0; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(110,207,255,0.4), 0 16px 36px -14px rgba(43,123,255,0.9);
  transition: transform .15s, opacity .2s; }
.mod-arrow:hover { transform: translateY(-50%) scale(1.07); }
.mod-arrow:disabled { opacity: 0.32; cursor: default; transform: translateY(-50%); }
.mod-arrow.prev { left: -14px; }
.mod-arrow.next { right: -14px; }
@media (max-width: 640px) {
  .mod { flex-basis: 80vw; }
  .mod-arrow.prev { left: 4px; }
  .mod-arrow.next { right: 4px; }
}

/* real-screenshot success stories — masonry */
.wins-masonry { columns: 3 300px; column-gap: 16px; max-width: 1040px; margin: 0 auto; }
.winshot {
  margin: 0 0 16px; break-inside: avoid; border-radius: 14px; overflow: hidden;
  background: #0a0a0c; border: 1px solid var(--line-soft);
  box-shadow: 0 18px 50px -34px rgba(0,0,0,0.9);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.winshot:hover { border-color: rgba(110,207,255,0.34); transform: translateY(-3px); box-shadow: 0 24px 60px -30px rgba(0,0,0,0.95), 0 0 60px -38px rgba(43,123,255,0.7); }
.winshot img { display: block; width: 100%; height: auto; }
.winshot-cap {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px;
  padding: 12px 15px; font-size: 13px; font-weight: 600; line-height: 1.35;
  color: var(--muted); border-top: 1px solid var(--line-soft);
  background: rgba(43,123,255,0.06);
}
.winshot-cap b {
  font-weight: 800; font-size: 14.5px; letter-spacing: -0.01em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--cyan);
}
@media (max-width: 640px) { .wins-masonry { columns: 1; } }

/* faq two-column gradient bars — independent flex columns so opening one never reflows the rest */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; max-width: 1020px; margin: 0 auto; }
.faq-col { display: flex; flex-direction: column; gap: 14px; }
.faq-grid details { background: linear-gradient(120deg, rgba(43,123,255,0.18), rgba(70,46,140,0.16)); border: 1px solid rgba(110,207,255,0.24); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-grid details[open] { border-color: rgba(110,207,255,0.48); }
.faq-grid summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; line-height: 1.3; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary .plus { flex: 0 0 auto; color: #fff; font-size: 20px; font-weight: 400; transition: transform .22s; }
.faq-grid details[open] summary .plus { transform: rotate(45deg); }
.faq-grid .answer { padding: 0 20px 18px; color: #cdd8f0; font-size: 14px; line-height: 1.6; }

/* ===== Lower-page ambient gradients (carry the glow past the hero) ===== */
.section, .final { position: relative; }
.section > .wrap, .final > .wrap { position: relative; z-index: 1; }

/* gradient divider above the "how it works" section */
#how::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1040px, 92%); height: 1px; z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(110,207,255,0.55), transparent);
}
/* soft blue bloom rising into the timeline */
#how::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 920px; z-index: 0;
  pointer-events: none;
  background: radial-gradient(58% 62% at 50% 2%, rgba(43,123,255,0.24), rgba(43,123,255,0.07) 44%, transparent 74%);
}
/* glow behind client wins */
#wins::after {
  content: ""; position: absolute; left: 0; right: 0; top: 8%; height: 70%; z-index: 0;
  pointer-events: none;
  background: radial-gradient(60% 70% at 50% 50%, rgba(30,160,255,0.10), transparent 70%);
}
/* glow rising under the final CTA */
.final::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(64% 120% at 50% 116%, rgba(43,123,255,0.22), rgba(43,123,255,0.06) 46%, transparent 72%);
}

/* ===== Fullscreen — stop other layers bleeding over the fullscreen video ===== */
body.fs-active .bg-wrap,
body.fs-active .apply-wrap,
body.fs-active iframe { visibility: hidden !important; }
/* but never hide anything inside the fullscreen element itself */
:fullscreen, :fullscreen *, :-webkit-full-screen, :-webkit-full-screen * { visibility: visible !important; }
body.fs-active .bg-wave,
body.fs-active .bg-cloud { animation: none !important; }

/* ===== Reveal — base VISIBLE; animate only under no-preference ===== */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-wave, .bg-cloud, .dot { animation: none; }
}

/* ===== Responsive ====================================== */
@media (max-width: 960px) {
  .nav { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .wins-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  /* process cards become a swipeable slider */
  .proc-grid {
    display: flex; grid-template-columns: none;
    gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin: 0 -20px; padding: 4px 20px 6px;
    scroll-padding-left: 20px;
  }
  .proc-grid::-webkit-scrollbar { display: none; }
  .proc-grid .pcard {
    flex: 0 0 82%; scroll-snap-align: start; min-width: 0;
  }
  .proc-hint { display: flex; }
  .cmp { grid-template-columns: 1fr; }
  .cmp-vs { display: none; }
  .chat-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .mentor { grid-template-columns: 1fr; gap: 30px; }
  .mentor-photo { max-width: 340px; margin: 0 auto; width: 100%; }
  .section { padding: 48px 0; }
  /* hero rhythm on tablet/mobile */
  .hero { padding: 30px 0 30px; }
  .hero h1 { margin-top: 18px; max-width: 600px; }
  .hero .sub { margin-top: 14px; font-size: 16px; }
  .video { margin-top: 30px; }
  .hero .pill, .apply-wrap .pill { font-size: 14px; padding: 9px 18px 9px 15px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .row2 { grid-template-columns: 1fr; }
  .brand img { height: 24px; }
  .header-inner { padding: calc(56px + env(safe-area-inset-top, 0px)) 0 6px; }
  .hero { padding: 18px 0 24px; }
  .hero h1 { font-size: 30px; margin-top: 14px; }
  .hero .sub { margin-top: 12px; font-size: 15px; max-width: 360px; }
  .video { margin-top: 24px; }
  .hero .pill, .apply-wrap .pill { font-size: 12.5px; padding: 8px 15px 8px 13px; }
  .app-card { padding: 24px 16px; }
  .tf-embed { margin-top: 20px; border-radius: 14px; }
  .tf-embed > div { height: clamp(600px, 78vh, 720px); }
  .tl-num { width: 44px; height: 44px; font-size: 18px; }
  .timeline::before { left: 21px; }
  .tl-item { gap: 18px; }
  .logos { gap: 12px 22px; }
  .logos span { font-size: 15px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 18px; }
  .foot-links { flex-wrap: wrap; justify-content: center; }
  /* >=16px so iOS Safari does not zoom in when a field is focused */
  .field input, .phone-field select, .input, textarea.input { font-size: 16px; }
}
