/* DojoNotes shared stylesheet. Tokens per docs/superpowers/specs/2026-09-09-site-refresh-design.md §4. */

/* ── Tokens ─────────────────────────────────────── */
:root {
  color-scheme: light;
  --maroon-deep: #4F0000;
  --maroon: #650000;
  --primary: #650000;            /* legacy alias used by inline links in content.json */
  --maroon-mid: #8B1A1A;
  --maroon-light: #a31010;
  --primary-light: #a31010;      /* legacy alias */
  --tile: #F4EEEC;
  --hairline: #F0E7E4;
  --ink: #2B2523;
  --ink-muted: #5E4F4A;
  --ink-faint: #82726D;
  --ground: #FAF7F6;
  --ground-end: #F3EDEB;
  --card: #FFFFFF;
  --footer: #1E1512;
  --on-dark: #FFFFFF;
  --on-dark-muted: rgba(255, 255, 255, 0.72);
  --font-display: 'Archivo', 'Segoe UI', Arial, sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', Arial, sans-serif;
  --radius: 16px;
  --nav-h: 64px;
  --ease: 200ms ease;
}

/* ── Reset and base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  background: linear-gradient(135deg, var(--ground) 0%, var(--ground-end) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--maroon-mid); }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; color: var(--ink); }
p { max-width: 62ch; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--maroon-mid); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible { outline-color: #fff; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--maroon-mid); color: #fff; padding: 10px 14px; border-radius: 8px;
  font-weight: 600; text-decoration: none; transition: top var(--ease);
}
.skip-link:focus { top: 12px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }
.section--band { background: rgba(255, 255, 255, 0.55); }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head .section-sub { margin: 0 auto; }
@media (min-width: 768px) { .section-head { margin-bottom: 52px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--maroon);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 36px); font-weight: 700; margin-bottom: 12px; }
.section-sub { font-size: 17px; color: var(--ink-muted); max-width: 56ch; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 22px; border-radius: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1.2;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--fill { background: var(--maroon-mid); color: var(--on-dark); }
.btn--fill:hover { background: var(--maroon); }
.btn--outline { background: transparent; color: var(--maroon); border-color: rgba(101, 0, 0, 0.28); }
.btn--outline:hover { background: rgba(101, 0, 0, 0.06); border-color: var(--maroon); }
.btn--on-dark-fill { background: #fff; color: var(--maroon-deep); }
.btn--on-dark-fill:hover { background: var(--tile); }
.btn--on-dark-outline { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn--on-dark-outline:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; }
.btn--sm { min-height: 44px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn--soon { pointer-events: none; cursor: default; }
.btn--on-dark-outline.btn--soon { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.25); }
.btn--outline.btn--soon { border-color: rgba(101, 0, 0, 0.15); }
.btn__label { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; }
.btn__soon { font-size: 12px; font-weight: 500; opacity: 0.85; }
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-row .btn { width: 100%; max-width: 280px; }
@media (min-width: 768px) {
  .cta-row { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .cta-row .btn { width: auto; min-width: 190px; }
}
.cta-row--left { align-items: flex-start; }
@media (min-width: 768px) { .cta-row--left { justify-content: flex-start; } }

/* ── Nav ────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(250, 247, 246, 0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.nav__brand img { width: 32px; height: 32px; }
.nav__links { display: none; gap: 28px; list-style: none; }
.nav__links a { text-decoration: none; color: var(--ink-muted); font-weight: 500; font-size: 15px; transition: color var(--ease); }
.nav__links a:hover { color: var(--maroon); }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__cta { display: none; }
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--hairline);
  background: var(--card); color: var(--ink); cursor: pointer;
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav.is-open .nav__toggle .icon-menu { display: none; }
.nav.is-open .nav__toggle .icon-close { display: block; }
.nav__panel {
  display: none; position: absolute; left: 0; right: 0; top: var(--nav-h);
  background: var(--card); border-bottom: 1px solid var(--hairline);
  padding: 12px 20px 20px; box-shadow: 0 16px 32px rgba(101, 0, 0, 0.08);
}
.nav.is-open .nav__panel { display: block; }
.nav__panel ul { list-style: none; display: grid; gap: 4px; margin-bottom: 12px; }
.nav__panel a:not(.btn) { display: block; padding: 12px 8px; text-decoration: none; color: var(--ink); font-weight: 500; border-radius: 8px; }
.nav__panel a:not(.btn):hover { background: var(--tile); }
.nav__panel .btn { width: 100%; }
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle, .nav__panel { display: none !important; }
}

/* ── Hero and dark bands ────────────────────────── */
.on-dark { color: var(--on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--on-dark); }
.on-dark p { color: var(--on-dark-muted); }
.on-dark .eyebrow { color: var(--on-dark-muted); }
.on-dark a:not(.btn) { color: #fff; }
.band-dark {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--maroon-deep) 0%, var(--maroon) 55%, var(--maroon-mid) 100%);
}
.band-dark::before {
  content: ''; position: absolute; inset: -10%; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(0, 0, 0, 0.25), transparent 60%);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-2%, 2%, 0); } }
