@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   TOKENS
   ============================================= */
:root {
  --navy: #0D1B2A;
  --amber: #F7B731;
  --ice: #E8F1F2;
  --navy-80: rgba(13,27,42,0.8);
  --navy-60: rgba(13,27,42,0.6);
  --amber-20: rgba(247,183,49,0.2);
  --amber-10: rgba(247,183,49,0.1);
  --ice-60: rgba(232,241,242,0.6);
  --ice-10: rgba(232,241,242,0.1);
  --glass-bg: rgba(232,241,242,0.05);
  --glass-border: rgba(232,241,242,0.12);
  --radius: 4px;
  --header-h: 64px;
  --max-content: 780px;
  --max-site: 1200px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
}

/* =============================================
   RESET / BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--navy);
  color: var(--ice);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--navy);
  color: var(--ice);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Court texture via CSS pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(247,183,49,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(247,183,49,0.03) 60px);
  pointer-events: none;
  z-index: 0;
}

.site-wrapper { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ice); }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.25rem;
  height: var(--header-h);
  max-width: var(--max-site);
  margin: 0 auto;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand:hover { color: var(--ice); }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

.toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* CTA buttons in header */
.header-ctas {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 22px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1;
}

.cta-signup {
  background: var(--amber);
  color: var(--navy);
  border: 2px solid var(--amber);
}
.cta-signup:hover {
  background: var(--ice);
  border-color: var(--ice);
  color: var(--navy);
}

