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

/* ============================================================
   TOKENS & RESET
   ============================================================ */
:root {
  --green: #87ff71;
  --cyan: #01cdfe;
  --ink: #192617;
  --ink-deep: #0d1a0b;
  --ink-mid: #1e3018;
  --ink-soft: #2a4024;
  --green-dim: #5acc42;
  --cyan-dim: #019ec5;
  --white: #f0fff0;
  --muted: #7ab87a;
  --glow-green: 0 0 12px #87ff71aa, 0 0 32px #87ff7144;
  --glow-cyan: 0 0 12px #01cdfeaa, 0 0 32px #01cdfe44;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --radius: 18px;
  --max-w: 1160px;
  --col-content: 680px;
}

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

html {
  font-size: 17px;
  line-height: 1.65;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: underline; }
a:hover { color: var(--green); }

/* ============================================================
   HEADER — two-row
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink-deep);
  border-bottom: 1px solid var(--ink-soft);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 1.25rem;
  border-bottom: 1px solid var(--ink-soft);
  background: var(--ink-mid);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.site-logo img { width: 32px; height: 32px; }

.brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  text-shadow: var(--glow-green);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 48px;
}

nav[aria-label="Primary navigation"] > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
}

nav[aria-label="Primary navigation"] > p > a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  min-height: 44px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}

nav[aria-label="Primary navigation"] > p > a:hover {
  color: var(--green);
  background: rgba(135,255,113,0.07);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

/* CTA buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
  transition: filter 0.18s, transform 0.12s;
  cursor: pointer;
}

.cta:hover { transform: translateY(-1px); filter: brightness(1.1); }

.cta-signup {
  background: var(--green);
  color: var(--ink-deep);
  box-shadow: var(--glow-green);
}

.cta-login {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  box-shadow: var(--glow-cyan);
}

.cta-login:hover { color: var(--cyan); background: rgba(1,205,254,0.08); }

/* ============================================================
   HERO — home full screen
   ============================================================ */
.hero-home {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0d1a0b 0%, #192617 40%, #0a1a2e 70%, #0d0020 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Retro grid floor */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,205,254,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,205,254,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(600px) rotateX(55deg) translateY(30%);
  transform-origin: center bottom;
  opacity: 0.5;
}

/* VHS scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.18) 2px,
    rgba(0,0,0,0.18) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  display: flex;
  justify-content: flex-end;
}

.hero-copy {
  max-width: 640px;
  text-align: right;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: var(--glow-cyan);
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green);
  text-shadow: var(--glow-green);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(240,255,240,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background: var(--green);
  color: var(--ink-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: var(--glow-green);
  letter-spacing: 0.04em;
  transition: filter 0.18s, transform 0.12s;
}

.btn-primary:hover {
  color: var(--ink-deep);
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.hero-slant {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ink-deep);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--ink-mid) 0%, var(--ink-deep) 60%, #0a1a2e 100%);
  padding: 3.5rem 1.5rem 2.5rem;
  overflow: hidden;
  border-bottom: 2px solid var(--ink-soft);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-shadow: var(--glow-cyan);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  text-shadow: var(--glow-green);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

/* ============================================================
   BYLINE
   ============================================================ */
.byline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

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

/* ============================================================
   STAGE BADGE
   ============================================================ */
.stage-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15em 0.55em;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.stage-awareness { background: var(--ink-soft); color: var(--cyan); }
.stage-consideration { background: var(--ink-soft); color: var(--green); }
.stage-decision { background: var(--green); color: var(--ink-deep); }

/* ============================================================
   LAYOUT: main > section.wrap > div > article
   ============================================================ */
main {
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

/* Home layout */
.home-content-section,
.guide-section,
.faq-section,
.changelog-section,
.about-section,
.privacy-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* These are the articles */
.home-article,
.guide-article,
.faq-article,
.changelog-article,
.about-article,
.privacy-article {
  min-width: 0;
}

/* ============================================================
   CONTENT BODY (page.content)
   ============================================================ */
.content-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(240,255,240,0.9);
}

.content-body h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green);
  margin: 2.5rem 0 0.4rem;
  text-shadow: 0 0 8px #87ff7166;
}

.content-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cyan);
  margin: 1.8rem 0 0.35rem;
}

.content-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.4rem 0 0.3rem;
}

.content-body p { margin-bottom: 1.15rem; }

.content-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-body a:hover { color: var(--green); }

.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.15rem;
}

.content-body li { margin-bottom: 0.4rem; }

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  overflow-x: auto;
  display: block;
}

.content-body th {
  background: var(--ink-soft);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  text-align: left;
  border-bottom: 2px solid var(--green);
}

.content-body td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--ink-soft);
  color: rgba(240,255,240,0.85);
}

.content-body tr:hover td { background: rgba(135,255,113,0.04); }

.content-body blockquote {
  border-left: 3px solid var(--cyan);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(1,205,254,0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(240,255,240,0.8);
}

.content-body code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--ink-soft);
  color: var(--green);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.content-body pre {
  background: var(--ink-soft);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.content-body pre code { background: none; padding: 0; }

.content-body strong { color: var(--white); font-weight: 600; }

/* ============================================================
   SECTION BLOCKS
   ============================================================ */
.section-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-soft);
}

.section-block h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.4rem;
  text-shadow: 0 0 8px #87ff7166;
}

/* h2 + p.subtitle pattern */
.subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

/* ============================================================
   GUIDE GRID CARDS
   ============================================================ */
