/* =========================================================
   Code Guardian Program 2026 — EAHQ
   Dark, gold-accented, premium financial-tech aesthetic
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #0a0d11;
  --bg-2: #0f1318;
  --bg-3: #141a21;
  --bg-card: #161c24;
  --bg-card-hi: #1c242e;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #eef1f5;
  --text-mute: #a8b0bb;
  --text-dim: #6e7783;

  /* Brand: gold spectrum */
  --gold: #f5c542;
  --gold-2: #ffd863;
  --gold-deep: #b9821a;
  --gold-glow: rgba(245, 197, 66, 0.35);
  --gold-soft: rgba(245, 197, 66, 0.12);

  /* Accents */
  --red: #ff4d4d;
  --red-glow: rgba(255, 77, 77, 0.35);
  --green: #4ade80;
  --blue: #60a5fa;

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Radii / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
  --shadow-gold: 0 0 0 1px rgba(245, 197, 66, 0.35),
    0 12px 40px rgba(245, 197, 66, 0.2);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  color: var(--gold-2);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.container--narrow {
  width: min(820px, 92%);
}

.hide-sm {
  display: inline;
}
@media (max-width: 720px) {
  .hide-sm {
    display: none;
  }
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ===== Urgency Bar (sticky top) ===== */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(
    90deg,
    rgba(255, 77, 77, 0.18),
    rgba(245, 197, 66, 0.16),
    rgba(255, 77, 77, 0.18)
  );
  border-bottom: 1px solid rgba(255, 77, 77, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  font-size: 13.5px;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 720px) {
  .urgency-bar__inner {
    gap: 8px;
    padding: 7px 10px;
    font-size: 11.5px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .urgency-bar__text {
    text-align: left;
    line-height: 1.35;
  }
  .urgency-bar__cta {
    font-size: 11px !important;
    padding: 5px 9px !important;
    flex-shrink: 0;
  }
}
.urgency-bar__text {
  color: var(--text);
  letter-spacing: 0.01em;
}
.urgency-bar__text strong {
  color: #ffe9a3;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.urgency-bar__cta {
  background: var(--text);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.urgency-bar__cta:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-1px);
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 1.6s infinite;
  vertical-align: middle;
}
.pulse-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation-name: pulse-gold;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--red-glow);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 var(--gold-glow);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(245, 197, 66, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 66, 0);
  }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 38px; /* below urgency bar */
  z-index: 50;
  background: rgba(10, 13, 17, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand:hover {
  color: var(--text);
}
.brand__mark {
  flex-shrink: 0;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.brand__sub {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.site-nav a {
  color: var(--text-mute);
  font-weight: 500;
  transition: color 0.18s var(--ease);
}
.site-nav a:hover {
  color: var(--text);
}

@media (max-width: 880px) {
  .site-nav {
    display: none;
  }
  .site-header__cta {
    display: inline-flex;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 12px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}
.btn--md {
  padding: 11px 18px;
  font-size: 14.5px;
}
.btn--lg {
  padding: 15px 24px;
  font-size: 15.5px;
}
.btn--xl {
  padding: 18px 30px;
  font-size: 17px;
}

.btn--primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1206;
  box-shadow: 0 10px 24px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #1a1206;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--bg-card);
  color: var(--text);
}

/* ===== Badges / eyebrows ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: var(--bg-card);
}
.badge--gold {
  border-color: rgba(245, 197, 66, 0.5);
  color: var(--gold-2);
  background: rgba(245, 197, 66, 0.08);
}
.badge--red {
  border-color: rgba(255, 77, 77, 0.5);
  color: #ffb3b3;
  background: rgba(255, 77, 77, 0.1);
}
.badge--lg {
  padding: 9px 18px;
  font-size: 12.5px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--red {
  color: #ff8a8a;
}
.eyebrow--gold {
  color: var(--gold);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
  z-index: -2;
}
.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(245, 197, 66, 0.18),
    transparent 60%
  );
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 18px;
}
.hero__sub {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--text-mute);
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.65;
}
.hero__sub strong {
  color: var(--text);
}

.grad-text {
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 36px auto 40px;
  padding: 30px;
  background: linear-gradient(180deg, var(--bg-card-hi), var(--bg-card));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  text-align: left;
}
@media (max-width: 720px) {
  .hero__price {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero__price-old {
  color: var(--text-dim);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.hero__price-old s {
  color: var(--text-mute);
}
.hero__price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0 8px;
}
@media (max-width: 720px) {
  .hero__price-main {
    justify-content: center;
  }
}
.hero__price-currency {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}
.hero__price-num {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 82px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero__price-period {
  color: var(--text-mute);
  font-size: 15px;
  font-weight: 500;
}
.hero__price-note {
  color: var(--text-mute);
  font-size: 13.5px;
}

.hero__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat {
  padding: 18px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  color: var(--text-mute);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== Section base ===== */
.section {
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
}
.section--problem {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  border-top: 1px solid var(--line);
}
.section--solution {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.section--inside {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.section--calc {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.section--scenarios {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.section--founders {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.section--proof {
  background: var(--bg-2);
}
.section--faq {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.section--claim {
  position: relative;
  background: radial-gradient(
    ellipse at top,
    rgba(245, 197, 66, 0.12),
    transparent 60%
  ),
  var(--bg-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.section__head {
  max-width: 820px;
  margin-bottom: 56px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section__lede {
  color: var(--text-mute);
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  line-height: 1.65;
  max-width: 680px;
}
.section__head--center .section__lede {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Problem grid ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}
@media (max-width: 980px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}
.problem-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 77, 77, 0.3);
}
.problem-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
}
.problem-card p {
  color: var(--text-mute);
  font-size: 14.5px;
  margin: 0;
}

.counter-block {
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 77, 77, 0.08),
    rgba(255, 77, 77, 0.02)
  );
  border: 1px solid rgba(255, 77, 77, 0.25);
  border-radius: var(--r-lg);
  text-align: center;
}
.counter-block__title {
  color: var(--text-mute);
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
}
.counter-block__title em {
  color: #ffb3b3;
  font-style: italic;
}
.counter-block__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
  color: #ff8a8a;
  text-shadow: 0 0 40px rgba(255, 77, 77, 0.4);
}
.counter-block__sub {
  color: var(--text-mute);
  font-size: 15px;
}
.counter-block__sub strong {
  color: var(--gold);
}

/* ===== Pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}
.pillar {
  position: relative;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 66, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-soft);
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 600;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 10px;
}
.pillar p {
  color: var(--text-mute);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
.pillar p em {
  color: var(--gold);
  font-style: italic;
}

/* ===== Vault (what's inside) ===== */
.vault {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .vault {
    grid-template-columns: 1fr;
  }
}
.vault__col {
  position: relative;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.vault__col--private {
  background: linear-gradient(180deg, #1a1308, var(--bg-card));
  border-color: rgba(245, 197, 66, 0.35);
  box-shadow: 0 0 40px var(--gold-soft);
}
.vault__lock {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--gold);
  color: #1a1206;
}
.vault__col-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin-right: 8px;
  font-weight: 700;
}
.vault__col-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 10px;
}
.vault__col-desc {
  color: var(--text-mute);
  font-size: 14.5px;
  margin: 0 0 20px;
}
.vault__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
@media (max-width: 540px) {
  .vault__list {
    grid-template-columns: 1fr;
  }
}
.vault__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.vault__list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}
.vault__list--private li::before {
  content: "★";
}

/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.service:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 197, 66, 0.3);
}
.service__icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.service h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 8px;
}
.service p {
  color: var(--text-mute);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}
.service p em {
  color: var(--text);
  font-style: italic;
}

/* ===== Calculator ===== */
.calc {
  display: grid;
  gap: 24px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.calc__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 720px) {
  .calc__options {
    grid-template-columns: 1fr;
  }
}
.calc-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
    transform 0.15s var(--ease);
  user-select: none;
}
.calc-opt:hover {
  border-color: var(--line-strong);
  background: var(--bg-3);
}
.calc-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-opt__check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.calc-opt__body {
  flex: 1;
  font-size: 14.5px;
}
.calc-opt__body strong {
  color: var(--text);
  display: block;
  font-weight: 600;
}
.calc-opt__body span {
  color: var(--text-dim);
  font-size: 12.5px;
}
.calc-opt__price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-mute);
}
.calc-opt.is-on {
  background: rgba(245, 197, 66, 0.08);
  border-color: rgba(245, 197, 66, 0.5);
}
.calc-opt.is-on .calc-opt__check {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1206;
}
.calc-opt.is-on .calc-opt__price {
  color: var(--gold);
}

