/* ============================================================
   National Narratives — marketing site
   Structure/motion (masthead numbering, glow blobs, hero line-reveal,
   Lenis smooth scroll, bespoke artifact mocks) kept from the earlier
   dark redesign. Colors and type reset to Jack Hudson's actual Brand
   System Guide per his 2026-07-01 feedback email: forest-deep bg,
   cream text, gold accent, Cormorant Garamond + Inter ONLY (no other
   typefaces), no em dashes anywhere in copy.
   ============================================================ */

:root{
  /* ---- color tokens (Jack's brand, per his 7/1 email) ---- */
  --bg: #1E3610;            /* forest-deep — his exact spec for page background */
  --bg-elevated: #182B0D;   /* slightly darker, alternate-section recede */
  --bg-card: #2D5016;       /* forest — his exact brand green, used to lift cards */
  --line: rgba(237,230,214,0.14);
  --line-bright: rgba(237,230,214,0.26);

  --cream: #EDE6D6;         /* his exact spec for text/headlines, and the literal
                                paper tone behind the artifact mocks */
  --chrome: #D9D1BC;        /* dimmed cream — secondary UI text (nav links) */
  --text-2: #C8D8B8;        /* sage-soft — secondary body copy */
  --text-3: #90B878;        /* sage — muted labels/captions */

  --gold: #D4AF37;          /* gold-light — primary accent */
  --gold-bright: #FFF8E1;   /* gold-tint — hover/lighter variant */
  --gold-glow: rgba(212,175,55,0.22);
  --green: #3A6A1C;         /* forest-mid — secondary accent, distinct from bg */
  --green-bright: #90B878;
  --green-glow: rgba(58,106,28,0.22);

  /* gradient TEXT only (per his note): forest-tint to gold-light, nothing else */
  --grad-start: #EEF6E8;
  --grad-end: #D4AF37;

  --success: #10B981;
  --warning: #F59E0B;
  --info: #3B82F6;

  --border: var(--line);
  --border-on-dark: var(--line);

  /* ---- type: Cormorant Garamond or Inter, without exception ---- */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* ---- radii ---- */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ---- spacing ---- */
  --s-1: 4px; --s-2: 8px; --s-4: 16px; --s-6: 24px;
  --s-8: 32px; --s-12: 48px; --s-16: 64px; --s-24: 96px;

  /* ---- motion ---- */
  --dur-base: 200ms;
  --dur-reveal: 700ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:auto; -webkit-text-size-adjust:100%; } /* Lenis owns smoothing */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--chrome);
  font-family:var(--font-sans);
  font-size:17px;
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  position:relative;
}

/* subtle grain so the flat forest-green field doesn't band */
body::before{
  content:"";
  position:fixed; inset:0; z-index:1; pointer-events:none;
  opacity:0.035; mix-blend-mode:screen;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nav, .masthead-bar, footer.footer{ position:relative; z-index:2; }
main{ position:relative; z-index:2; }

/* thin fill-as-you-scroll bar, sits above everything including the nav */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg, var(--green-bright), var(--gold));
  z-index:300; pointer-events:none;
  transition:width 80ms linear;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font-family:inherit; }

h1,h2,h3{ font-family:var(--font-serif); font-weight:700; line-height:1.1; letter-spacing:-0.01em; margin:0; color:var(--cream); }
h3{ font-weight:600; }
p{ margin:0; }

/* the signature animated gradient accent — used sparingly: one phrase
   per major headline, never whole paragraphs. Forest-tint to gold-light,
   per Jack's spec, nothing else. */
.grad{
  background:linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  background-size:200% 200%;
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  animation:gradShift 8s ease infinite;
  font-family:var(--font-serif); font-style:italic; font-weight:500;
  padding-right:0.06em;
}
@keyframes gradShift{ 0%,100%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } }

.section-label{
  font-family:var(--font-sans); font-size:12px; text-transform:uppercase; letter-spacing:0.16em; font-weight:600;
  color:var(--text-3); margin-bottom:28px; display:flex; align-items:center; gap:12px;
}

.container{ max-width:1152px; margin:0 auto; padding:0 24px; }

.section{ padding:120px 0; position:relative; }
@media (max-width:720px){ .section{ padding:72px 0; } }
.section.elevated{ background:var(--bg-elevated); }