.guide-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.15rem;
  margin-bottom: 0;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.15rem 1.15rem 1.4rem;
  background: var(--ink-mid);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--green);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  opacity: 0;
  transition: opacity 0.2s;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(135,255,113,0.12);
  color: var(--white);
}

.guide-card:hover::before { opacity: 1; }

.card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--green);
}

.card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   FULL GUIDE LIST (ol > li > a + small)
   ============================================================ */
.full-guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
}

.full-guide-list > li {
  counter-increment: guide-counter;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ink-soft);
}

.full-guide-list > li::before {
  content: counter(guide-counter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  margin-bottom: 0.2rem;
  letter-spacing: 0.08em;
}

.full-guide-list > li > a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.15s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.full-guide-list > li > a:hover { color: var(--green); }

.full-guide-list > li > small {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.2rem;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.sidebar-card {
  background: var(--ink-mid);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--cyan);
  padding: 1.15rem;
}

.sidebar-card h3 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 6px #01cdfe66;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card ul li {
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--ink-soft);
}

.sidebar-card ul li:last-child { border-bottom: none; }

.sidebar-card ul li a {
  font-size: 0.82rem;
  color: rgba(240,255,240,0.8);
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.sidebar-card ul li a:hover { color: var(--green); }

.sidebar-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.sidebar-link {
  font-size: 0.82rem;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.sidebar-link:hover { color: var(--green); }

.sidebar-cta-block .cta-signup {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

/* ============================================================
   ARTICLE META FOOTER
   ============================================================ */
.article-meta-footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-soft);
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.article-meta-footer time { color: var(--cyan); }

/* ============================================================
   GUIDE HERO IMAGE
   ============================================================ */
.guide-hero-media {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.guide-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   FAQ LAYOUT
   ============================================================ */
.faq-intro,
.changelog-header-block,
.privacy-lead {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink-soft);
}

.faq-intro h2,
.changelog-header-block h2,
.privacy-lead h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.35rem;
  text-shadow: 0 0 8px #87ff7166;
}

.faq-body :is(h2, h3) {
  position: relative;
  padding-left: 1rem;
}

.faq-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 3px;
  background: var(--green);
  border-radius: 2px;
}

.faq-body h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 3px;
  background: var(--cyan);
  border-radius: 2px;
}

/* ============================================================
   CHANGELOG
   ============================================================ */
.changelog-body h2 {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--cyan);
  border-left: 3px solid var(--cyan);
  padding-left: 0.75rem;
  margin-top: 2rem;
}

.changelog-body h3 {
  font-size: 0.92rem;
  color: var(--green);
  margin-top: 1.25rem;
}

/* ============================================================
   ABOUT — AUTHOR SECTION
   ============================================================ */
.author-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-soft);
}

.author-section h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.35rem;
  text-shadow: 0 0 8px #87ff7166;
}

.author-bio-card {
  margin-top: 1.25rem;
  background: var(--ink-mid);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.5rem;
}

.author-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.55rem;
}

.author-bio {
  font-size: 0.95rem;
  color: rgba(240,255,240,0.85);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-mid);
  border-top: 2px solid var(--ink-soft);
  margin-top: 2rem;
  position: relative;
}

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

.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: var(--glow-green);
  margin-bottom: 0.55rem;
}

.footer-blurb {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-author {
  font-size: 0.8rem;
  color: rgba(240,255,240,0.5);
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
}

.footer-links-col ul li {
  padding: 0.2rem 0;
}

.footer-links-col ul li a {
  font-size: 0.85rem;
  color: rgba(240,255,240,0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  transition: color 0.15s;
}

.footer-links-col ul li a:hover { color: var(--green); }

.footer-contact {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid var(--ink-soft);
}

.footer-contact address {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-contact address a {
  color: var(--cyan);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-contact address a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--ink-soft);
  padding: 1.1rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.rg-notice {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.5;
  font-family: var(--font-mono);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(240,255,240,0.35);
}

/* ============================================================
   GLITCH ANIMATION
   ============================================================ */
@keyframes glitch-shift {
  0%, 95%, 100% { clip-path: none; transform: none; }
  96% { clip-path: inset(10% 0 80% 0); transform: translateX(-4px); }
  97% { clip-path: inset(60% 0 20% 0); transform: translateX(4px); }
  98% { clip-path: inset(30% 0 50% 0); transform: translateX(-3px); }
}

.brand-name {
  animation: glitch-shift 8s infinite;
}

/* ============================================================
   PARALLAX (JS-driven, CSS fallback)
   ============================================================ */
.hero-grid {
  will-change: transform;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .home-content-section,
  .guide-section,
  .faq-section,
  .changelog-section,
  .about-section,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-card {
    flex: 1 1 240px;
  }

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

@media (max-width: 640px) {
  html { font-size: 16px; }

  .brand-row {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

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

  nav[aria-label="Primary navigation"] > p {
    gap: 0;
  }

  nav[aria-label="Primary navigation"] > p > a {
    font-size: 0.78rem;
    padding: 0.55rem 0.55rem;
  }

  .header-ctas {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }

  .hero-inner {
    justify-content: center;
    padding: 3.5rem 1.25rem 2rem;
  }

  .hero-copy {
    text-align: left;
    max-width: 100%;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: column;
  }

  .footer-top {
    padding: 1.75rem 1rem 1rem;
  }

  .footer-bottom {
    padding: 1rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-grid { transform: none; opacity: 0.3; }
  html { scroll-behavior: auto; }
}

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