/* ==========================================================
   THE GUIDEBOOK & CO. - Brand Stylesheet
   ----------------------------------------------------------
   COLOR PALETTE - LOCKED PERMANENTLY (founder approved 2026)
   ----------------------------------------------------------
   Onyx Black    #121214   primary surface, headings, buttons (was Oxford Navy)
   Pure Black    #0C0C0E   gradient floor, hover states (was Navy Deep)
   Charcoal      #202020   secondary dark, banners, dark cards (was Navy Soft)
   Bullion Gold  #A88438   accents, prices, CTAs, italic display
   Gold Light    #C8A14B   gradient peak, hover gold
   Gold Deep     #8B6914   featured price color, em links
   Cream         #EFE6D2   page background, default canvas
   Cream 2       #F4ECD8   alternating sections
   Cream 3       #DDD3BE   borders, dividers within cream
   Ink           #0F1014   body text
   Ink Soft      #4A4A4A   secondary text
   Ink Muted     #7A7470   tertiary text, captions
   Line          #C9BFA5   hairline borders on cream

   DO NOT MODIFY THESE HEX VALUES.
   These are the official brand colors. Every page on the site
   reads from the variables below - changing one value here
   ripples across all 75+ pages. That is the point. The colors
   are locked across the catalog, founders book, bundles,
   trades pages, and policies forever.

   Typography: DM Sans (body) + Instrument Serif (display)
   ========================================================== */

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

/* Lock the site to light color-scheme so iOS Safari / Android Chrome
   don't auto-darken our cream/navy palette into unreadable navy-on-navy.
   This is what was making the format selector boxes (Digital, Hardcover,
   Audio, Complete Kit) appear as dark text on dark background on mobile. */
:root { color-scheme: light; }
html { color-scheme: light; }

:root,
[data-theme='light'] {
  /* Brand Colors — recolored to Black + Emerald + Gold + Cream (founder approved 2026-05-31).
     Navy slots now hold the black family; emerald added as new accent tones.
     Variable NAMES are unchanged so the entire site recolors with zero layout changes. */
  --navy: #121214;          /* was #0B1A2E — now Onyx black (primary surface/buttons/headings) */
  --navy-deep: #0C0C0E;     /* was #06101F — now Pure Black (hover/deepest shadow) */
  --navy-soft: #202020;     /* was #14253D — now Charcoal (secondary dark/banner/card alt) */
  --gold: #A88438;
  --gold-light: #C8A14B;
  --gold-deep: #8B6914;
  --cream: #EFE6D2;
  --cream-2: #F4ECD8;
  --cream-3: #DDD3BE;
  --ink: #0F1014;
  --ink-soft: #4A4A4A;
  --ink-muted: #7A7470;
  --line: #C9BFA5;

  /* Emerald accent family (new tones, added per locked-palette rule #3) */
  --emerald: #0B251D;        /* brightest emerald (glow center) */
  --emerald-deep: #0B221B;   /* mid emerald */
  --emerald-shadow: #0A1D19; /* emerald edge fading to black */

  /* Semantic */
  --color-bg: var(--cream);
  --color-surface: #FFFFFF;
  --color-surface-2: var(--cream-2);
  --color-text: var(--ink);
  --color-text-muted: var(--ink-soft);
  --color-text-faint: var(--ink-muted);
  --color-primary: var(--navy);
  --color-primary-hover: var(--navy-deep);
  --color-accent: var(--gold);
  --color-accent-hover: var(--gold-deep);
  --color-border: var(--line);

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-narrow: 680px;
  --content-default: 1080px;
  --content-wide: 1280px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  /* Fonts */
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Transitions */
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(18, 18, 20, 0.06), 0 0 1px rgba(18, 18, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(18, 18, 20, 0.08), 0 2px 6px rgba(18, 18, 20, 0.04);
  --shadow-lg: 0 24px 48px rgba(18, 18, 20, 0.14), 0 8px 16px rgba(18, 18, 20, 0.06);
  --shadow-gold: 0 8px 28px rgba(200, 147, 43, 0.28);
}

/* ============================================
   BASE
   ============================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-feature-settings: 'ss01', 'cv11';
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

p, li { text-wrap: pretty; max-width: 68ch; }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a, button { transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition); }

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container-wide { max-width: var(--content-wide); }
.container-narrow { max-width: var(--content-narrow); }

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* ============================================
   NAVBAR
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-brand img { width: auto; height: 36px; border-radius: 0; display: block; }
@media (max-width: 600px) { .nav-brand img { height: 32px; } }
.nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  border: 1px solid var(--gold-deep);
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; transform: translateY(-1px); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  border: 2px solid transparent;
  box-sizing: border-box;
  max-width: 100%;
  word-break: keep-all;
  line-height: 1.2;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 147, 43, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-on-dark {
  background: var(--gold);
  color: var(--navy);
}
.btn-on-dark:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 248, 243, 0.4);
}
.btn-ghost-light:hover {
  background: rgba(250, 248, 243, 0.1);
  border-color: var(--cream);
}
.btn-block { display: flex; width: 100%; max-width: 100%; box-sizing: border-box; }

/* ============================================
   HERO (Homepage)
   ============================================ */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(10, 29, 25, 0.7) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--space-6);
  text-align: center;
}
.hero-crest {
  width: clamp(440px, 55vw, 720px) !important;
  max-width: 92vw !important;
  height: auto !important;
  margin: 0 auto var(--space-8) !important;
  padding: clamp(24px, 3vw, 44px);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 192, 90, 0.5);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  display: block;
}

