/* ==========================================================================
   Attento — landing styles
   Mobile-first. Two surfaces: light "sand" bands and dark "green" bands.
   Palette: deep greens + warm neutrals + one terracotta alert accent.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Light surfaces (sand) */
  --surface:            #FBF8F3;
  --surface-2:          #F2ECE0;
  --on-surface:         #14231C;
  --on-surface-muted:   #55655D;
  --card:               #FFFFFF;
  --card-border:        #E7DFCF;
  --card-shadow:        0 1px 2px rgba(20,35,28,.05), 0 12px 32px -18px rgba(20,35,28,.35);

  /* Dark bands (night green) */
  --band:               #0C2118;
  --band-2:             #0F2A1E;
  --band-deep:          #08170F;
  --on-band:            #F2EDE3;
  --on-band-muted:      #A9BEB2;
  --band-border:        rgba(242,237,227,.14);
  --band-card:          rgba(242,237,227,.055);

  /* Accent — alert terracotta + amber signal */
  --accent:             #C2410C;
  --accent-hover:       #A93709;
  --accent-text:        #9A330A;   /* accent text on light surfaces (6.9:1) */
  --accent-soft:        #FBE7D9;
  --amber:              #F2A33C;

  --green-mid:          #26674A;
  --green-soft:         #D6EADF;

  --wrap:               1140px;
  --radius:             18px;
  --radius-lg:          26px;
  --radius-pill:        999px;

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --surface:          #0B1A13;
    --surface-2:        #10251B;
    --on-surface:       #E9F0EB;
    --on-surface-muted: #9DB3A7;
    --card:             #122A1F;
    --card-border:      #1E4131;
    --card-shadow:      0 1px 2px rgba(0,0,0,.4), 0 16px 40px -24px rgba(0,0,0,.8);

    --band:             #061009;
    --band-2:           #0A1A12;
    --band-deep:        #040C07;

    --accent-text:      #F79D62;
    --accent-soft:      #2A1409;
  }
}
:root[data-theme="dark"] {
  --surface:          #0B1A13;
  --surface-2:        #10251B;
  --on-surface:       #E9F0EB;
  --on-surface-muted: #9DB3A7;
  --card:             #122A1F;
  --card-border:      #1E4131;
  --card-shadow:      0 1px 2px rgba(0,0,0,.4), 0 16px 40px -24px rgba(0,0,0,.8);
  --band:             #061009;
  --band-2:           #0A1A12;
  --band-deep:        #040C07;
  --accent-text:      #F79D62;
  --accent-soft:      #2A1409;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 7.6vw, 4.2rem); line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 4.6vw, 2.9rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.01em; line-height: 1.25; }
p  { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 720px) { .wrap { padding-inline: 32px; } }

.band { background: var(--band); color: var(--on-band); }
.band-2 { background: var(--band-2); color: var(--on-band); }
.surface-2 { background: var(--surface-2); }

section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.band p, .band-2 p { color: var(--on-band-muted); }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: 1rem;
}
.band .kicker, .band-2 .kicker { color: var(--amber); }
.kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

.sec-head { max-width: 40ch; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.sec-head .lead { margin-top: 1rem; font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--on-surface-muted); }
.band .sec-head .lead, .band-2 .sec-head .lead { color: var(--on-band-muted); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--accent); color: #fff; padding: .8rem 1.2rem;
  border-radius: 10px; font-weight: 600; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; text-decoration: none; cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease),
              transform .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline-dark { border-color: rgba(242,237,227,.35); color: var(--on-band); }
.btn-outline-dark:hover { border-color: var(--on-band); background: rgba(242,237,227,.07); }
.btn-outline { border-color: var(--card-border); color: var(--on-surface); background: var(--card); }
.btn-outline:hover { border-color: var(--green-mid); }
.btn-sm { padding: .65rem 1.15rem; font-size: .93rem; }
.btn-block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.cta-note { margin-top: 1rem; font-size: .92rem; color: var(--on-band-muted); max-width: 46ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--band) 92%, transparent);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--band-border);
  color: var(--on-band);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 64px; }