.cta-login {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.cta-login:hover {
  background: var(--amber);
  color: var(--navy);
}

/* Primary nav */
.primary-nav {
  display: block;
  background: rgba(13,27,42,0.98);
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.primary-nav.is-open {
  max-height: 600px;
}

.nav-dl {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem;
  gap: 0;
}

.nav-dl dd {
  border-bottom: 1px solid var(--glass-border);
}
.nav-dl dd:last-child { border-bottom: none; }

.nav-dl dd a {
  display: block;
  padding: 0.75rem 0;
  min-height: 44px;
  color: var(--ice-60);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-dl dd a:hover { color: var(--amber); }

/* Desktop nav — pill row */
@media (min-width: 769px) {
  .nav-toggle { display: none !important; }

  .site-header {
    height: auto;
    min-height: var(--header-h);
  }

  .header-inner {
    height: var(--header-h);
  }

  .primary-nav {
    max-height: none !important;
    background: transparent;
    border-top: none;
    overflow: visible;
  }

  .nav-dl {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0 1.25rem 0.5rem;
    max-width: var(--max-site);
    margin: 0 auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 0.5rem;
  }

  .nav-dl dd {
    border-bottom: none;
  }

  .nav-dl dd a {
    padding: 0.35rem 0.85rem;
    min-height: 36px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: var(--glass-bg);
    white-space: nowrap;
  }
  .nav-dl dd a:hover {
    background: var(--amber-10);
    border-color: var(--amber);
    color: var(--amber);
  }
}

/* =============================================
   MAIN / LAYOUT CONTAINERS
   ============================================= */
main {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
  min-height: 60vh;
}

@media (min-width: 769px) {
  main { padding-top: calc(var(--header-h) + 5rem); }
}

.wrap {
  width: 100%;
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =============================================
   EYEBROW / SMALL LABELS
   ============================================= */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

/* =============================================
   HOME HERO
   ============================================= */
.hero-section {
  margin-bottom: 4rem;
}

.hero-article { width: 100%; }

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 45vh;
  align-items: center;
}

.hero-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.hero-bg-numeral {
  position: absolute;
  bottom: -0.25em;
  right: -0.1em;
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, var(--amber) 0%, rgba(247,183,49,0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  pointer-events: none;
  animation: floatNumeral 6s ease-in-out infinite;
  letter-spacing: -0.04em;
}

@keyframes floatNumeral {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.hero-copy {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.stage-label {
  margin-bottom: 0.5rem;
}

.kinetic-h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--ice);
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 769px) {
  .hero-layout {
    flex-direction: row;
    gap: 3rem;
  }
  .hero-media { width: 45%; max-width: none; }
  .hero-copy { width: 55%; }
}

/* =============================================
   CHILD PAGE CARDS
   ============================================= */
.child-pages {
  margin-top: 3rem;
}

.child-pages small {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.child-pages h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ice);
}

.card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 480px) {
  .card-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-list { grid-template-columns: repeat(3, 1fr); }
}

.card-list li.glass-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-list li a {
  text-decoration: none;
  color: var(--ice);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color var(--transition);
}
.card-list li a:hover { color: var(--amber); }

.card-list li small {
  font-size: 0.8rem;
  color: var(--ice-60);
  line-height: 1.4;
  display: block;
  letter-spacing: 0;
  text-transform: none;
}

/* =============================================
   GLASS CARD
   ============================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =============================================
   GUIDE / INNER LAYOUTS (sidebar left)
   ============================================= */
.guide-layout,
.feature-layout,
.faq-layout,
.about-layout,
.inner-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .guide-layout,
  .feature-layout,
  .faq-layout,
  .about-layout,
  .inner-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .guide-aside { order: -1; }
}

/* Aside */
.guide-aside {
  flex: 0 0 220px;
  width: 220px;
}

.aside-inner {
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.aside-inner small {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

.aside-inner h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ice);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.aside-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.aside-links li a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: var(--ice-60);
  text-decoration: none;
  border-bottom: 1px solid var(--glass-border);
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.aside-links li:last-child a { border-bottom: none; }
.aside-links li a:hover { color: var(--amber); }

/* Guide body */
.guide-body,
.feature-body,
.faq-body,
.about-body,
.inner-body {
  flex: 1;
  min-width: 0;
}

.guide-header,
.feature-header,
.faq-header,
.about-header,
.inner-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.guide-header h1,
.feature-header h1,
.faq-header h1,
.about-header h1,
.inner-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ice);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.guide-hero-wrap {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.guide-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* =============================================
   BYLINE
   ============================================= */
.byline {
  font-size: 0.82rem;
  color: var(--ice-60);
  margin-top: 0.5rem;
}

.byline strong { color: var(--ice); }

.byline time { font-style: italic; }

/* =============================================
   STAGE BADGE
   ============================================= */
.stage-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.stage-awareness { background: var(--amber-10); color: var(--amber); border: 1px solid var(--amber); }
.stage-consideration { background: rgba(100,200,255,0.1); color: #64c8ff; border: 1px solid #64c8ff; }
.stage-decision { background: rgba(100,220,100,0.1); color: #64dc64; border: 1px solid #64dc64; }

/* =============================================
   PROSE / BODY CONTENT
   ============================================= */
.prose {
  font-size: 1rem;
  line-height: 1.7;
  max-width: var(--max-content);
  color: var(--ice);
}

.prose h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
  color: var(--ice);
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
  color: var(--amber);
}

.prose h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.2rem 0 0.5rem;
  color: var(--ice);
}

.prose p { margin-bottom: 1rem; }

.prose a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--ice); }

.prose ul, .prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li { margin-bottom: 0.4rem; }

.prose strong { font-weight: 600; color: var(--ice); }

.prose em { font-style: italic; }

.prose blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background: var(--amber-10);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ice-60);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

.prose th {
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.prose td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--ice);
}

.prose tr:hover td { background: var(--amber-10); }

.prose code {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  padding: 0.1em 0.4em;
  font-size: 0.85em;
  color: var(--amber);
  font-family: 'Courier New', monospace;
}

/* =============================================
   HOME CONTENT SPECIFICS
   ============================================= */
.home-content {
  text-align: left;
  max-width: 100%;
}

/* =============================================
   FEATURE MARQUEE
   ============================================= */