/* Hero book cover — displays the Founder's Guidebook front cover as the headline image */
.hero-book-link {
  display: block;
  width: clamp(280px, 38vw, 460px);
  max-width: 86vw;
  margin: 0 auto var(--space-8);
  text-decoration: none;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  isolation: isolate;
}
/* Golden glow halo — sacred aura around the Founder's Guidebook */
.hero-book-link::before {
  content: "";
  position: absolute;
  inset: -45% -55%;
  z-index: -2;
  background:
    radial-gradient(ellipse at center,
      rgba(232, 192, 90, 0.55) 0%,
      rgba(232, 192, 90, 0.38) 18%,
      rgba(200, 147, 43, 0.22) 35%,
      rgba(200, 147, 43, 0.08) 55%,
      rgba(200, 147, 43, 0) 75%);
  filter: blur(28px);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}
.hero-book-link::after {
  content: "";
  position: absolute;
  inset: -18% -22%;
  z-index: -1;
  background:
    radial-gradient(ellipse at center,
      rgba(255, 220, 130, 0.32) 0%,
      rgba(232, 192, 90, 0.18) 30%,
      rgba(232, 192, 90, 0) 70%);
  filter: blur(14px);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite reverse;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-book-link::before,
  .hero-book-link::after { animation: none; }
}
.hero-book-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(200, 147, 43, 0.55),
    0 0 80px rgba(232, 192, 90, 0.35),
    0 0 140px rgba(232, 192, 90, 0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.hero-book-link:hover .hero-book-cover,
.hero-book-link:focus-visible .hero-book-cover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(232, 192, 90, 0.8),
    0 0 100px rgba(232, 192, 90, 0.45),
    0 0 180px rgba(232, 192, 90, 0.22);
}

/* Secondary CTA on dark hero */
.btn-secondary-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: transparent;
  border: 1.5px solid rgba(232, 192, 90, 0.55);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-secondary-on-dark:hover,
.btn-secondary-on-dark:focus-visible {
  background: rgba(232, 192, 90, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 0.7rem + 0.3vw, 1.05rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
  font-weight: 700;
  animation: fadeUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.6vw, 7rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: var(--space-6);
  animation: fadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1.1rem, 0.6rem + 0.7vw, 1.4rem);
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.92);
  max-width: 820px;
  margin: 0 auto var(--space-10);
  animation: fadeUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION HEADERS (universal)
   ============================================ */

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.section-title em { color: var(--gold-deep); font-style: italic; }
.section-lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: var(--space-12);
  line-height: 1.5;
}
.section-head { margin-bottom: var(--space-12); }
.section-head.center { text-align: center; }
.section-head.center .section-lede { margin-inline: auto; }

