/* Jammin Jars Hub — Dimensional Layering · Plus Jakarta Sans · Glassmorphism */


/* ── Reset & base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f5f5f5;
  --ink: #1f1f1f;
  --ink-80: rgba(31,31,31,0.80);
  --ink-50: rgba(31,31,31,0.50);
  --ink-20: rgba(31,31,31,0.20);
  --ink-10: rgba(31,31,31,0.10);
  --ink-06: rgba(31,31,31,0.06);
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.55);
  --radius: 28px;
  --radius-sm: 14px;
  --radius-xs: 8px;
  --shadow-sm: 0 2px 8px rgba(31,31,31,0.08);
  --shadow-md: 0 6px 24px rgba(31,31,31,0.12);
  --shadow-lg: 0 16px 48px rgba(31,31,31,0.16);
  --shadow-xl: 0 32px 80px rgba(31,31,31,0.22);
  --header-h: 68px;
  --announce-h: 36px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --content-max: 780px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Announce strip ───────────────────────────────────────────────────────── */
.announce-strip {
  position: relative;
  z-index: 4;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: var(--announce-h);
  height: var(--announce-h);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 16px;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  height: var(--header-h);
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-10);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  position: relative;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

/* Brand centered via absolute */
.header-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.brand-logo-link, .brand-name {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-logo { height: 36px; width: auto; }

/* nav-details toggle */
.nav-details { list-style: none; position: static; }
.nav-details[open] > .nav-overlay { display: flex; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: var(--radius-xs);
  list-style: none;
  z-index: 3;
}
.nav-toggle::-webkit-details-marker { display: none; }

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: opacity 0.2s;
}

/* Full-screen overlay (desktop + mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(31,31,31,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 560px;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0;
}

.nav-menu li a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-height: 44px;
  transition: background 0.15s;
}
.nav-menu li a:hover {
  background: rgba(255,255,255,0.10);
}

.nav-overlay-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Header CTA buttons — always visible */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  margin-left: auto;
}

/* ── CTA buttons ──────────────────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.cta:hover { transform: translateY(-1px); }

.cta-signup {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.cta-signup:hover { box-shadow: var(--shadow-lg); }

.cta-login {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-20);
}
.cta-login:hover { border-color: var(--ink-50); }

.cta-hero {
  font-size: 16px;
  padding: 14px 32px;
  min-height: 52px;
}

.cta-full { width: 100%; justify-content: center; }

/* overlay CTAs — inverted */
.nav-overlay .cta-signup {
  background: var(--white);
  color: var(--ink);
}
.nav-overlay .cta-login {
  border-color: rgba(255,255,255,0.40);
  color: var(--white);
}

/* ── Hero — home ──────────────────────────────────────────────────────────── */
.hero-home {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-backdrop .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,31,31,0.70) 0%, rgba(31,31,31,0.30) 60%, rgba(31,31,31,0.10) 100%);
  z-index: 2;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 64px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 12px;
}

.hero-h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Article hero ─────────────────────────────────────────────────────────── */
.article-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero .hero-backdrop { position: absolute; inset: 0; z-index: 1; }
.article-hero .hero-backdrop .hero-img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(31,31,31,0.75) 0%, rgba(31,31,31,0.35) 100%);
}
.article-hero .hero-texture { position: absolute; inset: 0; z-index: 3;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}

.article-hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 40px 48px;
  width: 100%;
}

.article-hero-plain {
  background: var(--ink);
  min-height: 200px;
}

.article-hero-plain .hero-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px; pointer-events: none;
}

.article-hero-plain .article-hero-content { padding: 56px 40px 48px; }

.article-hero-content h1 {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  max-width: 760px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.article-hero-faq .article-hero-content,
.article-hero-about .article-hero-content,
.article-hero-privacy .article-hero-content { padding-top: 64px; }

/* ── Byline ───────────────────────────────────────────────────────────────── */
.byline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.byline-sep { opacity: 0.5; }
.byline time { color: rgba(255,255,255,0.65); }

/* Stage label */
.stage-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.80);
  margin-bottom: 12px;
}

/* ── Content layout ───────────────────────────────────────────────────────── */
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 40px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.content-main { min-width: 0; position: relative; z-index: 1; }

/* ── Prose ────────────────────────────────────────────────────────────────── */
.prose {
  max-width: var(--content-max);
  font-size: 17px;
  line-height: 1.72;
}

.prose h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.2em 0 0.3em;
  line-height: 1.25;
}

.prose h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 1.8em 0 0.3em;
}

.prose h4 { font-size: 17px; font-weight: 600; margin: 1.4em 0 0.2em; }

.prose p { margin-bottom: 1.2em; }

.prose ul, .prose ol {
  margin: 0 0 1.2em 1.4em;
}
.prose li { margin-bottom: 0.4em; }

.prose a { color: var(--ink); font-weight: 500; }
.prose a:hover { opacity: 0.75; }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 15px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prose th, .prose td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--ink-10);
}
.prose th { background: var(--ink); color: var(--white); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; }
.prose tr:nth-child(even) td { background: var(--off-white); }
.prose tr:last-child td { border-bottom: none; }

.prose blockquote {
  border-left: 3px solid var(--ink);
  padding: 12px 20px;
  margin: 1.6em 0;
  background: var(--white);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  box-shadow: var(--shadow-sm);
  font-style: italic;
}

.prose img {
  border-radius: var(--radius-sm);
  margin: 1.6em 0;
  box-shadow: var(--shadow-md);
}