/* ---------------- focus & accessibility ---------------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
  border-radius:4px;
}
.skip-link{
  position:absolute; left:-9999px; top:auto;
  background:var(--gold); color:#1E3610; padding:12px 20px; border-radius:0 0 8px 0;
  font-weight:700; z-index:200;
}
.skip-link:focus{ left:0; top:0; }

/* ============================================================
   MASTHEAD STRIP
   ============================================================ */
.masthead-bar{
  background:var(--bg-elevated); color:var(--text-3);
  border-bottom:1px solid var(--line);
}
.masthead-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:7px 24px; font-family:var(--font-sans); font-size:10.5px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
}
.masthead-center{ color:var(--gold); letter-spacing:0.2em; }
@media (max-width:760px){
  .masthead-inner > span:not(.masthead-center){ display:none; }
  .masthead-inner{ justify-content:center; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(30,54,16,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1152px; margin:0 auto; padding:12px 24px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.nav-logo{ display:flex; align-items:center; transition:transform var(--dur-base) var(--ease-out); }
.nav-logo:hover{ transform:scale(1.03); }
.nav-logo img{ height:68px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{
  position:relative;
  font-size:14.5px; font-weight:500; text-decoration:none; color:var(--chrome);
  padding:8px 2px;
  transition:color var(--dur-base) var(--ease-out);
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background:var(--gold); transition:right 250ms var(--ease-out);
}
.nav-links a:hover{ color:var(--cream); }
.nav-links a:hover::after{ right:0; }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none; background:none; border:1px solid var(--line-bright); border-radius:var(--radius-md); color:var(--chrome);
  width:44px; height:44px; align-items:center; justify-content:center; cursor:pointer;
}
.nav-mobile-panel{ display:none; }

@media (max-width: 880px){
  .nav-logo img{ height:52px; }
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-outline-sm{ display:none; }
  .nav-mobile-panel.open{
    display:flex; flex-direction:column; gap:4px;
    padding:8px 24px 20px; border-top:1px solid var(--line);
    background:var(--bg);
  }
  .nav-mobile-panel a{
    padding:14px 4px; font-size:17px; font-weight:600; text-decoration:none; color:var(--chrome);
    border-bottom:1px solid var(--line);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-sans); font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:0.14em;
  padding:16px 26px; border-radius:var(--radius-sm);
  border:1px solid transparent; cursor:pointer; text-decoration:none;
  min-height:50px;
  transition:transform var(--dur-base) var(--ease-out), gap var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  white-space:nowrap; position:relative; overflow:hidden;
}
.btn:active{ transform:scale(0.97); }

.btn-gold, .btn-primary{
  background:linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
  color:#12200A; font-weight:700;
}
.btn-gold::before, .btn-primary::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 48%, rgba(255,255,255,0.45) 52%, transparent 70%);
  background-size:250% 100%; background-position:150% 0;
  transition:background-position 650ms var(--ease-out);
}
.btn-gold:hover::before, .btn-primary:hover::before{ background-position:-50% 0; }
.btn-gold::after, .btn-primary::after{ content:'→'; transition:transform var(--dur-base) var(--ease-out); position:relative; }
.btn-gold span, .btn-primary span{ position:relative; }
.btn-gold:hover, .btn-primary:hover{ box-shadow:0 8px 32px var(--green-glow), 0 8px 32px var(--gold-glow); transform:translateY(-2px); gap:14px; }
.btn-gold:hover::after, .btn-primary:hover::after{ transform:translateX(3px); }

.btn-outline, .btn-outline-light{
  background:transparent; color:var(--chrome); border:1px solid var(--line-bright);
}
.btn-outline:hover, .btn-outline-light:hover{ color:var(--cream); border-color:var(--cream); background:rgba(237,230,214,0.05); }
.btn-outline-sm{ padding:11px 18px; font-size:11.5px; min-height:42px; }
.btn-link{ background:none; border:none; padding:0; color:var(--gold-bright); font-weight:600; text-decoration:underline; text-underline-offset:3px; font-family:var(--font-sans); text-transform:none; letter-spacing:0; }
.btn-block{ width:100%; }
@media (max-width:480px){ .btn{ font-size:12.5px; padding:15px 20px; } }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background:var(--bg);
  color:var(--cream);
  padding:56px 0 0;
  position:relative;
  overflow:hidden;
}
.hero-glow-green{
  content:""; position:absolute; top:6%; right:2%; width:560px; height:560px;
  background:radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
  filter:blur(50px); pointer-events:none; z-index:0;
  animation:glowPulseGreen 8s ease-in-out infinite;
}
.hero-glow-gold{
  content:""; position:absolute; bottom:0%; left:0%; width:520px; height:520px;
  background:radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  filter:blur(50px); pointer-events:none; z-index:0;
  animation:glowPulseGold 10s ease-in-out 1s infinite;
}
.hero-quill-bg{
  position:absolute; right:-6%; top:50%;
  width:56vh; height:56vh; max-width:620px; max-height:620px;
  opacity:0.08; pointer-events:none; z-index:0;
  animation:quillFloat 12s ease-in-out infinite;
}
@keyframes glowPulseGreen{ 0%,100%{ opacity:0.55; } 50%{ opacity:0.25; } }
@keyframes glowPulseGold{ 0%,100%{ opacity:0.45; } 50%{ opacity:0.2; } }
@keyframes quillFloat{
  0%,100%{ transform:translateY(-50%) rotate(0deg); }
  50%{ transform:translateY(-53%) rotate(-1.5deg); }
}