/* Decorative gold rule */
.gold-rule {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-block: var(--space-6);
  color: var(--gold);
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-rule.center { justify-content: center; max-width: 200px; margin-inline: auto; }
.gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================
   PRODUCT CARDS GRID
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  align-items: stretch;
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
}
.product-card.featured .product-name,
.product-card.featured .product-price-amount {
  color: var(--cream);
}
.product-card.featured .product-tagline,
.product-card.featured .product-features li {
  color: rgba(250, 248, 243, 0.85);
}
.product-card.featured .product-features li::before {
  background: var(--gold);
}
.product-card.featured .product-price-anchor {
  color: rgba(250, 248, 243, 0.55);
}
.product-tag {
  position: absolute;
  top: -12px;
  left: var(--space-6);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 20px;
}
.product-series {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.product-card.featured .product-series { color: var(--gold-light); }
.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}
.product-tagline {
  color: var(--ink-soft);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}
.product-features {
  list-style: none;
  margin-bottom: var(--space-6);
}
.product-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.product-price {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  margin-bottom: var(--space-5);
}
/* When a card has no price block, push the button to the bottom so all cards align */
.product-card > .btn:last-child,
.product-card > .btn-block:last-child {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.product-card.featured .product-price { border-top-color: rgba(200, 147, 43, 0.3); }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
}
.product-price-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1;
}
.product-price-anchor {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  text-decoration: line-through;
}
.product-price-meta {
  font-size: var(--text-xs);
  color: var(--ink-muted);
}

/* ============================================
   PRODUCT PAGE — sales page layout
   ============================================ */

.product-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.product-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: clamp(var(--space-16), 10vw, var(--space-24)) var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .product-hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-16); }
}
.product-hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.product-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.product-hero h1 em { color: var(--gold-light); font-style: italic; }
.product-hero-sub {
  font-size: var(--text-lg);
  color: rgba(250, 248, 243, 0.88);
  margin-bottom: var(--space-8);
  line-height: 1.5;
}
.product-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-8);
}
.price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-3);
  background: rgba(200, 147, 43, 0.15);
  border: 1px solid var(--gold);
  padding: var(--space-3) var(--space-5);
  border-radius: 40px;
}
.price-pill-now {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold-light);
}
.price-pill-was {
  font-size: var(--text-sm);
  color: rgba(250, 248, 243, 0.55);
  text-decoration: line-through;
}
.price-pill-tag {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.85);
}
.product-hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 147, 43, 0.3);
}
.product-hero-image img { width: 100%; display: block; }

/* ============================================
   FEATURE / WHAT'S INSIDE GRID
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}
.feature-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.feature-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.feature-text {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ============================================
   STORY / WHO IT'S FOR
   ============================================ */

.story {
  background: var(--cream-2);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}
.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-text p {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-5);
  margin-block: var(--space-6);
  line-height: 1.4;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-6);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.5em;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: var(--space-4);
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================
   CTA BAND (final CTA before footer)
   ============================================ */

.cta-band {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--cream);
  margin-bottom: var(--space-5);
}
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band p {
  font-size: var(--text-lg);
  color: rgba(250, 248, 243, 0.85);
  max-width: 580px;
  margin: 0 auto var(--space-10);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-deep);
  color: rgba(250, 248, 243, 0.7);
  padding-block: var(--space-16);
}
.footer-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr; align-items: start; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer-brand .nav-brand { color: var(--cream); }
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: var(--space-2); }
.footer a { font-size: var(--text-sm); color: rgba(250, 248, 243, 0.7); }
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--content-wide);
  margin: var(--space-12) auto 0;
  padding: var(--space-6) var(--space-6) 0;
  border-top: 1px solid rgba(250, 248, 243, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(250, 248, 243, 0.5);
}
.footer-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
}

/* ============================================
   TRUST BAND (BNPL / payment options)
   ============================================ */

.trust-band {
  background: var(--cream-2);
  padding-block: var(--space-12);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
  text-align: center;
}
.trust-label {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-5);
  font-weight: 600;
}
.trust-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--navy);
}
.trust-options span { display: inline-flex; align-items: center; gap: var(--space-2); }
.trust-options span::before { content: '◆'; color: var(--gold); font-size: 0.7em; }

/* ============================================
   COMPACT PRICING TABLE (homepage)
   ============================================ */

.bundles {
  background: var(--cream-2);
}

/* ============================================
   ABOUT BAND
   ============================================ */

.about-band {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-16); }
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

/* ============================================
   PRELAUNCH BANNER
   ============================================ */

.prelaunch-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  position: sticky;
  top: 0;
  z-index: 60;
}
.prelaunch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.prelaunch-banner + .nav { top: 0; }

