/*
  Jum! marketing site — design tokens ported 1:1 from the mobile app's own
  source of truth (jum-mobile/lib/core/theme/app_colors.dart, app_spacing.dart,
  app_radius.dart) so the website visually rhymes with the real product
  instead of inventing a parallel "marketing" palette.

  One addition not in the app theme: --jum-brand-green, the real accent color
  used in the shipped app icon / native splash / wordmark assets
  (jum-mobile/assets/branding/*.svg, fill="#15ae68"), confirmed 2026-08-16 as
  the current logo identity. AppColors.tertiaryLight (amber) is a separate,
  still-current in-app UI accent (buttons, badges) — kept here as
  --jum-accent-amber for secondary highlights, not the logo.
*/

:root {
  color-scheme: light dark;

  /* ---- Brand-critical ---- */
  --jum-primary: #4c1d95;
  --jum-on-primary: #ffffff;
  --jum-primary-dark: #a78bfa;
  --jum-on-primary-dark: #120e17;

  --jum-brand-green: #15ae68;
  --jum-brand-green-dark: #34d399;

  --jum-accent-amber: #d97706;
  --jum-on-accent-amber: #ffffff;
  --jum-accent-amber-dark: #fbbf24;
  --jum-on-accent-amber-dark: #120e17;

  --jum-positive: #15803d;
  --jum-positive-dark: #4ade80;
  --jum-error: #dc2626;
  --jum-error-dark: #f87171;

  /* ---- Neutrals (light) ---- */
  --jum-bg: #f7f6fa;
  --jum-surface: #ffffff;
  --jum-surface-sunk: #f0ebf5;
  --jum-heading: #2e104d;
  --jum-ink: #191224;
  --jum-ink-soft: #635773;
  --jum-line: #e3dbe8;

  /* ---- Scale, from AppSpacing / AppRadius ---- */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-base: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-xxl: 48px;
  --sp-xxxl: 80px;

  --r-sm: 8px;
  --r-card: 18px;
  --r-button: 14px;
  --r-sheet: 24px;
  --r-pill: 999px;

  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Bebas Neue", var(--font-body);

  --shadow-card: 0 1px 2px rgba(46, 16, 77, 0.06), 0 8px 24px -12px rgba(46, 16, 77, 0.18);
  --shadow-pop: 0 20px 48px -16px rgba(46, 16, 77, 0.35);

  --container: 1160px;
  --dur: 0.5s;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --jum-primary: #a78bfa;
    --jum-on-primary: #120e17;
    --jum-accent-amber: #fbbf24;
    --jum-on-accent-amber: #120e17;
    --jum-positive: #4ade80;
    --jum-error: #f87171;
    --jum-bg: #120e17;
    --jum-surface: #1d1626;
    --jum-surface-sunk: #191224;
    --jum-heading: #ede9fe;
    --jum-ink: #f5f3ff;
    --jum-ink-soft: #a79bba;
    --jum-line: #322640;
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px -12px rgba(0, 0, 0, 0.5);
  }
}

:root[data-theme="dark"] {
  --jum-primary: #a78bfa;
  --jum-on-primary: #120e17;
  --jum-accent-amber: #fbbf24;
  --jum-on-accent-amber: #120e17;
  --jum-positive: #4ade80;
  --jum-error: #f87171;
  --jum-bg: #120e17;
  --jum-surface: #1d1626;
  --jum-surface-sunk: #191224;
  --jum-heading: #ede9fe;
  --jum-ink: #f5f3ff;
  --jum-ink-soft: #a79bba;
  --jum-line: #322640;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px -12px rgba(0, 0, 0, 0.5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
html, body {
  /* The closed mobile nav drawer sits off-canvas via a fixed position plus
     transform: translateX(100%) — Chrome still counts that transformed box
     toward document.scrollWidth even though it's fixed, which otherwise
     creates real horizontal overflow (and a visible scrollbar) on every
     viewport, not just where the drawer is used. Clipping it here is the
     standard fix for this exact off-canvas-drawer pattern. */
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--jum-bg);
  color: var(--jum-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { color: var(--jum-heading); line-height: 1.15; margin: 0 0 var(--sp-md); font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 var(--sp-base); }
ul, ol { margin: 0 0 var(--sp-base); padding-left: 1.25em; }
li + li { margin-top: var(--sp-xs); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-lg); }
@media (max-width: 640px) { .container { padding-inline: var(--sp-base); } }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute; left: var(--sp-base); top: -60px;
  background: var(--jum-primary); color: var(--jum-on-primary);
  padding: var(--sp-sm) var(--sp-base); border-radius: var(--r-sm);
  z-index: 1000; transition: top 0.2s ease;
}
.skip-link:focus { top: var(--sp-base); }