.feature-marquee {
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.6rem 0;
  margin-bottom: 2rem;
  position: relative;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--amber);
  animation: marqueeScroll 18s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.author-card {
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.author-card small {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

.author-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.author-credentials {
  font-size: 0.85rem;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.author-bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ice-60);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .kinetic-h1 { animation: none; }
  .hero-bg-numeral { animation: none; }
  .marquee-track { animation: none; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(13,27,42,0.95);
  padding: 2.5rem 1.25rem 1.5rem;
}

.site-footer nav {
  max-width: var(--max-site);
  margin: 0 auto;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* Footer dl columns */
.site-footer > nav,
.footer-dl {
  max-width: var(--max-site);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Three dl side by side layout */
.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.site-footer nav { grid-column: 1 / -1; }

.footer-columns-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  width: 100%;
}

/* Override footer to use flex layout */
.site-footer {
  display: block;
  padding: 2rem 1.25rem 1.5rem;
}

.site-footer nav {
  margin-bottom: 0;
}

.site-footer .footer-dl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-site);
  margin: 1.5rem auto;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

/* Actual nav inside footer uses dl for nav links */
.footer-nav-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 2;
  min-width: 180px;
}

.footer-nav-dl dt,
.footer-trust-dl dt,
.footer-info-dl dt {
  /* dt used as nav items */
}

.footer-nav-dl dt a,
.footer-trust-dl dt a,
.footer-info-dl dd a {
  display: block;
  color: var(--ice-60);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer-nav-dl dt a:hover,
.footer-trust-dl dt a:hover,
.footer-info-dl dd a:hover {
  color: var(--amber);
}

.footer-trust-dl,
.footer-info-dl {
  flex: 1;
  min-width: 140px;
}

.footer-dl-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-trust-dl dd,
.footer-info-dl dd {
  /* no special styles needed */
}

/* Footer bottom bar */
.footer-bottom {
  max-width: var(--max-site);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.copyright {
  font-size: 0.78rem;
  color: var(--ice-60);
}

.rg-notice {
  font-size: 0.72rem;
  color: var(--ice-60);
  opacity: 0.7;
  line-height: 1.4;
}

/* =============================================
   FOOTER STRUCTURE FIX — DL COLUMNS SIDE BY SIDE
   We need footer > dl x3 directly, so we wrap
   the three dls in a flex container and float
   the nav's dl out separately.
   ============================================= */
.site-footer > nav > .footer-nav-dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}

.site-footer > nav > .footer-nav-dl dt {
  flex: 0 0 auto;
}

.site-footer > nav > .footer-nav-dl dt a {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  min-height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 0.78rem;
  background: var(--glass-bg);
}

.site-footer > nav > .footer-nav-dl dt a:hover {
  border-color: var(--amber);
  background: var(--amber-10);
  color: var(--amber);
}

/* Trust + Info dls side by side */
.site-footer > .footer-trust-dl,
.site-footer > .footer-info-dl {
  display: inline-flex;
  flex-direction: column;
  min-width: 150px;
  vertical-align: top;
}

/* Make the 3 dls lay out side by side via flex */
.footer-dls-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-site);
  margin: 0 auto 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

/* =============================================
   MOBILE NAV
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
  }

  .primary-nav.is-open { max-height: 500px; }

  .nav-dl {
    flex-direction: column;
    padding: 0.5rem 1.25rem;
  }

  .guide-aside {
    width: 100%;
    flex: none;
  }

  .aside-inner {
    position: static;
  }

  .hero-copy { align-items: flex-start; text-align: left; }
}

/* =============================================
   FAQ ACCORDION STYLE
   ============================================= */
.prose details {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--glass-bg);
}

.prose details summary {
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ice);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.prose details summary::after {
  content: '+';
  color: var(--amber);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.prose details[open] summary::after { content: '−'; }

.prose details > *:not(summary) {
  padding: 0 1rem 1rem;
  color: var(--ice-60);
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--amber);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
}

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}