/* ============================================================
   CaravanQC — public site
   Palette: deep navy #0A2540 · safety orange #FF6B18
   No external fonts, no frameworks, no CDNs. AUD, metric, en-AU.
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-2: #123B63;
  --navy-3: #1B4E80;
  --ink: #152230;
  --slate: #47586B;
  --slate-2: #5A6B7E;
  --paper: #F5F7FA;
  --line: #DFE7EF;
  --orange: #FF6B18;
  --orange-deep: #C2410C;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(10, 37, 64, 0.06), 0 8px 28px rgba(10, 37, 64, 0.09);
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* the hidden attribute must always win, even over display:flex components */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--orange-deep); }
a:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 18px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 14px 0;
}
.nav-brand { display: inline-flex; align-items: center; margin-right: auto; }
.nav-brand img { height: 28px; width: auto; display: block; }
.nav a.nav-link {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav a.nav-link:hover { color: var(--orange-deep); }
.nav a.nav-link[aria-current="page"] { border-bottom-color: var(--orange); }

.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: 13px 26px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; font-family: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: #ff7d35; color: var(--navy); box-shadow: 0 6px 18px rgba(255, 107, 24, 0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.92rem; }
.btn-lg { padding: 16px 34px; font-size: 1.08rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(27, 78, 128, 0.55), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #0D2E4F 55%, var(--navy-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after { /* faint blueprint grid */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
  padding: 72px 0 84px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.02em; font-weight: 800;
}
.hero h1 .tick-word { color: var(--orange); }
.hero .lede {
  margin-top: 18px; font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85); max-width: 34em;
}
.hero-ctas { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 14px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); }
.hero-art { min-width: 0; }
.err-inner { align-items: center; }
.err-inner code {
  font-size: 0.92em; background: rgba(255, 255, 255, 0.12);
  border-radius: 5px; padding: 1px 6px; white-space: nowrap;
}

.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.on-light .eyebrow { color: var(--orange-deep); }

/* ---------- sections ---------- */
section.band { padding: 72px 0; }
section.band-paper { background: var(--paper); }
section.band-navy {
  background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff;
}
.band h2, .band h1.page-h {
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.15;
  letter-spacing: -0.015em; font-weight: 800; max-width: 22em;
}
.band .sub { margin-top: 12px; color: var(--slate); font-size: 1.06rem; max-width: 44em; }
.band-navy .sub { color: rgba(255, 255, 255, 0.8); }
.center { text-align: center; }
.center h2, .center h1.page-h, .center .sub { margin-left: auto; margin-right: auto; }

