/* ---------- Design tokens ---------- */
:root {
  --indigo-950: #1a0b3d;
  --indigo-900: #2a1566;
  --indigo-700: #4c2ab8;
  --indigo-600: #6b3df2;
  --indigo-500: #8a5cf8;
  --indigo-100: #ece4ff;
  --indigo-50: #f6f2ff;

  --gold-500: #f5b700;
  --gold-400: #ffc933;
  --gold-100: #fff2c2;

  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #ccfbf1;

  --pink-500: #ec4899;
  --pink-400: #f472b6;

  --ink-900: #120a2a;
  --ink-700: #3a2f55;
  --ink-500: #6b648a;
  --ink-400: #8f89a8;
  --ink-300: #c3c0d1;
  --ink-100: #eae8f0;
  --ink-50:  #f7f6fb;

  --bg: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(24, 13, 60, 0.06), 0 2px 6px rgba(24, 13, 60, 0.04);
  --shadow-md: 0 6px 18px rgba(24, 13, 60, 0.08), 0 2px 4px rgba(24, 13, 60, 0.04);
  --shadow-lg: 0 30px 60px -20px rgba(74, 41, 184, 0.35), 0 10px 24px -8px rgba(74, 41, 184, 0.18);
  --shadow-glow: 0 20px 50px -10px rgba(107, 61, 242, 0.45);

  --maxw: 1160px;
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', 'Inter', system-ui, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--indigo-600); text-decoration: none; }
a:hover { color: var(--indigo-700); }
button { font-family: inherit; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink-900); }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); margin: 0 0 20px; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin: 0 0 14px; }
h3 { font-size: 1.25rem; margin: 0 0 8px; }
p { margin: 0 0 16px; color: var(--ink-700); }
.lede { font-size: 1.15rem; color: var(--ink-700); max-width: 640px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-600);
  margin-bottom: 12px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(24, 13, 60, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  color: var(--ink-900);
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo-600), var(--pink-500));
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--ink-900); }
.nav-cta { padding: 8px 16px; border-radius: 999px; background: var(--ink-900); color: #fff !important; font-weight: 600; }
.nav-cta:hover { background: var(--indigo-700); color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; }
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 24px; gap: 4px; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: inline-grid; place-items: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}
.btn-primary { background: var(--ink-900); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--indigo-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: rgba(24,13,60,0.12); }
.btn-ghost:hover { background: var(--ink-50); color: var(--ink-900); }

/* Store badges */
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: #000; color: #fff !important;
  border-radius: 14px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow-sm);
}
.badge:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff !important; }
.badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.badge .b-small { font-size: 0.68rem; opacity: 0.85; line-height: 1; margin-bottom: 2px; }
.badge .b-large { font-size: 1.05rem; font-weight: 600; line-height: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245, 183, 0, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(236, 72, 153, 0.12), transparent 60%),
    linear-gradient(180deg, #f7f3ff 0%, #fffaf0 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(24,13,60,0.08);
  color: var(--ink-700);
  font-size: 0.82rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--teal-500); }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--indigo-600) 0%, var(--pink-500) 60%, var(--gold-500) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-ctas { display: flex; gap: 12px; margin: 28px 0 18px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(24,13,60,0.08);
  color: var(--ink-500); font-size: 0.9rem;
}
.hero-trust strong { display: block; color: var(--ink-900); font-size: 1.1rem; font-family: var(--font-display); font-weight: 600; }