/* ============================================
   WAITLIST FORM
   ============================================ */

.waitlist-form {
  display: flex;
  gap: var(--space-2);
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 147, 43, 0.15);
}
.waitlist-form button {
  white-space: nowrap;
  flex-shrink: 0;
}
.waitlist-form-hero {
  max-width: 540px;
  margin: 0 auto;
}
.waitlist-form-dark input[type="email"] {
  background: rgba(250, 248, 243, 0.08);
  border-color: rgba(200, 147, 43, 0.4);
  color: var(--cream);
  backdrop-filter: blur(10px);
}
.waitlist-form-dark input[type="email"]::placeholder {
  color: rgba(250, 248, 243, 0.55);
}
.waitlist-form-dark input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(250, 248, 243, 0.12);
}
.waitlist-meta {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  text-align: center;
  margin-top: var(--space-3);
  letter-spacing: 0.04em;
}
.waitlist-meta-dark {
  font-size: var(--text-xs);
  color: rgba(250, 248, 243, 0.6);
  text-align: center;
  margin-top: var(--space-3);
  letter-spacing: 0.04em;
}

/* fadeIn-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MANIFESTO BAND (homepage)
   ============================================ */
.manifesto-band {
  background: var(--cream-2);
  padding-block: var(--space-20);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-block: var(--space-4) var(--space-6);
}
.manifesto-headline em {
  font-style: italic;
  color: var(--gold-deep);
}
.manifesto-sub {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
  margin-inline: auto;
}

/* Three-column product grid override */
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}
@media (max-width: 980px) {
  .product-grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   TRADES TEASER BAND
   ============================================ */
.trades-teaser {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(200,147,43,0.18), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(200,147,43,0.10), transparent 60%);
  padding-block: var(--space-24);
  color: var(--cream);
}
.trades-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 980px) {
  .trades-teaser-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}
.trades-teaser-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-6);
}
.trades-teaser-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(239,230,210,0.82);
  padding-block: var(--space-2);
  border-bottom: 1px solid rgba(200,147,43,0.18);
}
.trades-teaser-list li span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  font-style: italic;
  min-width: 1.8em;
}
.trades-teaser-img {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,147,43,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.trades-teaser-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* ============================================
   AUTHORITY / WHY OUR BOOKS ARE DIFFERENT
   ============================================ */
.authority-band {
  background: var(--cream);
  padding-block: var(--space-24);
  border-top: 1px solid var(--line);
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (max-width: 980px) {
  .authority-grid { grid-template-columns: 1fr; }
}
.authority-card {
  background: var(--color-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.authority-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(18, 18, 20, 0.18);
  border-color: var(--gold);
}
.authority-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.authority-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-3);
  letter-spacing: -0.005em;
}
.authority-card p {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.authority-quote {
  margin: var(--space-16) auto 0;
  max-width: 780px;
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
}
.authority-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 0.9rem + 1vw, 1.7rem);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.authority-quote-name {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   MEGA MENU
   ============================================ */

.has-mega { position: static; }
.nav-inner { position: relative; }
.nav-links .has-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-links .has-mega > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--transition);
  margin-left: 4px;
}
.has-mega.open > a::after,
.has-mega:hover > a::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: var(--space-6);
  right: var(--space-6);
  transform: translateY(-6px);
  max-width: 1180px;
  margin-inline: auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}
.has-mega:hover > .mega-panel,
.has-mega.open > .mega-panel,
.has-mega:focus-within > .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.mega-cat {
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.mega-cat:hover {
  background: var(--color-surface);
  border-color: var(--line);
  transform: translateY(-2px);
}
.mega-cat-head { display: block; }
.mega-cat-head:hover .mega-cat-title { color: var(--gold-deep); }
.mega-cat-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.mega-cat-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: var(--space-1);
}
.mega-cat-count {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  margin-bottom: var(--space-3);
}
.mega-cat ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2);
}
.mega-cat li {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  padding-block: 2px;
  line-height: 1.4;
}
.mega-cat li:hover { color: var(--navy); }
.mega-cat-cta {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: var(--space-2);
  display: inline-block;
}