@media (min-width: 900px) { .header-inner { min-height: 74px; } }

.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--serif); font-weight: 700; font-size: 1.3rem;
  letter-spacing: -0.02em; text-decoration: none; color: var(--on-band);
  margin-right: auto;
}
.brand-mark { width: 30px; height: 30px; flex: none; }

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; gap: 1.75rem; margin-right: 1.5rem; }
  .nav a {
    text-decoration: none; font-size: .95rem; font-weight: 500;
    color: var(--on-band-muted); transition: color .15s var(--ease);
  }
  .nav a:hover { color: var(--on-band); }
}
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  background: transparent; border: 1.5px solid var(--band-border); color: var(--on-band);
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none; border-top: 1px solid var(--band-border); background: var(--band);
  padding: 1rem 0 1.6rem;
}
.mobile-nav[data-open="true"] { display: block; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }
.mobile-nav ul { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .1rem; }
.mobile-nav a {
  display: block; padding: .8rem 0; text-decoration: none;
  font-size: 1.05rem; font-weight: 500; color: var(--on-band);
  border-bottom: 1px solid var(--band-border);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--band); color: var(--on-band);
  padding-block: clamp(2rem, 6vw, 6rem) clamp(3rem, 8vw, 7rem);
}
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 90%;
  background: radial-gradient(60% 60% at 70% 30%, rgba(242,163,60,.14), transparent 70%),
              radial-gradient(50% 50% at 15% 10%, rgba(38,103,74,.35), transparent 72%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero-grid { display: grid; gap: clamp(1.6rem, 6vw, 4rem); align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 4.5rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem .85rem .42rem .55rem; border-radius: var(--radius-pill);
  background: rgba(242,163,60,.12); border: 1px solid rgba(242,163,60,.3);
  color: var(--amber); font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  margin-bottom: 1rem;
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .dot-live { animation: pulse 2.4s var(--ease) infinite; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,163,60,.55); }
  60%      { box-shadow: 0 0 0 7px rgba(242,163,60,0); }
}

.hero h1 { color: var(--on-band); }
.hero-sub {
  margin-top: 1.15rem; font-size: clamp(1.03rem, 2.1vw, 1.26rem);
  line-height: 1.5; color: var(--on-band-muted); max-width: 46ch;
}
.hero .cta-row { margin-top: 1.8rem; }

.trust {
  display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; margin: 1.45rem 0 0;
  padding: 0; list-style: none;
  font-size: .89rem; color: var(--on-band-muted);
}
.trust li { display: flex; align-items: center; gap: .5rem; }
.trust svg { width: 15px; height: 15px; flex: none; color: var(--amber); }

/* ---------- Hero illustration ---------- */
.shot { position: relative; }
.shot-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(242,237,227,.16);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9), 0 2px 0 rgba(255,255,255,.05) inset;
}
.shot-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.028) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.shot-frame svg { width: 100%; height: auto; }