.hero-phones { position: relative; min-height: 560px; }
.phone { position: absolute; filter: drop-shadow(0 30px 40px rgba(74, 41, 184, 0.25)); }
.phone-1 { left: 0; top: 40px; transform: rotate(-6deg); width: 260px; z-index: 2; }
.phone-2 { right: 0; top: 0; transform: rotate(5deg); width: 260px; z-index: 3; }
.floaty {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.9rem;
  z-index: 4;
}
.floaty .ico { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.floaty-1 { left: -14px; top: 14px; background: #fff; }
.floaty-1 .ico { background: var(--gold-100); color: var(--gold-500); }
.floaty-2 { right: -10px; bottom: 60px; }
.floaty-2 .ico { background: var(--teal-100); color: var(--teal-500); }
.floaty-3 { left: 40%; bottom: 10px; }
.floaty-3 .ico { background: var(--indigo-100); color: var(--indigo-600); }
.floaty small { display: block; color: var(--ink-500); font-weight: 500; font-size: 0.72rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-phones { min-height: 520px; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .phone-1, .phone-2 { width: 220px; }
  .phone-1 { left: 8px; }
  .phone-2 { right: 8px; }
}

/* ---------- Marquee of features ---------- */
.marquee {
  background: var(--ink-900);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: scroll 36s linear infinite;
}
.marquee span {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
.marquee span svg { width: 18px; height: 18px; color: var(--gold-400); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Section: How it works ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .lede { margin: 0 auto; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--ink-50);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  border: 1px solid rgba(24,13,60,0.04);
}
.step-num {
  width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  background: #fff; border: 1px solid rgba(24,13,60,0.08);
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--indigo-600);
  margin-bottom: 18px;
}
.step-visual {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  margin-top: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24,13,60,0.06);
  display: grid; place-items: center;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Section: Feature grid ---------- */
.features {
  background: linear-gradient(180deg, #fff 0%, var(--indigo-50) 100%);
}
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(24,13,60,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card h3 { margin-top: 14px; font-size: 1.1rem; }
.feature-card p { font-size: 0.95rem; margin: 0; }
.feature-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--indigo-100); color: var(--indigo-600);
}
.feature-ico svg { width: 22px; height: 22px; }
.feature-card.accent-gold .feature-ico { background: var(--gold-100); color: var(--gold-500); }
.feature-card.accent-teal .feature-ico { background: var(--teal-100); color: var(--teal-500); }
.feature-card.accent-pink .feature-ico { background: #fde7f1; color: var(--pink-500); }
@media (max-width: 820px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Kid/Parent mode split ---------- */
.split-section { padding: 64px 0; }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.split-card {
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.split-card.parent {
  background: linear-gradient(135deg, var(--ink-900), var(--indigo-900));
}
.split-card.kid {
  background: linear-gradient(135deg, var(--indigo-600), var(--pink-500));
}
.split-card .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.split-card h3 { color: #fff; font-size: 1.75rem; margin-bottom: 10px; }
.split-card p { color: rgba(255,255,255,0.85); }
.split-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.split-card li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; color: rgba(255,255,255,0.92); font-size: 0.95rem;
}
.split-card li svg { width: 18px; height: 18px; margin-top: 3px; color: var(--gold-400); flex-shrink: 0; }
.split-card.kid li svg { color: #fff; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ---------- Screenshots carousel-ish ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  background: linear-gradient(180deg, var(--indigo-50), #fff);
  border-radius: var(--radius-xl);
  padding: 28px 16px 0;
  text-align: center;
  border: 1px solid rgba(24,13,60,0.06);
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.gallery-item h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1rem; }
.gallery-item p { font-size: 0.85rem; color: var(--ink-500); margin-bottom: 18px; }
.gallery-item .phone { position: relative; width: 190px; margin-top: auto; transform: none; filter: drop-shadow(0 10px 20px rgba(74,41,184,0.15)); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing { background: var(--ink-50); }
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 880px; margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid rgba(24,13,60,0.08);
  position: relative;
}
.price-card.highlight {
  background: linear-gradient(180deg, #fffaf0, #fff);
  border-color: var(--gold-400);
  box-shadow: 0 20px 50px -20px rgba(245, 183, 0, 0.4);
}
.price-badge {
  position: absolute; top: -12px; right: 28px;
  background: var(--gold-500); color: var(--ink-900);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-amount {
  display: flex; align-items: baseline; gap: 6px;
  margin: 20px 0;
}
.price-amount .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink-900); line-height: 1; }
.price-amount .unit { color: var(--ink-500); font-size: 0.95rem; }
.price-list { list-style: none; padding: 0; margin: 24px 0; }
.price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  color: var(--ink-700); font-size: 0.95rem;
}
.price-list li svg { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; color: var(--teal-500); }
.price-note { font-size: 0.82rem; color: var(--ink-500); margin-top: 10px; text-align: center; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(24,13,60,0.04);
}
.stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--gold-500); }
.stars svg { width: 16px; height: 16px; }
.testi blockquote { margin: 0 0 18px; font-size: 1rem; color: var(--ink-900); }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--indigo-500), var(--pink-500));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600; font-size: 0.95rem;
}
.testi-who small { display: block; color: var(--ink-500); font-size: 0.8rem; }
.testi-who strong { font-size: 0.95rem; }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { background: var(--ink-50); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  border: 1px solid rgba(24,13,60,0.06);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent; border: 0;
  text-align: left;
  padding: 20px 22px;
  font-weight: 600; font-size: 1.02rem;
  color: var(--ink-900);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q:hover { background: var(--ink-50); }
.faq-q .chev { width: 20px; height: 20px; color: var(--ink-500); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 22px 20px; color: var(--ink-700); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(245, 183, 0, 0.25), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(236, 72, 153, 0.25), transparent 60%),
    linear-gradient(135deg, var(--indigo-900), var(--indigo-700));
  color: #fff;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-band-wrap { max-width: var(--maxw); margin: 96px auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .badges { justify-content: center; }
@media (max-width: 720px) { .cta-band { padding: 48px 24px; margin: 0 16px; } .cta-band-wrap { margin: 72px auto; } }

/* ---------- Footer ---------- */
footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  font-size: 0.9rem;
}
.foot-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
.foot-brand { color: #fff; }
.foot-brand p { color: rgba(255,255,255,0.65); max-width: 320px; }
footer h5 {
  color: #fff; margin: 0 0 14px;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: #fff; }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
}
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,0.08); display: grid; place-items: center; }
.foot-social a:hover { background: rgba(255,255,255,0.16); }
.foot-social svg { width: 16px; height: 16px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 780px; margin: 0 auto;
  padding: 80px 24px;
}
.legal h1 { margin-bottom: 8px; }
.legal .meta { color: var(--ink-500); margin-bottom: 40px; font-size: 0.95rem; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 10px; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-700); font-size: 1rem; line-height: 1.7; }
.legal ul { padding-left: 20px; margin: 0 0 16px; }
.legal a { color: var(--indigo-600); text-decoration: underline; }

/* ---------- Logo image variants ---------- */
.logo-img { height: 36px; width: auto; }
.logo-icon { width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0; }
.hero-app-icon { width: 120px; height: 120px; border-radius: 28px; margin-bottom: 20px; box-shadow: var(--shadow-md); }

/* ---------- Scene strip ---------- */
.scenes { background: var(--indigo-50); }
.scene-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-300) transparent;
}
.scene-strip::-webkit-scrollbar { height: 6px; }
.scene-strip::-webkit-scrollbar-track { background: transparent; }
.scene-strip::-webkit-scrollbar-thumb { background: var(--ink-300); border-radius: 999px; }
.scene-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.scene-card img { width: 100%; height: 390px; object-fit: cover; display: block; }
.scene-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(18, 10, 42, 0.8), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- 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; }
