/* ==========================================
   FONTS
   ==========================================
   Coolvetica Rg.otf in /fonts/coolvetica.otf.
   The included EULA is a DESKTOP license. For commercial web use
   (this site), check whether you need a separate Webfont license
   from typodermicfonts.com — desktop EULAs typically do not cover
   @font-face embedding on commercial sites.
   ========================================== */
@font-face {
  font-family: 'Coolvetica';
  src: url('../fonts/coolvetica.otf') format('opentype');
  font-weight: 100 900; /* claim the whole range so all weights map to Regular */
  font-style: normal;
  font-display: swap;
}

/* ==========================================
   THEME TOKENS — dark warm bg, green accents
   ========================================== */
:root {
  /* Backgrounds — dark forest green */
  --bg-deep: #07140d;
  --bg-main: #0d1f14;
  --bg-card: #14291b;
  --bg-card-elevated: #1b3322;
  --bg-book: #050f09;

  /* Greens — primary action color */
  --green-cta: #4d9a48;
  --green-cta-hover: #5fb158;
  --green-cta-deep: #3d7a3a;
  --green-deep: #1f3f29;
  --green-mid: #3d7a4e;
  --green-bright: #7ec98a;
  --green-soft: #a8c9af;
  --green-glow: rgba(93, 177, 88, 0.42);

  /* Golds — price + highlights */
  --gold-bright: #f2c25e;
  --gold-rich: #e6b14a;
  --gold-dim: #a07c3a;

  /* Reds — urgency (countdown + save sticker) */
  --red-urgent: #c92a2a;
  --red-bright: #e63838;
  --red-glow: rgba(230, 56, 56, 0.4);

  /* Warm — kept for ambient hero light only */
  --accent-warm: #d8783a;
  --accent-glow: rgba(216, 120, 58, 0.4);

  /* Text */
  --text-cream: #f4e9d0;
  --text-light: #dccfb5;
  --text-muted: #a89c84;
  --text-dim: #6e6553;

  /* Borders */
  --border-soft: #23402b;
  --border-warm: #2c4a34;
  --border-green: #3d5d44;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-main);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
  letter-spacing: 0.2px;
  font-synthesis: none;
}

/* Subtle grain texture over the whole page (dark green base) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.035; } }

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

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

/* ==========================================
   KEYFRAMES
   ========================================== */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(126, 201, 138, 0), 0 0 60px rgba(126, 201, 138, 0.15); }
  50%      { box-shadow: 0 0 0 rgba(126, 201, 138, 0), 0 0 90px rgba(126, 201, 138, 0.32); }
}

@keyframes book-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes shimmer {
  0%   { transform: translateX(-110%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.78); }
}

@keyframes drift-left {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(40px, 30px); }
  100% { transform: translate(0, 0); }
}

