/* DriveTimeTracker — site styles
   Palette: Deep Navy #102A43 · Electric Blue #1677FF · Fresh Mint #35D0BA
            Warm Yellow #FFD166 · Cloud #F5F8FC · Ink #172033 · Slate #64748B · Green #20B26B */

:root {
  --navy: #102A43;
  --blue: #1677FF;
  --blue-dark: #0F5FD6;
  --blue-soft: #E8F0FF;
  --mint: #35D0BA;
  --mint-soft: #E1F8F4;
  --yellow: #FFD166;
  --yellow-soft: #FFF4D6;
  --cloud: #F5F8FC;
  --ink: #172033;
  --slate: #64748B;
  --green: #20B26B;
  --white: #FFFFFF;
  --line: #E3E9F2;

  --font-head: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.04), 0 4px 12px rgba(16, 42, 67, 0.06);
  --shadow-md: 0 2px 4px rgba(16, 42, 67, 0.04), 0 16px 40px rgba(16, 42, 67, 0.10);
  --shadow-lg: 0 4px 8px rgba(16, 42, 67, 0.05), 0 32px 64px rgba(16, 42, 67, 0.14);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cloud);
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: 24px; }
.section { padding-block: 96px; }
@media (max-width: 720px) { .section { padding-block: 64px; } }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--navy); }
.lead { font-size: 18px; color: var(--slate); max-width: 560px; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(22, 119, 255, 0.28); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 22px rgba(22, 119, 255, 0.34); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: #C9D4E3; }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: rgba(16, 42, 67, 0.05); }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #0B1E30; }
.btn svg { width: 20px; height: 20px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 248, 252, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav-logo, .footer-logo { display: inline-flex; align-items: center; gap: 8px; }
.nav-logo img { height: 36px; width: 36px; }
.footer-logo img { height: 30px; width: 30px; }
.wordmark { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: -0.03em; }
.wordmark b { font-weight: 500; color: var(--blue); }
.footer-logo .wordmark { font-size: 17px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: 15px; color: var(--slate); }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--navy); }
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; left: 0; right: 0; top: 72px; padding: 12px 24px 20px;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { padding: 10px 0; width: 100%; }
  .nav-inner { gap: 12px; }
  .nav-cta { gap: 4px; }
  .nav-cta .btn-primary { padding: 10px 16px; font-size: 14px; }
  .wordmark { font-size: 17px; }
  .nav-logo img { width: 30px; height: 30px; }
}
@media (max-width: 380px) { .wordmark b { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: 72px 40px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(22, 119, 255, 0.10), transparent 70%),
    radial-gradient(500px 360px at 10% 90%, rgba(53, 208, 186, 0.12), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); font-weight: 800; color: var(--navy); }
.hero h1 .accent { color: var(--blue); }
.hero .lead { font-size: 19px; margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; font-size: 14px; color: var(--slate); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--green); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-block: 48px 24px; }
}

/* ---------- Dashboard preview ---------- */
.dash {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 28px; border: 1px solid rgba(227, 233, 242, 0.8);
  position: relative;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.dash-pill { font-size: 12px; font-weight: 600; color: var(--green); background: #E6F7EE; padding: 4px 10px; border-radius: 999px; }
.dash-main { display: flex; align-items: center; gap: 24px; }
.ring { position: relative; width: 132px; height: 132px; flex-shrink: 0; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 11; stroke-linecap: round; }
.ring .track { stroke: var(--cloud); }
.ring .fill { stroke: var(--blue); stroke-dasharray: 339.3; stroke-dashoffset: 339.3; transition: stroke-dashoffset 1.4s cubic-bezier(.22,.9,.3,1); }
.ring .pct { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--navy); }
.ring .pct small { display: block; font-size: 11px; font-weight: 600; color: var(--slate); letter-spacing: 0.06em; }
.dash-hours { font-family: var(--font-head); font-weight: 800; font-size: 40px; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.dash-hours span { font-size: 22px; color: var(--slate); font-weight: 600; }
.dash-sub { color: var(--slate); font-size: 14px; margin-top: 8px; }
.dash-sub strong { color: var(--ink); }
.bar { height: 10px; background: var(--cloud); border-radius: 999px; overflow: hidden; margin-top: 20px; }
.bar > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--mint)); border-radius: 999px; transition: width 1.4s cubic-bezier(.22,.9,.3,1); }
.bar-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--slate); margin-top: 8px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.card {
  background: var(--cloud); border-radius: var(--radius-md); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.card .ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.card .ic.night { background: #E9E8FF; }
.card .ic.rain { background: var(--blue-soft); }
.card .ic.hwy { background: var(--mint-soft); }
.card .ic.parent { background: var(--yellow-soft); }
.card b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy); }
.card small { color: var(--slate); font-size: 12px; }
.dash-toast {
  position: absolute; right: 28px; bottom: -18px; background: var(--navy); color: var(--white);
  border-radius: 14px; padding: 12px 16px; font-size: 13px; font-weight: 500; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; animation: float 5s ease-in-out infinite;
}
.dash-toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(53,208,186,.25); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 480px) {
  .dash { padding: 20px; }
  .dash-main { gap: 16px; }
  .ring { width: 104px; height: 104px; }
  .dash-hours { font-size: 32px; }
  .dash-toast { right: 16px; bottom: -16px; font-size: 12px; }
  .cards { grid-template-columns: 1fr; gap: 8px; }
  .card { padding: 10px 14px; }
  .card .ic { width: 34px; height: 34px; font-size: 16px; }
  .card > div:last-child { display: flex; align-items: baseline; gap: 8px; }
}

