/* ==========================================================================
   GODMODE — design tokens & shared components
   ========================================================================== */

:root{
  --void:      #0B0D10;
  --void-2:    #0E1116;
  --panel:     #14171D;
  --panel-2:   #191D24;
  --line:      rgba(237,239,242,0.09);
  --line-soft: rgba(237,239,242,0.05);

  --cheat:      #39FF88;
  --cheat-dim:  #1F8F52;
  --cheat-ink:  #06130B;
  --overclock:  #FF3D81;
  --overclock-dim: #7A1F44;

  --chalk: #EDEFF2;
  --slate: #93A0B4;
  --slate-dim: #5B6472;

  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1180px;
  --radius: 3px;

  --cut: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  --cut-sm: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--void);
  color: var(--chalk);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font: inherit; color: inherit; }

::selection{ background: var(--cheat); color: var(--cheat-ink); }

:focus-visible{
  outline: 2px solid var(--cheat);
  outline-offset: 3px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* background texture: faint scanlines + grid, very subtle */
body::before{
  content:"";
  position: fixed;
  inset:0;
  pointer-events:none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(237,239,242,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,239,242,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
}

main, header, section, footer{ position: relative; z-index: 1; }

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cheat);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 7px; height: 7px;
  background: var(--cheat);
  box-shadow: 0 0 8px var(--cheat);
  display:inline-block;
}
.eyebrow.pink{ color: var(--overclock); }
.eyebrow.pink::before{ background: var(--overclock); box-shadow: 0 0 8px var(--overclock); }
.eyebrow.slate{ color: var(--slate); }
.eyebrow.slate::before{ background: var(--slate); box-shadow:none; }
.eyebrow.center{ justify-content:center; }

/* ---------- headings ---------- */
.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .eyebrow{ margin-bottom: 14px; }
h2.display{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head p{ color: var(--slate); font-size: 17px; }

/* ---------- buttons ---------- */
.btn{
  --pad-y: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: var(--pad-y) 30px;
  clip-path: var(--cut);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(100deg, var(--cheat) 0%, #8DFFC0 100%);
  color: var(--cheat-ink);
  box-shadow: 0 0 0 1px rgba(57,255,136,0.35), 0 18px 40px -12px rgba(57,255,136,0.45);
}
.btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.btn-primary:active{ transform: translateY(0); }
.btn-ghost{
  background: transparent;
  color: var(--chalk);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-ghost:hover{ box-shadow: inset 0 0 0 1px var(--cheat); color: var(--cheat); }
.btn-block{ width: 100%; }
.btn-sm{ --pad-y: 12px; font-size: 13px; padding: var(--pad-y) 20px; }

.trust-row{
  display:flex; flex-wrap: wrap; gap: 18px 26px;
  justify-content: center;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate);
  text-transform: uppercase;
}
.trust-row span{ display:inline-flex; align-items:center; gap:8px; }
.trust-row span::before{ content:"✓"; color: var(--cheat); font-weight:700; }

/* ---------- hud frame (signature framing device) ---------- */
.hud{
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
}
.hud::before, .hud::after,
.hud .hud-c2::before, .hud .hud-c2::after{
  content:"";
  position:absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--cheat);
  z-index: 2;
}
.hud::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.hud::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }
.hud .hud-c2{ position:absolute; inset:0; pointer-events:none; }
.hud .hud-c2::before{ top:-1px; right:-1px; border-left:none; border-bottom:none; }
.hud .hud-c2::after{ bottom:-1px; left:-1px; border-right:none; border-top:none; }