:focus-visible {
  outline: 3px solid var(--jum-brand-green);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-xs);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--jum-primary);
}
.h-hero {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  color: var(--jum-heading);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.05;
}
h1:not(.h-hero) { font-size: clamp(2.1rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.2rem; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--jum-ink-soft); }
.muted { color: var(--jum-ink-soft); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-sm);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.85em 1.5em; border-radius: var(--r-button);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; line-height: 1.1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--jum-primary); color: var(--jum-on-primary); box-shadow: var(--shadow-pop); }
.btn-primary:hover { box-shadow: 0 24px 56px -16px rgba(46, 16, 77, 0.45); }
.btn-accent { background: var(--jum-brand-green); color: #ffffff; }
.btn-outline { background: transparent; color: var(--jum-heading); border-color: var(--jum-line); }
.btn-outline:hover { border-color: var(--jum-primary); }
.btn-ghost { background: transparent; color: var(--jum-primary); padding-inline: 0.4em; }
.btn-lg { padding: 1em 1.9em; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  /* No backdrop-filter here on purpose: it (like transform/filter) makes this
     element the containing block for any position:fixed descendant — which
     silently broke the mobile nav drawer's height (it was resolving "100%"
     against the header's own ~66px box instead of the viewport). Not worth
     a decorative blur breaking fixed-position layout for every descendant. */
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--jum-bg) 96%, transparent);
  border-bottom: 1px solid var(--jum-line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-lg); padding-block: var(--sp-md); }
.brand-lockup { display: flex; align-items: center; gap: var(--sp-sm); text-decoration: none; }
.brand-lockup img { height: 34px; width: auto; }
.brand-wordmark { font-family: var(--font-display); font-size: 1.6rem; color: var(--jum-heading); letter-spacing: 0.01em; }
.brand-wordmark .bang { color: var(--jum-brand-green); }