/* ---------- feature grid ---------- */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px;
}
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 107, 24, 0.1); margin-bottom: 16px;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--slate); font-size: 0.97rem; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; counter-reset: step; }
.step { position: relative; padding: 26px 24px 26px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.step .step-n {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 0.96rem; }

/* ---------- checklist motif ---------- */
.ticklist { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; }
.ticklist .tk {
  flex: none; width: 24px; height: 24px; border-radius: 7px; margin-top: 2px;
  background: var(--orange); display: grid; place-items: center;
}
.ticklist .tk svg { width: 14px; height: 14px; }
.band-navy .ticklist li { color: rgba(255, 255, 255, 0.88); }

/* ---------- proof / heritage ---------- */
.proof {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center;
}
.proof blockquote {
  border-left: 4px solid var(--orange); padding: 6px 0 6px 22px;
  font-size: 1.15rem; color: var(--ink); font-weight: 500;
}
.proof blockquote footer { margin-top: 10px; color: var(--slate); font-size: 0.94rem; font-weight: 400; }
.logo-placeholder-row {
  margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap;
}
.logo-placeholder {
  border: 2px dashed var(--line); border-radius: 10px; color: var(--slate-2);
  font-size: 0.85rem; font-weight: 600; padding: 14px 22px; letter-spacing: 0.04em;
}

/* ---------- stats strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.stat { text-align: center; padding: 22px 12px; }
.stat .big { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.stat .small { margin-top: 4px; color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 76px 0; }
.cta-band h2 { margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 28px; }
.cta-band .fineprint { margin-top: 14px; color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-top: 40px; }
.plans:has(> :only-child) { grid-template-columns: minmax(270px, 560px); justify-content: center; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.plan h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
.plan .plan-price { margin: 18px 0 6px; display: flex; flex-direction: column; gap: 10px; }
.plan .price-row { display: flex; align-items: baseline; gap: 8px; }
.plan .amount { font-size: 1.9rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.plan .per { color: var(--slate); font-size: 0.95rem; }
.plan .plan-notes { color: var(--slate); font-size: 0.95rem; margin: 10px 0 20px; }
.plan .est {
  margin-top: auto; padding: 14px 16px; background: var(--paper); border-radius: 10px;
  font-size: 0.97rem; color: var(--ink);
}
.plan .est strong { color: var(--navy); font-size: 1.15rem; }
/* Who each tier is for — set per plan in admin, so the tier story can change
   without redeploying markup. */
.plan .plan-tag {
  margin: -2px 0 14px; color: var(--slate); font-size: 0.9rem; font-weight: 600;
}
/* Tier comparison. Rows come from the entitlement spec, so this table cannot
   advertise a capability the product does not gate. */
.compare { margin-top: 34px; }
.compare-h { font-size: 1.15rem; color: var(--navy); margin: 0 0 14px; }
.compare-scroll { overflow-x: auto; }
.compare-t { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 460px; }
.compare-t th[scope="col"] {
  text-align: center; padding: 10px 12px; color: var(--navy); font-size: 1rem;
  border-bottom: 2px solid var(--line);
}
.compare-t th[scope="row"] { text-align: left; font-weight: 500; color: var(--ink); padding: 12px 14px 12px 0; }
.compare-t td { text-align: center; padding: 12px 12px; border-bottom: 1px solid var(--line); }
.compare-t tbody th[scope="row"] { border-bottom: 1px solid var(--line); }
.compare-t .yes { color: #1F7A4C; font-weight: 700; font-size: 1.05rem; }
.compare-t .no { color: #9aa8b6; }
.compare-t .lim { color: var(--slate); font-variant-numeric: tabular-nums; }

/* Optional paid integrations. Priced from the API, never hard-coded here. */
.addons { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); text-align: left; }
.addons-h { margin: 0 0 4px; font-size: 1.02rem; color: var(--navy); }
.addons-sub { margin: 0 0 12px; color: var(--slate); font-size: 0.92rem; }
.addon {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; margin-bottom: 8px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer;
  font-size: 0.95rem; color: var(--ink);
}
.addon:hover { border-color: #b9c9dc; }
.addon b { margin-left: auto; color: var(--navy); white-space: nowrap; }
@media print { .addons { display: none; } }
.plan .btn { margin-top: 18px; }
.trial-flag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 107, 24, 0.12); border: 1px solid rgba(255, 107, 24, 0.4);
  color: var(--orange-deep); font-weight: 700; border-radius: 999px;
  padding: 9px 20px; font-size: 0.98rem;
}
.band-navy .trial-flag { background: rgba(255, 107, 24, 0.16); color: #FFB78A; }

.calc {
  margin-top: 46px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 28px;
}
.calc h3 { font-size: 1.2rem; margin-bottom: 4px; }
.calc .calc-sub { color: var(--slate); font-size: 0.95rem; margin-bottom: 22px; }
.calc-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.calc-field label { font-weight: 700; font-size: 0.98rem; display: flex; justify-content: space-between; align-items: baseline; }
.calc-field label output { color: var(--orange-deep); font-size: 1.15rem; font-weight: 800; }
.calc-field input[type="range"] { width: 100%; height: 28px; margin-top: 8px; accent-color: var(--orange); }
.calc-note { margin-top: 18px; color: var(--slate); font-size: 0.9rem; }

/* ---------- forms ---------- */
.form-shell {
  max-width: 520px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 36px 32px;
}
.form-shell h1, .form-shell h2 { font-size: 1.6rem; letter-spacing: -0.015em; margin-bottom: 6px; }
.form-shell .form-sub { color: var(--slate); font-size: 0.98rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--slate-2); font-size: 0.85rem; }
.field input {
  width: 100%; font: inherit; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
}
.field input:focus { border-color: var(--navy-3); outline: 3px solid rgba(27, 78, 128, 0.25); outline-offset: 0; }
.coupon-row { display: flex; gap: 10px; }
.coupon-row input { flex: 1; }
.msg { border-radius: 10px; padding: 12px 16px; font-size: 0.95rem; margin-top: 10px; }
.msg-ok { background: #E9F8EE; border: 1px solid #9ED8B2; color: #14532D; }
.msg-err { background: #FDF0EA; border: 1px solid #F2B296; color: #7C2D12; }
.msg-info { background: var(--paper); border: 1px solid var(--line); color: var(--slate); }
.form-divider {
  display: flex; align-items: center; gap: 14px; margin: 24px 0;
  color: var(--slate-2); font-size: 0.88rem;
}
.form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: #fff; color: var(--ink); border: 1.5px solid var(--line);
  font-weight: 600;
}
.btn-google:hover { border-color: var(--slate-2); color: var(--ink); }
.btn-block { display: block; width: 100%; }

/* ---------- feature detail (features.html) ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--line);
}
.feature-row:last-of-type { border-bottom: none; }
.feature-row h3 { font-size: 1.5rem; letter-spacing: -0.015em; margin-bottom: 12px; }
.feature-row p { color: var(--slate); }
.feature-row p + p { margin-top: 12px; }
.feature-art { min-width: 0; display: grid; place-items: center; }
.feature-art svg { width: 100%; max-width: 440px; height: auto; }
.feature-row.flip .feature-art { order: -1; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 36px auto 0; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 0; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 22px; 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: 1.4rem; color: var(--orange-deep); font-weight: 600; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-a { padding: 0 22px 18px; color: var(--slate); }

/* ---------- legal long-form (terms.html, privacy.html) ---------- */
.legal { max-width: 76ch; margin: 0 auto; }
.legal h1 { font-size: 2rem; letter-spacing: -0.02em; margin: 6px 0 10px; }
.legal .legal-meta { color: var(--slate-2); font-size: 0.88rem; margin-bottom: 24px; }
.legal .legal-lede { font-size: 1.06rem; color: var(--slate); margin-bottom: 8px; }
.legal h2 {
  /* .band h2 caps headings at 22em for marketing copy; here the h2 carries the
     section rule, so a capped width draws a divider that stops mid-page. */
  max-width: none;
  font-size: 1.2rem; letter-spacing: -0.01em; margin: 38px 0 10px;
  padding-top: 18px; border-top: 1px solid var(--line); scroll-margin-top: 84px;
}
.legal h3 { font-size: 1.01rem; margin: 22px 0 6px; color: var(--navy-2); }
.legal p, .legal li { color: var(--slate); }
.legal p + p { margin-top: 12px; }
.legal strong { color: var(--ink); }
.legal ul, .legal ol { margin: 12px 0 0 22px; display: grid; gap: 9px; }
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em; background: var(--paper); border: 1px solid var(--line);
  border-radius: 5px; padding: 1px 5px; color: var(--navy-2); white-space: nowrap;
}
/* table of contents */
.legal-toc {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px; margin: 26px 0 8px;
}
.legal-toc ol { margin: 0 0 0 20px; gap: 6px; font-size: 0.95rem; }
.legal-toc a { text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
/* tables (cookies, suppliers) — must scroll rather than push the page sideways */
.legal-table-wrap { overflow-x: auto; margin: 16px 0 0; -webkit-overflow-scrolling: touch; }
.legal-table {
  border-collapse: collapse; width: 100%; min-width: 480px;
  font-size: 0.92rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 10px;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-table thead th {
  background: var(--paper); color: var(--navy);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table td { color: var(--slate); }
.legal-contact {
  margin-top: 40px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 24px 26px;
}
.legal-contact h2 { border-top: none; padding-top: 0; font-size: 1.1rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.75); }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; padding: 56px 0 40px;
}
.footer-inner img { height: 31px; width: auto; }
.footer-inner .foot-blurb { margin-top: 16px; font-size: 0.94rem; max-width: 30em; }
.site-footer h4 {
  color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer ul a { display: inline-block; padding: 4px 0; } /* >=24px tap target */
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul a[aria-current="page"] { color: #fff; font-weight: 600; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 20px 0 26px;
  font-size: 0.86rem; color: rgba(255, 255, 255, 0.55);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- reveal on scroll (CSS-only, safe fallback) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .rise {
      animation: rise-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 42%;
    }
    /* start visible: a no-scroll render (crawler, print, screenshot) freezes
       below-fold elements at the 'from' state, so it must never be near-blank */
    @keyframes rise-in {
      from { opacity: 0.45; transform: translateY(26px); }
      to { opacity: 1; transform: none; }
    }
  }
}

/* ---------- print (someone will print the pricing page) ---------- */
@media print {
  .site-header { position: static; }
  .rise { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero, section.band-navy, .site-footer { background: #fff !important; color: #000 !important; }
  .hero .lede, .hero-note, .stat .small, .cta-band .fineprint,
  .foot-blurb, .footer-legal span, .site-footer a { color: #333 !important; }
  .btn, .hero-art, .feature-art, .skip-link { display: none !important; }
  .footer-inner img { filter: brightness(0); } /* white lockup would vanish on paper */
  .faq details { break-inside: avoid; }
  /* someone WILL print the terms and the privacy policy for a compliance file */
  .legal { max-width: none; }
  .legal p, .legal li, .legal td { color: #222 !important; }
  .legal h2 { break-after: avoid; }
  .legal-table, .legal-contact { break-inside: avoid; }
  .legal-table-wrap { overflow-x: visible; }
  .legal-toc { display: none; } /* anchors are useless on paper */
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 52px 0 60px; gap: 36px; }
  .hero-art { max-width: 440px; }
  .grid-3, .steps, .stat-strip { grid-template-columns: 1fr 1fr; }
  .proof, .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.flip .feature-art { order: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .calc-controls { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .grid-3, .steps, .stat-strip { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nav { gap: 14px; }
  .nav-brand img { height: 23px; }
  section.band { padding: 52px 0; }
  .form-shell { padding: 28px 20px; }
}
