:root {
  --bg: #07060B;
  --bg2: #1A1029;
  --panel: #2A1E45;
  --panel-soft: rgba(42, 30, 69, 0.55);
  --purple: #A610DF;
  --purple-light: #C558F0;
  --purple-deep: #6E0895;
  --peach: #FFD2B3;
  --amber: #F5B149;
  --lime: #C8F26A;
  --text: #F5F5F5;
  --muted: rgba(245, 245, 245, 0.66);
  --line: rgba(197, 88, 240, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter Tight', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(166, 16, 223, 0.22), transparent 60%),
    radial-gradient(700px 400px at 85% 40%, rgba(110, 8, 149, 0.14), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(197, 88, 240, 0.08), transparent 60%);
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* header */
.topbar {
  display: flex;
  justify-content: center;
  padding: 28px 0 0;
}
.brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--peach);
  text-transform: uppercase;
}

/* hero */
.hero { text-align: center; padding: 64px 0 28px; }

.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 28px;
  background: rgba(26, 16, 41, 0.6);
}

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
h1 .accent {
  color: var(--peach);
}

.subhead {
  font-size: clamp(18px, 2.4vw, 23px);
  font-weight: 600;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 36px;
}
.subhead strong { color: var(--peach); font-weight: 700; }

/* video */
.vsl {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg2), var(--panel));
  box-shadow: 0 30px 80px rgba(166, 16, 223, 0.18);
  margin-bottom: 36px;
}
.vsl iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(166, 16, 223, 0.5);
}
.play-btn svg { margin-left: 6px; }
.vsl-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* cta */
.cta {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #14061f;
  background: linear-gradient(135deg, var(--peach), var(--amber));
  padding: 18px 44px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 14px 44px rgba(245, 177, 73, 0.25);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 18px 54px rgba(245, 177, 73, 0.35); }
.cta-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 14px;
  text-transform: uppercase;
}

/* sections */
section { padding: 72px 0 0; }
.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
}
h2 .accent {
  color: var(--peach);
}
.section-intro { color: var(--muted); max-width: 640px; margin-bottom: 36px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
}
.card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--muted); }

/* money */
.money-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.money-box {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
}
.money-box .big {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--peach);
  line-height: 1.1;
}
.money-box .big small { font-size: 18px; font-weight: 600; color: var(--muted); }
.money-box p { color: var(--muted); font-size: 15px; margin-top: 8px; }

.bonus-row { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.bonus-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--text);
  background: rgba(26, 16, 41, 0.6);
}
.bonus-pill b { color: var(--lime); font-weight: 600; }

.straight {
  border-left: 3px solid var(--amber);
  background: rgba(245, 177, 73, 0.06);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin-top: 18px;
  color: var(--text);
  font-size: 16px;
}
.straight em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--peach); }

/* standards */
.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--text);
}
.checks .tick { color: var(--lime); font-weight: 700; flex-shrink: 0; }

/* apply */
#apply { padding-bottom: 40px; }
.form-shell {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.form-placeholder {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 40px;
}

footer {
  padding: 56px 0 40px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(245, 245, 245, 0.35);
  text-transform: uppercase;
}

/* confirmation pages */
.confirm-hero { text-align: center; padding: 90px 0 30px; }
.confirm-hero .mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}
.mark.ok { background: rgba(200, 242, 106, 0.12); border: 1px solid rgba(200, 242, 106, 0.4); }
.mark.no { background: rgba(255, 154, 168, 0.1); border: 1px solid rgba(255, 154, 168, 0.35); }
.videos { display: grid; gap: 20px; padding: 40px 0; }
.video-slot {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
  padding: 24px;
}
.video-slot h3 { font-size: 17px; margin-bottom: 6px; }
.video-slot p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.video-slot .vsl { margin-bottom: 0; aspect-ratio: 16/9; }

@media (max-width: 720px) {
  .cards, .money-grid, .checks { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
}
