/* =================================================================
   TSP WEBINAR — Treasury × Bloomberg editorial federal aesthetic
   ================================================================= */

:root {
  /* Federal palette */
  --navy-900: #0a1f44;     /* deep federal navy */
  --navy-800: #102a55;
  --navy-700: #1a3a6b;
  --navy-600: #28508f;
  --navy-100: #d8e0ed;
  --navy-50:  #eef2f8;

  --paper:    #f7f3e9;     /* parchment / ivory */
  --paper-2:  #efe8d6;
  --paper-3:  #e6decb;
  --ink-900:  #14181f;
  --ink-700:  #2c333f;
  --ink-500:  #56607a;
  --ink-400:  #7d8699;
  --ink-300:  #aeb4c2;
  --ink-200:  #d4d8e0;

  --white:    #ffffff;

  --red:      #b22234;     /* US flag red */
  --red-dk:   #8a1a28;
  --gold:     #b8893e;     /* brushed gold */
  --gold-lt:  #d6a85a;
  --gold-soft:#e8d4a8;

  --rule:     rgba(20,24,31,.12);
  --rule-inv: rgba(255,255,255,.18);

  --font-sans: "Public Sans", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(10,31,68,.06);
  --shadow-md: 0 12px 32px rgba(10,31,68,.10);
  --shadow-lg: 0 24px 60px rgba(10,31,68,.18);

  --max-w: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--navy-700); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--navy-600); outline-offset: 2px; }
input, button, select, textarea { font: inherit; color: inherit; }
em { font-style: italic; }

/* Typewriter for headlines — per-character opacity reveal, no reflow */
.typewrite-rev .tw-ch { opacity: 0; transition: opacity .04s linear; }
.typewrite-rev .tw-ch.tw-on { opacity: 1; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* =================================================================
   REVEAL ANIMATIONS
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   URGENT BANNER
   ================================================================= */
.urgent-banner {
  background: var(--red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  z-index: 50;
}
.urgent-banner::before,
.urgent-banner::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 2px;
}
.urgent-banner::before { top: 0; background: rgba(255,255,255,.16); }
.urgent-banner::after  { bottom: 0; background: rgba(0,0,0,.18); }
.urgent-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.urgent-banner__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.urgent-banner__label {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: .14em;
  font-size: 11px;
  background: rgba(0,0,0,.18);
  padding: 3px 8px;
  border-radius: 2px;
}
.urgent-banner__sep { opacity: .55; }
.urgent-banner__text { flex: 1; min-width: 0; }
.urgent-banner__text strong { font-weight: 700; }
.urgent-banner__cta {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color .2s;
}
.urgent-banner__cta:hover { border-bottom-color: #fff; }
@media (max-width: 640px) {
  .urgent-banner__inner { padding: 9px 18px; gap: 8px; font-size: 12px; }
  .urgent-banner__sep { display: none; }
  .urgent-banner__cta { width: 100%; text-align: left; padding-top: 4px; border-top: 1px solid rgba(255,255,255,.25); border-bottom: none; }
}

/* =================================================================
   SITE HEADER
   ================================================================= */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(247,243,233,.94);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 28px;
  max-width: var(--max-w); margin: 0 auto;
}
.site-header__brand { display: flex; align-items: center; }
.site-header__logo { height: 32px; width: auto; max-width: 220px; object-fit: contain; object-position: left center; }
.site-header__meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-left: auto;
}
.site-header__meta strong { color: var(--ink-900); font-weight: 600; }
.site-header__divider { width: 1px; height: 14px; background: var(--ink-300); }
.site-header__cta {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy-900);
  padding: 11px 20px;
  border-radius: 2px;
  letter-spacing: .01em;
  transition: background .2s, transform .2s;
  border: 1px solid var(--navy-900);
}
.site-header__cta:hover { background: var(--navy-700); }
.site-header__cta:active { transform: translateY(1px); }
@media (max-width: 900px) {
  .site-header__meta { display: none; }
}
@media (max-width: 560px) {
  .site-header__inner { padding: 12px 18px; gap: 12px; }
  .site-header__logo { height: 26px; max-width: 180px; }
  .site-header__cta { padding: 9px 14px; font-size: 13px; }
}

/* =================================================================
   EYEBROW (shared)
   ================================================================= */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.eyebrow--inverse { color: rgba(255,255,255,.78); }
