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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --c-primary:    #ff0000;
  --c-secondary:  #ff1493;
  --c-ink:        #261717;
  --c-ink-mid:    #3d2020;
  --c-ink-light:  #5c3232;
  --c-surface:    #1a0e0e;
  --c-surface2:   #220f0f;
  --c-surface3:   #2e1616;
  --c-muted:      #c09090;
  --c-border:     rgba(255,20,147,0.22);
  --c-glow:       rgba(255,0,0,0.18);
  --c-white:      #fff8f8;
  --c-text:       #f5e8e8;

  --font-head:    'EB Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius-card:  18px;
  --radius-btn:   999px;
  --max-content:  780px;
  --max-wide:     1200px;
  --header-h:     72px;

  --shadow-glow:  0 0 32px rgba(255,0,0,0.22), 0 0 64px rgba(255,20,147,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-surface);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
a:hover { color: var(--c-primary); }

ul, ol { list-style: none; }

/* ============================================================
   AURORA BACKGROUND
   ============================================================ */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-mesh {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255,0,0,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(255,20,147,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 90% 50% at 50% 90%, rgba(38,23,23,0.9) 0%, transparent 70%),
    conic-gradient(from 200deg at 60% 40%,
      rgba(255,0,0,0.12) 0deg,
      rgba(255,20,147,0.18) 90deg,
      rgba(38,23,23,0.05) 180deg,
      rgba(255,0,0,0.10) 270deg,
      rgba(255,20,147,0.14) 360deg
    );
  background-color: var(--c-surface);
  animation: auroraShift 11s ease-in-out infinite alternate;
  background-size: 200% 200%;
  filter: saturate(1.25);
}