@keyframes drift-right {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-50px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes slide-in-left {
  0%   { opacity: 0; transform: translateX(-120%); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slide-out-left {
  0%   { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-120%); }
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes star-pulse {
  0%   { transform: scale(1); filter: drop-shadow(0 0 0 rgba(242, 194, 94, 0)); }
  50%  { transform: scale(1.18); filter: drop-shadow(0 0 10px rgba(242, 194, 94, 0.7)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(242, 194, 94, 0)); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   STICKY HEADER WRAPPER — promo bar + nav stick together
   (one sticky element, so they never overlap regardless of height)
   ========================================== */
.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ==========================================
   ANNOUNCEMENT BAR — green
   ========================================== */
.announce-bar {
  background: linear-gradient(90deg, #061306 0%, var(--green-deep) 50%, #061306 100%);
  color: var(--text-cream);
  padding: 9px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid #ffb04a;
  box-shadow: 0 0 18px rgba(255, 176, 74, 0.5), 0 2px 0 rgba(255, 176, 74, 0.25);
}

.announce-bar strong { color: #ffe9b8; font-weight: 700; }

.live-dot {
  width: 7px;
  height: 7px;
  background: #ffb04a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #ffb04a;
  animation: dot-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.ab-label {
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #fff4d8;
}

.ab-label strong {
  letter-spacing: 1.2px;
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 2px;
}

/* Live readers, now in the top promo bar */
.ab-readers {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #fff4d8;
}
.ab-readers strong {
  color: #fff;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-right: 1px;
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}
.ab-readers strong.lr-flip { transform: translateY(-3px); opacity: 0; }

.ab-divider { color: rgba(255, 233, 184, 0.35); }
.ab-warn { color: #ffb04a; }

.ab-timer {
  font-family: 'Inter', monospace;
  font-weight: 700;
  font-size: 16px;
  color: #ffeaa3;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 11px;
  border-radius: 4px;
  border: 1px solid rgba(255, 234, 163, 0.32);
  text-shadow: 0 0 14px rgba(255, 234, 163, 0.45);
  font-variant-numeric: tabular-nums;
  min-width: 100px;
  text-align: center;
}

.ab-timer.is-ended {
  color: var(--text-muted);
  text-shadow: none;
  letter-spacing: 1px;
  font-size: 12px;
}

@media (max-width: 600px) {
  .announce-bar { font-size: 12px; padding: 10px 12px; gap: 8px 10px; flex-wrap: wrap; }
  .ab-readers { flex-basis: 100%; justify-content: center; font-size: 13px; }
  .ab-divider { display: none; }
  .ab-label { font-size: 13px; }
  .ab-label strong { font-size: 12px; letter-spacing: 1px; }
  .ab-timer { font-size: 21px; min-width: 122px; padding: 5px 13px; letter-spacing: 2px; }
}

/* ==========================================
   STICKY NAV — green
   ========================================== */
.nav-bar {
  background: rgba(14, 32, 20, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-green);
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  font-family: 'Inter', sans-serif;
  color: var(--text-cream);
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 700;
  line-height: 1.1;
  justify-self: start;
}

/* Live readers pill — center of nav */
.nav-readers {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 11px;
  background: rgba(230, 56, 56, 0.10);
  border: 1px solid rgba(230, 56, 56, 0.34);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: #ffb4b4;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(230, 56, 56, 0.12);
}

.nav-readers .nr-dot {
  width: 7px;
  height: 7px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-bright);
  animation: lr-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.nav-readers strong {
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-right: 2px;
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.nav-readers strong.lr-flip { transform: translateY(-3px); opacity: 0; }

.nav-brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2.2px;
  font-weight: 400;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(180deg, var(--green-cta) 0%, var(--green-cta-deep) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 14px var(--green-glow);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(180deg, var(--green-cta-hover) 0%, var(--green-cta) 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--green-glow);
}

.nav-cta-price {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-left: 1.5px solid rgba(255,255,255,0.4);
  padding-left: 10px;
}

/* Tablet: keep readers pill but tighten */
@media (max-width: 860px) {
  .nav-bar { padding: 10px 18px; }
  .nav-readers { font-size: 11px; padding: 5px 12px 5px 10px; }
}

/* Mobile: brand left, CTA right */
@media (max-width: 700px) {
  .nav-brand span { display: none; }
  .nav-brand { font-size: 15px; }
  .nav-bar { padding: 11px 16px; }
  .nav-cta { padding: 10px 16px; font-size: 11px; gap: 8px; }
  .nav-cta-price { font-size: 13px; padding-left: 8px; }
}

/* ==========================================
   HERO + AMBIENT LIGHTS
   ========================================== */
.hero {
  padding: 48px 24px 64px;
  background:
    radial-gradient(ellipse at center top, rgba(126, 201, 138, 0.10) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-main) 100%);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.hero-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-light.l1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(126, 201, 138, 0.4) 0%, transparent 70%);
  animation: drift-left 18s ease-in-out infinite;
}

.hero-light.l2 {
  width: 360px;
  height: 360px;
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(242, 194, 94, 0.28) 0%, transparent 70%);
  animation: drift-right 22s ease-in-out infinite;
}

.hero-light.l3 {
  width: 540px;
  height: 540px;
  bottom: -240px;
  left: 30%;
  background: radial-gradient(circle, rgba(94, 163, 110, 0.3) 0%, transparent 70%);
  animation: drift-left 26s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-cream);
  margin: 0 auto 20px;
  letter-spacing: -0.3px;
  max-width: 760px;
}

.hero h1 .accent {
  color: var(--gold-bright);
  font-style: normal;
  display: inline;
}

/* Tight hero head (eyebrow → headline → one subtitle → 2 stats → guarantee) */
.hero-head { margin-bottom: 48px; }

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 16px;
}

.hero-stats .hstat {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.hero-stats .hstat strong {
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}

.hero-guarantee {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
}

.hero-guarantee strong {
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-right: 5px;
}

.hero-copy {
  margin: 0 auto 26px;
  max-width: 600px;
}

.hero-copy p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.25vw, 15px);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-copy p:last-child { margin-bottom: 0; }

.trust-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 26px auto 36px;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 700px;
}

.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row strong {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

/* ==========================================
   PRODUCT CARD
   ========================================== */
.product-card {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-elevated) 100%);
  border: 2px solid var(--green-bright);
  border-radius: 12px;
  padding: 28px 26px 26px;
  text-align: center;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(126, 201, 138, 0.16);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-bright), var(--accent-warm), var(--green-bright));
  z-index: -1;
  opacity: 0.42;
  filter: blur(14px);
}

.product-card .pc-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, #d8a838 100%);
  color: #1a0e05;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.product-card .pc-sticker {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  background: var(--red-bright);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 8px 22px rgba(0,0,0,0.5), 0 0 22px var(--red-glow);
  border: 3px solid var(--bg-main);
  z-index: 5;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.product-card .pc-sticker .big {
  font-size: 20px;
  font-weight: 700;
  margin: 1px 0;
  letter-spacing: -0.3px;
}

.product-card .pc-book {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.product-card .pc-book::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(126, 201, 138, 0.45) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 4.5s ease-in-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.book-mock {
  position: relative;
  z-index: 1;
  width: 180px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-book) 0%, #2a1f17 100%);
  border-radius: 3px 7px 7px 3px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.65),
    inset 4px 0 0 rgba(0, 0, 0, 0.3),
    inset 8px 0 0 rgba(255, 255, 255, 0.04);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  animation: book-float 6s ease-in-out infinite;
}

.book-mock::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1.5px solid rgba(242, 194, 94, 0.4);
  border-radius: 2px;
  pointer-events: none;
}

.book-mock .book-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: rgba(242, 194, 94, 0.85);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.book-mock h2 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: var(--text-cream);
  margin: 7px 0 0;
  letter-spacing: -0.2px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.book-mock h2 em {
  display: block;
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 13px;
  margin-top: 3px;
}

.book-mock .book-footer {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 1.4px;
  color: rgba(240, 232, 212, 0.7);
  text-transform: uppercase;
  border-top: 1px solid rgba(242, 194, 94, 0.3);
  padding-top: 7px;
  position: relative;
  z-index: 2;
}

.product-card .pc-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.product-card .pc-subtitle {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.product-card .pc-features {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--green-bright);
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 0;
  border-top: 1px dashed var(--border-green);
  border-bottom: 1px dashed var(--border-green);
  margin-bottom: 18px;
}

.product-card .pc-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  margin-bottom: 16px;
}

.product-card .pc-was {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.product-card .pc-now {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.8px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(242, 194, 94, 0.4);
}

.product-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Primary button — green CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(180deg, var(--green-cta) 0%, var(--green-cta-deep) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 6px 22px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-110%) skewX(-20deg);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--green-cta-hover) 0%, var(--green-cta) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover::before {
  animation: shimmer 1.1s ease-out;
}

.btn-primary .price {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  border-left: 2px solid rgba(255,255,255,0.4);
  padding-left: 12px;
}

.btn-primary .was {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-top: 1px;
  opacity: 0.75;
  text-decoration: line-through;
}

