/* Winning Streak - landing pages
   Palette + type per "Winning Streak - Motion Brand" (LOCKED v1, 2026-07-10).
   Dark glass, green glow. Green is the accent, not the everything. */

/* Tokens are the paste-ready block from the Winning Streak Brand Spec for Web
   (Brand locked v1, 2026-07-10). Values are literal per that doc. */
:root {
  /* ground + glass */
  --bg: #100F18;             /* page background (faint violet cast is the ground, not an accent) */
  --bg-2: #0C0B13;
  --glass: rgba(15, 17, 23, 0.58);
  --glass-bord: rgba(255, 255, 255, 0.14);

  /* brand colour */
  --green: #63C24A;          /* THE signature - glow, bars, tags, links, active states */
  --green-lift: #7FD167;
  --green-glow: rgba(99, 194, 74, 0.55);
  --green-glow-soft: rgba(99, 194, 74, 0.30);
  --cream: #F4ECD6;          /* ALL display type: headings, titles */
  --white: #FFFFFF;          /* big stat numbers, highest-emphasis only */
  --body: #E9E9F1;           /* standard body text */
  --gold: #FFC93C;           /* sparkle motif only, rare */
  --orange: #E4602A;         /* rare secondary / warnings, not everyday */

  --num: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.60);
  --muted-2: rgba(255, 255, 255, 0.38);

  /* shape */
  --radius: 22px;            /* panels, cards, tiles */
  --radius-pill: 999px;      /* pills, tags, buttons */
  --maxw: 1180px;

  /* tracking - always a touch tighter than default; this is most of the premium feel */
  --track-display: -0.025em;
  --track-tile: -0.02em;
  --track-body: -0.006em;
  --track-label: 0.06em;     /* the one place we open it up: uppercase labels */

  /* motion - snappy but smooth, confident not frantic */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);      /* entrances: fade + rise */
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1); /* numbers: slight overshoot */
  --dur-enter: 420ms;
  --dur-pop: 520ms;

  /* Helvetica Neue is the brand face. Native on Mac/iOS (most of the AU 18-28 ICP);
     Arial is the metric-close fallback on Windows/Android. Do NOT swap for Inter/
     Poppins/Space Grotesk - that changes the brand. */
  --sans: 'Helvetica Neue', Helvetica, -apple-system, 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: var(--track-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* prices, stats, any digits that should line up */
.val, .prop-num, .stat b, .trow .strike, .trow.final b { font-variant-numeric: tabular-nums; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; margin: 0 auto; }
.center { text-align: center; }

/* green emphasis inside a cream heading - the guide's hero device
   ("runs on green glow, not purple") */
.g { color: var(--green); }

/* TitleScene, per the motion guide: cream glowing title, green underline.
   The title stays cream - the underline is what carries the green. */
.g-u { position: relative; color: var(--cream); white-space: nowrap; }
.g-u::after { content: ''; position: absolute; left: 0; right: 0; bottom: -0.12em;
  height: 3px; border-radius: 2px; background: var(--green);
  box-shadow: 0 0 14px rgba(99,194,74,.75); }

/* ---------- placeholder marker ---------- */
.ph { position: relative; border: 1px dashed rgba(99,194,74,.42) !important;
  background: repeating-linear-gradient(45deg, #0E1017, #0E1017 10px, #12141C 10px, #12141C 20px) !important; }
.ph::before {
  content: 'PLACEHOLDER'; position: absolute; top: 10px; right: 10px; z-index: 3;
  font-size: 8.5px; font-weight: 500; letter-spacing: .1em;
  color: var(--green); border: 1px solid rgba(99,194,74,.35);
  border-radius: 4px; padding: 3px 6px; background: var(--bg);
}

/* ---------- buttons ---------- */
/* buttons are full pills per the spec */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: #07130A; font-family: var(--sans);
  font-weight: 500; font-size: 15px; letter-spacing: var(--track-tile);
  padding: 13px 24px; border: 0; border-radius: var(--radius-pill); cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { background: var(--green-lift); transform: translateY(-1px);
  box-shadow: 0 0 34px rgba(99,194,74,.42); }
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.btn-lg { width: 100%; padding: 20px 28px; font-size: 18px; }
.btn-arrow { width: 24px; height: 24px; border-radius: 50%;
  background: rgba(7,19,10,.16);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
/* the green glow - signature */
.btn-glow { box-shadow: 0 0 44px rgba(99,194,74,.45); }

/* ---------- sections ---------- */
section { padding: 100px 0; }
.tag { display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); border: 1px solid rgba(99,194,74,.30); border-radius: 100px;
  padding: 6px 13px; margin-bottom: 20px; }
h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.15;
  letter-spacing: var(--track-tile); font-weight: 700; color: var(--cream);
  margin-bottom: 16px; text-wrap: balance; }
.lede { color: var(--muted); font-size: 16.5px; line-height: 1.65; max-width: 620px; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- hero ---------- */
.hero { padding: 56px 0 76px; position: relative;
  background: radial-gradient(900px 460px at 50% -8%, rgba(99,194,74,.16), transparent 70%); }
.hero-in { max-width: 820px; margin: 0 auto; text-align: center; }
/* the main headline is the hero display, per the spec's larger scale */
h1 { font-size: clamp(44px, 7vw, 76px); line-height: 1.02;
  letter-spacing: var(--track-display); font-weight: 700; color: var(--cream);
  margin-bottom: 20px; text-wrap: balance;
  /* cream title glow, TitleScene */
  text-shadow: 0 0 26px rgba(99,194,74,.28), 0 6px 24px rgba(0,0,0,.5); }
.ty-hero h1 { font-size: clamp(36px, 5vw, 56px); }  /* thank-you headline uses H1, not hero, scale */
.hero-sub { color: var(--muted); font-size: 18px; line-height: 1.6;
  max-width: 620px; margin: 0 auto 30px; }

/* video - vertical VSL (9:16). Centred, capped so it doesn't dominate desktop;
   near full-width on mobile where the page is really aimed. */
.vsl-wrap { width: 100%; max-width: 380px; margin: 0 auto 30px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--glass-bord);
  box-shadow: 0 0 70px rgba(99,194,74,.18); }
.vsl-wrap > div { border-radius: var(--radius); overflow: hidden; }
/* CTA sits above the video; cap its width so it doesn't span the full hero */
.hero-cta { max-width: 420px; margin: 4px auto 30px; }
/* second CTA, under the IMPORTANT line */
.hero-cta-2 { margin: 22px auto 0; }

/* hero props - StatScene per the motion guide:
   numeral scale-pops in white with a glow, label sits in a dark pill. */
.props { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 780px; margin: 34px auto 0; }
@media (max-width: 720px) { .props { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.prop { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; }
.prop-num { font-size: clamp(28px, 3vw, 36px); font-weight: 700; color: var(--white);
  letter-spacing: -0.045em; line-height: 1;
  text-shadow: 0 0 26px rgba(255,255,255,.34); }
.prop-label { font-size: 11.5px; color: var(--body); font-weight: 500; line-height: 1.2;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bord); border-radius: 100px;
  padding: 7px 14px; letter-spacing: -0.005em; }

/* important line - orange is the warning colour, used here and nowhere else on p1 */
.important { font-size: 15.5px; color: var(--muted); line-height: 1.55;
  max-width: 680px; margin: 30px auto 0; }
.important b { color: var(--orange); font-weight: 700; }

/* ---------- marquee ---------- */
.marquee-sec { padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.marquee-label { font-size: 10px; letter-spacing: .2em; font-weight: 500;
  text-transform: uppercase; color: var(--muted-2); text-align: center; margin-bottom: 22px; }
.marquee { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 58px; width: max-content; animation: slide 26s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }
.mlogo { font-size: 19px; font-weight: 700; color: var(--muted); opacity: .55;
  letter-spacing: -0.028em; white-space: nowrap; }
.mlogo.forbes { opacity: .8; color: var(--cream); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bord); border-radius: 18px; padding: 32px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s; }
.step:hover { border-color: rgba(99,194,74,.35); transform: translateY(-3px); }
/* ListScene number chip: glass square, green glow, cream numeral */
.step-n { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: var(--cream); letter-spacing: -0.05em;
  background: rgba(99,194,74,.07); border: 1px solid rgba(99,194,74,.30);
  box-shadow: 0 0 22px rgba(99,194,74,.20), inset 0 0 18px rgba(99,194,74,.06); }
.step-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.step-badge { font-size: 9.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); border: 1px solid rgba(99,194,74,.28); border-radius: 100px; padding: 5px 10px; }
.step h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.032em;
  color: var(--cream); margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 18px; }
.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill { display: inline-flex; align-items: center; gap: 6px;
  background: rgba(99,194,74,.08); border: 1px solid rgba(99,194,74,.26);
  color: var(--green-lift); border-radius: 100px; padding: 6px 12px;
  font-size: 12px; font-weight: 500; }
.pill-check { color: var(--green); font-size: 10px; }

/* ---------- value stack ---------- */
.stack { max-width: 780px; margin: 56px auto 0;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bord); border-radius: 18px; overflow: hidden; }
.stack-head { display: flex; justify-content: space-between; align-items: center;
  padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(99,194,74,.05); }