.eyebrow__num {
  color: var(--red);
  font-weight: 600;
}
.eyebrow--inverse .eyebrow__num { color: var(--gold-lt); }
.eyebrow__seal {
  width: 14px; height: 14px;
  background: var(--red);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.eyebrow--inverse .eyebrow__seal { background: var(--gold-lt); }
.eyebrow__dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: currentColor;
  opacity: .4;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: #fff;
  color: var(--ink-900);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg-image {
  position: absolute; inset: 0;
  background: #fff;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: transparent;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,31,68,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,68,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  padding: 64px 28px 0;
  max-width: var(--max-w); margin: 0 auto;
  align-items: start;
}
.hero__copy { padding-bottom: 80px; }
.hero__headline {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__headline em { font-style: italic; font-weight: 700; color: var(--red); }
.hero__hl { padding: 0 2px; }
.hero__deck {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 60ch;
  margin-bottom: 28px;
}
.hero__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(10,31,68,.06);
  border: 1px solid rgba(10,31,68,.14);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-900);
}
.pill__check {
  width: 14px; height: 14px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
}

/* COUNTDOWN */
.countdown {
  border-top: 1px solid rgba(10,31,68,.16);
  border-bottom: 1px solid rgba(10,31,68,.16);
  padding: 18px 0;
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  max-width: 560px;
}
.countdown__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: inline-flex; align-items: center; gap: 8px;
}
.countdown__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(178,34,52,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(178,34,52,.55); }
  70% { box-shadow: 0 0 0 9px rgba(178,34,52,0); }
  100% { box-shadow: 0 0 0 0 rgba(178,34,52,0); }
}
.countdown__grid {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-mono);
}
.countdown__cell {
  display: flex; flex-direction: column; align-items: center;
  min-width: 56px;
}
.countdown__num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  color: var(--navy-900);
  line-height: 1;
}
.countdown__unit {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 6px;
}
.countdown__sep {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink-300);
  font-weight: 300;
  align-self: center;
  transform: translateY(-6px);
}

/* HERO FORM */
.hero__form-wrap {
  background: var(--paper);
  color: var(--ink-900);
  border-radius: 4px;
  margin-top: 24px;
  margin-bottom: -120px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(184,137,62,.4);
  z-index: 5;
}
.hero__form-wrap::before {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--paper-2) 33%, var(--paper-2) 66%, var(--navy-900) 66%, var(--navy-900) 100%);
}

.reg-form { padding: 28px 28px 22px; }
.reg-form__header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.reg-form__seal {
  width: 36px; height: 36px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.reg-form__seal::before, .reg-form__seal::after {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid var(--gold-lt);
  border-radius: 50%;
}
.reg-form__seal::after {
  inset: 9px;
  background: var(--gold-lt);
  border: none;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.reg-form__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.reg-form__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
}
.reg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.field { display: block; margin-bottom: 10px; }
.field__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 3px;
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s;
}
.field input:hover { border-color: var(--ink-400); }
.field input:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(40,80,143,.15);
}

/* BUTTON */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  text-align: center;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red-dk);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 4px 14px rgba(178,34,52,.3);
}
.btn--primary:hover {
  background: var(--red-dk);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 6px 20px rgba(178,34,52,.4);
}
.btn--primary:active { transform: translateY(1px); }
.btn--block { width: 100%; padding: 16px 22px; font-size: 16px; }
.btn--small { padding: 10px 16px; font-size: 13px; }
.btn__arrow { display: inline-block; transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.reg-form__fineprint {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-500);
  margin-top: 14px;
  text-align: center;
}
.reg-form__fineprint a { color: var(--navy-700); text-decoration: underline; }

.reg-form__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
.reg-form__trust-item {
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.reg-form__trust-item:last-child { border-right: none; }
.reg-form__trust-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -.01em;
}
.reg-form__trust-item span {
  display: block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 2px;
}