.calc__totals {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .calc__totals {
    grid-template-columns: 1fr;
  }
}
.calc__card {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
}
.calc__card--guardian {
  background: linear-gradient(
    180deg,
    rgba(245, 197, 66, 0.15),
    rgba(245, 197, 66, 0.04)
  );
  border-color: rgba(245, 197, 66, 0.5);
  box-shadow: 0 0 30px var(--gold-soft);
}
.calc__card-label {
  font-size: 11.5px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 8px;
}
.calc__card--guardian .calc__card-label {
  color: var(--gold);
}
.calc__card-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.calc__card--alacarte .calc__card-num {
  color: #ff8a8a;
}
.calc__card--guardian .calc__card-num {
  color: var(--gold-2);
}
.calc__card-sub {
  color: var(--text-mute);
  font-size: 13px;
  margin-top: 10px;
}
.calc__vs {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  font-weight: 600;
}
.calc__savings {
  margin-top: 14px;
  padding: 22px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--text-mute);
}
.calc__savings-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--green);
  letter-spacing: -0.01em;
  vertical-align: -2px;
  margin: 0 4px;
}
.calc__savings-cta {
  margin-left: 12px;
  margin-top: 10px;
}
@media (max-width: 720px) {
  .calc__savings-cta {
    display: block;
    margin: 14px auto 0;
    width: max-content;
  }
}