@keyframes auroraShift {
  0%   { background-position: 0% 0%; transform: scale(1) rotate(0deg); }
  33%  { background-position: 60% 30%; transform: scale(1.03) rotate(0.8deg); }
  66%  { background-position: 40% 70%; transform: scale(0.98) rotate(-0.5deg); }
  100% { background-position: 100% 100%; transform: scale(1.02) rotate(0.3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-mesh { animation: none; }
}

/* Page content sits above the aurora */
.site-header, main, .site-footer, .hero, .mobile-nav {
  position: relative;
  z-index: 1;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  width: 100%;
  background: rgba(26,14,14,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

/* Brand centered */
.brand-center {
  flex: 0 0 auto;
  margin: 0 auto;
  order: 2;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--c-white);
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-white);
  white-space: nowrap;
}

.brand-mark { border-radius: 6px; }

/* Left / right nav */
.nav-left {
  flex: 1 1 0;
  order: 1;
}

.nav-right {
  flex: 1 1 0;
  order: 3;
  display: flex;
  justify-content: flex-end;
}

.nav-left ol, .nav-right ol {
  display: flex;
  gap: 0.1rem;
  flex-wrap: nowrap;
  align-items: center;
}

.nav-left ol li a, .nav-right ol li a {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-decoration: none;
  border-radius: var(--radius-btn);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-left ol li a:hover, .nav-right ol li a:hover {
  color: var(--c-white);
  background: rgba(255,0,0,0.12);
}

/* CTA buttons */
.header-cta {
  order: 4;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  height: 44px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-signup {
  background: var(--c-primary);
  color: #fff;
  border: 2px solid var(--c-primary);
}

.cta-signup:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255,0,0,0.4);
}

.cta-login {
  background: transparent;
  color: var(--c-secondary);
  border: 2px solid var(--c-secondary);
}

.cta-login:hover {
  color: #fff;
  background: var(--c-secondary);
  transform: translateY(-1px);
}

/* Menu toggle (hidden desktop) */
.menu-toggle {
  display: none;
  order: 5;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile nav drawer */
.mobile-nav {
  background: rgba(26,14,14,0.97);
  border-top: 1px solid var(--c-border);
  padding: 0.75rem 1rem 1rem;
}

.mobile-nav ol {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav ol li a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  text-decoration: none;
  border-radius: 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.mobile-nav ol li a:hover {
  background: rgba(255,0,0,0.12);
  color: var(--c-white);
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero-home {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(38,23,23,0.85) 40%, rgba(255,0,0,0.12) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,14,14,0.75) 55%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 680px;
  padding-left: max(2rem, 5vw);
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(255,0,0,0.35);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  min-height: 44px;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================================
   STAGE LABEL / EYEBROW
   ============================================================ */
small.stage-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-secondary);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-btn);
  padding: 0.2em 0.85em;
  margin-bottom: 0.6rem;
}

/* ============================================================
   LAYOUT: CONTENT + SIDEBAR
   ============================================================ */
.content-section,
.feature-body-section,
.guide-body-section,
.faq-body-section,
.about-body-section,
.privacy-body-section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.content-col {
  min-width: 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-aside h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sidebar-list li a {
  display: block;
  padding: 0.45rem 0.6rem;
  font-size: 0.88rem;
  color: var(--c-muted);
  text-decoration: none;
  border-radius: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.18s, color 0.18s;
  line-height: 1.4;
}

.sidebar-list li a:hover {
  background: rgba(255,0,0,0.1);
  color: var(--c-white);
}

.sidebar-cta-block {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-border);
}

.sidebar-cta-block h3 {
  margin-bottom: 0.4rem;
}

.sidebar-cta-block p {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* ============================================================
   PROSE (body copy)
   ============================================================ */
.prose {
  max-width: var(--max-content);
}

.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: var(--font-head);
  color: var(--c-white);
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose h2 { font-size: 1.7rem; font-weight: 600; }
.prose h3 { font-size: 1.35rem; font-weight: 600; }
.prose h4 { font-size: 1.1rem; font-weight: 600; }

.prose p { margin-bottom: 1.15rem; color: var(--c-text); }

.prose a {
  color: var(--c-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover { color: var(--c-primary); }

.prose ul, .prose ol {
  margin: 0.75rem 0 1.15rem 1.5rem;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

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

.prose strong { color: var(--c-white); font-weight: 700; }
.prose em { color: var(--c-secondary); font-style: italic; }

.prose blockquote {
  border-left: 3px solid var(--c-primary);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(255,0,0,0.06);
  border-radius: 0 10px 10px 0;
  color: var(--c-muted);
  font-style: italic;
}

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

.prose table th {
  background: var(--c-surface3);
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--c-primary);
}

.prose table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}

.prose table tr:hover td {
  background: rgba(255,0,0,0.05);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 2rem 0;
}

.prose code {
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  background: var(--c-surface3);
  padding: 0.15em 0.45em;
  border-radius: 5px;
  color: var(--c-secondary);
}

.prose pre {
  background: var(--c-surface3);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

/* ============================================================
   BYLINE
   ============================================================ */
.byline {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.byline time { color: var(--c-secondary); }

/* ============================================================
   HOME SPECIFIC
   ============================================================ */
.home-body {
  padding-top: 3rem;
}

/* Child-pages DL */
.child-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}

.child-section h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}

.child-dl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.child-dl-item {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.child-dl-item:hover {
  border-color: rgba(255,0,0,0.45);
  transform: translateY(-3px);
}

.child-dl-item dt a {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.child-dl-item dt a:hover { color: var(--c-secondary); }

.child-dl-item dd {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ============================================================
   FEATURE LAYOUT
   ============================================================ */
.feature-hero-section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

.feature-figure {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface3);
  margin: 0;
}

.feature-img { width: 100%; height: auto; }

.feature-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--c-surface3), rgba(255,20,147,0.1));
}

.feature-hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--c-white);
  line-height: 1.2;
  font-weight: 700;
}

/* ============================================================
   GUIDE LAYOUT
   ============================================================ */
.guide-intro-section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.guide-meta-aside {
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.guide-meta-topic {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  margin-top: 0.3rem;
}

.guide-title-block h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--c-white);
  line-height: 1.2;
  font-weight: 700;
}

