/*
 * Foilio — the marketing site.
 *
 * The V2 sharp language the app uses: zero radius anywhere, neutral charcoal surfaces, lime as
 * the only accent. Dark only, by design — there is no light theme to fall back to, so every
 * surface is stated rather than inherited.
 *
 * Fonts are served from here rather than Google, so the page needs no third-party connection to
 * render its own headline. They are the same two files the app ships, byte for byte.
 */

@font-face { font-family: Anton; src: url('/fonts/anton-400-lat.woff2') format('woff2'); font-weight: 400; font-display: swap; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: Anton; src: url('/fonts/anton-400-latext.woff2') format('woff2'); font-weight: 400; font-display: swap; unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Manrope; src: url('/fonts/manrope-lat.woff2') format('woff2'); font-weight: 400 800; font-display: swap; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: Manrope; src: url('/fonts/manrope-latext.woff2') format('woff2'); font-weight: 400 800; font-display: swap; unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --page: #0A0A0A;
  --panel: #111111;
  --raise: #161616;
  --inset: #0F0F0F;
  --accent-tint: #141C0E;
  --accent-tint-2: #14200F;
  --accent-chip: #16240F;

  --bd-hair: #1C1C1C;
  --bd: #262626;
  --bd-2: #2A2A2A;
  --bd-4: #333333;
  --bd-accent: #2A3A20;

  --lime: #7CE22B;
  --lime-hi: #B4F04A;
  --on-lime: #08150A;

  --tx: #FFFFFF;
  --tx-2: #C8C8C8;
  --tx-3: #9C9C9C;
  --tx-4: #7C7C7C;
  --tx-5: #606060;
  --tx-6: #6E6E6E;

  /* The app's column, so the two properties line up when you cross between them —
     `#s-detail` and the Dex both cap at 1660 with a 40px gutter. */
  --col: 1660px;
  --col-narrow: 900px;
  --gutter: 40px;
  --rhythm: 128px;
  /* The app's top bar exactly — `--topbar: 71px` in public/styles.css. Crossing between the
     two properties should not move the wordmark. */
  --nav-h: 71px;

  --f-dis: Anton, 'Helvetica Neue', sans-serif;
  --f-ui: Manrope, 'Helvetica Neue', Helvetica, sans-serif;
}

@keyframes foRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes foPulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0; background: var(--page); color: var(--tx);
  font: 500 16px/1.6 var(--f-ui);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--lime); text-decoration: none; }
a:hover { color: var(--lime-hi); }
::selection { background: var(--lime); color: var(--on-lime); }
img { max-width: 100%; display: block; }

/* Everything sits in one column, and nothing is round. */
.wrap { width: 100%; max-width: var(--col); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--col-narrow); }
section { padding-top: var(--rhythm); }

.dis { font-family: var(--f-dis); font-weight: 400; text-transform: uppercase; letter-spacing: .5px; }
.eyebrow { display: flex; align-items: center; gap: 9px;
  font: 800 10.5px/1 var(--f-ui); letter-spacing: 2.2px; text-transform: uppercase; color: var(--tx-5); }
.eyebrow i { width: 6px; height: 6px; flex: none; background: var(--lime); animation: foPulse 2.4s infinite; }
.lime { color: var(--lime); }

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* ── Nav ──
   Pinned, and translucent over whatever scrolls beneath it. */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10, 10, 10, .86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bd);
}
/* The app's bar rail, not the page's. `#topbar` lays its contents out on a 1760 column with a
   14px gutter, while the pages under it sit on 1660 with 40 — so the wordmark and the page copy
   are 26px apart in the app itself. Reproduced here rather than corrected, because the thing
   being matched is the app: a visitor crossing from foilio.co to app.foilio.co should not see
   the header shift. Worth fixing in *both* one day; fixing it only here would widen the gap. */
.nav .wrap { max-width: none;
  padding-inline: max(13px, calc((100% - 1760px) / 2 + 13px)); }
.nav-in { display: flex; align-items: center; gap: 40px; width: 100%; }
.brand:hover { color: var(--tx); }