.nav-links { display: flex; align-items: center; gap: var(--sp-xl); list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 600; color: var(--jum-ink); font-size: 0.96rem; }
.nav-links a[aria-current="page"] { color: var(--jum-primary); }
.nav-links a:hover { color: var(--jum-primary); }
.nav-cta { display: flex; align-items: center; gap: var(--sp-base); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle .bar {
  width: 22px; height: 2.5px; border-radius: 2px; background: var(--jum-heading);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .bar-mid { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar-top { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar-bottom { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0; height: calc(100% - 66px);
    flex-direction: column; align-items: flex-start;
    background: var(--jum-surface); padding: var(--sp-lg); gap: var(--sp-lg);
    transform: translateX(100%); transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- Sections ---------- */
section { padding-block: var(--sp-xxxl); }
.section-tight { padding-block: var(--sp-xxl); }
.section-head { max-width: 760px; margin-bottom: var(--sp-xxl); }
.section-head.center { margin-inline: auto; }
.bg-surface { background: var(--jum-surface); }
.bg-sunk { background: var(--jum-surface-sunk); }
.bg-primary { background: var(--jum-primary); color: var(--jum-on-primary); }
.bg-primary h1, .bg-primary h2, .bg-primary h3 { color: var(--jum-on-primary); }
.bg-primary .muted { color: color-mix(in srgb, var(--jum-on-primary) 72%, transparent); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--sp-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--jum-surface); border: 1px solid var(--jum-line);
  border-radius: var(--r-card); padding: var(--sp-lg); box-shadow: var(--shadow-card);
}
.card-flat { background: var(--jum-surface); border: 1px solid var(--jum-line); border-radius: var(--r-card); padding: var(--sp-lg); }
.card h3 { margin-bottom: var(--sp-sm); }
.card p:last-child { margin-bottom: 0; }

.icon-badge {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--jum-surface-sunk); color: var(--jum-primary);
  margin-bottom: var(--sp-base); flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge.on-primary { background: color-mix(in srgb, var(--jum-on-primary) 16%, transparent); color: var(--jum-on-primary); }

.pill {
  display: inline-flex; align-items: center; gap: var(--sp-xs);
  padding: 0.35em 0.9em; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700; background: var(--jum-surface-sunk); color: var(--jum-ink-soft);
}
.pill-green { background: color-mix(in srgb, var(--jum-brand-green) 16%, transparent); color: var(--jum-brand-green); }
.pill-amber { background: color-mix(in srgb, var(--jum-accent-amber) 18%, transparent); color: var(--jum-accent-amber); }
.pill-primary { background: color-mix(in srgb, var(--jum-primary) 14%, transparent); color: var(--jum-primary); }

/* ---------- Hero ---------- */
.hero { padding-block: var(--sp-xxxl) var(--sp-xxl); overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-xxl); align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-actions { display: flex; gap: var(--sp-base); flex-wrap: wrap; margin-top: var(--sp-xl); }
.hero-meta { display: flex; gap: var(--sp-lg); flex-wrap: wrap; margin-top: var(--sp-xl); font-size: 0.9rem; color: var(--jum-ink-soft); }
.hero-meta strong { color: var(--jum-heading); }

.hero-art { position: relative; }
.field-lines {
  position: absolute; inset: -10% -10% -10% -10%; z-index: -1; opacity: 0.5;
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--jum-brand-green) 20%, transparent), transparent 45%),
    radial-gradient(circle at 82% 78%, color-mix(in srgb, var(--jum-primary) 22%, transparent), transparent 45%);
}

/* ---------- Phone mock / product visualization ---------- */
.phone-mock {
  width: min(320px, 82vw); margin-inline: auto;
  background: var(--jum-surface); border: 10px solid var(--jum-heading);
  border-radius: 40px; box-shadow: var(--shadow-pop);
  overflow: hidden; position: relative;
}
.phone-mock .screen { padding: var(--sp-base); background: var(--jum-bg); min-height: 480px; }
.mock-appbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-base); }
.mock-appbar .title { font-weight: 800; color: var(--jum-heading); }
.mock-card {
  background: var(--jum-surface); border-radius: var(--r-card); padding: var(--sp-base);
  border: 1px solid var(--jum-line); margin-bottom: var(--sp-md); box-shadow: var(--shadow-card);
}
.mock-row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-sm); }
.mock-avatars { display: flex; }
.mock-avatars span {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--jum-surface);
  margin-left: -8px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #fff;
}
.mock-avatars span:first-child { margin-left: 0; }

/* ---------- Timeline (lifecycle / how-it-works) ---------- */
.timeline { position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background: var(--jum-line);
}
@media (max-width: 720px) { .timeline::before { left: 23px; } }
.timeline-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: var(--sp-lg); padding-bottom: var(--sp-xl); }
@media (max-width: 720px) { .timeline-step { grid-template-columns: 48px 1fr; } }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--jum-primary); color: var(--jum-on-primary);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-size: 1.5rem; z-index: 1; box-shadow: var(--shadow-card);
}
@media (max-width: 720px) { .timeline-num { width: 48px; height: 48px; font-size: 1.25rem; } }
.timeline-step.is-play .timeline-num { background: var(--jum-brand-green); }

/* ---------- Loop strip (home condensed lifecycle) ---------- */
.loop-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: var(--sp-sm); }
@media (max-width: 900px) { .loop-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .loop-strip { grid-template-columns: repeat(2, 1fr); } }
.loop-item { text-align: center; padding: var(--sp-base) var(--sp-sm); }
.loop-item .icon-badge { margin-inline: auto; }
.loop-item .label { font-weight: 700; font-size: 0.88rem; color: var(--jum-heading); }