/* ---------- Trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; padding-block: 22px; font-size: 14px; color: var(--slate); font-weight: 500; }
.strip-inner span { display: inline-flex; align-items: center; gap: 8px; }
.strip-inner svg { width: 18px; height: 18px; color: var(--blue); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(227, 233, 242, 0.6); position: relative;
}
.step-num {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 18px; margin-bottom: 20px;
}
.step:nth-child(1) .step-num { background: var(--blue-soft); color: var(--blue); }
.step:nth-child(2) .step-num { background: var(--mint-soft); color: #159C89; }
.step:nth-child(3) .step-num { background: var(--yellow-soft); color: #B7841A; }
.step h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--slate); font-size: 15px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Features ---------- */
.features { background: var(--white); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.feat {
  border-radius: var(--radius-lg); padding: 28px; background: var(--cloud); border: 1px solid transparent;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feat:hover { border-color: var(--line); transform: translateY(-2px); box-shadow: var(--shadow-sm); background: var(--white); }
.feat .ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.feat .ic svg { width: 22px; height: 22px; }
.feat h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat p { color: var(--slate); font-size: 15px; }
.ic-blue { background: var(--blue-soft); color: var(--blue); }
.ic-mint { background: var(--mint-soft); color: #159C89; }
.ic-yellow { background: var(--yellow-soft); color: #B7841A; }
.ic-navy { background: #E4EAF2; color: var(--navy); }
.ic-green { background: #E6F7EE; color: var(--green); }
.ic-purple { background: #E9E8FF; color: #5B5BD6; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---------- Milestone ---------- */
.milestone { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.milestone::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 80% 50%, rgba(22, 119, 255, 0.35), transparent 70%),
              radial-gradient(400px 300px at 15% 100%, rgba(53, 208, 186, 0.22), transparent 70%);
}
.milestone .wrap { position: relative; }
.mile-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.mile-big { font-family: var(--font-head); font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.mile-big .mint { color: var(--mint); }
.mile-sub { font-size: 18px; color: rgba(255,255,255,0.72); margin-top: 18px; max-width: 480px; }
.mile-quotes { display: grid; gap: 12px; }
.q {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-md);
  padding: 16px 18px; display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 15px;
  backdrop-filter: blur(8px);
}
.q .badge { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.q .badge.b1 { background: rgba(22,119,255,0.35); }
.q .badge.b2 { background: rgba(53,208,186,0.3); }
.q .badge.b3 { background: rgba(255,209,102,0.3); }
@media (max-width: 860px) { .mile-grid { grid-template-columns: 1fr; } }

/* ---------- Parents ---------- */
.parents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 16px; }
.check-list svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.log-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 24px; border: 1px solid rgba(227,233,242,.8); }
.log-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
.log-card h4 span { font-size: 12px; font-weight: 600; color: var(--slate); }
.log-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.log-row:first-of-type { border-top: 0; }
.log-date { width: 46px; text-align: center; background: var(--cloud); border-radius: 10px; padding: 6px 0; line-height: 1.1; flex-shrink: 0; }
.log-date b { display: block; font-family: var(--font-head); font-size: 16px; color: var(--navy); }
.log-date small { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); font-weight: 600; }
.log-body { flex: 1; min-width: 0; }
.log-body b { display: block; font-size: 14px; color: var(--ink); }
.log-body small { color: var(--slate); font-size: 12px; }
.log-time { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 15px; }
.tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; margin-right: 4px; }
.tag-night { background: #E9E8FF; color: #5B5BD6; }
.tag-rain { background: var(--blue-soft); color: var(--blue); }
.tag-hwy { background: var(--mint-soft); color: #159C89; }
.tag-parent { background: var(--yellow-soft); color: #B7841A; }
@media (max-width: 860px) { .parents-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Download ---------- */
.download { background: var(--white); }
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dl-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; max-width: 420px; }
.dl-btn {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--radius-md);
  border: 1.5px solid var(--line); background: var(--white); transition: border-color .15s, box-shadow .15s, transform .15s;
}
.dl-btn:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.dl-btn .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.dl-btn .ic svg { width: 24px; height: 24px; }
.dl-btn b { display: block; font-family: var(--font-head); font-size: 16px; color: var(--navy); }
.dl-btn small { color: var(--slate); font-size: 13px; }
.dl-btn.soon { opacity: .6; pointer-events: none; }
.dl-btn .arrow { margin-left: auto; color: var(--slate); }
.dl-steps { display: grid; gap: 10px; margin-top: 22px; max-width: 420px; }
.dl-steps div { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); }
.dl-steps b { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: var(--white); display: grid; place-items: center; font-family: var(--font-head); font-size: 13px; flex-shrink: 0; }
.dl-note { font-size: 13px; color: var(--slate); margin-top: 16px; max-width: 420px; }
.dl-note a { color: var(--blue); font-weight: 500; }
.phone {
  width: 300px; margin: 0 auto; background: var(--navy); border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg);
}
.phone-screen { background: var(--cloud); border-radius: 34px; padding: 24px 18px; min-height: 560px; position: relative; overflow: hidden; }
.phone-notch { width: 96px; height: 26px; background: var(--navy); border-radius: 0 0 18px 18px; margin: -24px auto 18px; }
.phone-greet { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy); }
.phone-greet small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--slate); margin-top: 2px; }
.phone-ring { margin: 24px auto 8px; width: 170px; height: 170px; position: relative; }
.phone-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.phone-ring circle { fill: none; stroke-width: 13; stroke-linecap: round; }
.phone-ring .track { stroke: var(--white); }
.phone-ring .fill { stroke: var(--blue); stroke-dasharray: 452.4; stroke-dashoffset: 452.4; transition: stroke-dashoffset 1.6s cubic-bezier(.22,.9,.3,1) .3s; }
.phone-ring .pct { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.phone-ring .pct b { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1; }
.phone-ring .pct small { font-size: 11px; color: var(--slate); font-weight: 600; margin-top: 4px; display: block; }
.phone-togo { text-align: center; font-size: 13px; color: var(--slate); }
.phone-togo b { color: var(--ink); }
.phone-cta {
  margin-top: 20px; background: var(--blue); color: var(--white); border-radius: 16px; padding: 14px;
  text-align: center; font-weight: 600; font-size: 15px; box-shadow: 0 6px 18px rgba(22,119,255,.28);
}
.phone-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.phone-mini div { background: var(--white); border-radius: 12px; padding: 10px 12px; font-size: 12px; color: var(--slate); }
.phone-mini b { display: block; font-family: var(--font-head); color: var(--navy); font-size: 15px; }
@media (max-width: 860px) { .dl-grid { grid-template-columns: 1fr; gap: 40px; } .phone { width: 280px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 40px auto 0; display: grid; gap: 10px; }
.faq details { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line); padding: 4px 22px; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 16px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--slate); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--slate); font-size: 15px; padding-bottom: 18px; }

/* ---------- CTA band ---------- */
.cta-band { padding-block: 40px 96px; }
.cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, #2E8BFF 60%, var(--mint) 140%);
  border-radius: 32px; padding: 56px 40px; text-align: center; color: var(--white);
  box-shadow: 0 24px 60px rgba(22,119,255,.28); position: relative; overflow: hidden;
}
.cta-box::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(255,255,255,.08);
  right: -140px; top: -180px;
}
.cta-box h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; position: relative; }
.cta-box p { margin-top: 12px; color: rgba(255,255,255,.85); font-size: 17px; position: relative; }
.cta-box .btn { margin-top: 28px; position: relative; }
.cta-box .btn-white { background: var(--white); color: var(--blue); }
.cta-box .btn-white:hover { background: #F2F7FF; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 40px; background: var(--white); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; font-size: 14px; color: var(--slate); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a:hover { color: var(--navy); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dash-toast { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Inner pages (privacy etc) ---------- */
.prose { max-width: 720px; margin: 0 auto; padding-block: 64px; }
.prose h1 { font-size: 40px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.prose h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 36px 0 10px; }
.prose p, .prose li { color: var(--ink); font-size: 16px; margin-bottom: 12px; }
.prose .muted { color: var(--slate); font-size: 14px; }