.stack-head b { font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); font-weight: 500; }
.stack-head span { font-size: 12.5px; color: var(--muted-2); }
.item { display: flex; align-items: center; gap: 16px; padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07); }
.item-ico { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(99,194,74,.10); border: 1px solid rgba(99,194,74,.26);
  color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 14px; }
.item-txt { flex: 1; }
.item-txt h4 { font-size: 15.5px; font-weight: 700; color: var(--cream);
  letter-spacing: -0.02em; margin-bottom: 3px; }
.item-txt p { color: var(--muted-2); font-size: 13px; line-height: 1.5; }
.item .val { font-size: 18px; font-weight: 700; color: var(--num);
  letter-spacing: -0.03em; white-space: nowrap; }
.totals { padding: 18px 24px; background: rgba(99,194,74,.05); }
.trow { display: flex; justify-content: space-between; align-items: center; }
.trow + .trow { margin-top: 10px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.trow span { color: var(--muted); font-size: 14.5px; }
.trow .strike { font-size: 20px; font-weight: 700; color: var(--muted-2);
  text-decoration: line-through; letter-spacing: -0.03em; }
.trow.final span { color: var(--cream); font-size: 16px; font-weight: 500; }
.trow.final b { font-size: 34px; font-weight: 700; color: var(--green);
  letter-spacing: -0.04em; }
.stack-foot { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.08); }
/* gold = sparkle only. This scarcity line is the one place it appears on page 1. */
.scarcity { font-size: 13px; color: var(--gold); margin-bottom: 16px;
  line-height: 1.5; text-align: center; }