.band-dark > .container { position: relative; }

.hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding: 48px 0 56px; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; padding: 80px 0 88px; } }
.hero__logo { width: 64px; height: 64px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero__tagline { font-size: 18px; margin-bottom: 12px; }
.hero__intro { font-size: 15px; margin-bottom: 28px; }
.hero__cta { margin-bottom: 36px; }

.belts { display: flex; align-items: center; }
.belt { height: 10px; flex: 1; max-width: 56px; border-radius: 2px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18); }
.belt + .belt { margin-left: 4px; }
.belts__label { font-size: 12px; margin-top: 10px; letter-spacing: 0.04em; }

/* ── Phone frame ────────────────────────────────── */
.phone {
  width: min(270px, 100%); margin: 0 auto;
  border-radius: 36px; background: #1a1210; padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.phone__screen { position: relative; aspect-ratio: 1080 / 2205; border-radius: 28px; overflow: hidden; background: var(--tile); }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.phone__placeholder {
  display: none; position: absolute; inset: 0; padding: 16px;
  align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--maroon);
  background: repeating-linear-gradient(135deg, var(--tile) 0 12px, #EFE6E3 12px 24px);
}
.phone.is-missing img { display: none; }
.phone.is-missing .phone__placeholder { display: flex; }

/* ── Cards and grids ────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; } .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-2px); border-color: #DCCFC9; box-shadow: 0 10px 24px rgba(101, 0, 0, 0.06); }
.card h3 { font-size: 18px; font-weight: 600; }
.card p { font-size: 15px; color: var(--ink-muted); line-height: 1.55; }
.card .card__link { display: inline-block; margin-top: 4px; padding: 11px 0; font-size: 15px; }
.icon-sq {
  width: 44px; height: 44px; border-radius: 12px; background: var(--tile);
  display: inline-flex; align-items: center; justify-content: center; color: var(--maroon); flex-shrink: 0;
}
.icon-sq svg { width: 22px; height: 22px; }
.icon-sq--lg { width: 56px; height: 56px; border-radius: 14px; }
.icon-sq--lg svg { width: 24px; height: 24px; }
.badge {
  display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
  background: var(--maroon); color: #fff; margin-bottom: 14px;
}

/* ── Feature rows ───────────────────────────────── */
.feature-rows { display: grid; gap: 56px; }
@media (min-width: 768px) { .feature-rows { gap: 96px; } }
.feature-row { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.feature-row h3 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; margin-bottom: 12px; }
.feature-row p { font-size: 17px; color: var(--ink-muted); }
@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 64px; }
  .feature-row--flip .feature-row__text { order: 2; }
  .feature-row--flip .feature-row__media { order: 1; }
}

/* ── How it works: tabs on desktop, timeline on mobile ── */
.tabs { display: none; gap: 8px; justify-content: center; margin-bottom: 36px; }
.tab {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 14px 18px; border-radius: 12px; border: 1px solid var(--hairline);
  background: var(--card); color: var(--ink-muted); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.tab__num { width: 26px; height: 26px; border-radius: 50%; background: var(--tile); color: var(--maroon); font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }
.tab[aria-selected="true"] { background: var(--tile); border-color: var(--maroon); color: var(--maroon); }
.tab[aria-selected="true"] .tab__num { background: var(--maroon); color: #fff; }

.steps { position: relative; padding-left: 56px; }
.steps::before {
  content: ''; position: absolute; top: 8px; bottom: 8px; left: 18px; width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--maroon), var(--maroon-light));
}
.step-panel { position: relative; margin-bottom: 32px; }
.step-panel:last-child { margin-bottom: 0; }
.step__num {
  position: absolute; left: -56px; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--maroon-mid); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.step-panel h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; padding-top: 6px; }