/* HERO STRIP — navy color scheme */
.hero__strip {
  background: var(--navy-900);
  color: #fff;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.hero__strip::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,168,90,.5), transparent);
  z-index: 2;
}
.hero__strip::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero__strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w); margin: 0 auto;
  position: relative;
  z-index: 1;
}
.strip-cell {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
}
.strip-cell:first-child { padding-left: 28px; }
.strip-cell:last-child { border-right: none; }
.strip-cell__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(214,168,90,.85);
  font-weight: 500;
}
.strip-cell__value {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.005em;
  display: flex; align-items: center; gap: 10px;
  line-height: 1.2;
}
.strip-cell__livedot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(178,34,52,.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .hero__strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-cell:nth-child(2) { border-right: none; }
  .strip-cell:nth-child(1), .strip-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .strip-cell { padding: 22px 24px; }
  .strip-cell__value { font-size: 16px; }
}
@media (max-width: 480px) {
  .hero__strip-inner { grid-template-columns: 1fr; }
  .strip-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px 20px; }
  .strip-cell:last-child { border-bottom: none; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .hero__copy { padding-bottom: 16px; }
  .hero__form-wrap { margin-bottom: -100px; }
}
@media (max-width: 560px) {
  .hero__inner { padding: 36px 18px 0; }
  .countdown { gap: 14px; padding: 14px 0; }
  .countdown__cell { min-width: 44px; }
  .reg-form { padding: 22px 20px 18px; }
}

/* =================================================================
   SECTIONS
   ================================================================= */
.section {
  padding: 140px 0 100px;
  position: relative;
}
.section--narrow { padding: 90px 0; }
.section--paper { background: var(--paper); }
.section--ivory { background: var(--paper-2); }
.section--navy {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--navy::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--paper-3) 33%, var(--paper-3) 66%, var(--gold) 66%, var(--gold) 100%);
}
.section--navy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: 0;
}
.section--navy > * { position: relative; z-index: 1; }
.section--final { padding: 90px 0 100px; }

/* §03 Convergence — Capitol illustration as backdrop, positioned BEHIND the content with cream top hosting the headline */
.section--convergence {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0 100px;
}
.section--convergence .convergence-bg {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(420px, 56vw, 760px);
  z-index: 0;
  pointer-events: none;
}
.section--convergence .convergence-bg__image {
  position: absolute; inset: 0;
  background-image: url("hero-capitol.png");
  background-size: cover;
  background-position: center bottom;
  opacity: .42;
}
.section--convergence .convergence-bg::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(247,243,233,0) 0%, var(--paper) 90%);
}
.convergence-inner { position: relative; z-index: 1; }
.convergence-head {
  margin-bottom: clamp(120px, 18vw, 280px);
}
.section--convergence .exhaust-grid,
.section--convergence .bigstatement {
  position: relative; z-index: 2;
}
@media (max-width: 720px) {
  .section--convergence { padding: 70px 0 70px; }
  .section--convergence .convergence-bg { height: 280px; }
  .convergence-head { margin-bottom: 110px; }
  .section--convergence .convergence-bg__image { opacity: .35; }
}

@media (max-width: 720px) {
  .section { padding: 90px 0 70px; }
  .section--narrow { padding: 60px 0; }
  .section--final { padding: 60px 0 70px; }
}

/* SECTION HEAD */
.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; margin-left: auto; margin-right: auto; }
.section-head__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.section-head__title em { font-style: italic; font-weight: 700; color: var(--red); }
.section-head__title--inverse { color: #fff; }
.section-head__title--inverse em { color: var(--gold-lt); }
.section-head__deck {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-700);
  margin-top: 18px;
  max-width: 62ch;
}
.section--center .section-head__deck { margin-left: auto; margin-right: auto; }
.section--navy .section-head__deck { color: rgba(255,255,255,.78); }

/* =================================================================
   CALLOUT (TSP no protection)
   ================================================================= */
/* §01 background — newspaper + gold floating right */
.section--no-protection { position: relative; overflow: hidden; }
.no-protection-bg {
  position: absolute;
  right: 4%; top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 42vw, 620px);
  aspect-ratio: 1 / 1;
  background-image: url("newspaper-gold.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .22;
  z-index: 0;
  pointer-events: none;
  filter: saturate(.85);
}
@media (max-width: 980px) {
  .no-protection-bg { right: -120px; opacity: .14; }
}
.callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 36px 40px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.callout__rule {
  width: 4px;
  height: 56px;
  background: var(--red);
  border-radius: 2px;
}
.callout__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  color: var(--navy-900);
}
.callout__body p {
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
}
.callout__stat {
  text-align: right;
  border-left: 1px solid var(--rule);
  padding-left: 36px;
}
.callout__stat-num {
  font-family: var(--font-mono);
  font-size: clamp(64px, 7vw, 88px);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}