.hero-inner{ position:relative; z-index:1; max-width:820px; padding-bottom:64px; }
.hero-kicker{ display:flex; align-items:center; gap:14px; }
.issue-tag{
  font-family:var(--font-sans); font-size:11px; color:var(--text-3); letter-spacing:0.1em;
  padding-left:14px; border-left:1px solid var(--line-bright); text-transform:uppercase;
}
.hero h1{
  font-size:clamp(42px, 7vw, 80px);
  line-height:1.05;
  margin:24px 0 24px;
  letter-spacing:-0.01em;
  font-weight:700;
}
.hero-line{ display:block; overflow:hidden; padding-bottom:0.12em; }
.hero-line span{ display:inline-block; transform:translateY(110%); animation:lineUp 1s var(--ease-out) forwards; }
.hero-line:nth-child(1) span{ animation-delay:0.1s; }
.hero-line:nth-child(2) span{ animation-delay:0.25s; }
@keyframes lineUp{ to{ transform:translateY(0); } }
.hero-sub{
  font-family:var(--font-sans); font-weight:400;
  font-size:clamp(16px, 1.8vw, 19px);
  color:var(--text-2);
  max-width:600px;
  margin:0 0 36px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }

.hero-stats{
  display:flex; gap:0;
  border-top:1px solid var(--line); padding-top:32px;
  max-width:760px;
}
.hero-stats .stat-item{ flex:1; padding-right:24px; border-right:1px solid var(--line); }
.hero-stats .stat-item:last-child{ border-right:none; }
.stat-num{
  font-family:var(--font-serif); font-weight:700; color:var(--cream);
  font-size:clamp(26px,3.8vw,38px); line-height:1; margin-bottom:8px; display:block;
}
.stat-label{ font-size:13px; color:var(--text-3); line-height:1.4; }
@media (max-width:640px){
  .hero-stats{ flex-wrap:wrap; }
  .hero-stats .stat-item{ flex:1 1 45%; border-right:none; border-bottom:1px solid var(--line); padding-bottom:16px; margin-bottom:16px; }
}

/* ============================================================
   REVEAL ANIMATION (IntersectionObserver driven)
   ============================================================ */
.reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-group .reveal:nth-child(1){ transition-delay:0ms; }
.reveal-group .reveal:nth-child(2){ transition-delay:90ms; }
.reveal-group .reveal:nth-child(3){ transition-delay:180ms; }
.reveal-group .reveal:nth-child(4){ transition-delay:270ms; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head{ max-width:680px; margin:0 0 56px; }
.section-head h2{ font-size:clamp(30px,4.2vw,46px); margin:0 0 16px; }
.section-head p{ font-size:16.5px; color:var(--text-2); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ============================================================
   MASTHEAD INDEX (who we serve)
   ============================================================ */
.masthead-index{ border-top:1px solid var(--line); }
.index-row{
  display:flex; align-items:baseline; gap:24px; padding:26px 4px;
  border-bottom:1px solid var(--line);
  transition:background var(--dur-base) var(--ease-out);
}
.index-row:hover{ background:rgba(212,175,55,0.04); }
.index-num{ font-family:var(--font-serif); font-style:italic; font-size:26px; color:var(--gold); width:38px; flex-shrink:0; }
.index-body{ flex:1; min-width:0; }
.index-body h3{ font-family:var(--font-serif); font-weight:600; font-size:22px; margin-bottom:4px; color:var(--cream); }
.index-body p{ font-size:14.5px; color:var(--text-2); }
.index-price{ font-family:var(--font-serif); font-weight:700; font-size:22px; color:var(--cream); flex-shrink:0; white-space:nowrap; }
.index-price small{ font-family:var(--font-sans); font-weight:500; font-size:12px; color:var(--text-3); }
.index-row.featured{ background:rgba(212,175,55,0.045); }
.index-tag{
  display:inline-block; font-family:var(--font-sans); font-size:10.5px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--text-2); background:rgba(237,230,214,0.14); padding:4px 10px; border-radius:var(--radius-full); margin-bottom:6px;
}
.index-tag.soon{ background:rgba(237,230,214,0.08); color:var(--text-3); }
.index-row.locked .index-body h3,
.index-row.locked .index-body p,
.index-row.locked .index-price{ color:var(--text-3); }
@media (max-width:620px){
  .index-row{ flex-wrap:wrap; }
  .index-price{ order:3; width:100%; padding-left:62px; font-size:17px; }
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pullquote-block{ position:relative; max-width:760px; margin:0 auto; text-align:center; padding:8px 24px 0; }
.quote-mark{
  font-family:var(--font-serif); font-size:140px; line-height:1; color:rgba(212,175,55,0.14);
  position:absolute; top:-50px; left:50%; transform:translateX(-50%); z-index:-1; user-select:none;
}
.pullquote-text{
  font-family:var(--font-serif); font-style:italic; font-weight:500;
  font-size:clamp(20px,2.8vw,28px); color:var(--cream); line-height:1.4;
}
.pullquote-rule{ display:block; width:56px; height:2px; background:linear-gradient(90deg, var(--green), var(--gold)); margin:24px auto 14px; }
.pullquote-attr{ font-family:var(--font-sans); font-size:11.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-3); font-weight:600; }

/* ============================================================
   ARTIFACT GRID (what we build)
   ============================================================ */
.artifact-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width:760px){ .artifact-grid{ grid-template-columns:1fr; } }
.artifact-card{
  background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:24px; display:flex; flex-direction:column; gap:16px;
  transition:border-color 300ms var(--ease-out), transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.artifact-card:hover{ border-color:var(--gold); transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,0.35); }
.artifact-card h3{ font-size:21px; color:var(--cream); }
.artifact-card p{ font-size:15px; color:var(--text-2); }
.artifact-card:hover .clip-1{ transform:rotate(-1deg) translateY(-2px); }
.artifact-card:hover .clip-2{ transform:rotate(0.5deg) translateY(-2px); }
.artifact-card:hover .clip-3{ transform:rotate(-0.5deg) translateY(-2px); }
.clip{ transition:transform 300ms var(--ease-out); }
.artifact-card:hover .press-avatar{ transform:scale(1.08); }
.press-avatar{ transition:transform 300ms var(--ease-out); }

