/* ==========================================================================
   Evolution Digital Marketing — global stylesheet
   One file. Every class here is a GenerateBlocks "global class" candidate.
   Copy is never styled into existence: nothing below hides, reveals or
   positions text in a way a crawler would not see in the HTML.
   ========================================================================== */

@import url('../assets/fonts/fonts.css');

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* ink */
  --ink:      #1d1d1f;
  --ink-2:    #3a3a3c;
  --ink-3:    #4b4b50;
  --ink-deep: #000000;          /* pressed / hover on ink */
  --mute:     #6e6e73;
  --mute-2:   #86868b;
  --line:     #ececef;
  --line-2:   #d2d2d7;
  --fill:     #f5f5f7;
  --fill-2:   #e8e8ed;
  --paper:    #ffffff;

  /* accent */
  --blue:     #0071e3;
  --blue-ink: #0058b3;          /* hover / pressed */
  --blue-08:  rgba(0,113,227,.08);
  --blue-14:  rgba(0,113,227,.14);
  --blue-tint:#eaf3ff;

  /* signal */
  --up:       #1f8f3f;          /* ≥4.5:1 on white */
  --up-dark:  #4cd964;          /* on ink */

  /* dark surfaces */
  --d-ink:    #ffffff;
  --d-mute:   #a1a1a6;
  --d-mute-2: #8e8e93;
  --d-line:   #2c2c2e;
  --d-fill:   #3a3a3c;

  /* type */
  --sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", "SF Mono", Menlo, Consolas, monospace;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;

  /* scale — display */
  --t-hero: clamp(3rem, 1.9rem + 3.8vw, 4.75rem);      /* 48 → 76 */
  --t-1:    clamp(2.25rem, 1.5rem + 2.6vw, 3.5rem);    /* 36 → 56 */
  --t-2:    clamp(2rem, 1.4rem + 2vw, 3rem);           /* 32 → 48 */
  --t-3:    clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);    /* 28 → 40 */
  --t-4:    clamp(1.5rem, 1.25rem + .9vw, 2rem);       /* 24 → 32 */
  --t-5:    1.5rem;                                     /* 24 */
  --t-6:    1.375rem;                                   /* 22 */
  --t-7:    1.125rem;                                   /* 18 */
  /* scale — body */
  --t-lead: clamp(1.125rem, 1rem + .5vw, 1.3125rem);   /* 18 → 21 */
  --t-body: 1.0625rem;                                  /* 17 */
  --t-small:.9375rem;                                   /* 15 */
  --t-tiny: .875rem;                                    /* 14 */
  --t-meta: .75rem;                                     /* 12 */
  --t-micro:.6875rem;                                   /* 11 — badges, form notes, "Fix this" */
  --t-stat: clamp(2.5rem, 2rem + 1.6vw, 3.25rem);      /* 40 → 52 — stat numbers, prices */

  /* tracking */
  --tk-display: -0.04em;
  --tk-title:   -0.025em;
  --tk-meta:    0.06em;

  /* rhythm */
  --gutter: 64px;
  --section: clamp(80px, 6vw + 40px, 120px);
  --section-s: clamp(56px, 4vw + 32px, 88px);
  --gap: 20px;
  --max: 1440px;

  /* radius */
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-pill: 999px;

  /* depth */
  --shadow-lift: 0 30px 60px -40px rgba(29,29,31,.35), 0 2px 6px -2px rgba(29,29,31,.08);
  --shadow-card: 0 1px 2px rgba(29,29,31,.05);

  /* motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-emph: cubic-bezier(.16,1,.3,1);
  --dur: .6s;

  color-scheme: light;
  accent-color: var(--blue);
}

@media (max-width: 900px) {
  :root { --gutter: 24px; --gap: 14px; }
}

/* --------------------------------------------------------------------------
   2. Base + browser surfaces
   -------------------------------------------------------------------------- */