/* Hero countdown — boxed three-segment */
.hero-countdown {
  margin: 28px auto 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hc-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-bright);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hc-icon {
  font-size: 13px;
  display: inline-block;
  line-height: 1;
}

.hc-boxes {
  display: inline-flex;
  gap: 10px;
}

.hc-box {
  background: linear-gradient(180deg, #1a0606 0%, #0a0303 100%);
  border: 2px solid #d93b32;
  border-radius: 6px;
  padding: 13px 18px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(217, 59, 50, 0.45),
    inset 0 0 14px rgba(217, 59, 50, 0.18);
}

.hc-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  color: #ff6a5e;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  text-shadow: 0 0 16px rgba(255, 106, 94, 0.65), 0 0 32px rgba(217, 59, 50, 0.35);
}

.hc-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 6px;
}

.hc-box.is-ended .hc-num { color: var(--text-muted); text-shadow: none; }

@media (max-width: 500px) {
  .hc-boxes { gap: 8px; }
  .hc-box { padding: 11px 14px 9px; min-width: 64px; }
  .hc-num { font-size: 26px; }
  .hc-label { font-size: 8.5px; letter-spacing: 1.5px; margin-top: 4px; }
}

/* Hero review badge */
.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s ease;
}

.hero-reviews:hover { color: var(--gold-bright); }

.hero-reviews .stars {
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-reviews .reviews-count {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 11.5px;
}

/* ==========================================
   SECTION SHARED
   ========================================== */
section { padding: 60px 24px; }

@media (max-width: 700px) { section { padding: 48px 18px; } }

.section-inner { max-width: 1080px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

h2.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-cream);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ==========================================
   REVIEWS — with animations
   ========================================== */
.reviews {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(126, 201, 138, 0.10) 0%, transparent 60%),
    var(--bg-deep);
  position: relative;
}

/* ---------- Aggregate rating panel ---------- */
.reviews-summary { display: flex; justify-content: center; margin: 0 auto 44px; }

.rs-inner {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 22px 32px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-elevated) 100%);
  border: 1px solid var(--border-green);
  border-radius: 18px;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(126, 201, 138, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rs-score { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.rs-num {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  line-height: 0.9;
  color: var(--gold-bright);
  text-shadow: 0 0 28px rgba(242, 194, 94, 0.45);
}
.rs-stars {
  color: var(--gold-bright);
  font-size: 18px;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 8px rgba(242, 194, 94, 0.45));
}
.rs-count { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-muted); letter-spacing: 0.3px; }

.rs-sep { width: 1px; background: var(--border-green); }

.rs-trust { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.rs-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}
.rs-trust-ico {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(126, 201, 138, 0.12);
  border: 1px solid rgba(126, 201, 138, 0.35);
  color: var(--green-bright);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}

@media (max-width: 560px) {
  .rs-inner { flex-direction: column; gap: 18px; padding: 22px; }
  .rs-sep { width: auto; height: 1px; }
}

/* ---------- Cards grid ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 18px; max-width: 460px; }
}

.review {
  background: linear-gradient(180deg, #15291b 0%, #0d1f14 100%);
  border: 1px solid rgba(242, 194, 94, 0.14);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* top accent line */
.review::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* decorative quote glyph */
.review::after {
  content: '\201C';
  position: absolute;
  top: -26px;
  right: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(126, 201, 138, 0.09);
  pointer-events: none;
}

.review:hover {
  transform: translateY(-6px);
  border-color: var(--green-bright);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(126, 201, 138, 0.22);
}
.review:hover::before { opacity: 1; }

/* featured (middle) card — always highlighted */
.review.is-featured {
  border-color: rgba(126, 201, 138, 0.6);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.55), 0 0 44px rgba(126, 201, 138, 0.22);
  padding-top: 34px;
}
.review.is-featured::before { opacity: 1; }

.review-tag {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--green-cta) 0%, var(--green-cta-deep) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 9px 9px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(77, 154, 72, 0.4);
}

/* keep content above the glyph */
.review-head,
.review .stars,
.review blockquote,
.review-foot { position: relative; z-index: 1; }

.review-head { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--green-bright), var(--green-deep));
  display: inline-flex; align-items: center; justify-content: center;
  color: #07140c;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(126, 201, 138, 0.16), 0 0 18px rgba(126, 201, 138, 0.35);
}

.review:nth-of-type(2) .review-avatar {
  background: radial-gradient(circle at 35% 30%, #f2c25e, #7a5012);
  box-shadow: 0 0 0 3px rgba(242, 194, 94, 0.16), 0 0 18px rgba(242, 194, 94, 0.35);
  color: #1a0e02;
}
.review:nth-of-type(3) .review-avatar {
  background: radial-gradient(circle at 35% 30%, #6fb3e0, #234e6e);
  box-shadow: 0 0 0 3px rgba(111, 179, 224, 0.16), 0 0 18px rgba(111, 179, 224, 0.35);
  color: #041018;
}

.review-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.review-name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-cream); }
.review-loc { font-family: 'Inter', sans-serif; font-size: 11.5px; color: var(--text-muted); }

.review-verified {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--green-bright);
  background: rgba(126, 201, 138, 0.10);
  border: 1px solid rgba(126, 201, 138, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review .stars {
  color: var(--gold-bright);
  font-size: 16px;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 6px rgba(242, 194, 94, 0.35));
}

.review.is-visible .stars { animation: star-pulse 0.7s ease 0.5s; }

.review blockquote {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: var(--text-cream);
  line-height: 1.6;
  font-style: normal;
}

.review-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

.rev-tier {
  color: var(--green-bright);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.rev-tier::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
}
.rev-date { color: var(--text-dim); }

/* ==========================================
   FAQ — with animations
   ========================================== */