.mega-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.mega-footer-note {
  font-size: var(--text-xs);
  color: var(--ink-muted);
}
.mega-footer-cta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.mega-footer-cta::after { content: '→'; transition: transform var(--transition); }
.mega-footer-cta:hover::after { transform: translateX(4px); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
  color: var(--navy);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-collapsed mega menu / nav */
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-inner { position: relative; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: var(--space-3) var(--space-6) var(--space-5);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links > li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: var(--space-4) 0; font-size: var(--text-base); }
  .nav-cta { margin-top: var(--space-3); text-align: center; padding: var(--space-3) var(--space-5); }

  .has-mega > a::after { margin-left: auto; }
  .has-mega > a { justify-content: space-between; width: 100%; }

  .mega-panel {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0 0 var(--space-3);
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .has-mega.open > .mega-panel { display: block; }
  .mega-grid { grid-template-columns: 1fr; gap: var(--space-2); }
  .mega-cat { padding: var(--space-3) 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .mega-cat:last-child { border-bottom: 0; }
  .mega-cat:hover { background: transparent; transform: none; border-color: transparent; border-bottom-color: var(--line); }
  .mega-cat ul { display: none; }
  .mega-footer { display: none; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* Tablet narrowing of mega-grid */
@media (min-width: 881px) and (max-width: 1100px) {
  .mega-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   TRADE PICKER (homepage hero-adjacent)
   ============================================ */

.trade-picker {
  background: var(--cream);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  border-bottom: 1px solid var(--line);
}
.trade-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}
@media (max-width: 1080px) { .trade-picker-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trade-picker-grid { grid-template-columns: 1fr; } }

.tpc {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
  min-height: 280px;
}
.tpc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(18, 18, 20, 0.18);
  border-color: var(--gold);
  background: var(--navy);
  color: var(--cream);
}
.tpc:hover .tpc-name { color: var(--cream); }
.tpc:hover .tpc-count { color: var(--gold-light); }
.tpc:hover .tpc-list li { color: rgba(239,230,210,0.78); }
.tpc:hover .tpc-cta { color: var(--gold-light); }
.tpc:hover .tpc-cta::after { transform: translateX(4px); }

.tpc.tint-cream { background: var(--cream-2); }
.tpc.tint-cream:hover { background: var(--navy); }
.tpc.tint-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
}
.tpc.tint-navy .tpc-name { color: var(--cream); }
.tpc.tint-navy .tpc-count { color: var(--gold-light); }
.tpc.tint-navy .tpc-list li { color: rgba(239,230,210,0.78); }
.tpc.tint-navy .tpc-cta { color: var(--gold-light); }

.tpc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}
.tpc.tint-navy .tpc-num { color: var(--gold-light); }
.tpc:hover .tpc-num { color: var(--gold-light); }

.tpc-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.tpc-count {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: var(--space-4);
}
.tpc-list {
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
}
.tpc-list li {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  padding-block: 3px;
  line-height: 1.4;
}
.tpc-cta {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tpc-cta::after { content: '→'; transition: transform var(--transition); }

/* ============================================
   CATEGORY LANDING PAGE
   ============================================ */

.cat-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/img/hero_bg.png');
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.cat-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: clamp(var(--space-16), 9vw, var(--space-20)) var(--space-6);
}
.cat-hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.cat-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: var(--space-6);
  max-width: 18ch;
}
.cat-hero h1 em { color: var(--gold-light); font-style: italic; }
.cat-hero-sub {
  font-size: var(--text-lg);
  color: rgba(239,230,210,0.82);
  max-width: 62ch;
  line-height: 1.55;
}
.cat-hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-6);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: rgba(239,230,210,0.72);
}
.cat-hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

/* Trade card grid */
.trade-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.trade-card {
  background: var(--color-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.trade-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -18px rgba(18, 18, 20, 0.18);
  border-color: var(--gold);
}
.trade-card-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-4);
  align-self: flex-start;
}
.trade-card-status.live { background: var(--gold); color: var(--navy); }
.trade-card-status.soon { background: var(--cream-2); color: var(--ink-muted); border: 1px solid var(--line); }
.trade-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.trade-card-tag {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: var(--space-5);
}
.trade-card-foot {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.trade-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
}
.trade-card-price span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--ink-muted);
  font-weight: 500;
  margin-left: 6px;
}
.trade-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trade-card-link::after { content: '→'; transition: transform var(--transition); }
.trade-card-link:hover::after { transform: translateX(4px); }

/* ============================================
   BUNDLE LADDER (3-tier)
   ============================================ */