*, *::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(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 0, "cv11" 1;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--blue); color: #fff; }
::-moz-selection { background: var(--blue); color: #fff; }
input, textarea { caret-color: var(--blue); }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible, .pill:focus-visible { outline-offset: 4px; border-radius: var(--r-pill); }

@supports (scrollbar-width: thin) {
  html { scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p a, li a, dd a { color: var(--blue); text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: 1px; }
p a:hover, li a:hover { color: var(--blue-ink); }
strong { font-weight: 600; }
small { font-size: var(--t-tiny); }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

.tnum, .num, table, .delta, .stat { font-variant-numeric: tabular-nums; }

.skip {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
}
.skip:focus { top: 16px; }

.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --------------------------------------------------------------------------
   3. Type roles
   -------------------------------------------------------------------------- */
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.serif.blue { color: var(--blue); }
.serif.grey { color: var(--mute); }
.mono { font-family: var(--mono); font-weight: 400; }

.t-hero { font-size: var(--t-hero); line-height: .98; letter-spacing: var(--tk-display); font-weight: 600; text-wrap: balance; }
.t-1 { font-size: var(--t-1); line-height: 1.02; letter-spacing: var(--tk-display); font-weight: 600; text-wrap: balance; }
.t-2 { font-size: var(--t-2); line-height: 1.04; letter-spacing: var(--tk-display); font-weight: 600; text-wrap: balance; }
.t-3 { font-size: var(--t-3); line-height: 1.06; letter-spacing: -0.035em; font-weight: 600; text-wrap: balance; }
.t-4 { font-size: var(--t-4); line-height: 1.1; letter-spacing: -0.03em; font-weight: 600; text-wrap: balance; }
.t-5 { font-size: var(--t-5); line-height: 1.15; letter-spacing: var(--tk-title); font-weight: 600; text-wrap: balance; }
.t-6 { font-size: var(--t-6); line-height: 1.2; letter-spacing: var(--tk-title); font-weight: 600; text-wrap: balance; }
.t-7 { font-size: var(--t-7); line-height: 1.3; letter-spacing: -0.015em; font-weight: 600; }

.lead  { font-size: var(--t-lead); line-height: 1.45; color: var(--ink-3); text-wrap: pretty; }
.body  { font-size: var(--t-body); line-height: 1.55; color: var(--ink-3); text-wrap: pretty; }
.small { font-size: var(--t-small); line-height: 1.55; color: var(--mute); text-wrap: pretty; }
.tiny  { font-size: var(--t-tiny); line-height: 1.5; color: var(--mute); }
.meta  { font-family: var(--mono); font-size: var(--t-meta); line-height: 1.5; color: var(--mute-2); letter-spacing: .02em; }
.meta.caps { text-transform: uppercase; letter-spacing: var(--tk-meta); }

.on-dark { color: var(--d-ink); }
.on-dark .lead, .on-dark .body { color: var(--d-mute); }
.on-dark .small, .on-dark .tiny, .on-dark .meta { color: var(--d-mute-2); }
.on-dark .serif.grey { color: var(--d-mute); }
.on-blue { color: #fff; }
.on-blue .lead, .on-blue .body, .on-blue .small, .on-blue .meta { color: rgba(255,255,255,.82); }

.measure { max-width: 62ch; }
.measure-s { max-width: 46ch; }
.measure-h { max-width: 14ch; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section-s { padding-block: var(--section-s); }
.section-top { padding-top: var(--section); }
.section-bot { padding-bottom: var(--section); }
.band { background: var(--fill); }
.band-dark { background: var(--ink); color: var(--d-ink); }
.band-blue { background: var(--blue); color: #fff; }

.stack { display: flex; flex-direction: column; }
.stack-4  { gap: 4px; }  .stack-6 { gap: 6px; }  .stack-8 { gap: 8px; }
.stack-10 { gap: 10px; } .stack-12 { gap: 12px; } .stack-14 { gap: 14px; }
.stack-16 { gap: 16px; } .stack-20 { gap: 20px; } .stack-24 { gap: 24px; }
.stack-28 { gap: 28px; } .stack-32 { gap: 32px; } .stack-40 { gap: 40px; }
.stack-48 { gap: 48px; } .stack-56 { gap: 56px; } .stack-64 { gap: 64px; }

.row { display: flex; align-items: center; gap: 12px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.row-end { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.wrap-row { display: flex; flex-wrap: wrap; gap: 10px; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 64px; align-items: center; }
.split-top { align-items: start; }
.split-end { align-items: end; }
.span-2 { grid-column: span 2; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-head > * + * { flex-shrink: 0; }
.section-head .lead, .section-head .body { max-width: 480px; }

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-5 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .grid-5, .split { grid-template-columns: minmax(0,1fr); }
  .split { gap: 40px; }
  .span-2 { grid-column: auto; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head .lead, .section-head .body { max-width: none; }
  .row-end { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* --------------------------------------------------------------------------
   5. Components
   -------------------------------------------------------------------------- */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 16px 26px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff;
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform .35s var(--ease-emph), box-shadow .35s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .35s var(--ease-emph); }
.btn:hover { background: var(--ink-deep); transform: translateY(-1px); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn-blue { background: var(--blue); }
.btn-blue:hover { background: var(--blue-ink); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--fill); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--fill); border-color: var(--ink); }
.on-dark .btn-ghost, .on-blue .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.on-dark .btn-ghost:hover, .on-blue .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { font-size: var(--t-small); padding: 12px 20px; }
.btn-xs { font-size: var(--t-tiny); padding: 9px 16px; }
.btn-text { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--blue); }
.btn-text svg { width: 14px; height: 14px; transition: transform .35s var(--ease-emph); }
.btn-text:hover { color: var(--blue-ink); }
.btn-text:hover svg { transform: translateX(3px); }
.btn-text.ink { color: var(--ink); }
.btn-text.ink:hover { color: var(--blue); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; transform: none; }

/* Pills / chips */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--t-small); font-weight: 500; line-height: 1;
  padding: 11px 18px; border: 1px solid var(--line-2); border-radius: var(--r-pill);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.pill:hover { border-color: var(--ink); background: var(--fill); }
.pill.blue { border-color: transparent; color: var(--blue); }
.tag { display: inline-block; font-size: .8125rem; line-height: 1; padding: 8px 12px; background: var(--fill); border-radius: var(--r-pill); color: var(--ink-3); }
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: var(--t-micro); letter-spacing: .04em; line-height: 1; padding: 6px 10px; border-radius: var(--r-pill); background: var(--blue-08); color: var(--blue); }
.badge svg { width: 11px; height: 11px; }

/* Cards */
.card {
  background: var(--paper); border-radius: var(--r-lg); padding: 36px;
  display: flex; flex-direction: column; gap: 32px;
  border: 1px solid var(--line);
}
.card.flat { border: 0; }
.card.fill { background: var(--fill); border: 0; }
.card.dark { background: var(--ink); color: var(--d-ink); border: 0; }
.card.blue { background: var(--blue); color: #fff; border: 0; }
.card.outline-blue { border: 1.5px solid var(--blue); }
.card.tight { padding: 28px; gap: 20px; }
.card.pad-l { padding: 44px; }
.card-lift { transition: transform .5s var(--ease-emph), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out); }
.card-lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.card > .grow { flex-grow: 1; }
.push { margin-top: auto; }

@media (max-width: 900px) {
  .card, .card.pad-l { padding: 26px; }
}

/* Icon glyphs — one stroke family (1.6) */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon.blue { color: var(--blue); }
.icon-s { width: 18px; height: 18px; }

/* Rule lists */
.rule-list > * { padding-block: 22px; border-top: 1px solid var(--line); }
.rule-list > *:last-child { border-bottom: 1px solid var(--line); }
.on-dark .rule-list > * { border-color: var(--d-line); }

/* Check list */
.checks { display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--t-small); line-height: 1.5; color: var(--ink-3); }
.checks li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.on-dark .checks li { color: var(--d-mute); }
.on-dark .checks li svg { stroke: var(--up-dark); }

/* Stat */
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat .n { font-size: var(--t-stat); line-height: 1; letter-spacing: var(--tk-display); font-weight: 600; }
.stat .n.blue { color: var(--blue); }
.stat .l { font-family: var(--mono); font-size: var(--t-meta); color: var(--mute-2); line-height: 1.5; }
.delta { font-family: var(--mono); font-size: var(--t-tiny); color: var(--up); font-weight: 500; white-space: nowrap; }
.on-dark .delta { color: var(--up-dark); }
.delta::before { content: "▲ "; font-size: .7em; vertical-align: 1px; }

/* Details / FAQ — native, crawlable, zero JS */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: 26px 0; font-size: var(--t-6); font-weight: 600; letter-spacing: var(--tk-title); line-height: 1.25;
  transition: color .3s var(--ease-out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq summary .plus { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; transition: transform .45s var(--ease-emph), background .3s, border-color .3s; }
.faq summary .plus svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; fill: none; }
.faq details[open] summary .plus { transform: rotate(45deg); border-color: var(--ink); }
.faq details[open] summary { color: var(--ink); }
.faq .a { padding: 0 0 28px; max-width: 68ch; }
.faq .a p + p { margin-top: 12px; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: var(--t-meta); letter-spacing: var(--tk-meta); text-transform: uppercase; color: var(--mute); }
.input {
  width: 100%; padding: 14px 16px; font-size: var(--t-small); line-height: 1.3;
  border: 1px solid var(--line-2); border-radius: var(--r-sm); background: #fff; color: var(--ink);
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.input::placeholder { color: var(--mute-2); }
.input:hover { border-color: var(--mute-2); }
.input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-14); outline: none; }
.input:user-invalid { border-color: #d0342c; }
.form-note { font-family: var(--mono); font-size: var(--t-micro); color: var(--mute-2); text-align: center; letter-spacing: .02em; line-height: 1.5; }

/* Tables */
.table { width: 100%; border-collapse: collapse; font-size: var(--t-small); }
.table th { text-align: left; font-family: var(--mono); font-size: var(--t-meta); letter-spacing: var(--tk-meta); text-transform: uppercase; color: var(--mute-2); font-weight: 400; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
.table td { padding: 18px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.table td + td, .table th + th { padding-left: 24px; }

/* Breadcrumb */
.crumbs { display: flex; gap: 10px; align-items: center; font-family: var(--mono); font-size: var(--t-meta); letter-spacing: .04em; text-transform: uppercase; color: var(--mute-2); }
.crumbs a:hover { color: var(--blue); }
.crumbs span[aria-current] { color: var(--ink); }

/* Final CTA band (shared partial) */
.cta { border-radius: var(--r-xl); padding: clamp(40px, 5vw, 80px) clamp(26px, 5vw, 72px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.cta form { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.cta form .two { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
@media (max-width: 900px) { .cta { grid-template-columns: 1fr; gap: 32px; } .cta form .two { grid-template-columns: 1fr; } .cta form { padding: 22px; } }

/* --------------------------------------------------------------------------
   6. Header / footer
   -------------------------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 480px) { .site-head .brand > span:last-child { display: none; } }
.brand .mark { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); display: grid; place-items: center; flex: none; }
.brand .mark svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav { display: flex; align-items: center; gap: 34px; font-size: var(--t-small); font-weight: 500; color: var(--ink-2); }
.nav a { position: relative; padding-block: 6px; transition: color .3s var(--ease-out); }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-emph); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); }
.head-cta { display: flex; align-items: center; gap: 10px; }
.head-cta-m { display: none; }

/* Mobile nav — <details>, no JS */
.menu { display: none; }
@media (max-width: 1040px) {
  .nav, .head-cta .btn-sm { display: none; }
  .head-cta-m { display: inline-flex; }
  .menu { display: block; position: relative; }
  .menu summary { list-style: none; cursor: pointer; width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--r-pill); border: 1px solid var(--line-2); }
  .menu summary::-webkit-details-marker { display: none; }
  .menu summary svg { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; fill: none; }
  .menu summary .x { display: none; }
  .menu[open] summary .lines { display: none; }
  .menu[open] summary .x { display: block; }
  .menu .sheet {
    position: fixed; left: 0; right: 0; top: 74px; bottom: 0; background: #fff; padding: 12px var(--gutter) 32px;
    display: flex; flex-direction: column; overflow: auto;
  }
  .menu .sheet a { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: var(--t-6); font-weight: 600; letter-spacing: -0.02em; }
  .menu .sheet .btn { margin-top: 24px; align-self: stretch; }
  .menu .sheet .meta { margin-top: 20px; }
}

.site-foot { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, minmax(0,1fr)); gap: 40px; }
.foot-col { display: flex; flex-direction: column; gap: 12px; font-size: var(--t-tiny); }
.foot-col strong { font-size: var(--t-tiny); }
.foot-col a { color: var(--mute); transition: color .3s; }
.foot-col a:hover { color: var(--blue); }
.foot-legal { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); margin-top: 48px; }
.foot-legal a:hover { color: var(--blue); }
address { font-style: normal; }
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .foot-grid > :first-child { grid-column: span 2; }
  .foot-legal { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   7. Motion (progressive — the page is complete without any of this)
   -------------------------------------------------------------------------- */
.fade { animation: rise .9s var(--ease-out) both; }
.d1 { animation-delay: .08s } .d2 { animation-delay: .2s } .d3 { animation-delay: .32s } .d4 { animation-delay: .44s }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* scroll-driven reveal: supported browsers only; everything else just shows the element */
@supports (animation-timeline: view()) {
  .reveal { animation: reveal linear both; animation-timeline: view(); animation-range: entry 0% entry 28%; }
  @keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}
.js .io { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-emph); }
.js .io.in { opacity: 1; transform: none; }
.js .io.d1 { transition-delay: .08s } .js .io.d2 { transition-delay: .16s } .js .io.d3 { transition-delay: .24s } .js .io.d4 { transition-delay: .32s }

@media (prefers-reduced-motion: reduce) {
  .fade, .reveal, .js .io { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .btn, .btn svg, .btn-text svg, .card-lift, .pill, .nav a::after { transition: none !important; }
  .btn:hover, .card-lift:hover { transform: none !important; }
}

/* --------------------------------------------------------------------------
   8. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-head, .site-foot, .menu, .btn, form { display: none !important; }
  .band-dark, .band-blue, .card.dark, .card.blue { background: #fff !important; color: #000 !important; border: 1px solid #ccc; }
  details { open: true; }
  .faq .a { display: block; }
}