.step-panel p { font-size: 15px; color: var(--ink-muted); margin-bottom: 20px; }
@media (min-width: 768px) {
  .tabs { display: flex; }
  .steps { padding-left: 0; }
  .steps::before { display: none; }
  .step-panel { display: none; margin: 0; }
  .step-panel.is-active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .step__num { display: none; }
  .step-panel h3 { font-size: 28px; padding-top: 0; }
  .step-panel p { font-size: 17px; margin-bottom: 0; }
}

/* ── FAQ ────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq details { background: var(--card); border: 1px solid var(--hairline); border-radius: 14px; padding: 0 20px; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-family: var(--font-display); font-weight: 600; font-size: 16px; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 20px; height: 20px; color: var(--maroon); flex-shrink: 0; transition: transform var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-muted); font-size: 15px; }

/* ── Contact and CTA band ───────────────────────── */
.contact { text-align: center; }
.contact .section-sub { margin: 0 auto 24px; }
.cta-band { text-align: center; padding: 64px 0; }
@media (min-width: 768px) { .cta-band { padding: 96px 0; } }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 10px; }
.cta-band p { margin: 0 auto 28px; font-size: 17px; }

/* ── Legal band and reading card ───────────────── */
.legal-band { padding: 40px 0 88px; }
@media (min-width: 768px) { .legal-band { padding: 56px 0 104px; } }
.legal-band h1 { font-size: clamp(30px, 4vw, 40px); font-weight: 700; margin: 6px 0 8px; }
.legal-band .last-updated { font-size: 14px; }
.reading-wrap { padding: 0 0 64px; margin-top: -56px; }
.reading-card {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto; background: var(--card); border: 1px solid var(--hairline);
  border-radius: 24px; padding: 40px 24px 36px;
}
@media (min-width: 768px) { .reading-card { padding: 52px 56px 48px; } }
.reading-card p { font-size: 15px; color: var(--ink-muted); margin-bottom: 14px; max-width: none; line-height: 1.7; }
.reading-card p:last-child { margin-bottom: 0; }
.reading-card .lead { font-size: 17px; color: var(--ink); }
.reading-card h2 { font-size: 20px; font-weight: 600; }
.reading-card .section-label { display: block; margin: 36px 0 12px; }
.reading-card strong { color: var(--ink); }
.divider { height: 1px; background: var(--hairline); margin: 28px 0; }

.toc { background: var(--tile); border-radius: 12px; padding: 20px 24px; margin-bottom: 36px; }
.toc-title { font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--maroon); margin-bottom: 12px; }
.toc ol { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0 20px; }
@media (min-width: 640px) { .toc ol { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } }
.toc li a { font-size: 14px; color: var(--ink-muted); text-decoration: none; display: flex; align-items: center; gap: 6px; padding: 11px 0; transition: color var(--ease); }
.toc li a:hover { color: var(--maroon); }
.toc-num { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--maroon); min-width: 18px; }