/* ---------- hero ---------- */
.hero{
  padding: 96px 0 88px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(57,255,136,0.10), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 10%, rgba(255,61,129,0.08), transparent 60%);
}
.boot-line{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.boot-line .blink{ color: var(--cheat); animation: blink 1.1s steps(1) infinite; }
@keyframes blink{ 50%{ opacity: 0; } }

.hero h1{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 6.4vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 920px;
  margin: 0 auto 22px;
}
.hero h1 em{
  font-style: normal;
  background: linear-gradient(100deg, var(--cheat), #B9FFDA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.badge-stamp{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--cheat-ink);
  background: var(--cheat);
  padding: 8px 16px;
  clip-path: var(--cut-sm);
  margin: 0 auto 26px;
  transform: rotate(-1.2deg);
}

.hero-sub{
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 18px;
}
.hero-sub strong{ color: var(--chalk); }

.stack-pills{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  margin-bottom: 34px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
}
.stack-pills span{
  border:1px solid var(--line);
  padding: 8px 14px;
  background: var(--panel);
}
.stack-pills b{ color: var(--chalk); font-weight: 600; }

/* video / vsl frame */
.vsl{
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 6px;
}
.vsl-chrome{
  display:flex; align-items:center; gap:8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-dim);
}
.vsl-chrome .dot{ width:9px; height:9px; border-radius:50%; background: var(--slate-dim); }
.vsl-chrome .dot:nth-child(1){ background:#FF5F57; }
.vsl-chrome .dot:nth-child(2){ background:#FEBC2E; }
.vsl-chrome .dot:nth-child(3){ background:#28C840; }
.vsl-chrome .url{ margin-left:8px; color: var(--slate); }
.vsl-body{
  position: relative;
  aspect-ratio: 16/9;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(57,255,136,0.14), transparent 60%),
    linear-gradient(160deg, #101319, #0A0C10);
  display:flex; align-items:center; justify-content:center;
}
.play-btn{
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(237,239,242,0.08);
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.play-btn:hover{ transform: scale(1.06); background: rgba(57,255,136,0.14); }
.play-btn svg{ margin-left:4px; }
.vsl-caption{
  position:absolute; left:16px; bottom:14px;
  font-family: var(--font-mono); font-size:11px; color: var(--slate);
  white-space: nowrap;
}
.vsl-time{
  position:absolute; right:16px; bottom:14px;
  font-family: var(--font-mono); font-size:11px; color: var(--slate);
}
@media (max-width: 480px){
  .vsl-caption{ left:12px; bottom:32px; font-size:10px; }
  .vsl-time{ right:12px; bottom:12px; font-size:10px; }
}

/* ---------- sections generic ---------- */
.section{ padding: 96px 0; }
.section.tight{ padding: 72px 0; }
.section.alt{ background: var(--void-2); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }

/* ---------- growth stack intro icons ---------- */
.stack-intro{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto 64px;
}
.stack-intro-item{
  text-align:center;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px 16px;
  position: relative;
}
.stack-intro-item .idx{
  position:absolute; top:10px; left:12px;
  font-family: var(--font-mono); font-size:11px; color: var(--slate-dim);
}
.stack-intro-item .ic{ font-size: 26px; margin-bottom:10px; }
.stack-intro-item h3{ font-family: var(--font-display); text-transform:uppercase; font-size:15px; letter-spacing:.04em; margin-bottom:4px; }
.stack-intro-item p{ color: var(--slate); font-size: 13px; }
.stack-intro-item + .stack-intro-item::before{ content:none; }

@media (max-width: 720px){
  .stack-intro{ grid-template-columns: 1fr; }
}

/* ---------- feature cards (module detail) ---------- */
.modules{ display:flex; flex-direction:column; gap:20px; max-width: 900px; margin: 0 auto; }
.module{
  border:1px solid var(--line);
  background: var(--panel);
  padding: 32px;
  display:grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  position: relative;
  overflow:hidden;
}
.module::after{
  content:"";
  position:absolute; left:0; top:0; bottom:0; width:3px;
  background: var(--cheat);
}
.module-num{
  font-family: var(--font-mono);
  color: var(--cheat);
  font-size: 13px;
  border: 1px solid rgba(57,255,136,0.35);
  width: 44px; height:44px;
  display:flex; align-items:center; justify-content:center;
}
.module-head{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:6px; }
.module h3{ font-family: var(--font-display); text-transform:uppercase; font-size: 22px; letter-spacing:.01em; }
.module .value-tag{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--overclock);
  border:1px solid rgba(255,61,129,0.35);
  padding: 4px 10px;
  white-space:nowrap;
}
.module .tagline{ color: var(--slate); margin-bottom: 16px; font-size:15px; }
.module ul{ display:flex; flex-direction:column; gap:9px; }
.module ul li{
  font-size: 14.5px;
  color: var(--chalk);
  padding-left: 22px;
  position: relative;
}
.module ul li::before{
  content:"▸"; position:absolute; left:0; color: var(--cheat);
}
.module .note{ margin-top:14px; color: var(--slate); font-size:13px; font-style: italic; }

@media (max-width: 640px){
  .module{ grid-template-columns: 1fr; padding: 24px; }
  .module-num{ display:none; }
}

/* ---------- bonuses ---------- */
.bonuses{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto 20px; }
.bonus-card{
  border:1px solid var(--line); background: var(--panel); padding: 26px;
}
.bonus-card .tag{
  display:inline-block; font-family: var(--font-mono); font-size:11px; letter-spacing:.08em;
  color: var(--overclock); border:1px solid rgba(255,61,129,0.35); padding:4px 10px; margin-bottom:14px;
}
.bonus-card h3{ font-family: var(--font-display); text-transform:uppercase; font-size:19px; margin-bottom:10px; }
.bonus-card p{ color: var(--slate); font-size: 14.5px; }

.exec-card{
  max-width: 900px; margin: 0 auto;
  border: 1px solid rgba(57,255,136,0.35);
  background: linear-gradient(120deg, rgba(57,255,136,0.08), rgba(57,255,136,0.02));
  padding: 30px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.exec-card h3{ font-family: var(--font-display); text-transform:uppercase; font-size:19px; margin-bottom:6px; }
.exec-card p{ color: var(--slate); font-size:14.5px; max-width:520px; }
.exec-card .value{ font-family: var(--font-mono); color: var(--cheat); font-size: 22px; white-space:nowrap; }

@media (max-width: 640px){ .bonuses{ grid-template-columns:1fr; } }

/* ---------- LOADOUT / value table (signature element) ---------- */
.loadout{
  max-width: 720px;
  margin: 0 auto;
  padding: 8px;
}
.loadout-inner{ padding: 8px; }
.loadout-title{
  display:flex; justify-content:space-between; align-items:center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.1em;
  color: var(--slate);
  text-transform: uppercase;
}
.loadout-title .status{ color: var(--cheat); }
.loadout-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 16px 18px;
  border-bottom: 1px dashed var(--line);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .5s ease, transform .5s ease;
}
.loadout-row.in{ opacity:1; transform:none; }
.loadout-row .item{ display:flex; align-items:center; gap:12px; font-size:15px; }
.loadout-row .item .dot{ width:6px; height:6px; background:var(--cheat); flex:none; }
.loadout-row .val{ font-family: var(--font-mono); color: var(--chalk); font-size: 14px; white-space:nowrap; }
.loadout-total{
  display:flex; justify-content:space-between; align-items:center;
  padding: 20px 18px 8px;
  font-family: var(--font-mono);
}
.loadout-total .lbl{ color: var(--slate); font-size:12px; letter-spacing:.1em; text-transform:uppercase; }
.loadout-total .amt{ font-size: 22px; color: var(--slate); text-decoration: line-through; text-decoration-color: rgba(147,160,180,0.5); }
.loadout-unlock{
  margin: 18px 18px 10px;
  background: linear-gradient(100deg, rgba(57,255,136,0.14), rgba(57,255,136,0.04));
  border: 1px solid rgba(57,255,136,0.4);
  padding: 22px;
  text-align:center;
}
.loadout-unlock .lbl{ font-family: var(--font-mono); font-size:12px; letter-spacing:.12em; color: var(--cheat); text-transform:uppercase; margin-bottom:8px; }
.loadout-unlock .amt{ font-family: var(--font-display); font-size: 44px; font-weight:700; }
.loadout-unlock .amt span{ font-size: 18px; color: var(--slate); font-family: var(--font-body); }
.loadout-unlock small{ display:block; margin-top:6px; color: var(--slate); font-size:13px; }

/* ---------- win log / testimonials leaderboard ---------- */
.winlog-meter{
  display:flex; justify-content:center; align-items:center; gap:10px;
  font-family: var(--font-mono); font-size:13px; color: var(--slate);
  margin-bottom: 44px;
}
.winlog-meter .n{ color: var(--cheat); font-weight:700; font-size:16px; }

.leaderboard{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.win-card{
  border:1px solid var(--line);
  background: var(--panel);
  padding: 20px;
  display:flex; flex-direction:column; gap:12px;
}
.win-card-top{ display:flex; align-items:center; gap:12px; }
.win-rank{ font-family: var(--font-mono); font-size:11px; color: var(--slate-dim); width:26px; flex:none; }
.win-who{ min-width:0; }
.win-who .name{ font-size:14px; font-weight:600; color:var(--chalk); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.win-who .co{ font-size:12px; color: var(--slate); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.win-result{ font-size:15px; line-height:1.4; color: var(--chalk); flex:1; }

.wall-break{
  text-align:center;
  max-width: 640px;
  margin: 56px auto;
}
.wall-break p{ color: var(--slate); font-family: var(--font-mono); font-size:13px; letter-spacing:.04em; margin-bottom:18px; text-transform:uppercase; }

@media (max-width: 900px){ .leaderboard{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .leaderboard{ grid-template-columns: 1fr; } }

/* ---------- order / complete section ---------- */
.order-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
  align-items:start;
}
.order-left h3{ font-family:var(--font-display); text-transform:uppercase; font-size:18px; margin: 26px 0 14px; }
.steps{ display:flex; flex-direction:column; gap:16px; }
.step{ display:flex; gap:14px; }
.step-n{
  width:30px; height:30px; flex:none;
  border:1px solid var(--cheat); color:var(--cheat);
  font-family: var(--font-mono); font-size:13px;
  display:flex; align-items:center; justify-content:center;
}
.step b{ display:block; font-size:14px; color: var(--chalk); }
.step span{ font-size:13.5px; color: var(--slate); }

.guarantee{
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(57,255,136,0.08), 0 20px 50px -20px rgba(0,0,0,0.6);
  padding: 22px;
}
.guarantee h4{ font-family: var(--font-display); text-transform:uppercase; font-size:15px; margin-bottom:8px; display:flex; align-items:center; gap:8px; color:#0F1115; }
.guarantee p{ color: #4B5563; font-size:13.5px; }
.guarantee a{ color: var(--cheat-dim); text-decoration: underline; }

.order-card{
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 28px;
}
.order-card .price{ display:flex; align-items:baseline; gap:8px; margin-bottom:4px; }
.order-card .price b{ font-family: var(--font-display); font-size: 34px; }
.order-card .price span{ color: var(--slate); font-size:14px; }
.order-card .sub{ color: var(--slate); font-size:13px; margin-bottom:20px; }
.order-list{ display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.order-list li{ display:flex; gap:10px; font-size:14px; align-items:flex-start; }
.order-list li .n{ font-family:var(--font-mono); color:var(--cheat); font-size:12px; margin-top:2px; }
.order-list .bonus-lbl{ margin-top:8px; padding-top:12px; border-top:1px dashed var(--line); font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; color:var(--overclock); text-transform:uppercase; }

@media (max-width: 820px){ .order-grid{ grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 420px){
  .order-card .btn-block{ font-size: 13.5px; }
}

/* ---------- FAQ ---------- */
.faq{ max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap:2px; }
.faq details{
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
}
.faq summary{
  cursor:pointer;
  list-style:none;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family: var(--font-display);
  font-size: 16px;
  text-transform:uppercase;
  letter-spacing:.01em;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--cheat);
  flex:none;
  transition: transform .2s ease;
}
.faq details[open] summary::after{ transform: rotate(45deg); }
.faq .a{ color: var(--slate); font-size:14.5px; margin-top:14px; line-height:1.65; }

/* ---------- footer cta ---------- */
.footer-cta{
  text-align:center;
  padding: 100px 0 60px;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(57,255,136,0.10), transparent 65%);
}
.footer-cta h2{
  font-family: var(--font-display); text-transform:uppercase; font-weight:700;
  font-size: clamp(26px, 4vw, 40px); margin-bottom:14px; max-width:720px; margin-left:auto; margin-right:auto;
}
.footer-cta p{ color: var(--slate); max-width:520px; margin:0 auto 30px; }

footer{
  border-top: 1px solid var(--line);
  padding: 26px 0 60px;
  text-align:center;
  color: var(--slate-dim);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ---------- modal ---------- */
.modal-overlay{
  position: fixed; inset:0; z-index: 100;
  background: rgba(6,7,9,0.78);
  backdrop-filter: blur(4px);
  display:none;
  align-items:center; justify-content:center;
  padding: 20px;
  overflow-y: auto; /* fallback so the overlay itself can scroll on very short viewports */
}
.modal-overlay.open{ display:flex; }
.modal{
  width: 100%; max-width: 460px;
  max-height: calc(100vh - 40px); /* never taller than the viewport minus the overlay's padding */
  overflow-y: auto; /* scrolls internally instead of getting clipped top/bottom */
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 28px 28px;
  position: relative;
}
.modal-close{
  position:absolute; top:16px; right:16px;
  background:none; border:none; color:var(--slate);
  font-size: 20px; line-height:1; cursor:pointer; padding:4px;
}
.modal-close:hover{ color: var(--chalk); }
.modal .eyebrow{ margin-bottom:14px; }
.modal h2{
  font-family: var(--font-display); text-transform:uppercase; font-size: 24px; margin-bottom:8px;
}
.modal .sub{ color: var(--slate); font-size:14px; margin-bottom:22px; }
.modal-offer{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  border:1px solid var(--line); background: var(--panel-2);
  padding: 14px 16px; margin-bottom: 22px;
}
.modal-offer .tag{ font-family:var(--font-mono); font-size:11px; color:var(--cheat); letter-spacing:.08em; }
.modal-offer .name{ font-family:var(--font-display); font-size:16px; text-transform:uppercase; }
.modal-offer .desc{ font-size:12px; color:var(--slate); }
.modal-offer .price{ text-align:right; font-family:var(--font-display); font-size:20px; }
.modal-offer .price span{ display:block; font-family:var(--font-body); font-size:11px; color:var(--slate); font-weight:400; }

.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.field{ margin-bottom:14px; }
.field label{ display:block; font-size:12px; color: var(--slate); margin-bottom:6px; font-family: var(--font-mono); letter-spacing:.03em; }
.field input, .field select{
  width:100%;
  background: var(--void-2);
  border: 1px solid var(--line);
  color: var(--chalk);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
}
.field input:focus, .field select:focus{ border-color: var(--cheat); outline:none; }
.phone-row{ display:flex; gap:8px; }
.phone-row select{ flex:0 0 76px; }

.modal .trust-row{ margin-top:18px; font-size:11px; }

/* ---------- checkout page ---------- */
.stepper{
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin: 26px auto 0;
  max-width: 460px;
  font-family: var(--font-mono);
}
.step-node{ display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; text-align:center; }
.step-circle{
  width:30px; height:30px; border-radius:50%;
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-size: 13px; color: var(--slate);
}
.step-node.done .step-circle{ background: var(--cheat); border-color:var(--cheat); color:var(--cheat-ink); }
.step-node.active .step-circle{ border-color: var(--cheat); color: var(--cheat); }
.step-node span{ font-size:10px; letter-spacing:.06em; text-transform:uppercase; color:var(--slate); }
.step-node.active span{ color: var(--chalk); }
.step-line{ flex:none; width:48px; height:1px; background: var(--line); margin-bottom:22px; }
.step-line.done{ background: var(--cheat); }

.checkout-hero{ text-align:center; padding: 60px 0 44px; }
.checkout-hero h1{
  font-family: var(--font-display); text-transform:uppercase; font-weight:700;
  font-size: clamp(26px, 4vw, 38px);
}
.checkout-hero p{ color: var(--slate); margin-top:10px; }

.checkout-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 44px;
  align-items:start;
  max-width: 1080px; margin: 0 auto; padding-bottom:100px;
}
.checkout-left .offer-name{ font-family: var(--font-display); text-transform:uppercase; font-size: 36px; margin: 12px 0 4px; }
.checkout-left .offer-tag{ color: var(--slate); margin-bottom:20px; }
.checkout-left .check-list{ display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.checkout-left .check-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; }
.checkout-left .check-list li::before{ content:"✓"; color:var(--cheat); font-weight:700; }
.secure-note{ font-family: var(--font-mono); font-size:12px; color: var(--slate); display:flex; align-items:center; gap:8px; margin-bottom: 34px; }

.pay-panel{
  position: sticky;
  top: 20px;
}
.pay-panel .ph{ font-size:13px; color: var(--slate); margin-bottom:4px; }
.pay-panel .pp{ display:flex; align-items:baseline; gap:8px; margin-bottom:18px; }
.pay-panel .pp b{ font-family: var(--font-display); font-size:30px; }
.pay-panel .pp span{ color: var(--slate); font-size:13px; }

.pay-embed-frame{
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  height: 940px; /* visible crop window — shorter than the iframe itself */
}
.pay-embed-frame iframe{
  display:block; width:100%; height: 1035px;
  margin-top: -95px; /* shifts the embed's own blank top padding out of view */
  background: #fff;
  overflow: hidden;
}
.pay-note{ text-align:center; font-size:12px; color: var(--slate-dim); margin-top:16px; }
.pay-note a{ color: var(--slate); text-decoration:underline; }

@media (max-width: 880px){
  .checkout-grid{ grid-template-columns: minmax(0, 1fr); }
  .pay-panel{ position:static; }
  /* mobile's narrower width makes the embedded form reflow taller — extend the
     bottom of the crop window to match, keeping the same top offset */
  .pay-embed-frame{ height: 1125px; }
  .pay-embed-frame iframe{ height: 1220px; }
}

/* ---------- book call page ---------- */
.book-embed-frame{
  max-width: 760px; margin: 0 auto;
  padding: 6px;
}
.book-embed-frame iframe{
  display:block; width:100%; height: 700px;
  background: var(--panel);
  border-radius: 0 0 4px 4px;
}

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- responsive base ---------- */
@media (max-width: 640px){
  .section{ padding: 68px 0; }
  .hero{ padding: 72px 0 60px; }
}