.sub-note { text-align: center; color: var(--muted-2); font-size: 12px; margin-top: 12px; }
.sub-note b { color: var(--muted); font-weight: 500; }

/* ---------- founder ---------- */
.founder { background: var(--bg-2); }
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }
.founder-img { aspect-ratio: 3/4; border-radius: 18px; position: sticky; top: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); font-size: 13px; text-align: center; overflow: hidden;
  border: 1px solid var(--glass-bord); }
.founder-img.ph { padding: 24px; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-img::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(11,13,18,.48)); }
@media (max-width: 900px) { .founder-img { position: static; aspect-ratio: 16/10; } }
.quote { font-size: 44px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 10px; }
.founder-body p { color: var(--body); font-size: 16px; line-height: 1.72; margin-bottom: 17px; }
.founder-body p b { color: var(--cream); font-weight: 700; }
.founder-body p .hl { color: var(--green); font-weight: 700; }
.founder-body ul { margin: 0 0 17px 0; list-style: none; }
.founder-body li { color: var(--body); font-size: 15.5px; margin-bottom: 9px;
  padding-left: 24px; position: relative; }
.founder-body li::before { content: '✓'; position: absolute; left: 0;
  color: var(--green); font-size: 12px; font-weight: 700; }
/* lower third, per the motion guide: glass pill, green bar left,
   cream name, green role under it */