.ladder-band {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
  align-items: stretch;
}
@media (max-width: 980px) { .ladder { grid-template-columns: 1fr; } }

.tier {
  background: var(--color-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tier:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -20px rgba(18, 18, 20, 0.16);
}
.tier-best {
  border-color: var(--gold);
  border-width: 2px;
  background: var(--cream);
}
.tier-best::before {
  content: 'Most Chosen';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-stack {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
}
.tier-stack .tier-name,
.tier-stack .tier-price-amount { color: var(--cream); }
.tier-stack .tier-blurb,
.tier-stack .tier-list li { color: rgba(239,230,210,0.82); }
.tier-stack .tier-list li::before { background: var(--gold-light); }
.tier-stack .tier-anchor { color: rgba(239,230,210,0.55); }

.tier-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.tier-stack .tier-eyebrow { color: var(--gold-light); }
.tier-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.tier-blurb {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--space-5);
}
.tier-price-row {
  display: flex; align-items: baseline; gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.tier-price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.tier-anchor {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  text-decoration: line-through;
}
.tier-save {
  display: inline-block;
  background: rgba(200,147,43,0.15);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: var(--space-5);
}
.tier-stack .tier-save { background: rgba(200,147,43,0.25); color: var(--gold-light); }
.tier-list {
  list-style: none; padding: 0;
  margin: 0 0 var(--space-6);
}
.tier-list li {
  position: relative;
  padding-left: 22px;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: var(--space-2);
}
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.tier-cta {
  margin-top: auto;
}

/* BNPL trust row (small) */
.bnpl-row {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  text-align: center;
}
.bnpl-label {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-3);
}
.bnpl-logos {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-4);
}
.bnpl-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: -0.01em;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--color-surface);
  color: var(--ink);
}
.bnpl-logo.klarna { color: #000; background: #FFA8CD; border-color: transparent; }
.bnpl-logo.afterpay { color: #000; background: #B2FCE4; border-color: transparent; }
.bnpl-logo.affirm { color: #fff; background: #060809; border-color: transparent; }
.bnpl-note {
  display: block;
  font-size: var(--text-xs);
  color: var(--ink-muted);
  margin-top: var(--space-3);
  letter-spacing: 0.02em;
}

/* small BNPL inline under CTA */
.bnpl-mini {
  margin-top: var(--space-3);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  text-align: center;
}
.bnpl-mini strong { color: var(--ink-soft); font-weight: 600; }

/* Cross-sell strip */
.cross-sell {
  background: var(--cream);
}
.cross-sell-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-8);
}
.cross-pill {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  background: var(--color-surface);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: var(--space-3) var(--space-5);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.cross-pill:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.cross-pill.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
}

/* ===========================================================
   LAUNCH DAY · PRICING POP + COVER GLOW
   Visual amplification on tier cards, product cards, book covers.
   Keeps locked palette: navy #0B1A2E, gold #A88438, cream #EFE6D2.
   =========================================================== */

/* --- TIER CARDS (book pages: Digital + Hardcover) ---------- */
.tier {
  border-radius: 18px;
  padding: var(--space-9) var(--space-6) var(--space-7);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream-2) 100%);
  border: 1px solid rgba(12, 12, 14, 0.08);
  box-shadow: 0 6px 18px -10px rgba(12, 12, 14, 0.18);
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -28px rgba(12, 12, 14, 0.28);
  border-color: rgba(168, 132, 56, 0.45);
}
.tier-best {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(168, 132, 56, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(168, 132, 56, 0.08),
    0 24px 60px -24px rgba(168, 132, 56, 0.45),
    0 14px 40px -18px rgba(12, 12, 14, 0.22);
  transform: translateY(-4px);
}
.tier-best:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 4px rgba(168, 132, 56, 0.14),
    0 36px 80px -28px rgba(168, 132, 56, 0.55),
    0 20px 50px -20px rgba(12, 12, 14, 0.30);
}
.tier-best::before {
  content: 'BEST VALUE';
  top: -16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #C29A47 100%);
  box-shadow:
    0 6px 16px -4px rgba(168, 132, 56, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
  border-radius: 999px;
  animation: tierBestPulse 2.4s ease-in-out infinite;
}
@keyframes tierBestPulse {
  0%, 100% { box-shadow: 0 6px 16px -4px rgba(168,132,56,0.55), inset 0 1px 0 rgba(255,255,255,0.35); }
  50%      { box-shadow: 0 8px 24px -2px rgba(168,132,56,0.85), inset 0 1px 0 rgba(255,255,255,0.45); }
}

/* Bigger, bolder price on tier cards */
.tier-price-amount {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.tier-best .tier-price-amount { color: var(--navy); }
.tier-anchor { font-size: 0.95rem; }
.tier-save {
  font-size: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(168,132,56,0.18), rgba(168,132,56,0.08));
  border: 1px solid rgba(168,132,56,0.35);
}
.tier-cta .btn-primary {
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px -10px rgba(168, 132, 56, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tier-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(168, 132, 56, 0.85);
}

/* --- PRODUCT CARDS (homepage / founders / bundle) ---------- */
.product-card {
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream-2) 100%);
  border: 1px solid rgba(12, 12, 14, 0.08);
  box-shadow: 0 6px 18px -10px rgba(12, 12, 14, 0.18);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -28px rgba(12, 12, 14, 0.28);
  border-color: rgba(168, 132, 56, 0.45);
}
.product-card.featured {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(168, 132, 56, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, var(--emerald) 0%, var(--navy) 100%);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(168, 132, 56, 0.10),
    0 30px 70px -28px rgba(168, 132, 56, 0.55),
    0 18px 50px -22px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}