.callout__stat-num .count-up { display: inline-block; min-width: 1.4ch; text-align: right; }
.callout__stat-pct { font-size: .5em; margin-left: 2px; }
.callout__stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 820px) {
  .callout { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .callout__rule { width: 56px; height: 4px; }
  .callout__stat { text-align: left; border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 18px; }
}

/* =================================================================
   TWO-COL (Why gold)
   ================================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col__left .section-head__title { margin-top: 8px; }
.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(255,255,255,.86);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.lede strong { color: #fff; }
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 24px; }
}

/* TICKER */
.ticker {
  margin-top: 72px;
  border-top: 1px solid var(--rule-inv);
  border-bottom: 1px solid var(--rule-inv);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--navy-900), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--navy-900), transparent); }
.ticker__track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  padding-left: 28px;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item strong { color: var(--gold-lt); font-weight: 600; }
.ticker__sep { color: var(--gold-lt); opacity: .5; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =================================================================
   EXHAUSTION GRID
   ================================================================= */
.exhaust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.exhaust {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .2s;
}
.exhaust:last-child { border-right: none; }
.exhaust:hover { background: var(--paper); }
.exhaust::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy-900);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .35s ease;
}
.exhaust:hover::before { transform: scaleX(1); }
.exhaust__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.exhaust__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.exhaust p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .exhaust-grid { grid-template-columns: repeat(2, 1fr); }
  .exhaust:nth-child(2) { border-right: none; }
  .exhaust:nth-child(1), .exhaust:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 520px) {
  .exhaust-grid { grid-template-columns: 1fr; }
  .exhaust { border-right: none; border-bottom: 1px solid var(--rule); }
  .exhaust:last-child { border-bottom: none; }
}

/* BIG STATEMENT */
.bigstatement {
  margin-top: 64px;
  padding: 52px 56px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bigstatement::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold), var(--gold-lt));
}
.bigstatement__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  color: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
}
.bigstatement__icon svg { width: 100%; height: 100%; display: block; }
.bigstatement p {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 24px;
  text-wrap: balance;
}
.bigstatement strong { color: var(--gold-lt); font-weight: 600; }
.bigstatement__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(214,168,90,.4);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s;
}
.bigstatement__cta:hover { color: #fff; border-bottom-color: #fff; }
@media (max-width: 720px) {
  .bigstatement { padding: 36px 24px; }
}

/* =================================================================
   LEARN LIST
   ================================================================= */
.learn-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}
.learn {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background .2s;
  position: relative;
}
.learn::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--navy-900);
  transition: width .35s ease;
}
.learn:hover { background: rgba(184,137,62,.04); padding-left: 16px; }
.learn:hover::before { width: 3px; }
.learn__index {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
}
.learn__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.learn p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 70ch;
}
@media (max-width: 720px) {
  .learn { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
  .learn__index { font-size: 24px; }
}

/* =================================================================
   BONUS
   ================================================================= */
.bonus {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 56px 56px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.bonus__corner-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 18px 10px 22px;
  border-bottom-left-radius: 4px;
  display: flex; align-items: baseline; gap: 10px;
  z-index: 2;
}
.bonus__corner-badge-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}
.bonus__corner-badge-value {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}
.bonus__art {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.bonus__art-img {
  width: 100%; height: auto;
  max-width: 460px;
  filter: drop-shadow(0 22px 40px rgba(10,31,68,.22));
  transition: transform .4s ease;
}
.bonus:hover .bonus__art-img { transform: translateY(-3px) rotate(-1deg); }
.bonus__art-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 100px;
}
.bonus__badge {
  background: var(--navy-900);
  color: #fff;
  padding: 36px 24px;
  text-align: center;
  border-radius: 4px;
  position: relative;
}
.bonus__badge::before, .bonus__badge::after {
  content: "";
  position: absolute; left: 12px; right: 12px;
  height: 1px; background: rgba(214,168,90,.4);
}
.bonus__badge::before { top: 12px; }
.bonus__badge::after { bottom: 12px; }
.bonus__badge-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.bonus__badge-value {
  display: block;
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.bonus__title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 8px 0 24px;
  color: var(--navy-900);
}
.bonus__items {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 18px;
}
.bonus__items li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.bonus__item-num {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  min-width: 24px;
}
.bonus__item-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.bonus__item-meta {
  font-size: 13px;
  color: var(--ink-500);
}
.bonus__item-meta strong { color: var(--red); font-weight: 700; }
.bonus__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
@media (max-width: 1080px) {
  .bonus { grid-template-columns: 1fr; }
  .bonus__art { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .bonus { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .bonus__corner-badge { padding: 10px 14px; }
}

/* =================================================================
   FOR YOU GRID
   ================================================================= */
.foryou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.foryou {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rule-inv);
  padding: 28px 26px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .2s, transform .2s;
}
.foryou:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.foryou__check {
  width: 32px; height: 32px;
  background: var(--gold-lt);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
}
.foryou p {
  font-size: 16px;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}
.foryou strong { color: #fff; font-weight: 600; }
@media (max-width: 820px) {
  .foryou-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   FINAL CTA
   ================================================================= */
.final-cta {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
  padding: 56px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--paper-3) 33%, var(--paper-3) 66%, var(--navy-900) 66%, var(--navy-900) 100%);
  border-radius: 6px 6px 0 0;
}
.final-cta__title {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--navy-900);
  margin: 8px 0 28px;
  text-wrap: balance;
}
.final-cta__meta {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--rule);
  margin-bottom: 32px;
}
.final-cta__meta-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.final-cta__meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.final-cta__meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
}
.countdown--mini {
  border-color: var(--rule);
  max-width: none;
}
.countdown--mini .countdown__label { color: var(--ink-500); }
.countdown--mini .countdown__num { color: var(--navy-900); }
.countdown--mini .countdown__unit { color: var(--ink-400); }
.countdown--mini .countdown__sep { color: var(--ink-300); }
.countdown--mini .countdown__pulse { background: var(--red); animation: pulse-red 2s infinite; }
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(178,34,52,.6); }
  70% { box-shadow: 0 0 0 9px rgba(178,34,52,0); }
  100% { box-shadow: 0 0 0 0 rgba(178,34,52,0); }
}