.sig { display: inline-block; margin-top: 30px; padding: 12px 20px 12px 16px;
  border-radius: 10px; position: relative;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bord);
  box-shadow: 0 0 26px rgba(99,194,74,.14); }
.sig::before { content: ''; position: absolute; left: 8px; top: 12px; bottom: 12px;
  width: 3px; border-radius: 2px; background: var(--green);
  box-shadow: 0 0 10px rgba(99,194,74,.85); }
.sig b { display: block; font-size: 20px; font-weight: 700; color: var(--cream);
  letter-spacing: -0.035em; line-height: 1.1; }
.sig span { font-size: 12px; font-weight: 500; color: var(--green);
  letter-spacing: -0.01em; text-transform: none; }

/* ---------- lifestyle grid ---------- */
.life-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
@media (max-width: 900px) { .life-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .life-grid { grid-template-columns: 1fr; } }
.life-item { position: relative; aspect-ratio: 3/4; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--glass-bord); }
.life-item img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease; }
.life-item:hover img { transform: scale(1.04); }
.life-item::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(11,13,18,.16) 62%, rgba(11,13,18,.88) 100%); }
.life-cap { position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 10.5px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cream); }
/* green accent bar - per the guide, this is exactly what green is for */
.life-cap::before { content: ''; display: inline-block; width: 14px; height: 2px;
  background: var(--green); vertical-align: middle; margin-right: 8px; }

/* ---------- results ---------- */
/* full StatScene: green tag-pill, glowing white numeral, dark label pill */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 52px 0 26px; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; padding: 26px 14px; }
.stat .stat-tag { display: inline-flex; align-items: center; gap: 6px;
  font-size: 9.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); background: rgba(99,194,74,.10);
  border: 1px solid rgba(99,194,74,.34); border-radius: 100px; padding: 5px 11px; }
.stat .stat-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px rgba(99,194,74,.9); }
.stat b { display: block; font-size: clamp(44px, 6vw, 64px); font-weight: 700;
  color: var(--white); letter-spacing: var(--track-display); line-height: 1;
  text-shadow: 0 0 30px rgba(255,255,255,.34); }
.stat span { font-size: 11.5px; color: var(--body); font-weight: 500;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bord); border-radius: 100px; padding: 7px 14px; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
@media (max-width: 820px) { .shots { grid-template-columns: 1fr; } }
.shot { aspect-ratio: 4/5; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); font-size: 12.5px; text-align: center; padding: 20px; }

/* ---------- course preview ---------- */
.modules { max-width: 820px; margin: 52px auto 0;
  border: 1px solid var(--glass-bord); border-radius: 18px; overflow: hidden; }
.mod-head { padding: 15px 24px; background: rgba(99,194,74,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; }
.mod-head b { font-size: 14px; font-weight: 700; color: var(--cream); letter-spacing: -0.02em; }
.mod-head span { font-size: 10.5px; color: var(--muted-2); letter-spacing: .12em; font-weight: 500; }
.mod { display: flex; align-items: center; gap: 14px; padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: var(--glass); backdrop-filter: blur(12px); }
.mod:last-child { border-bottom: 0; }
/* ListScene chip, small */
.mod-n { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(99,194,74,.07); border: 1px solid rgba(99,194,74,.30);
  box-shadow: 0 0 14px rgba(99,194,74,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--cream); letter-spacing: -0.03em; }
.mod-t { flex: 1; font-size: 14.5px; color: var(--body); }
.mod-d { font-size: 11px; color: var(--muted-2); font-weight: 500; }

/* ---------- faq accordion ---------- */
.faq { max-width: 820px; margin: 52px auto 0; display: grid; gap: 10px; }
details.q { background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.09); border-radius: 12px; overflow: hidden;
  transition: border-color .2s; }
details.q[open] { border-color: rgba(99,194,74,.28); }
details.q summary { list-style: none; cursor: pointer; padding: 19px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15.5px; font-weight: 500; color: var(--cream);
  letter-spacing: -0.018em; transition: color .2s; }