.faq { background: var(--bg-main); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.faq-item summary:hover { color: var(--green-bright); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--green-bright);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item[open] summary::after {
  content: '–';
  transform: rotate(180deg);
}

.faq-item .answer {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 10px 0 4px;
  max-width: 640px;
}

.faq-item[open] .answer {
  animation: faq-answer-in 0.35s ease;
}

/* ==========================================
   FOOTER — simple
   ========================================== */
footer {
  background: #081108;
  color: var(--text-dim);
  padding: 28px 24px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
}

footer .foot-brand {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

footer nav {
  margin: 10px 0 12px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 11px;
}

footer nav a { color: var(--text-muted); }
footer nav a:hover { color: var(--gold-bright); }

footer .legal {
  color: var(--text-dim);
  font-size: 10.5px;
  line-height: 1.5;
  margin-top: 4px;
}

/* ==========================================
   MOBILE STICKY CTA
   ========================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: linear-gradient(180deg, #2a1f17 0%, var(--bg-deep) 100%);
  border-top: 2px solid var(--green-bright);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.5);
  padding: 9px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.msc-left { display: flex; flex-direction: column; line-height: 1.2; }
.msc-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.msc-price-row { display: inline-flex; align-items: baseline; gap: 6px; margin-top: 2px; }
.msc-was { font-size: 11px; color: var(--text-dim); text-decoration: line-through; }
.msc-now {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-bright);
}

.msc-btn {
  background: linear-gradient(180deg, var(--green-cta) 0%, var(--green-cta-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 5px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px var(--green-glow);
  text-decoration: none;
}

@media (max-width: 820px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ==========================================
   PURCHASE NOTIFICATION WIDGET
   ========================================== */
.purchase-notif {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 13px;
  background: var(--bg-card-elevated);
  color: var(--text-cream);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  padding: 11px 16px 11px 11px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.5),
    0 0 30px rgba(126, 201, 138, 0.22);
  font-family: 'Inter', sans-serif;
  min-width: 250px;
  max-width: 320px;
  animation: slide-in-left 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.purchase-notif.is-leaving { animation: slide-out-left 0.4s ease forwards; }
.purchase-notif.is-visible { display: flex; }

.purchase-notif .pn-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--green-bright), var(--green-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(242, 194, 94, 0.3);
  box-shadow: 0 0 20px rgba(126, 201, 138, 0.35);
}

.purchase-notif .pn-body { line-height: 1.35; min-width: 0; }

.purchase-notif .pn-line1 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-cream);
}

.purchase-notif .pn-line2 {
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 2px;
}

.purchase-notif .pn-line2 strong { color: var(--gold-bright); font-weight: 700; }

.purchase-notif .pn-time {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.purchase-notif .pn-time::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fe39a;
  box-shadow: 0 0 8px #7fe39a;
}

@media (max-width: 600px) {
  .purchase-notif {
    bottom: 84px;
    left: 12px;
    right: 12px;
    max-width: none;
    min-width: 0;
  }
}

/* ==========================================
   DISCOUNT POP-UP (fires after 40s of no CTA click)
   ========================================== */
.discount-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.discount-modal[hidden] { display: none; }
.discount-modal.is-open { opacity: 1; visibility: visible; }

.dm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 6, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.dm-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  text-align: center;
  background:
    radial-gradient(130% 60% at 50% 0%, rgba(242, 194, 94, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #1d3a26 0%, #0d1f14 100%);
  border: 1.5px solid rgba(242, 194, 94, 0.55);
  border-radius: 18px;
  padding: 34px 30px 30px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), 0 0 80px rgba(242, 194, 94, 0.2);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.discount-modal.is-open .dm-card { transform: translateY(0) scale(1); }

.dm-x {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}
.dm-x:hover { color: var(--text-cream); }

.dm-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 12px;
}

.dm-title {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-cream);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.dm-title .dm-accent { color: var(--gold-bright); }

.dm-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.5;
}

.dm-code {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold-bright);
  background: rgba(242, 194, 94, 0.08);
  border: 1.5px dashed rgba(242, 194, 94, 0.5);
  border-radius: 8px;
  padding: 11px 22px;
  margin-bottom: 20px;
}

.dm-card .dm-cta {
  width: 100%;
  justify-content: center;
  padding: 17px 18px;
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
  border-radius: 11px;
}

.dm-decline {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dm-decline:hover { color: var(--text-muted); }

/* Expanded state — shows the Typeform signup */
.dm-card.is-expanded { max-width: 480px; }

.dm-form-title {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--text-cream);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.dm-form-title .dm-accent { color: var(--gold-bright); }

.dm-iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 10px;
  background: #0d1f14;
  display: block;
}

.dm-next {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
  border-radius: 11px;
}

/* Custom signup form */
.dm-signup { display: flex; flex-direction: column; gap: 12px; }

.dm-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* 16px avoids iOS zoom-on-focus */
  color: var(--text-cream);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dm-input::placeholder { color: var(--text-dim); }
.dm-input:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(126, 201, 138, 0.18);
}

/* International phone input (intl-tel-input) — dark theme overrides */
.dm-form .iti { width: 100%; display: block; }
.iti--separate-dial-code .iti__selected-flag {
  background: rgba(0, 0, 0, 0.32);
  border-radius: 10px 0 0 10px;
}
.iti--separate-dial-code .iti__selected-flag:hover { background: rgba(0, 0, 0, 0.5); }
.iti__selected-dial-code { color: var(--text-cream); font-family: 'Inter', sans-serif; }
.iti__country-list {
  background: #15291b;
  border: 1px solid var(--border-green);
  color: var(--text-cream);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
}
.iti__country.iti__highlight { background: rgba(126, 201, 138, 0.16); }
.iti__country:hover { background: rgba(126, 201, 138, 0.10); }
.iti__country .iti__dial-code { color: var(--text-muted); }
.iti__divider { border-bottom-color: var(--border-green); }
/* dropdown is appended to <body>, so it must sit above the modal (z 10000) */
.iti--container { z-index: 10001 !important; }

/* honeypot — visually hidden, off-screen */
.dm-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.dm-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
  border-radius: 11px;
}
.dm-submit:disabled { opacity: 0.7; cursor: default; }