.reg-form--bottom {
  background: var(--paper);
  border: 1px solid rgba(184,137,62,.4);
  border-radius: 4px;
  padding: 28px;
}
.reg-form--bottom .reg-form__header { padding-bottom: 16px; }

@media (max-width: 980px) {
  .final-cta { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
}
@media (max-width: 560px) {
  .final-cta { padding: 28px 20px; }
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
  font-size: 13px;
  line-height: 1.6;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--paper-3) 33%, var(--paper-3) 66%, var(--gold) 66%, var(--gold) 100%);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
.site-footer__logo { height: 32px; width: auto; margin-bottom: 12px; opacity: .9; }
.site-footer__tag {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  max-width: 240px;
}
.site-footer__legal p {
  margin-bottom: 12px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.65;
}
.site-footer__legal strong { color: rgba(255,255,255,.85); font-weight: 600; }
.site-footer__copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}
.site-footer__copy a { color: rgba(255,255,255,.6); text-decoration: underline; }
.site-footer__copy a:hover { color: #fff; }
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* =================================================================
   STICKY MOBILE CTA
   ================================================================= */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 16px;
  align-items: center; gap: 14px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
  z-index: 30;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-mobile-cta.is-visible { transform: translateY(0); }
.sticky-mobile-cta__meta {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
}
.sticky-mobile-cta__meta strong { color: var(--gold-lt); font-weight: 600; }
.sticky-mobile-cta__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .sticky-mobile-cta { display: flex; aria-hidden: false; }
}

/* =================================================================
   SUCCESS STATE
   ================================================================= */
.reg-form.is-success {
  text-align: center;
  padding: 48px 28px;
}
.reg-form.is-success > *:not(.success-state) { display: none; }
.success-state {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.success-state__check {
  width: 56px; height: 56px;
  background: var(--navy-900);
  color: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 28px;
}
.success-state h3 {
  font-size: 22px;
  color: var(--navy-900);
  font-weight: 700;
}
.success-state p {
  font-size: 14px;
  color: var(--ink-500);
  max-width: 32ch;
}
