@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #070b12;
  --panel: #111827;
  --panel-2: #1a2332;
  --ink: #e8edf5;
  --muted: #94a3b8;
  --gold: #f5c451;
  --teal: #2dd4bf;
  --magenta: #e879f9;
  --red: #fb7185;
  --line: #2a3548;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #1a2740 0%, var(--bg) 55%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--gold); }

.wrap {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 18, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #041018;
  font-weight: 900;
}

.brand small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  padding: 40px 0 28px;
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}

h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

h1 em {
  font-style: italic;
  color: var(--teal);
}

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: #c7d2e6;
  max-width: 680px;
  margin: 0 auto 24px;
}

.video-shell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
  margin-bottom: 28px;
}

.video-shell::before {
  content: 'ANONYMOUS SOURCE — VOICE ALTERED';
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.65);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 196, 81, 0.35);
}

.video-shell.video-shell--clear::before {
  content: 'ANONYMOUS SOURCE';
}

video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.section {
  padding: 36px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.55), rgba(17, 24, 39, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

p { color: #c7d2e6; margin-bottom: 12px; }

.quote {
  border-left: 4px solid var(--magenta);
  padding: 12px 0 12px 18px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 18px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.card.accent {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.12);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.checks {
  list-style: none;
  display: grid;
  gap: 10px;
}

.checks li {
  position: relative;
  padding-left: 28px;
  color: #dbe4f2;
}

.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}

.offer-box {
  background: linear-gradient(160deg, #121c2b, #0d1420);
  border: 2px solid rgba(245, 196, 81, 0.35);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 8px 0;
}

.price s {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.bump {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 14px;
  padding: 16px;
  margin: 16px 0;
  cursor: pointer;
}

.bump input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--teal);
}

.bump strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.bump em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 6px;
}

.bump span {
  color: #b8c5d9;
  font-size: 0.95rem;
}

.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin: 10px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--teal), #38bdf8);
  color: #041018;
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #041018;
  box-shadow: 0 18px 36px rgba(45, 212, 191, 0.35);
}

.btn-secondary {
  background: linear-gradient(90deg, var(--magenta), #fb7185);
  color: #fff;
  box-shadow: 0 12px 30px rgba(232, 121, 249, 0.22);
}

.btn-muted {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  font-weight: 600;
}

.btn-muted:hover { color: #fff; border-color: #4b5c74; }

.fine {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.downloads {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.downloads a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 700;
}

.downloads a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.footer {
  text-align: center;
  padding: 28px 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.footer a { color: #7dd3fc; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 24px;
}

.pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.03);
}

.pill.gold { border-color: rgba(245, 196, 81, 0.4); color: var(--gold); }
.pill.teal { border-color: rgba(45, 212, 191, 0.4); color: var(--teal); }

.center-cta { text-align: center; padding: 36px 0; }

.skip-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.skip-link:hover { color: #fff; }

/* Opt-in + AWeber form */
.optin-hero {
  text-align: center;
  padding: 36px 0 20px;
}

.optin-card {
  background: linear-gradient(160deg, #121c2b, #0d1420);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
}

.aweber-shell {
  margin-top: 8px;
}

.aweber-shell .AW-Form-409337985,
.aweber-shell form {
  text-align: left;
}

.aweber-shell input[type="text"],
.aweber-shell input[type="email"] {
  width: 100% !important;
  padding: 14px 16px !important;
  margin: 0 0 12px !important;
  border-radius: 12px !important;
  border: 1px solid var(--line) !important;
  background: var(--panel) !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
}

.aweber-shell input[type="submit"],
.aweber-shell button[type="submit"] {
  width: 100% !important;
  border: 0 !important;
  border-radius: 14px !important;
  padding: 16px 22px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  background: linear-gradient(90deg, var(--teal), #38bdf8) !important;
  color: #041018 !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
}

.aweber-shell label {
  color: #c7d2e6 !important;
  font-size: 0.9rem !important;
}

.preview-cta-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.preview-cta-stack .btn-secondary {
  background: linear-gradient(90deg, var(--gold), #f59e0b);
  color: #041018;
  box-shadow: 0 12px 30px rgba(245, 196, 81, 0.22);
}

@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .offer-box { padding: 20px; }
}