.push {
  position: absolute; left: 3%; right: 3%; bottom: -42px;
  display: flex; align-items: center; gap: .75rem;
  padding: .8rem; border-radius: 17px;
  background: #FFFFFF; color: #14231C;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.65), 0 1px 0 rgba(0,0,0,.05);
  border: 1px solid rgba(20,35,28,.08);
}
@media (min-width: 560px) { .push { left: 5%; right: 9%; bottom: -58px; padding: .9rem; } }
@media (prefers-reduced-motion: no-preference) {
  .push { animation: pushIn .7s var(--ease) .35s both; }
}
@keyframes pushIn {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.push-mark { width: 38px; height: 38px; flex: none; border-radius: 10px; }
.push-body { min-width: 0; flex: 1; }
.push-head {
  display: flex; align-items: baseline; gap: .45rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: #68766F;
}
.push-head b { color: #14231C; letter-spacing: .06em; }
.push-title {
  font-size: .97rem; font-weight: 600; line-height: 1.3; margin-top: .18rem; color: #14231C;
}
.push-title strong { color: var(--accent); font-weight: 700; }
.push-meta { font-size: .8rem; color: #68766F; margin-top: .12rem; }
.push-thumb { width: 52px; height: 52px; flex: none; border-radius: 11px; }
@media (max-width: 420px) { .push-thumb { display: none; } }
.shot { margin-bottom: 56px; }
@media (min-width: 560px) { .shot { margin-bottom: 74px; } }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.step {
  position: relative; background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.9rem 1.6rem 1.7rem; box-shadow: var(--card-shadow);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px; margin-bottom: 1.1rem;
  background: var(--accent-soft); color: var(--accent-text);
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
}
.step h3 { margin-bottom: .55rem; }
.step p { color: var(--on-surface-muted); font-size: .99rem; }

/* ---------- Benefits ---------- */
.benefits { display: grid; gap: 1rem; }
@media (min-width: 700px)  { .benefits { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; } }
@media (min-width: 1040px) { .benefits { grid-template-columns: repeat(4, 1fr); } }
.benefit {
  background: var(--band-card); border: 1px solid var(--band-border);
  border-radius: var(--radius); padding: 1.7rem 1.5rem;
}
.benefit-icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 1.15rem;
  display: grid; place-items: center;
  background: rgba(242,163,60,.13); color: var(--amber);
}
.benefit-icon svg { width: 21px; height: 21px; }
.benefit h3 { color: var(--on-band); margin-bottom: .55rem; font-size: 1.14rem; }
.benefit p { font-size: .96rem; color: var(--on-band-muted); }

/* ---------- Pricing ---------- */
.plans { display: grid; gap: 1.1rem; align-items: start; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
.plan {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 1.9rem 1.7rem; box-shadow: var(--card-shadow);
}
.plan-featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 1px 2px rgba(20,35,28,.05), 0 24px 48px -26px rgba(194,65,12,.5);
}
@media (min-width: 900px) { .plan-featured { transform: translateY(-14px); } }
.plan-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .35rem; }
.plan-name { font-family: var(--serif); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.015em; }
.badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: .28rem .6rem; border-radius: var(--radius-pill);
}
.badge-soft { background: var(--accent-soft); color: var(--accent-text); }
.plan-for { font-size: .95rem; color: var(--on-surface-muted); min-height: 2.9em; }
.price { display: flex; align-items: baseline; gap: .4rem; margin: 1.15rem 0 .2rem; flex-wrap: wrap; }
.price-amount { font-family: var(--serif); font-weight: 700; font-size: 2.7rem; letter-spacing: -0.03em; line-height: 1; }
.price-unit { font-size: .95rem; color: var(--on-surface-muted); font-weight: 500; }
.price-note { font-size: .88rem; color: var(--accent-text); font-weight: 600; margin-bottom: 1.5rem; }
.plan ul { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .65rem; }
.plan li { display: flex; gap: .65rem; font-size: .96rem; line-height: 1.45; }
.plan li svg { width: 17px; height: 17px; flex: none; margin-top: .22rem; color: var(--green-mid); }
.plan .btn { margin-top: auto; }
.plan-addon-note {
  margin-top: auto; font-size: .92rem; color: var(--on-surface-muted);
  background: var(--surface-2); border-radius: 12px; padding: .85rem 1rem;
}
.plans-foot { margin-top: 1.6rem; font-size: .92rem; color: var(--on-surface-muted); text-align: center; }