.product-card.featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 4px rgba(168, 132, 56, 0.18),
    0 40px 90px -30px rgba(168, 132, 56, 0.70),
    0 22px 56px -22px rgba(0, 0, 0, 0.50);
}
.product-tag {
  background: linear-gradient(135deg, var(--gold) 0%, #C29A47 100%);
  font-weight: 800;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  box-shadow:
    0 6px 16px -4px rgba(168, 132, 56, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
  animation: tierBestPulse 2.4s ease-in-out infinite;
}
.product-price-amount {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 500;
}

/* --- BOOK COVERS · cover hover lift + soft gold glow -------- */
.product-hero-image {
  border-radius: 6px;
  border: none;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-hero-image img {
  border-radius: 4px;
  box-shadow:
    0 30px 70px -25px rgba(12, 12, 14, 0.55),
    0 0 0 1px rgba(168, 132, 56, 0.35),
    0 0 50px -10px rgba(168, 132, 56, 0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.product-hero-image:hover img {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 40px 90px -25px rgba(12, 12, 14, 0.65),
    0 0 0 1px rgba(168, 132, 56, 0.65),
    0 0 80px -10px rgba(168, 132, 56, 0.32);
}

/* --- TRADE TILES (homepage trades grid) - subtle pop -------- */
.trade-tile {
  position: relative;
}
.trade-tile:hover {
  border-color: var(--gold) !important;
  box-shadow:
    0 14px 32px -16px rgba(12, 12, 14, 0.25),
    0 0 0 1px rgba(168, 132, 56, 0.35) !important;
  transform: translateY(-3px) !important;
}

/* --- Reduced motion safety --------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .tier-best::before,
  .product-tag {
    animation: none;
  }
}

/* ============================================
   LAUNCH DAY v2 - READABILITY BUMP (May 10)
   User feedback: lettering too small, prices need to POP
   ============================================ */

/* --- Trade picker cards (homepage "Pick Your Path" grid) --- */
.tpc-num {
  font-size: 1.3rem !important;
}
.tpc-name {
  font-size: 1.95rem !important;
  font-weight: 500;
}
.tpc-count {
  font-size: 0.82rem !important;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.tpc-list li {
  font-size: 1.05rem !important;
  font-weight: 500;
  color: var(--ink) !important;
  padding-block: 5px;
  line-height: 1.5;
}
.tpc:hover .tpc-list li,
.tpc.tint-navy .tpc-list li {
  color: rgba(239,230,210,0.92) !important;
}
.tpc-cta {
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

/* --- Per-book pricing tiers (book-*.html offers.html) ----- */
.tier-name {
  font-size: 1.85rem !important;
  font-weight: 600;
}
.tier-price-amount {
  font-size: 3.4rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}
.tier-best .tier-price-amount {
  color: var(--gold-deep) !important;
  text-shadow: 0 1px 0 rgba(168,132,56,0.15);
}
.tier-blurb {
  font-size: 1.02rem !important;
  line-height: 1.6;
  color: var(--ink) !important;
}
.tier-cta-btn {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding-block: 14px !important;
}

/* --- Homepage "Choose Your Path" pricing tiles ------------ */
.path-tier {
  background: rgba(239,230,210,0.06);
  border: 1px solid rgba(239,230,210,0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.path-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(168,132,56,0.55);
  box-shadow: 0 28px 60px -28px rgba(0,0,0,0.55);
}
.path-tier-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239,230,210,0.72);
}
.path-tier-price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 1.6vw, 3.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.path-tier-price .anchor {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(239,230,210,0.5);
  text-decoration: line-through;
  margin-left: 0.5rem;
  letter-spacing: 0;
}
.path-tier-desc {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: rgba(239,230,210,0.78);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.path-tier-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: rgba(239,230,210,0.92);
  text-decoration: none;
  padding: 14px 18px;
  border: 1.5px solid rgba(239,230,210,0.28);
  border-radius: var(--radius-md);
  transition: 220ms;
  letter-spacing: 0.01em;
}
.path-tier-cta:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(168,132,56,0.12);
}
/* Featured (Most Popular) variant */
.path-tier.featured {
  background: linear-gradient(180deg, rgba(168,132,56,0.18) 0%, rgba(168,132,56,0.06) 100%);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 1px rgba(168,132,56,0.18) inset,
    0 24px 60px -22px rgba(168,132,56,0.45);
}
.path-tier.featured .path-tier-label { color: var(--gold-light); }
.path-tier.featured .path-tier-price { color: var(--gold-light); }
.path-tier.featured .path-tier-desc { color: rgba(239,230,210,0.88); }
.path-tier.featured .path-tier-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 800;
}
.path-tier.featured .path-tier-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.path-tier-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px -4px rgba(168,132,56,0.6);
}

/* --- Trades catalog pages (trades-*.html) lists ----------- */
.tpc .tpc-list { list-style: none; }

/* ============================================
   LAUNCH BANNER (replaces prelaunch banner) - May 10
   Clickable: routes to Founders page. Bold, big, gold.
   ============================================ */
.prelaunch-banner.launch-banner {
  background: linear-gradient(180deg, #C29A45 0%, #A88438 55%, #8E6E27 100%) !important;
  color: var(--navy) !important;
  padding: 12px var(--space-6) !important;
  gap: var(--space-3) !important;
  border-bottom: 1px solid rgba(12, 12, 14, 0.22);
  box-shadow: 0 6px 24px -16px rgba(12, 12, 14, 0.45);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 60;
  transition: filter 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}
.prelaunch-banner.launch-banner:hover,
.prelaunch-banner.launch-banner:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 10px 30px -14px rgba(12, 12, 14, 0.55);
  outline: none;
}
.launch-pill {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--gold-light, #C9A462);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201,164,98,0.45);
  box-shadow: 0 2px 0 rgba(0,0,0,0.12), 0 0 0 0 rgba(201,164,98,0.4);
  animation: launch-pill-pulse 2.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes launch-pill-pulse {
  0%, 100% { box-shadow: 0 2px 0 rgba(0,0,0,0.12), 0 0 0 0 rgba(201,164,98,0.55); }
  50%      { box-shadow: 0 2px 0 rgba(0,0,0,0.12), 0 0 0 8px rgba(201,164,98,0); }
}
.launch-line {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(0.92rem, 0.55rem + 1vw, 1.15rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
}
.launch-line strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-left: 0.25em;
}
.launch-arrow {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  transition: transform 220ms ease;
  flex-shrink: 0;
}
.prelaunch-banner.launch-banner:hover .launch-arrow,
.prelaunch-banner.launch-banner:focus-visible .launch-arrow {
  transform: translateX(5px);
}
@media (max-width: 540px) {
  .prelaunch-banner.launch-banner { padding: 10px 12px !important; gap: 8px !important; }
  .launch-pill { font-size: 0.62rem; padding: 4px 8px; letter-spacing: 0.18em; }
  .launch-line { font-size: 0.86rem; }
  .launch-arrow { font-size: 1.05rem; }
}
@media (prefers-reduced-motion: reduce) {
  .launch-pill { animation: none; }
}
/* Hide any leftover dot helpers without breaking layout */
.prelaunch-banner .prelaunch-dot { display: none !important; }