details.q summary::-webkit-details-marker { display: none; }
details.q summary:hover { color: var(--green); }
.chev { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(99,194,74,.3); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; transition: transform .25s, background .2s; }
details.q[open] .chev { transform: rotate(180deg); background: rgba(99,194,74,.14); }
.q-body { padding: 0 22px 20px; }
.q-body p { color: var(--muted); font-size: 14.5px; line-height: 1.68; margin-bottom: 11px; }
.q-body p:last-child { margin-bottom: 0; }

/* ---------- final cta ---------- */
.final-panel { max-width: 900px; margin: 0 auto; text-align: center;
  border-radius: 22px; padding: 62px 40px;
  background: radial-gradient(600px 260px at 50% 120%, rgba(99,194,74,.28), rgba(15,17,23,.4));
  border: 1px solid rgba(99,194,74,.3); }
.final-panel h2 { margin-bottom: 26px; }
.final-panel .btn { max-width: 420px; margin: 0 auto; }

/* ---------- footer ---------- */
footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,.07); text-align: center; }
footer p { color: var(--muted-2); font-size: 12.5px; }
footer a { color: var(--muted); text-decoration: underline; margin: 0 4px; }

/* ================= MODAL ================= */
.modal-backdrop { position: fixed; inset: 0; z-index: 100;
  background: rgba(5,6,9,.86); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.open { display: flex; }
/* dark glass, not white - the brand is a dark-glass system */
.modal { background: rgba(18,20,28,.96); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bord); color: var(--body);
  border-radius: 16px; width: 100%; max-width: 500px; padding: 32px;
  position: relative; animation: pop .22s ease-out;
  box-shadow: 0 0 80px rgba(99,194,74,.14); }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }
.modal h3 { font-size: 25px; font-weight: 700; letter-spacing: -0.035em;
  line-height: 1.15; margin-bottom: 22px; padding-right: 34px; color: var(--cream); }
.modal h3 .m-accent { color: var(--green); }
.modal-close { position: absolute; top: 18px; right: 18px;
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--glass-bord);
  cursor: pointer; background: rgba(255,255,255,.06); color: var(--muted);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; }
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--cream); }
.m-field { position: relative; margin-bottom: 11px; }
.m-field .m-ico { position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--muted-2); font-size: 14px; pointer-events: none; }
.m-field input { width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid var(--glass-bord); border-radius: 9px;
  padding: 15px 15px 15px 44px; font-size: 15px; font-family: var(--sans);
  color: var(--cream); letter-spacing: -0.011em;
  transition: border-color .2s, background .2s; }
.m-field input::placeholder { color: var(--muted-2); }
.m-field input:focus { outline: none; border-color: var(--green);
  background: rgba(99,194,74,.05); }

/* phone + country code */
.phone-row { display: flex; gap: 8px; margin-bottom: 11px; }
.cc-wrap { position: relative; flex-shrink: 0; }
.cc-wrap select { appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.04); border: 1px solid var(--glass-bord);
  border-radius: 9px; padding: 15px 30px 15px 14px;
  font-size: 15px; font-family: var(--sans); color: var(--cream);
  cursor: pointer; height: 100%; transition: border-color .2s, background .2s; }
.cc-wrap select:focus { outline: none; border-color: var(--green); }
.cc-wrap select option { background: #12141C; color: var(--cream); }
.cc-caret { position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--muted-2); font-size: 10px; }
.phone-row .m-field { flex: 1; margin-bottom: 0; }