/* ---------- Calculator ---------- */
.calc {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem; box-shadow: var(--card-shadow);
  display: grid; gap: 1.6rem;
}
@media (min-width: 820px) {
  .calc { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 2.5rem; padding: 2.2rem 2.2rem; }
}
.calc-label { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.015em; }
.calc-help { font-size: .92rem; color: var(--on-surface-muted); margin-top: .3rem; }
.calc-slider { margin-top: 1.4rem; }
.calc-ticks {
  display: flex; justify-content: space-between; margin-top: .55rem;
  font-size: .78rem; color: var(--on-surface-muted); font-variant-numeric: tabular-nums;
}
.calc-out {
  background: var(--surface-2); border-radius: var(--radius); padding: 1.4rem 1.35rem; text-align: center;
}
.calc-plan {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-text);
}
.calc-price {
  font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 6vw, 2.9rem);
  letter-spacing: -0.03em; line-height: 1.05; margin: .3rem 0 .1rem;
  font-variant-numeric: tabular-nums;
}
.calc-per { font-size: .9rem; color: var(--on-surface-muted); }
.calc-break { margin-top: .85rem; font-size: .89rem; color: var(--on-surface-muted); line-height: 1.45; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 30px;
  background: transparent; cursor: pointer; margin: 0; display: block;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 8px; border-radius: 99px;
  background: linear-gradient(to right, var(--accent) var(--fill, 36%), var(--card-border) var(--fill, 36%));
}
input[type="range"]::-moz-range-track { height: 8px; border-radius: 99px; background: var(--card-border); }
input[type="range"]::-moz-range-progress { height: 8px; border-radius: 99px; background: var(--accent); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; margin-top: -9px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(20,35,28,.3);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent); box-shadow: 0 2px 8px rgba(20,35,28,.3);
}

/* ---------- Preview / soft launch ---------- */
.preview-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--card-shadow);
  border-left: 5px solid var(--amber);
  display: grid; gap: 2rem;
}
@media (min-width: 900px) { .preview-card { grid-template-columns: 1.25fr .75fr; gap: 3.5rem; align-items: center; } }
.preview-card h2 { margin-bottom: 1.1rem; }
.preview-card p { color: var(--on-surface-muted); }
.preview-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }
.preview-list li { display: flex; gap: .7rem; font-size: .98rem; line-height: 1.45; }
.preview-list svg { width: 18px; height: 18px; flex: none; margin-top: .2rem; color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--card-border);
}
.faq details:first-of-type { border-top: 1px solid var(--card-border); }
.faq summary {
  display: flex; align-items: flex-start; gap: 1rem; justify-content: space-between;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.08rem, 2.2vw, 1.25rem);
  letter-spacing: -0.012em; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-text); }
.faq-icon {
  position: relative; flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  border: 1.5px solid var(--card-border); display: grid; place-items: center;
  color: var(--on-surface-muted);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; width: 11px; height: 1.8px; border-radius: 2px; background: currentColor;
}
.faq-icon::after { transform: rotate(90deg); transition: transform .2s var(--ease), opacity .2s var(--ease); }
.faq details[open] .faq-icon { border-color: var(--accent); color: var(--accent); }
.faq details[open] .faq-icon::after { transform: rotate(0deg); opacity: 0; }
.faq-a { padding: 0 0 1.5rem; max-width: 66ch; color: var(--on-surface-muted); font-size: 1rem; }

/* ---------- Final CTA ---------- */
.final { text-align: center; }
.final h2 { color: var(--on-band); max-width: 20ch; margin-inline: auto; }
.final p { margin: 1.25rem auto 0; max-width: 52ch; font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--on-band-muted); }
.final .cta-row { justify-content: center; margin-top: 2.1rem; }
.final .cta-note { margin-inline: auto; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--band-deep); color: var(--on-band); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand p { margin-top: .9rem; font-size: .94rem; color: var(--on-band-muted); max-width: 32ch; }
.site-footer h4 {
  margin: 0 0 1rem; font-size: .76rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--on-band-muted); font-family: var(--sans);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.site-footer li a { font-size: .95rem; color: var(--on-band); text-decoration: none; opacity: .85; }
.site-footer li a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--band-border);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .86rem; color: var(--on-band-muted);
}

/* ---------- Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); }
  .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
}

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