/* ---------- Feature rows (problem -> solution -> benefit) ---------- */
.feature-row {
  display: grid; grid-template-columns: 260px 1fr; gap: var(--sp-xl);
  padding-block: var(--sp-xl); border-top: 1px solid var(--jum-line);
}
.feature-row:first-of-type { border-top: none; }
@media (max-width: 760px) { .feature-row { grid-template-columns: 1fr; gap: var(--sp-base); } }
.feature-row h3 { display: flex; align-items: center; gap: var(--sp-sm); margin-bottom: var(--sp-xs); }
.pbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
@media (max-width: 760px) { .pbs { grid-template-columns: 1fr; } }
.pbs dt { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--jum-ink-soft); margin-bottom: var(--sp-xs); }
.pbs dd { margin: 0; }

/* ---------- Use-case chips ---------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.chip {
  border: 1px solid var(--jum-line); background: var(--jum-surface);
  padding: var(--sp-sm) var(--sp-base); border-radius: var(--r-pill); font-weight: 600; font-size: 0.92rem;
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--jum-line); }
.faq-item:first-child { border-top: 1px solid var(--jum-line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: var(--sp-lg) 0; font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-base);
  color: var(--jum-heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--jum-primary); flex-shrink: 0; line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding-bottom: var(--sp-lg); color: var(--jum-ink-soft); max-width: 70ch; }

/* ---------- Comparison (why-jum) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare .card ul { padding-left: 1.1em; }
.compare .before { border-color: var(--jum-line); }
.compare .after { border-color: var(--jum-brand-green); border-width: 2px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--r-sheet); background: var(--jum-primary); color: var(--jum-on-primary);
  padding: var(--sp-xxl); text-align: center;
}
.cta-band h2 { color: var(--jum-on-primary); }
.cta-band .muted { color: color-mix(in srgb, var(--jum-on-primary) 78%, transparent); }

/* ---------- Coming soon panel ---------- */
.get-jum-panel {
  border-radius: var(--r-sheet); border: 1px solid var(--jum-line); background: var(--jum-surface);
  padding: var(--sp-xl); box-shadow: var(--shadow-pop);
}
.store-badges { display: flex; gap: var(--sp-base); flex-wrap: wrap; margin-top: var(--sp-lg); }
.store-badge {
  display: inline-flex; align-items: center; gap: var(--sp-sm);
  border: 1px dashed var(--jum-line); border-radius: var(--r-button);
  padding: var(--sp-sm) var(--sp-base); color: var(--jum-ink-soft); font-size: 0.9rem; font-weight: 600;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--jum-accent-amber); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--jum-line); padding-block: var(--sp-xxl) var(--sp-xl); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--sp-xl); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--jum-ink-soft); margin-bottom: var(--sp-base); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid a { text-decoration: none; color: var(--jum-ink); font-size: 0.94rem; }
.footer-grid a:hover { color: var(--jum-primary); }
.footer-grid li + li { margin-top: var(--sp-sm); }
.footer-brand p { max-width: 34ch; color: var(--jum-ink-soft); font-size: 0.94rem; }
.footer-bottom {
  margin-top: var(--sp-xxl); padding-top: var(--sp-lg); border-top: 1px solid var(--jum-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-sm);
  font-size: 0.85rem; color: var(--jum-ink-soft);
}

/* ---------- Reveal-on-scroll (progressive enhancement) ---------- */
.reveal { opacity: 1; transform: none; }
.js-reveal-ready .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur) ease, transform var(--dur) ease; }
.js-reveal-ready .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Legal pages ---------- */
.legal-body h2 { margin-top: var(--sp-xxl); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body { max-width: 76ch; }
.todo-note {
  background: color-mix(in srgb, var(--jum-accent-amber) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--jum-accent-amber) 40%, transparent);
  border-radius: var(--r-sm); padding: var(--sp-sm) var(--sp-base); font-size: 0.88rem; margin-block: var(--sp-base);
}
.todo-note strong { color: var(--jum-accent-amber); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--jum-ink-soft); margin-bottom: var(--sp-lg); }
.breadcrumbs a { text-decoration: none; color: var(--jum-ink-soft); }
.breadcrumbs a:hover { color: var(--jum-primary); }
.breadcrumbs span[aria-hidden] { margin-inline: var(--sp-xs); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: var(--sp-xxl); border-bottom: 1px solid var(--jum-line); }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding-block: var(--sp-xxxl); }
.error-page .code { font-family: var(--font-display); font-size: clamp(4rem, 14vw, 8rem); color: var(--jum-primary); line-height: 1; }