.modal .btn { width: 100%; padding: 16px; font-size: 16px; margin-top: 7px; }
.m-secure { display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 15px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.m-legal { text-align: center; font-size: 11px; color: var(--muted-2);
  margin-top: 7px; line-height: 1.5; }
.m-legal a { color: var(--muted); text-decoration: underline; }

/* ================= THANK YOU PAGE ================= */
/* orange is the warning colour - this page is its one legitimate use */
.ty-hero { padding: 60px 0 30px; text-align: center;
  background: radial-gradient(800px 380px at 50% -8%, rgba(228,96,42,.18), transparent 70%); }
.badge { display: inline-flex; align-items: center; gap: 8px;
  background: rgba(228,96,42,.10); border: 1px solid rgba(228,96,42,.38);
  color: var(--orange); border-radius: 100px; padding: 7px 15px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 22px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.ty-hero h1 { max-width: 840px; margin: 0 auto 18px; }
.ty-steps { max-width: 880px; margin: 46px auto 0; display: grid; gap: 18px; }
.ty-step { background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 30px; }
.ty-step.hot { border-color: rgba(228,96,42,.42); background: rgba(228,96,42,.05); }
.ty-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
/* ListScene chip */
.ty-n { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(99,194,74,.07); border: 1px solid rgba(99,194,74,.30);
  box-shadow: 0 0 18px rgba(99,194,74,.18);
  color: var(--cream); font-weight: 700; font-size: 16px; letter-spacing: -0.04em;
  display: flex; align-items: center; justify-content: center; }
/* step 1 is the warning step - orange, per the guide's warning role */
.ty-step.hot .ty-n { background: rgba(228,96,42,.10); border-color: rgba(228,96,42,.42);
  box-shadow: 0 0 18px rgba(228,96,42,.22); }
.ty-head h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.032em; color: var(--cream); }
.ty-step > p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 11px; }
.ty-step > p b { color: var(--cream); font-weight: 700; }
.ty-step > p:last-child { margin-bottom: 0; }
.vidgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 18px; }
@media (max-width: 720px) { .vidgrid { grid-template-columns: 1fr; } }
.vid { display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; padding: 13px 15px; font-size: 13.5px; color: var(--body);
  transition: border-color .2s; }
.vid:hover { border-color: rgba(99,194,74,.4); }
.vid-play { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: #07130A; display: flex;
  align-items: center; justify-content: center; font-size: 9px; padding-left: 2px; }
.remember { max-width: 880px; margin: 0 auto; text-align: center;
  border-radius: 18px; padding: 40px;
  background: radial-gradient(500px 220px at 50% 130%, rgba(99,194,74,.26), rgba(15,17,23,.4));
  border: 1px solid rgba(99,194,74,.3); }
.remember h3 { font-size: 27px; font-weight: 700; letter-spacing: -0.035em;
  color: var(--cream); margin-bottom: 12px; }
.remember p { color: var(--muted); font-size: 16px; line-height: 1.65;
  max-width: 580px; margin: 0 auto; }
.remember p b { color: var(--green); font-weight: 700; }

/* ================= MOTION & FOCUS (Brand Spec §5, §7) ================= */

/* keyboard focus: green ring on every interactive element */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible {
  outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px;
}

/* entrances: fade + rise ~16px, revealed on scroll via IntersectionObserver.
   Elements start hidden only when JS is present (.js on <html>), so no-JS
   visitors still see everything. */
.js .reveal { opacity: 0; transform: translateY(16px);
  transition: opacity var(--dur-enter) var(--ease), transform var(--dur-enter) var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* list items / grids stagger ~80ms apart */
.js .reveal.s1 { transition-delay: .08s; }
.js .reveal.s2 { transition-delay: .16s; }
.js .reveal.s3 { transition-delay: .24s; }

/* big numbers scale-pop with a slight overshoot */
.js .pop { opacity: 0; transform: scale(.86);
  transition: opacity var(--dur-pop) var(--ease), transform var(--dur-pop) var(--ease-pop); }
.js .pop.in { opacity: 1; transform: none; }

/* TitleScene underline grows in via scaleX */
.js .g-u::after { transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-enter) var(--ease) .12s; }
.js .g-u.in::after { transform: scaleX(1); }

/* Required: honour reduced-motion - drop to a plain fade, no transforms */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .pop { transform: none !important; transition: opacity 200ms linear; }
  .js .g-u::after { transform: none !important; transition: none; }
  .btn:hover, .step:hover, .life-item:hover img { transform: none; }
  * { scroll-behavior: auto; }
}