.policy-section { margin-bottom: 40px; scroll-margin-top: calc(var(--nav-h) + 20px); }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-num { width: 28px; height: 28px; border-radius: 50%; background: var(--maroon-mid); color: #fff; font-family: var(--font-display); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.policy-list, .feature-list { list-style: none; margin: 10px 0 14px; }
.policy-list li, .feature-list li { font-size: 15px; color: var(--ink-muted); padding: 5px 0 5px 20px; position: relative; line-height: 1.7; }
.policy-list li::before, .feature-list li::before { content: ''; position: absolute; left: 4px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--maroon); }
.highlight-box { background: var(--tile); border-radius: 10px; padding: 14px 18px; margin: 12px 0; font-size: 14px; color: var(--ink-muted); }
.highlight-box strong { color: var(--maroon); font-weight: 600; }
.warning-box { background: rgba(224, 123, 0, 0.07); border: 1px solid rgba(224, 123, 0, 0.35); border-radius: 10px; padding: 14px 18px; margin: 12px 0; font-size: 14px; color: #7a4200; }
.warning-box strong { font-weight: 600; }
.subsection { margin-top: 20px; margin-left: 4px; }
.subsection-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.subsection-bar { width: 3px; height: 18px; border-radius: 2px; background: var(--maroon); flex-shrink: 0; }
.subsection h3 { font-size: 16px; font-weight: 600; }
.contact-box, .ask-box { background: var(--tile); border-radius: 12px; padding: 20px 24px; margin-top: 10px; font-size: 14px; }
.contact-box p, .ask-box p { margin: 0 0 6px; }
.contact-box p:last-child, .ask-box p:last-child { margin-bottom: 0; }
.contact-box a, .ask-box a, a.inline-link { color: var(--maroon-mid); text-decoration: none; font-weight: 500; }
.contact-box a:hover, .ask-box a:hover, a.inline-link:hover { text-decoration: underline; }
.contact-box svg, .warning-box svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }
.section-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--maroon); }
.reading-card .cta-row { align-items: flex-start; margin: 20px 0 28px; }
.reading-card .cta-row:last-child { margin-bottom: 0; }
@media (min-width: 768px) { .reading-card .cta-row { justify-content: flex-start; } }
.signoff { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--hairline); }
.signoff p { margin-bottom: 4px; }
.signoff .oss { font-family: var(--font-display); font-weight: 600; color: var(--maroon); font-size: 16px; margin-bottom: 8px; }
.signoff .name { font-weight: 600; color: var(--ink); }
.signoff .meta { font-size: 14px; color: var(--ink-faint); }

/* ── Footer ─────────────────────────────────────── */
.footer { background: var(--footer); color: rgba(255, 255, 255, 0.7); }
.footer__grid { padding-top: 48px; padding-bottom: 32px; display: grid; gap: 28px 20px; grid-template-columns: 1fr 1fr; }
.footer__grid > div:first-child { grid-column: 1 / -1; }
@media (min-width: 760px) { .footer__grid { gap: 32px; grid-template-columns: 1.4fr 1fr 1fr 1fr; } .footer__grid > div:first-child { grid-column: auto; } }
.footer h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.footer ul { list-style: none; display: grid; gap: 0; font-size: 14px; }
.footer ul a { display: inline-block; padding: 11px 0; }
.footer a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color var(--ease); }
.footer a:hover { color: #fff; }
.footer .nav__brand { color: #fff; }
.footer__tag { font-size: 14px; margin-top: 12px; max-width: 32ch; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 12px; }
.footer__bottom .container { padding-top: 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px)); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ── Reveal on scroll ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 300ms ease-out, transform 300ms ease-out; transition-delay: calc(var(--i, 0) * 60ms); }
.reveal.is-visible { opacity: 1; transform: none; }
.card.reveal.is-visible:hover { transform: translateY(-2px); }

/* ── Mobile refinements ─────────────────────── */
@media (max-width: 899px) {
  .hero__grid { gap: 28px; padding: 40px 0 48px; }
  .hero__grid > div:first-child { text-align: center; }
  .hero__logo { width: 48px; height: 48px; margin: 0 auto 16px; }
  .hero .eyebrow { justify-content: center; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero__tagline { font-size: 17px; margin: 0 auto 24px; }
  .hero__intro { display: none; }
  .hero__cta { margin-bottom: 28px; }
  .hero .cta-row--left { align-items: center; justify-content: center; }
  .hero .cta-row--left .btn { width: 100%; max-width: 300px; }
  .belts { justify-content: center; }
  .belt { max-width: 34px; }
  .belts__label { text-align: center; }
  .hero .phone { width: min(220px, 100%); }
}
@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .phone { width: min(220px, 100%); }
  .feature-rows { gap: 44px; }
  .feature-row { gap: 20px; }
  .feature-row h3 { font-size: 24px; }
  .feature-row p { font-size: 16px; }
  .step-panel p { margin-bottom: 16px; }
  .cta-band { padding: 56px 0; }
}

/* ── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .band-dark::before { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