.guide-figure {
  margin: 0 0 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.guide-figure:empty { display: none; }
.guide-img { width: 100%; }

/* ============================================================
   FAQ LAYOUT
   ============================================================ */
.faq-header-section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.faq-eyebrow-figure { margin: 0; flex-shrink: 0; }

.faq-title-block h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--c-white);
  line-height: 1.2;
  font-weight: 700;
}

.faq-prose :where(h2, h3) {
  font-family: var(--font-head);
  color: var(--c-white);
}

/* ============================================================
   ABOUT LAYOUT
   ============================================================ */
.about-header-section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-figure { margin: 0; flex-shrink: 0; }

.about-aurora-swatch {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-primary) 0%, var(--c-secondary) 60%, transparent 100%);
  opacity: 0.6;
  animation: swatchPulse 9s ease-in-out infinite alternate;
}

@keyframes swatchPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .about-aurora-swatch { animation: none; }
}

.about-title-block h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--c-white);
  line-height: 1.2;
  font-weight: 700;
}

.author-section {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
}

.author-section h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

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

.author-bio {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ============================================================
   PRIVACY LAYOUT
   ============================================================ */
.privacy-header-section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.privacy-meta-aside { flex-shrink: 0; }

.privacy-title-block h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--c-white);
  line-height: 1.2;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: rgba(26,14,14,0.96);
  border-top: 1px solid var(--c-border);
  margin-top: 4rem;
}

.footer-top {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.footer-wordmark {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.footer-blurb {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-nav ol {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-nav ol li a {
  font-size: 0.88rem;
  color: var(--c-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-nav ol li a:hover { color: var(--c-white); }

/* Footer bottom bar — single row */
.footer-bottom {
  border-top: 1px solid var(--c-border);
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--c-muted);
}

.footer-trust ol {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-trust ol li a {
  font-size: 0.78rem;
  color: var(--c-muted);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-trust ol li a:hover { color: var(--c-secondary); }

/* Responsible gambling notice */
.rg-notice {
  background: var(--c-surface3);
  border-top: 1px solid var(--c-border);
  padding: 0.75rem 1.5rem;
  max-width: 100%;
}

.rg-notice p {
  max-width: var(--max-wide);
  margin: 0 auto;
  font-size: 0.76rem;
  color: var(--c-muted);
  line-height: 1.55;
  text-align: center;
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav-left ol li a, .nav-right ol li a {
    font-size: 0.72rem;
    padding: 0.4rem 0.45rem;
  }

  .feature-hero-section {
    grid-template-columns: 1fr;
  }

  .guide-intro-section {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .nav-left, .nav-right { display: none; }

  .brand-center { margin: 0; }

  .header-inner {
    justify-content: space-between;
    padding: 0 1rem;
  }

  .header-cta {
    margin-left: auto;
    gap: 0.35rem;
  }

  .cta {
    padding: 0 0.7rem;
    font-size: 0.76rem;
    height: 40px;
    min-height: 40px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Body layout: stack sidebar below */
  .content-section,
  .feature-body-section,
  .guide-body-section,
  .faq-body-section,
  .about-body-section,
  .privacy-body-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 2rem;
    gap: 2rem;
  }

  .sidebar-aside {
    position: static;
  }

  .feature-hero-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 0.75rem;
  }

  .guide-intro-section {
    flex-direction: column;
    padding: 1.5rem 1rem 0.5rem;
    gap: 0.5rem;
  }

  .faq-header-section,
  .about-header-section,
  .privacy-header-section {
    flex-direction: column;
    padding: 1.5rem 1rem 0.5rem;
    gap: 0.5rem;
  }

  .hero-content {
    padding: 2rem 1.25rem;
  }

  .hero-h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 0.5rem;
  }

  .footer-trust ol {
    gap: 0.5rem;
  }

  .child-dl {
    grid-template-columns: 1fr;
  }

  .footer-wordmark {
    font-size: 1.5rem;
  }
}

/* ============================================================
   ANIMATIONS ON CARDS / LINKS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .child-dl-item {
    transition: border-color 0.22s ease, transform 0.22s ease;
  }
  .btn-primary {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
}

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