.dm-consent {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 2px;
  line-height: 1.4;
}

.dm-success { text-align: center; }
.dm-success-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #5fb158 0%, #3d7a3a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(93, 177, 88, 0.18), 0 0 24px rgba(93, 177, 88, 0.4);
}

@media (max-width: 600px) {
  .dm-card { padding: 30px 22px 24px; }
  .dm-title { font-size: 25px; }
  .dm-iframe { height: 56vh; }
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */
.checkout-page {
  padding: 48px 24px 64px;
  background:
    radial-gradient(ellipse at center top, rgba(126, 201, 138, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-main) 100%);
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.checkout-page > .hero-lights { z-index: 0; }

.checkout-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 860px) {
  .checkout-inner { grid-template-columns: 1fr; gap: 28px; }
}

.checkout-summary {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-elevated) 100%);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  padding: 26px 24px;
}

.checkout-summary .cs-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.checkout-summary h1 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.checkout-summary .cs-subtitle {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.checkout-summary .cs-divider {
  border-top: 1px dashed var(--border-green);
  margin: 18px 0;
}

.checkout-summary ul {
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-light);
}

.checkout-summary ul li {
  padding-left: 22px;
  position: relative;
  margin: 7px 0;
  line-height: 1.5;
}

.checkout-summary ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
  font-size: 14px;
}

.checkout-summary .cs-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
}

.checkout-summary .cs-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.checkout-summary .cs-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.checkout-summary .cs-was {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.checkout-summary .cs-now {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.5px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(242, 194, 94, 0.35);
}

.checkout-summary .cs-guarantee {
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(126, 201, 138, 0.08);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.checkout-summary .cs-guarantee strong { color: var(--green-bright); }

.checkout-embed-wrap {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-elevated) 100%);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  padding: 22px 22px 26px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(126, 201, 138, 0.12);
}

.checkout-embed-wrap .ce-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--green-bright);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-embed-wrap .ce-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
  animation: dot-pulse 1.6s ease-in-out infinite;
}

[data-whop-checkout-plan-id] {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-deep);
}

.payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.payment-badges .pb-divider { color: rgba(255, 255, 255, 0.18); }
.payment-badges .pb-secure { color: var(--green-bright); font-weight: 700; }

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.checkout-back:hover { color: var(--green-bright); }

/* ==========================================
   PRODUCT GRID — 3-tier pricing
   ========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; gap: 28px; max-width: 440px; }
}

/* Grid cards reset their own max-width and stretch within the column */
.product-grid .product-card {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Push the CTA to the bottom so all 3 cards line up */
.product-grid .product-card .btn-primary { margin-top: auto; }

/* --- VOLUME I / II (single-volume cards) --- */
.product-card.is-single {
  border-color: var(--border-soft);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  padding: 24px 22px 22px;
}
.product-card.is-single::before {
  background: linear-gradient(135deg, rgba(126, 201, 138, 0.35), rgba(216, 120, 58, 0.25));
  opacity: 0.25;
  filter: blur(10px);
}
.product-card.is-single .pc-book { margin-bottom: 14px; }
.product-card.is-single .pc-book::before {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(126, 201, 138, 0.22) 0%, transparent 70%);
  filter: blur(28px);
}
.product-card.is-single .book-mock {
  width: 130px;
  padding: 14px 11px;
}
.product-card.is-single .book-mock h2 { font-size: 13px; }
.product-card.is-single .book-mock h2 em { font-size: 10px; }
.product-card.is-single .book-mock .book-eyebrow { font-size: 6.5px; letter-spacing: 1.8px; }
.product-card.is-single .book-mock .book-footer { font-size: 7px; letter-spacing: 1.2px; }
.product-card.is-single .pc-title { font-size: 19px; }
.product-card.is-single .pc-subtitle { font-size: 12px; margin-bottom: 12px; }
.product-card.is-single .pc-features { font-size: 10px; padding: 9px 0; margin-bottom: 14px; }
.product-card.is-single .pc-now { font-size: 38px; }
.product-card.is-single .pc-was { font-size: 14px; }