/* ===== Scenarios ===== */
.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.scenario-tab {
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-mute);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.scenario-tab:hover {
  color: var(--text);
  border-color: var(--line-strong);
}
.scenario-tab.is-active {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-color: var(--gold);
  color: #1a1206;
}

.scenario-panel {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  min-height: 380px;
}
.scenario-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  animation: fadein 0.4s var(--ease);
}
@media (max-width: 880px) {
  .scenario-panel__inner {
    grid-template-columns: 1fr;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.scenario-side h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 14px;
}
.scenario-side ul {
  margin: 0;
  padding-left: 22px;
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.7;
}
.scenario-side ul li {
  margin-bottom: 6px;
}
.scenario-side--before {
  border-left: 3px solid rgba(255, 77, 77, 0.4);
  padding-left: 20px;
}
.scenario-side--after {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.scenario-side--before h3 {
  color: #ff8a8a;
}
.scenario-side--after h3 {
  color: var(--gold-2);
}
.scenario-side__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.scenario-bottom {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--text-mute);
}
.scenario-bottom strong {
  color: var(--gold);
}

/* ===== Founders card ===== */
.founders-card {
  position: relative;
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #1a1308 0%, var(--bg-card) 100%);
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 80px var(--gold-soft);
  overflow: hidden;
}
.founders-card__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at top right,
      rgba(245, 197, 66, 0.18),
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(245, 197, 66, 0.08),
      transparent 50%
    );
  pointer-events: none;
}
.founders-card__content {
  position: relative;
}
.founders-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
}
.founders-card__lede {
  color: var(--text-mute);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 680px;
  margin: 0 0 36px;
}

.founders-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin-bottom: 36px;
}
@media (max-width: 760px) {
  .founders-perks {
    grid-template-columns: 1fr;
  }
}
.founders-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.founders-perk__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #1a1206;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 14px var(--gold-glow);
}
.founders-perk h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  margin: 0 0 6px;
}
.founders-perk p {
  color: var(--text-mute);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

.founders-card__cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.founders-card__cta-note {
  margin-top: 14px;
  color: var(--text-mute);
  font-size: 13.5px;
}

/* ===== Proof / Testimonials ===== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}
.proof {
  margin: 0;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.proof p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.proof p::before {
  content: "“";
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -8px;
}
.proof cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ===== FAQ ===== */
.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item.is-open {
  border-color: rgba(245, 197, 66, 0.4);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item__q::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item.is-open .faq-item__q::after {
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item__a-inner {
  padding: 0 24px 22px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== Claim / final CTA ===== */
.claim__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 197, 66, 0.18),
    transparent 60%
  );
}
.claim {
  position: relative;
  text-align: center;
}
.claim__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 22px 0 16px;
}
.claim__sub {
  color: var(--text-mute);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 640px;
  margin: 0 auto 36px;
}

.claim__countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 36px;
}
@media (max-width: 480px) {
  .claim__countdown {
    gap: 8px;
  }
}
.countdown-unit {
  min-width: 88px;
  padding: 16px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}
@media (max-width: 480px) {
  .countdown-unit {
    min-width: 64px;
    padding: 12px 6px;
  }
}
.countdown-unit__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-unit__label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}

.claim__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.claim__guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
  text-align: left;
}
@media (max-width: 720px) {
  .claim__guarantees {
    grid-template-columns: 1fr;
  }
}
.guarantee {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--text-mute);
}
.guarantee strong {
  color: var(--text);
}
.guarantee__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.claim__warning {
  color: #ffb3b3;
  font-size: 13.5px;
  background: rgba(255, 77, 77, 0.08);
  border: 1px dashed rgba(255, 77, 77, 0.35);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 0;
  line-height: 1.55;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 36px 0;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-dim);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__tag {
  color: var(--text-mute);
}

/* ===== Scroll-reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