/* -- catalog (library index) card -- */
.catalog-mock{
  background:var(--cream); border:1px dashed #d9cfaf; border-radius:6px;
  padding:16px 16px 14px; position:relative; font-family:var(--font-sans);
}
.catalog-holes{ position:absolute; top:8px; left:50%; transform:translateX(-50%); display:flex; gap:60px; }
.catalog-holes span{ width:8px; height:8px; border-radius:50%; background:#ddd3ba; border:1px solid #c7b98f; }
.catalog-line{ font-size:12.5px; color:#2a2a1f; margin-top:10px; line-height:1.5; }
.catalog-line.top{ margin-top:14px; letter-spacing:0.06em; color:var(--green); font-weight:700; font-size:11px; }
.catalog-line.code{ color:#a5821f; font-weight:700; }
.catalog-line.dim{ color:#8a8368; }

/* -- press / rolodex card -- */
.press-mock{ background:var(--cream); border-radius:8px; padding:18px; }
.press-row{ display:flex; align-items:center; gap:12px; }
.press-avatar{
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg, var(--green), var(--gold)); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-serif); font-weight:700; font-size:15px; flex-shrink:0;
}
.press-who b{ font-size:15px; color:#242217; }
.press-outlet{ font-size:12.5px; color:#6b6650; }
.artifact-card .press-note{ font-family:var(--font-serif); font-style:italic; font-size:15px; color:#3a5228; margin-top:12px; line-height:1.4; }

/* -- press-release document mock -- */
.release-mock{ background:var(--cream); border-radius:8px; padding:18px; position:relative; }
.release-stamp{
  display:inline-block; font-size:10.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--green); border:1.5px solid var(--green); border-radius:3px; padding:3px 9px;
  transform:rotate(-3deg); margin-bottom:12px;
}
.release-dateline{ font-family:var(--font-sans); font-size:11px; letter-spacing:0.04em; color:#786f4f; margin-bottom:10px; text-transform:uppercase; }
.release-line{ font-size:13.5px; color:#2a2a1f; line-height:1.5; margin-bottom:6px; }
.release-line.edited{ border-bottom:2px solid var(--gold); display:inline; box-decoration-break:clone; -webkit-box-decoration-break:clone; }
.release-line.skeleton{ height:9px; width:55%; background:#ddd3ba; border-radius:2px; margin-top:8px; }

/* -- clippings corkboard -- */
.clippings-mock{ display:flex; gap:10px; flex-wrap:wrap; padding:6px 0 2px; }
.clip{
  background:var(--cream); color:#242217; font-size:12.5px; font-weight:600;
  padding:8px 12px; border-radius:3px; box-shadow:0 4px 14px rgba(0,0,0,0.35);
  display:inline-flex; align-items:center; gap:6px;
}
.clip-1{ transform:rotate(-3deg); }
.clip-2{ transform:rotate(2deg); }
.clip-3{ transform:rotate(-1deg); }
.dot{ width:7px; height:7px; border-radius:50%; display:inline-block; }
.dot.pos{ background:var(--success); }
.dot.neu{ background:var(--info); }

/* ============================================================
   TOPIC MARQUEE — with alternating green/gold sparks
   ============================================================ */
.marquee-wrap{
  overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:26px 0; background:var(--bg-elevated);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  margin:56px -24px 0;
}
.marquee-track{
  display:flex; gap:56px; padding-right:56px; width:max-content; white-space:nowrap;
  animation:marquee 38s linear infinite;
}
.marquee-wrap:hover .marquee-track{ animation-play-state:paused; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.tag-chip{
  font-family:var(--font-serif); font-size:clamp(16px,2.2vw,21px); font-weight:600; letter-spacing:0;
  color:var(--text-3); display:inline-flex; align-items:center; gap:14px; white-space:nowrap;
}
.tag-chip .spark{ font-size:0.6em; color:var(--green-bright); transform:translateY(-0.05em); }
.tag-chip:nth-child(even) .spark{ color:var(--gold); }

/* ============================================================
   DAILY AUDIO BRIEF — printed cue sheet
   ============================================================ */
.audio-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
@media (max-width:760px){ .audio-grid{ grid-template-columns:1fr; } }
.audio-h2{ font-size:clamp(28px,4.2vw,42px); margin:14px 0 18px; }
.audio-p{ font-size:16px; color:var(--text-2); margin-bottom:16px; }
.audio-p:last-child{ margin-bottom:0; }

.cue-sheet{
  background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius-xl); padding:28px 30px;
  font-family:var(--font-sans);
}
.cue-sheet-head{
  display:flex; justify-content:space-between; font-size:11px; letter-spacing:0.1em;
  color:var(--gold); text-transform:uppercase; margin-bottom:16px; font-weight:700;
}
.waveform{ display:flex; align-items:flex-end; gap:3px; height:30px; margin-bottom:18px; }
.waveform span{
  width:3px; background:linear-gradient(180deg, var(--gold-bright), var(--green)); border-radius:2px;
  animation:wave 1.2s ease-in-out infinite; opacity:0.9;
}
@keyframes wave{ 0%,100%{ transform:scaleY(0.3); } 50%{ transform:scaleY(1); } }
.cue-lines{ display:flex; flex-direction:column; gap:12px; border-top:1px solid var(--line); padding-top:14px; }
.cue-line{ font-size:12.5px; color:var(--text-2); line-height:1.5; }
.cue-time{ color:var(--gold-bright); font-weight:700; margin-right:8px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps{ display:flex; flex-direction:column; gap:0; max-width:760px; }
.step{ display:flex; gap:24px; padding:30px 0; border-bottom:1px solid var(--line); }
.step:last-child{ border-bottom:none; }
.step-num{
  font-family:var(--font-serif); font-weight:700; font-size:28px; color:var(--gold);
  width:48px; flex-shrink:0;
}
.step h3{ font-size:19px; margin-bottom:6px; color:var(--cream); }
.step p{ font-size:15px; color:var(--text-2); }

/* ============================================================
   CHARTS
   ============================================================ */
.charts-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:28px; align-items:stretch; }
@media (max-width:860px){ .charts-grid{ grid-template-columns:1fr; } }
.chart-card{
  background:var(--bg-card); border:1px solid var(--line);
  border-radius:var(--radius-xl); padding:28px;
}
.chart-card h3{ font-family:var(--font-serif); font-weight:600; font-size:19px; color:var(--cream); margin-bottom:4px; display:flex; align-items:center; gap:10px; }
.chart-annotation{ font-family:var(--font-sans); font-size:11px; font-weight:700; color:var(--success); background:rgba(16,185,129,0.14); padding:3px 9px; border-radius:var(--radius-full); }
.chart-card .chart-note{ font-family:var(--font-sans); font-size:12px; color:var(--text-3); margin-bottom:18px; }
.line-chart path.area{ fill:url(#areaFill); opacity:0; transition:opacity 900ms var(--ease-out); }
.line-chart path.line{
  fill:none; stroke:var(--gold); stroke-width:2.5;
  stroke-dasharray:600; stroke-dashoffset:600;
  transition:stroke-dashoffset 1400ms var(--ease-out);
  filter:drop-shadow(0 0 6px var(--gold-glow));
}
.line-chart.is-visible path.line{ stroke-dashoffset:0; }
.line-chart.is-visible path.area{ opacity:1; }
.line-chart circle.end-node{ fill:var(--gold); opacity:0; transition:opacity 400ms var(--ease-out) 1200ms; }
.line-chart.is-visible circle.end-node{ opacity:1; }

.tier-bar{ display:flex; width:100%; height:14px; border-radius:var(--radius-full); overflow:hidden; background:var(--line); }
.tb-seg{ height:100%; width:0%; transition:width 1200ms var(--ease-out); }
.donut-legend{ display:flex; flex-direction:column; gap:12px; margin-top:18px; }
.donut-row{ display:flex; align-items:center; gap:10px; font-family:var(--font-sans); font-size:12.5px; color:var(--text-2); }
.donut-dot{ width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.donut-row b{ color:var(--cream); margin-left:auto; font-family:var(--font-serif); font-size:17px; font-weight:700; }

.illustrative-note{ font-family:var(--font-sans); font-size:12px; color:var(--text-3); margin-top:20px; }

/* ============================================================
   PRICING — rate card, Government Office featured per Jack's
   updated pricing reference (gold border + solid CTA; other three
   get the same pale category tag, outline CTA)
   ============================================================ */
.pricing-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; align-items:stretch; }
@media (max-width:980px){ .pricing-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .pricing-grid{ grid-template-columns:1fr; } }
.price-card{
  background:var(--bg-elevated); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 22px; display:flex; flex-direction:column; position:relative; margin:6px;
  transition:transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.price-card.featured{
  background:linear-gradient(180deg, rgba(58,106,28,0.14), rgba(212,175,55,0.12));
  border:1.5px solid var(--gold);
}
/* hover-enlarge, scoped to real pointer devices so touch taps don't get stuck "hovered" */
@media (hover:hover) and (pointer:fine){
  .price-card:hover{
    transform:scale(1.055); z-index:5; border-color:var(--gold-bright);
    box-shadow:0 24px 60px rgba(0,0,0,0.4);
  }
}
.price-card .badge, .badge-tag{
  display:inline-block; background:rgba(237,230,214,0.14); color:var(--text-2);
  font-family:var(--font-sans); font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  padding:4px 12px; border-radius:var(--radius-full); margin-bottom:10px;
}
.badge-soon{ background:rgba(237,230,214,0.08); color:var(--text-3); }
.price-card .tier-name{ font-family:var(--font-serif); font-size:24px; font-weight:600; color:var(--cream); margin-bottom:6px; }
.price-card .price{ font-family:var(--font-serif); font-size:34px; font-weight:700; color:var(--cream); margin-bottom:4px; }
.price-card .price span{ font-family:var(--font-sans); font-size:14px; font-weight:500; color:var(--text-3); }
.price-card .audience{ font-size:13.5px; color:var(--text-2); margin-bottom:20px; min-height:40px; }
.price-card ul{ list-style:none; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:11px; flex:1; }
.price-card li{ display:flex; gap:9px; font-size:14px; color:var(--text-2); align-items:flex-start; }
.price-card li svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.price-card .btn{ width:100%; }
.price-card.locked .tier-name,
.price-card.locked .price,
.price-card.locked .audience,
.price-card.locked li{ color:var(--text-3); }
.price-card.locked li svg{ color:var(--text-3); opacity:0.55; }
.btn-disabled{ opacity:0.45; pointer-events:none; cursor:not-allowed; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width:760px; display:flex; flex-direction:column; gap:0; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item summary{
  list-style:none; cursor:pointer; padding:22px 4px; display:flex; align-items:center;
  justify-content:space-between; gap:16px; font-family:var(--font-serif); font-size:20px;
  font-weight:600; color:var(--cream);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .chev{ flex-shrink:0; transition:transform 300ms var(--ease-out); color:var(--gold); }
.faq-item[open] summary .chev{ transform:rotate(45deg); }
.faq-item .faq-a{
  padding:0 4px 24px; font-size:15px; color:var(--text-2); max-width:640px;
  overflow:hidden; transition:max-height 320ms var(--ease-out), opacity 280ms var(--ease-out);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final{ text-align:center; position:relative; overflow:hidden; }
.cta-final h2{ font-size:clamp(32px,5.2vw,52px); color:var(--cream); margin-bottom:18px; }
.cta-final .sub{ color:var(--text-2); font-size:16.5px; max-width:520px; margin:0 auto 36px; position:relative; z-index:1; }
.waitlist-form{ display:flex; gap:12px; max-width:440px; margin:0 auto; flex-wrap:wrap; justify-content:center; position:relative; z-index:1; }
.waitlist-form input[type=email]{
  flex:1; min-width:220px; padding:15px 18px; border-radius:var(--radius-sm);
  border:1px solid var(--line-bright); background:var(--bg-card); color:var(--cream); font-size:16px; font-family:var(--font-sans);
}
.waitlist-form input[type=email]::placeholder{ color:var(--text-3); }
.form-note{ font-family:var(--font-sans); font-size:12px; color:var(--text-3); margin-top:16px; position:relative; z-index:1; }
.form-success{ display:none; color:var(--gold-bright); font-weight:600; margin-top:16px; position:relative; z-index:1; }
.form-success.show{ display:block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--bg); border-top:1px solid var(--line); padding:64px 0 32px; position:relative; overflow:hidden; }
.footer-glow-a{ position:absolute; z-index:0; pointer-events:none; bottom:0; left:0; width:42%; height:60%;
  background:radial-gradient(circle, var(--green-glow) 0%, transparent 68%); filter:blur(64px); opacity:0.3; }
.footer-glow-b{ position:absolute; z-index:0; pointer-events:none; bottom:0; right:0; width:42%; height:60%;
  background:radial-gradient(circle, var(--gold-glow) 0%, transparent 70%); filter:blur(64px); opacity:0.28; }
.footer-mark{
  position:relative; z-index:1;
  font-family:var(--font-serif); font-size:clamp(2.6rem, 8vw, 6.2rem); font-weight:600; font-style:italic; letter-spacing:-0.01em; line-height:0.95;
  background:linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  margin-bottom:40px;
}
.footer-top{ position:relative; z-index:1; display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; margin-bottom:40px; }
.footer-tag{ font-size:14px; color:var(--text-2); max-width:300px; }
.footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h4{ font-family:var(--font-sans); font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-3); margin-bottom:14px; }
.footer-col a{ display:block; font-size:14.5px; color:var(--text-2); text-decoration:none; margin-bottom:10px; }
.footer-col a:hover{ color:var(--gold-bright); }
.footer-bottom{
  position:relative; z-index:1;
  border-top:1px solid var(--line); padding-top:24px; display:flex; justify-content:space-between;
  gap:16px; flex-wrap:wrap; font-family:var(--font-sans); font-size:12px; color:var(--text-3);
}
.colophon{ font-family:var(--font-serif); font-style:italic; font-size:13px; }
.footer-bottom a{ color:var(--text-3); text-decoration:underline; text-underline-offset:2px; }
.footer-bottom a:hover{ color:var(--gold-bright); }

.mt-0{ margin-top:0; }
.center{ text-align:center; }

/* ---- Lenis smooth scroll boilerplate ---- */
html.lenis, html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto; }
.lenis.lenis-stopped{ overflow:hidden; }