/* --- BUNDLE (the highlighted one) --- */
.product-card.is-bundle {
  border-color: var(--red-bright, #e1483d);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(225, 72, 61, 0.28);
  transform: translateY(-4px);
  z-index: 2;
}
.product-card.is-bundle::before {
  background: linear-gradient(135deg, var(--red-bright, #e1483d), var(--gold-bright), var(--red-bright, #e1483d));
  opacity: 0.55;
  filter: blur(16px);
}
.product-card.is-bundle .pc-book::before {
  background: radial-gradient(circle, rgba(225, 72, 61, 0.32) 0%, transparent 70%);
}

/* Bundle ribbon swaps gold for red+gold gradient */
.pc-ribbon-bundle {
  background: linear-gradient(180deg, var(--red-bright, #e1483d) 0%, #a8261c 100%) !important;
  color: #fff !important;
  letter-spacing: 2.4px !important;
}

/* Different book covers per volume */
.book-mock-v1 {
  background: linear-gradient(135deg, #1c2818 0%, #243924 100%);
}
.book-mock-v1::before { border-color: rgba(126, 201, 138, 0.45) !important; }
.book-mock-v1 .book-eyebrow { color: rgba(126, 201, 138, 0.9) !important; }
.book-mock-v1 .book-footer { border-top-color: rgba(126, 201, 138, 0.32) !important; }

.book-mock-v2 {
  background: linear-gradient(135deg, #2a1d14 0%, #3a2818 100%);
}
.book-mock-v2::before { border-color: rgba(216, 120, 58, 0.5) !important; }
.book-mock-v2 .book-eyebrow { color: rgba(216, 120, 58, 0.95) !important; }
.book-mock-v2 .book-footer { border-top-color: rgba(216, 120, 58, 0.35) !important; }

.book-mock-bundle {
  background: linear-gradient(135deg, #2a0e0a 0%, #4a1812 100%);
}
.book-mock-bundle::before { border-color: rgba(242, 194, 94, 0.55) !important; }

/* --- Red CTA variant for the bundle --- */
.btn-red {
  background: linear-gradient(180deg, var(--red-bright, #e1483d) 0%, #a8261c 100%) !important;
  box-shadow: 0 4px 14px rgba(225, 72, 61, 0.45) !important;
}
.btn-red:hover {
  background: linear-gradient(180deg, #ee5a4f 0%, var(--red-bright, #e1483d) 100%) !important;
  box-shadow: 0 6px 20px rgba(225, 72, 61, 0.55) !important;
}

/* ==========================================
   NEW PRODUCT CARDS — "Field Edition" reference look
   ========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

/* Offset the scroll target so the sticky header doesn't cover the cards */
#bundles { scroll-margin-top: 120px; }
@media (max-width: 600px) { #bundles { scroll-margin-top: 150px; } }

@media (max-width: 1000px) {
  .product-grid { grid-template-columns: 1fr; max-width: 440px; gap: 28px; }
}

.pcard {
  position: relative;
  background:
    radial-gradient(125% 55% at 50% 0%, rgba(242, 194, 94, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #15291b 0%, #0d1f14 100%);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(242, 194, 94, 0.16);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Tier pill at the top of each card (replaces corner stickers) */
.pcard-kicker {
  align-self: center;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e8c069;
  background: rgba(242, 194, 94, 0.09);
  border: 1px solid rgba(242, 194, 94, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}

/* Pin the price block to the bottom as a group. The breathing room from
   equal-height cards lands ABOVE the divider (between features and price),
   so it reads as intentional separation rather than a gap above the button. */
.pcard-divider { margin-top: auto; }

/* Corner stickers (yellow $300/SYSTEM, red SAVE $X) */
.pcard-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  padding: 6px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: 0.4px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}
.pcard-corner .small {
  font-size: 8.5px;
  letter-spacing: 1.4px;
  opacity: 0.9;
}
.pcard-corner-yellow {
  background: #f0c45a;
  color: #2a1a05;
}
.pcard-corner-red {
  background: #d93b32;
  color: #fff;
  font-size: 12px;
}
.pcard-corner-red .small { font-size: 14px; font-weight: 800; letter-spacing: 0; }

/* Bundle: top gold ribbon */
.pcard-bundle {
  background:
    radial-gradient(125% 50% at 50% 0%, rgba(242, 194, 94, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #1d3a26 0%, #0d1f14 100%);
  border: 1.5px solid rgba(242, 194, 94, 0.55);
  box-shadow:
    0 38px 76px rgba(0, 0, 0, 0.65),
    0 0 72px rgba(242, 194, 94, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 0;
  transform: translateY(10px) scale(1.02);
}
.pcard-bundle .pcard-body {
  padding: 26px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard-bundle .pcard-cta { margin-top: 0; }
.pcard-top-ribbon {
  background: linear-gradient(180deg, #f2c25e 0%, #c89432 100%);
  color: #2a1a05;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 14px;
  text-align: center;
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Book mockup wrapper */
.pcard-book {
  display: flex;
  justify-content: center;
  margin: 18px 0 22px;
  position: relative;
}

/* CSS book cover that mimics the reference look */
.bookcover {
  position: relative;
  width: 200px;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse at top, rgba(255, 220, 150, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, #0c0a14 0%, #1a1525 100%);
  border-radius: 4px 8px 8px 4px;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.7),
    inset 5px 0 0 rgba(0, 0, 0, 0.35),
    inset 9px 0 0 rgba(255, 255, 255, 0.03);
  padding: 14px 12px;
  overflow: hidden;
}
.bookcover::before {
  /* Ornamental inner gold border */
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(242, 194, 94, 0.55);
  border-radius: 2px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(242, 194, 94, 0.15);
}
.bookcover::after {
  /* Thin secondary frame */
  content: '';
  position: absolute;
  inset: 13px;
  border: 0.5px solid rgba(242, 194, 94, 0.3);
  border-radius: 1px;
  pointer-events: none;
}
.bc-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px;
  text-align: center;
}
.bc-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #f4d98a;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}
.bc-sub {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: rgba(242, 194, 94, 0.85);
  font-size: 9px;
  letter-spacing: 0.4px;
  margin-top: 3px;
}
.bc-portrait {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(150, 100, 60, 0.45), rgba(30, 20, 10, 0.85)),
    #1a1208;
  border: 2px solid rgba(242, 194, 94, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.4), inset 0 0 14px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-portrait-text {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(242, 194, 94, 0.55);
}
.bc-author {
  font-family: 'Inter', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: rgba(242, 194, 94, 0.85);
  text-transform: uppercase;
}

/* Volume II — warmer wood tone */
.bookcover-v2 {
  background:
    radial-gradient(ellipse at top, rgba(255, 220, 150, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, #2a160a 0%, #3a1f10 100%);
}
.bookcover-v2 .bc-title { color: #f5da92; }

/* Bundle — richer with foil star + corner flag */
.bookcover-bundle {
  width: 220px;
  background:
    radial-gradient(ellipse at top, rgba(255, 220, 150, 0.1) 0%, transparent 60%),
    linear-gradient(135deg, #0c0a14 0%, #1f1a2e 100%);
}
.bookcover-bundle .bc-title {
  color: #fff2c2;
  font-size: 17px;
}
.bc-foil-star {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 32px;
  color: #ffeaa3;
  filter: drop-shadow(0 0 12px rgba(255, 234, 163, 0.8));
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.bc-corner-flag {
  position: absolute;
  top: 10px;
  right: -2px;
  z-index: 4;
  background: linear-gradient(180deg, #f2c25e 0%, #c89432 100%);
  color: #2a1a05;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 7.5px;
  letter-spacing: 1.4px;
  padding: 4px 9px 4px 7px;
  text-transform: uppercase;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

/* Title + sub under the book */
.pcard-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #f4e9d0;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
  line-height: 1.1;
  text-transform: none;
}
.pcard-bundle .pcard-title { font-size: 25px; }
.product-grid-3 > .pcard:nth-child(2) .pcard-title {
  white-space: nowrap;
  letter-spacing: -0.6px;
}
.pcard-sub {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: #c6b794;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 22px;
  padding: 0 4px;
}

/* Bundle icon grid (I + II + III) */
.pcard-bundle-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  margin: 0 0 22px;
}
.bg-cell {
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(242, 194, 94, 0.22);
  border-radius: 6px;
  padding: 9px 6px 8px;
  min-width: 62px;
  flex: 1;
  text-align: center;
}
.bg-cell-exclusive {
  background: rgba(242, 194, 94, 0.06);
  border-color: rgba(242, 194, 94, 0.55);
  box-shadow: 0 0 18px rgba(242, 194, 94, 0.18);
}
.bg-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #f4d98a;
  line-height: 1;
  margin-bottom: 4px;
}
.bg-cell-exclusive .bg-num { color: #ffe9b8; }
.bg-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: #b5a482;
  text-transform: uppercase;
}
.bg-flag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f2c25e 0%, #c89432 100%);
  color: #2a1a05;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 7.5px;
  letter-spacing: 1.2px;
  padding: 2px 7px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
.bg-plus {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(242, 194, 94, 0.4);
  display: flex;
  align-items: center;
}

/* Price block */
.pcard-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 0 0 8px;
}
.pp-was {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(217, 59, 50, 0.65);
  text-decoration-thickness: 2px;
}
.pp-now {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 54px;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -1.5px;
  display: inline-flex;
  align-items: flex-start;
}
.pp-now .dollar {
  font-size: 26px;
  font-weight: 700;
  margin-right: 2px;
  margin-top: 4px;
  letter-spacing: 0;
}
.pcard-bundle .pp-now { font-size: 62px; }
.pcard-save {
  align-self: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 1.2px;
  color: #ff8276;
  text-transform: uppercase;
  background: rgba(217, 59, 50, 0.14);
  border: 1px solid rgba(217, 59, 50, 0.4);
  padding: 5px 13px;
  border-radius: 999px;
  margin: 0 0 20px;
}

/* Override .pcard-cta button to match the new look */
.pcard-cta {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
}

/* ==========================================
   BUNDLE — what's-inside checklist + dividers
   ========================================== */
.pcard-includes {
  text-align: left;
  margin: 4px 0 20px;
  padding: 16px 16px 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(242, 194, 94, 0.14);
  border-radius: 12px;
}
.pi-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  color: #c89432;
  text-transform: uppercase;
  margin-bottom: 9px;
  padding-bottom: 7px;
  border-bottom: 1px dashed rgba(242, 194, 94, 0.22);
}
.pcard-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pcard-includes li {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #e6d6b5;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  letter-spacing: 0.15px;
}
.pcard-includes li strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #f4d98a;
  letter-spacing: 0.2px;
}
.pi-check {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(180deg, #5fb158 0%, #3d7a3a 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(93, 177, 88, 0.18);
}
.pi-tag {
  display: inline-block;
  background: rgba(217, 59, 50, 0.18);
  color: #ff7a6f;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid rgba(217, 59, 50, 0.35);
  margin-left: 4px;
  vertical-align: middle;
}

.pcard-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(242, 194, 94, 0.35) 50%, transparent 100%);
  margin: auto 0 18px;
}

.pcard-foot {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: #8a7c62;
  text-transform: uppercase;
  text-align: center;
}

/* Tighten the bundle subtitle now that the list does the work */
.pcard-bundle .pcard-sub {
  margin-bottom: 18px;
  font-size: 14px;
}

/* ==========================================
   STATS STRIP — matches the countdown urgency look
   ========================================== */
.stats-strip {
  background: linear-gradient(180deg, #1a0606 0%, #0e0303 100%);
  border-top: 2px solid #d93b32;
  border-bottom: 2px solid #d93b32;
  padding: 48px 20px;
  box-shadow:
    inset 0 0 60px rgba(217, 59, 50, 0.15),
    0 0 30px rgba(217, 59, 50, 0.25);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.stats-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-bright);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.stats-icon {
  font-size: 14px;
  color: var(--red-bright);
  text-shadow: 0 0 10px rgba(217, 59, 50, 0.6);
}

.stats-boxes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.stats-box {
  background: linear-gradient(180deg, #1c0f08 0%, #0c0604 100%);
  border: 1px solid rgba(242, 194, 94, 0.28);
  border-radius: 7px;
  padding: 15px 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 96px;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 233, 184, 0.05);
}

.stats-num {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  color: var(--gold-bright);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  text-shadow: 0 0 16px rgba(242, 194, 94, 0.5);
  font-weight: 800;
}

.stats-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 7px;
  text-align: center;
}

@media (max-width: 600px) {
  .stats-strip { padding: 26px 14px; }
  .stats-boxes { gap: 10px; }
  .stats-box { padding: 12px 14px 10px; min-width: 78px; }
  .stats-num { font-size: 28px; }
  .stats-label { font-size: 9px; letter-spacing: 1.5px; }
}

/* ==========================================
   MANIFESTO — "why this exists" pitch section
   ========================================== */
.manifesto {
  background: #120e0a;
  padding: 64px 24px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-h {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: 0.2px;
  color: #d4b896;
  margin: 0 0 38px;
  text-transform: none;
}

.manifesto-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: #efe5cd;
  margin: 0 auto 22px;
  max-width: 760px;
  letter-spacing: 0.1px;
}

.manifesto-body .hl {
  color: var(--gold-bright);
  font-weight: 700;
}

.manifesto-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 19px);
  font-style: normal;
  line-height: 1.5;
  color: #c6b794;
  margin: 0 auto;
  max-width: 720px;
}

.manifesto-sub em { font-style: normal; }

.manifesto-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-bright) 50%, transparent 100%);
  margin: 44px auto 0;
}

@media (max-width: 600px) {
  .manifesto { padding: 60px 20px; }
  .manifesto-h { margin-bottom: 24px; }
}

/* ==========================================
   POLISH — hover interactions on product cards
   ========================================== */
.pcard {
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 194, 94, 0.45);
  box-shadow:
    0 38px 70px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(242, 194, 94, 0.15);
}
.pcard-bundle:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: rgba(242, 194, 94, 0.78);
  box-shadow:
    0 46px 86px rgba(0, 0, 0, 0.7),
    0 0 92px rgba(242, 194, 94, 0.3);
}

/* Book inside the card subtly lifts too */
.pcard .bookcover {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pcard:hover .bookcover {
  transform: translateY(-3px) rotate(-0.5deg);
}
.pcard-bundle:hover .bookcover {
  transform: translateY(-5px);
}

/* CTA button gets a tiny push on hover (in addition to existing hover) */
.pcard-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pcard:hover .pcard-cta {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .pcard, .pcard .bookcover, .pcard-cta { transition: none; }
}

/* ==========================================
   2-CARD LAYOUT — Main Ebook + Big Bundle
   ========================================== */
.product-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
}

@media (max-width: 820px) {
  .product-grid-2 { grid-template-columns: 1fr; max-width: 480px; }
}

/* ==========================================
   3-CARD LAYOUT — Book + Book&Audio + Big Bundle
   ========================================== */
.product-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
}

@media (max-width: 1040px) {
  .product-grid-3 { grid-template-columns: 1fr; max-width: 460px; }
}

/* Real PNG cover images replace the CSS bookmock */
.bookcover-img {
  display: block;
  width: 100%;
  max-width: 188px;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.7),
    0 0 28px rgba(242, 194, 94, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.bookcover-img-bundle {
  box-shadow:
    0 32px 60px rgba(0, 0, 0, 0.75),
    0 0 50px rgba(242, 194, 94, 0.25);
}

.pcard:hover .bookcover-img {
  transform: translateY(-4px) rotate(-0.4deg);
}
.pcard-bundle:hover .bookcover-img-bundle {
  transform: translateY(-6px);
}

/* ==========================================
   PRODUCT CARD POLISH — descriptions, fallbacks, rhythm
   ========================================== */
.pcard-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: #d6c7a4;
  margin: 0 0 18px;
  padding: 0 2px;
  letter-spacing: 0.1px;
}
.pcard-desc em { color: var(--gold-bright); font-style: normal; }
.pcard-desc strong { color: #f4d98a; font-weight: 700; font-style: normal; }

/* Compact "what's inside" used inside the single-card */
.pcard-includes-compact {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(126, 201, 138, 0.18);
}
.pcard-includes-compact .pi-eyebrow {
  color: var(--green-bright);
  border-bottom-color: rgba(126, 201, 138, 0.22);
}
.pcard-includes-compact li strong { color: #d4f0d4; }
.pcard-includes-compact .pi-check {
  background: linear-gradient(180deg, var(--green-bright) 0%, #4d9a48 100%);
  color: #0a1505;
}

/* Image-missing fallback so the layout doesn't collapse */
.bookcover-fallback {
  display: none;
}
.bookcover-missing {
  position: relative;
}
.bookcover-missing .bookcover-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 200px;
  aspect-ratio: 3/4;
  margin: 0 auto;
  background:
    repeating-linear-gradient(45deg, rgba(242,194,94,0.04) 0 10px, transparent 10px 20px),
    rgba(0,0,0,0.35);
  border: 1.5px dashed rgba(242, 194, 94, 0.4);
  border-radius: 6px;
  color: rgba(242, 194, 94, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}
.bookcover-missing .bookcover-fallback strong {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.5px;
  text-transform: none;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

/* Tighten vertical spacing in single cards now that they carry more content */
.pcard-single .pcard-includes { margin-top: 0; margin-bottom: 16px; }
.pcard-single .pcard-divider { margin: auto 0 16px; }

/* ==========================================
   LIVE READERS PILL — top of hero, fluctuating count
   ========================================== */
.live-readers {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 18px;
  padding: 6px 14px 6px 12px;
  background: rgba(126, 201, 138, 0.08);
  border: 1px solid rgba(126, 201, 138, 0.32);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--green-bright);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 18px rgba(126, 201, 138, 0.12);
}

.lr-dot {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-bright), 0 0 0 0 rgba(126, 201, 138, 0.5);
  animation: lr-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes lr-pulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 8px var(--green-bright), 0 0 0 0 rgba(126, 201, 138, 0.5); }
  50%      { opacity: 0.7; box-shadow: 0 0 12px var(--green-bright), 0 0 0 6px rgba(126, 201, 138, 0); }
}

.lr-text strong {
  color: #d4f0d4;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-right: 2px;
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.lr-text strong.lr-flip {
  transform: translateY(-3px);
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lr-dot { animation: none; }
  .lr-text strong { transition: none; }
  .lr-text strong.lr-flip { transform: none; opacity: 1; }
}

/* ==========================================
   VALUE-STACK BOX — "What you get" with per-item $ values
   ========================================== */
.pcard-save-banner {
  color: var(--red-bright);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 6px 0 14px;
}

.pcard-value-box {
  border: 1px solid rgba(242, 194, 94, 0.28);
  border-radius: 12px;
  padding: 14px 14px 10px;
  margin: 0 0 18px;
  background: rgba(242, 194, 94, 0.025);
}

.pvb-header {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 12px;
}

.pvb-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px dashed rgba(242, 194, 94, 0.18);
}
.pvb-row:first-of-type { border-top: 0; padding-top: 2px; }

.pvb-tag {
  background: linear-gradient(180deg, #f2c25e 0%, #c89432 100%);
  color: #2a1a05;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 1.2px;
  padding: 4px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pvb-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-cream);
  text-align: left;
  line-height: 1.25;
}

.pvb-value {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--text-light);
  white-space: nowrap;
}