/* Heading + subtitle requirement */
.prose h2 + p,
.child-cards-block h2 + p,
.sibling-links-block h2 + p,
.faq-intro h2 + p,
.sidebar-card h2 + p,
.author-section h2 + p,
.footer-cta-block h2 + p {
  /* these are the .subtitle elements */
}

.subtitle {
  font-size: 15px;
  color: var(--ink-50);
  line-height: 1.5;
  margin-bottom: 1em;
}

/* ── Glass card ───────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px;
  position: relative;
  z-index: 2;
  transform: translateZ(0);
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--announce-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.sidebar-card h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-links li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  color: var(--ink-80);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.12s;
}
.sidebar-links li a:hover {
  background: var(--ink-06);
  color: var(--ink);
}

.rg-card { background: var(--off-white); border-color: var(--ink-10); }
.rg-notice {
  font-size: 12px;
  color: var(--ink-50);
  line-height: 1.5;
}

.cta-side-card { text-align: center; }
.cta-side-card h2 { text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; }

/* ── Child cards (home) ───────────────────────────────────────────────────── */
.child-cards-block { margin-top: 56px; }
.child-cards-block h2 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  margin-bottom: 6px;
}

.child-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* child-page card links — direct child strong required by contract */
.child-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  transition: box-shadow 0.18s, transform 0.18s;
  overflow: hidden;
}
.child-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) translateZ(0);
  text-decoration: none;
}
.child-card > strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  display: block;
}
.child-card .card-desc {
  font-size: 13px;
  color: var(--ink-50);
  line-height: 1.45;
}
.child-card .card-img-wrap { margin-top: 8px; border-radius: var(--radius-sm); overflow: hidden; }

/* ── Sibling links ────────────────────────────────────────────────────────── */
.sibling-links-block { margin-top: 48px; }
.sibling-links-block h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }

.sibling-links, .about-sibling-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.sibling-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--ink);
  min-width: 160px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s, transform 0.15s;
  min-height: 44px;
}
.sibling-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.sibling-link > strong {
  font-size: 14px;
  font-weight: 600;
}
.sibling-link > span {
  font-size: 12px;
  color: var(--ink-50);
}

/* ── Author div ───────────────────────────────────────────────────────── */
.author-section {
  margin-bottom: 40px;
}

.author-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.author-initials {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.author-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.author-credentials {
  margin-bottom: 0;
  font-size: 13px;
}

.author-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-80);
}

/* ── FAQ div ──────────────────────────────────────────────────────────── */
.faq-intro { margin-bottom: 32px; }
.faq-intro h2 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; margin-bottom: 6px; }

.faq-prose h2 { margin-top: 0; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* Large CTA block */
.footer-cta-block {
  background: var(--white);
  color: var(--ink);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31,31,31,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-cta-block h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.footer-cta-block .subtitle {
  color: var(--ink-50);
  margin-bottom: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 40px;
}

.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 6px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.12s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-col-brand .footer-logo { margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand-name { font-size: 18px; font-weight: 700; display: block; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.55; }

/* address / contact */
.footer-address {
  font-style: normal;
  margin-bottom: 12px;
}
.footer-brand-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

.rg-footer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 520px;
  text-align: right;
  line-height: 1.5;
}

/* ── Reveal animations ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) and (scripting: enabled) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger .child-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .reveal-stagger.visible .child-card { opacity: 1; transform: none; }
  .reveal-stagger.visible .child-card:nth-child(2) { transition-delay: 0.08s; }
  .reveal-stagger.visible .child-card:nth-child(3) { transition-delay: 0.16s; }
  .reveal-stagger.visible .child-card:nth-child(4) { transition-delay: 0.24s; }
  .reveal-stagger.visible .child-card:nth-child(5) { transition-delay: 0.32s; }
  .reveal-stagger.visible .child-card:nth-child(6) { transition-delay: 0.40s; }
}

/* ── Elevation layers (z-index scale) ─────────────────────────────────────── */
/* z1 = base, z2 = cards, z3 = sticky, z4 = overlay */
.site-header { z-index: 4; }
.announce-strip { z-index: 4; }
.nav-overlay { z-index: 10; }
.sidebar { z-index: 2; }
.content-main { z-index: 1; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-col-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .content-section {
    padding: 40px 20px;
  }

  .hero-content {
    padding: 0 20px 48px;
  }

  .article-hero-content {
    padding: 48px 20px 40px;
  }

  .article-hero-plain .article-hero-content {
    padding: 56px 20px 44px;
  }

  .footer-cta-block { padding: 48px 20px; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px;
    gap: 28px;
  }
  .footer-col-brand { grid-column: span 2; }

  .footer-bottom-inner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .rg-footer { text-align: left; }

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

  .header-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-col-brand { grid-column: span 1; }

  .hero-home { height: 85vh; }

  .sibling-links { flex-direction: column; }

  .footer-cta-inner { gap: 12px; }
}

/* ── Page-content body copy links ─────────────────────────────────────────── */
.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* No horizontal scroll safeguard */
body { overflow-x: hidden; }
.hero-home, .article-hero { overflow: hidden; }

/* 2026-09-23 audit fixes: mobile header overlap, announce strip truncation */
@media (max-width: 520px) {
  .header-brand { position: static; transform: none; }
  .header-inner { justify-content: flex-start; }
  .brand-logo { height: 30px; }
  .header-ctas .cta-login { display: none; }
  .announce-strip { height: auto; line-height: 1.4; white-space: normal; padding: 6px 16px; }
}

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