/*
 * `.tb-mark` from public/styles.css, property for property.
 *
 * Written out in the same order and the same shorthand rather than "close enough", because the
 * two drifted once already and it was not obvious from either file: the diamond was 13px against
 * the app's 9, the gap 10 against 9, the letter-spacing 1px against 1.6. A 13px square turned 45°
 * has an 18.4px bounding box, so that one difference pushed FOILIO 5px right of where the app put
 * it — and no gutter value could have reconciled them, because the marks themselves were
 * different objects.
 *
 * The equivalences worth knowing, since the two files name things differently:
 *   `--f-dis` here is `--f-head` there — both Anton, and `.dis` in the app is that family at 400.
 *   `--lime` here is `--lime-grad` there — both flat #7CE22B, the name notwithstanding.
 *
 * `display` is `flex`, matching the app; it was `inline-flex`, which is the same box for one line
 * of content but not the same rule. If the app's mark changes, change this with it.
 */
.brand { display: flex; align-items: center; gap: 12px; margin-left: 10px;
  color: var(--tx); }
.brand i { width: 9px; height: 9px; flex: none; transform: rotate(45deg);
  background: var(--lime); }
.brand span { font: 400 25px/1 var(--f-dis); letter-spacing: 1.6px; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { font: 800 10.5px/1 var(--f-ui); letter-spacing: 1.6px; text-transform: uppercase; color: var(--tx-3); }
.nav-links a:hover { color: var(--tx); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 24px;
  background: var(--lime); color: var(--on-lime);
  font: 800 11px/1 var(--f-ui); letter-spacing: 1.4px; text-transform: uppercase; }
.nav-cta:hover { background: var(--lime-hi); color: var(--on-lime); }

/* ── Hero ── */
/* Block only: the shorthand would reset the side gutter `.wrap` sets, and the hero would run
   into the edge of the screen. */
.hero { padding-block: 104px 116px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 402px; gap: 64px; align-items: center; }
/* The screenshot fills the phone body it used to be drawn inside. */
.phone-shot { width: 100%; height: auto; display: block; }
.hero-copy { animation: foRise .6s ease-out both; }
.hero h1 { margin-top: 22px; font-family: var(--f-dis); font-weight: 400;
  font-size: clamp(56px, 6.6vw, 98px); line-height: .94; letter-spacing: .5px;
  text-transform: uppercase; max-width: 660px; text-wrap: balance; }
.hero-body { margin-top: 26px; font: 500 16.5px/1.7 var(--f-ui); color: var(--tx-3); max-width: 492px; text-wrap: pretty; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 28px;
  background: var(--lime); color: var(--on-lime); border: 0; cursor: pointer;
  font: 800 12px/1 var(--f-ui); letter-spacing: 1.5px; text-transform: uppercase; }
.btn:hover { background: var(--lime-hi); color: var(--on-lime); }
.btn.ghost { background: none; color: var(--tx); border: 1px solid var(--bd-4); padding: 0 26px; }
.btn.ghost:hover { border-color: #4D4D4D; color: var(--tx); }
.facts { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--bd); }
.fact b { display: block; font: 400 26px/1 var(--f-dis); letter-spacing: .5px; color: var(--tx); }
.fact span { display: block; margin-top: 7px; font: 800 9.5px/1 var(--f-ui); letter-spacing: 1.4px; text-transform: uppercase; color: var(--tx-5); }

/* The phone. A drawn frame rather than a screenshot, so it stays sharp at any size and costs
   no image request; the screen inside is real markup. */
.phone { justify-self: end; width: 402px; animation: foRise .7s .1s ease-out both; }
.phone-body { background: #000; border: 1px solid var(--bd-4); padding: 10px; }
.phone-screen { background: var(--page); padding: 16px 14px 18px; }
.ph-top { display: flex; align-items: center; justify-content: space-between; }
.ph-brand { display: inline-flex; align-items: center; gap: 8px; }
.ph-brand i { width: 10px; height: 10px; background: var(--lime); transform: rotate(45deg); }
.ph-brand b { font: 400 19px/1 var(--f-dis); letter-spacing: 1px; }
.ph-chips { display: flex; gap: 6px; }
.ph-chip { padding: 5px 9px; border: 1px solid var(--bd); font: 800 8.5px/1 var(--f-ui); letter-spacing: 1px; color: var(--tx-4); }
.ph-chip.on { background: var(--lime); border-color: var(--lime); color: var(--on-lime); }
.ph-card { margin-top: 14px; background: #141414; border: 1px solid var(--bd); padding: 15px 16px 17px; }
.ph-lab { font: 800 9px/1 var(--f-ui); letter-spacing: 1.6px; text-transform: uppercase; color: var(--tx-5); }
.ph-val { margin-top: 9px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.ph-val b { font: 400 34px/1 var(--f-dis); letter-spacing: .5px; color: var(--lime); }
.ph-move { padding: 4px 8px; background: #0E2A12; font: 800 9px/1 var(--f-ui); letter-spacing: .6px; color: #4FD97A; }
.ph-chart { margin-top: 14px; height: 74px; }
.ph-chart svg { width: 100%; height: 100%; display: block; }
.ph-range { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 12px; padding: 4px; background: var(--inset); border: 1px solid var(--bd); }
.ph-range span { text-align: center; padding: 7px 0; font: 800 9px/1 var(--f-ui); letter-spacing: 1px; color: var(--tx-4); }
.ph-range span.on { background: var(--lime); color: var(--on-lime); }
.ph-sec { margin-top: 16px; display: flex; align-items: baseline; justify-content: space-between; }
.ph-sec b { font: 400 17px/1 var(--f-dis); letter-spacing: 1px; }
.ph-sec span { font: 800 8.5px/1 var(--f-ui); letter-spacing: 1.2px; color: var(--tx-5); }
.ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 11px; }
.ph-slot { border: 1px solid var(--bd); background: var(--panel); padding: 8px; }
.ph-art { aspect-ratio: 5 / 7; border: 1px solid #3D3D3D; background: linear-gradient(150deg, var(--t1), var(--t2)); }
.ph-name { margin-top: 8px; font: 700 11px/1.2 var(--f-ui); color: var(--tx-2); }
.ph-meta { margin-top: 4px; display: flex; align-items: center; justify-content: space-between; }
.ph-meta i { font-style: normal; font: 800 7.5px/1 var(--f-ui); letter-spacing: .8px; color: var(--tx-5); }
.ph-meta b { font: 700 11px/1 var(--f-ui); color: var(--lime); }

/* ── Value strip ── */
.strip { margin-top: var(--rhythm); background: var(--panel); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-cell { padding: 34px 28px 36px; border-left: 1px solid var(--bd); }
.strip-cell:first-child { border-left: 0; }
.strip-cell i { font-style: normal; font: 800 10px/1 var(--f-ui); letter-spacing: 1.8px; color: var(--lime); }
.strip-cell h3 { margin-top: 18px; font: 400 22px/1.1 var(--f-dis); letter-spacing: .5px; text-transform: uppercase; }
.strip-cell p { margin-top: 11px; font: 500 13px/1.6 var(--f-ui); color: var(--tx-4); }

/* ── Section headers ── */
.sec-head { display: flex; align-items: flex-end; gap: 48px; }
.sec-head h2 { margin-top: 18px; font-family: var(--f-dis); font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px); line-height: 1.02; letter-spacing: .5px;
  text-transform: uppercase; max-width: 640px; text-wrap: balance; }
.sec-note { width: 340px; flex: none; font: 500 14.5px/1.7 var(--f-ui); color: var(--tx-4); }

/* ── Features ── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; }
.card { padding: 30px 28px 34px; background: var(--panel); border: 1px solid var(--bd); transition: background-color .15s, border-color .15s; }
.card:hover { background: var(--raise); border-color: var(--bd-4); }
.card-top { display: flex; align-items: center; justify-content: space-between; }
.card-top i { font-style: normal; font: 800 10px/1 var(--f-ui); letter-spacing: 1.8px; color: var(--tx-5); }
.card-top b { width: 7px; height: 7px; background: var(--lime); transform: rotate(45deg); }
.card h3 { margin-top: 32px; font: 400 27px/1.06 var(--f-dis); letter-spacing: .5px; text-transform: uppercase; }
.card p { margin-top: 14px; font: 500 14px/1.68 var(--f-ui); color: var(--tx-4); }

/* ── Pack scan ── */
.band { margin-top: var(--rhythm); padding: 120px 0; background: var(--panel); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.band-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 340px); gap: 64px; align-items: center; }
.band h2 { margin-top: 18px; font-family: var(--f-dis); font-weight: 400; font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.02; letter-spacing: .5px; text-transform: uppercase; max-width: 560px; }
.band h2 em { font-style: normal; color: var(--tx-4); }
.band-body { margin-top: 22px; font: 500 15.5px/1.7 var(--f-ui); color: var(--tx-3); max-width: 470px; }
.steps-min { display: grid; gap: 8px; margin-top: 30px; max-width: 470px; }
.step-min { display: flex; align-items: center; gap: 18px; padding: 16px 18px; background: var(--raise); border: 1px solid var(--bd-2); }
.step-min i { width: 30px; height: 30px; flex: none; display: grid; place-items: center; background: var(--accent-chip);
  font-style: normal; font: 800 10.5px/1 var(--f-ui); color: var(--lime); }
.step-min p { font: 500 14px/1.55 var(--f-ui); color: var(--tx-2); }

/* The six-card fan, drawn. */
.fan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fcard { margin: 0; }
.fcard img { width: 100%; height: auto; display: block; border: 1px solid var(--bd-4); }
.fcard figcaption { display: grid; grid-template-columns: 1fr auto; gap: 0 8px;
  margin-top: 8px; font: 600 11px/1.35 var(--f-ui); color: var(--tx-4); }
.fcard figcaption b { font-weight: 700; color: var(--tx-3); min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* The price is the point of the row, so it takes the accent and the second column outright. */
.fcard figcaption em { grid-column: 2; grid-row: 1 / span 2; align-self: center;
  font-style: normal; font-weight: 800; color: var(--lime); }
.fcard figcaption span { grid-column: 1; font-variant-numeric: tabular-nums; }

/* ── How it works ── */
.rows { display: grid; gap: 12px; margin-top: 52px; }
.row { display: grid; grid-template-columns: 56px minmax(120px, 200px) minmax(0, 1fr) minmax(140px, 190px);
  gap: 32px; align-items: center; padding: 30px 28px; background: var(--panel); border: 1px solid var(--bd); }
.row i { width: 40px; height: 40px; display: grid; place-items: center; background: var(--accent-chip);
  font-style: normal; font: 800 12px/1 var(--f-ui); color: var(--lime); }
.row h3 { font: 400 32px/1 var(--f-dis); letter-spacing: .5px; text-transform: uppercase; }
.row p { font: 500 14.5px/1.68 var(--f-ui); color: var(--tx-3); }
.row span { font: 800 9.5px/1.6 var(--f-ui); letter-spacing: 1.2px; text-transform: uppercase; color: var(--tx-5); }

/* ── Plans ── */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 56px; max-width: 840px; }
.plan { padding: 34px 30px 36px; background: var(--panel); border: 1px solid var(--bd); }
.plan.pop { background: var(--accent-tint); border-color: var(--lime); }
.plan-name { font: 800 11px/1 var(--f-ui); letter-spacing: 1.8px; text-transform: uppercase; color: var(--tx); }
.plan.pop .plan-name { color: var(--lime); }
.plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.badge { padding: 5px 9px; background: var(--accent-chip); font: 800 8.5px/1 var(--f-ui); letter-spacing: 1px; color: var(--lime); }
.price { margin-top: 26px; display: flex; align-items: baseline; gap: 10px; }
.price b { font: 400 50px/1 var(--f-dis); letter-spacing: .5px; }
.price span { font: 600 10.5px/1.4 var(--f-ui); color: var(--tx-5); }
.plan-blurb { margin-top: 12px; font: 500 13.5px/1.6 var(--f-ui); color: var(--tx-4); }
.plan hr { margin: 26px 0 22px; border: 0; border-top: 1px solid var(--bd); }
.plan ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.plan li { display: flex; gap: 11px; font: 500 13.5px/1.55 var(--f-ui); color: var(--tx-2); }
.plan li::before { content: ''; width: 5px; height: 5px; flex: none; margin-top: 7px; background: var(--lime); transform: rotate(45deg); }
.plan .btn { width: 100%; margin-top: 30px; min-height: 50px; }
.plan-foot { margin-top: 22px; font: 500 12.5px/1.6 var(--f-ui); color: var(--tx-5); max-width: 840px; }

/* ── FAQ ── */
.faq { display: grid; gap: 10px; margin-top: 44px; }
.q { background: var(--panel); border: 1px solid var(--bd); overflow: hidden; }
.q[open] { border-color: var(--bd-4); }
.q summary { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 72px; padding: 16px 24px; cursor: pointer; list-style: none;
  font: 800 16px/1.4 var(--f-ui); color: var(--tx-2); }
.q summary::-webkit-details-marker { display: none; }
.q[open] summary { color: var(--tx); }
/* Two bars making a +, with the upright one dropped when the row opens. */
.q summary::after { content: ''; width: 12px; height: 12px; flex: none;
  background: linear-gradient(var(--tx-4), var(--tx-4)) center/12px 1.5px no-repeat,
              linear-gradient(var(--tx-4), var(--tx-4)) center/1.5px 12px no-repeat; }
.q[open] summary::after { background: linear-gradient(var(--lime), var(--lime)) center/12px 1.5px no-repeat; }
.q p { padding: 0 64px 26px 24px; font: 500 14.5px/1.72 var(--f-ui); color: var(--tx-3); }

/* ── CTA ── */
.cta { margin-top: var(--rhythm); }
.cta-panel { position: relative; overflow: hidden; padding: 76px 60px; background: var(--accent-tint-2); border: 1px solid var(--bd-accent);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); gap: 48px; align-items: center; }
.cta-panel::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(60deg, rgba(255,255,255,.03) 0 1px, transparent 1px 9px); }
.cta-panel > * { position: relative; }
.cta h2 { font-family: var(--f-dis); font-weight: 400; font-size: clamp(36px, 3.9vw, 54px); line-height: 1;
  letter-spacing: .5px; text-transform: uppercase; max-width: 560px; }
.cta p { margin-top: 20px; font: 500 15px/1.7 var(--f-ui); color: var(--tx-3); max-width: 440px; }
.cta-side .ph-lab { letter-spacing: 2px; color: var(--tx-4); }
.cta .btn { width: 100%; margin-top: 10px; min-height: 54px; }
.cta-fine { margin-top: 12px; font: 500 12px/1.55 var(--f-ui); color: var(--tx-4); }

/* ── Footer ── */
.foot { margin-top: var(--rhythm); border-top: 1px solid var(--bd); background: var(--page); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding: 56px 0 44px; }
.foot-brand p { margin-top: 16px; font: 500 13px/1.68 var(--f-ui); color: var(--tx-5); max-width: 300px; }
.foot-tag { margin-top: 18px; font: 400 18px/1 var(--f-dis); letter-spacing: 1px; text-transform: uppercase; color: var(--tx-4); }
.foot-col h4 { margin: 0; font: 800 9.5px/1 var(--f-ui); letter-spacing: 1.8px; text-transform: uppercase; color: var(--tx-5); }
.foot-col ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.foot-col a { font: 500 13.5px/1.3 var(--f-ui); color: var(--tx-3); }
.foot-col a:hover { color: var(--tx); }
.foot-bot { padding-bottom: 48px; }
.foot-bot hr { margin: 0; border: 0; border-top: 1px solid var(--bd-hair); }
.foot-legal { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-top: 22px; }
.foot-legal p { font: 500 11.5px/1.6 var(--f-ui); color: var(--tx-5); max-width: 720px; }
.cur { display: flex; gap: 7px; flex: none; }
.cur span { padding: 7px 11px; border: 1px solid var(--bd-2); font: 800 9px/1 var(--f-ui); letter-spacing: 1px; color: var(--tx-5); }
.cur span.on { border-color: var(--lime); color: var(--lime); }

/*
 * ── Narrower screens ──
 *
 * The handoff left the breakpoints open. The page is one column of stacked bands, so it needs
 * only three moves: drop the phone beside the hero, collapse the multi-column grids, and give
 * the gutter back at phone width.
 */
@media (max-width: 1080px) {
  :root { --rhythm: 96px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .phone { justify-self: start; width: min(402px, 100%); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-cell:nth-child(3) { border-left: 0; }
  .band-grid, .cta-panel { grid-template-columns: 1fr; gap: 40px; }
  .row { grid-template-columns: 40px 1fr; gap: 18px; }
  .row p, .row span { grid-column: 2; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sec-note { width: auto; max-width: 560px; }
}
@media (max-width: 760px) {
  :root { --gutter: 20px; --rhythm: 80px; }
  .nav-links { display: none; }
  .nav-in { gap: 16px; }
  .nav-cta { margin-left: auto; }
  .hero { padding-block: 64px 80px; }
  .cards, .strip-grid, .plans { grid-template-columns: 1fr; }
  .strip-cell { border-left: 0; border-top: 1px solid var(--bd); }
  .strip-cell:first-child { border-top: 0; }
  .cta-panel { padding: 48px 24px; }
  .band { padding: 80px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-legal { flex-direction: column; gap: 20px; }
  .q p { padding-right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
