/* ==========================================================================
   Stake4Life — design system
   Editorial dark grid: near-black ground, hairline rules, oversized geometric
   grotesque display type, one bright green accent and a graduated blue ramp.
   ========================================================================== */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  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';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin-ext.woff2') format('woff2');
  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 {
  --green: #a3fa8e;
  --green-deep: #7ee06a;
  --green-ink: #08120a;

  --bg: #070c06;
  --bg-2: #030603;
  --bg-3: #0b110a;

  --ink: #ffffff;
  --muted: rgba(255, 255, 255, .56);
  --faint: rgba(255, 255, 255, .34);
  --line: rgba(255, 255, 255, .14);

  --light: #ffffff;
  --light-ink: #05080a;
  --light-muted: rgba(5, 8, 10, .58);
  --light-line: rgba(5, 8, 10, .13);
  --light-tint: #f2f3f2;

  --blue-1: #1338c4;
  --blue-2: #0b2a96;
  --blue-3: #061c67;
  --blue-4: #020e36;
  --blue-sky: #428adc;
  --blue-brand: #1e8ae8;

  --gut: clamp(18px, 2.4vw, 34px);
  --hdr: 56px;
  --rail: 26.8%;

  --font: 'Manrope', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: var(--hdr);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -.035em; line-height: .96; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--green); color: var(--green-ink); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: var(--green-ink);
  padding: 12px 18px; font-weight: 600;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* --------------------------------------------------------------- primitives */

.display-xl {
  font-size: clamp(2rem, 7.4vw, 6.8rem);
  line-height: .93;
  letter-spacing: -.04em;
}
.display-lg {
  font-size: clamp(1.8rem, 5.3vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.038em;
}
.display-md {
  font-size: clamp(1.6rem, 4.2vw, 3.6rem);
  line-height: .98;
  letter-spacing: -.036em;
}
.display-sm {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.accent { color: var(--green); font-style: normal; }
.accent-blue { color: var(--blue-sky); font-style: normal; }
.muted { color: var(--muted); }
.small { font-size: .82rem; line-height: 1.6; }

.eyebrow {
  margin: 0 0 1em;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: inherit;
}
.eyebrow--muted { color: var(--muted); }

.lead {
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 1.32;
  letter-spacing: -.022em;
  font-weight: 400;
}

.tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--faint);
}

/* bands: full-bleed rows separated by hairlines */
.band { border-top: 1px solid var(--line); position: relative; }
.band--light { background: var(--light); color: var(--light-ink); border-top-color: var(--light-line); }
.band--flush { border-top: 0; }

.rail-grid { display: grid; grid-template-columns: var(--rail) 1fr; }
.rail-grid > * + * { border-left: 1px solid var(--line); }
.band--light .rail-grid > * + * { border-left-color: var(--light-line); }

.pad { padding: 24px var(--gut) 34px; }
.pad-lg { padding: clamp(30px, 5vw, 64px) var(--gut); }

/* underlined oversized link, the primary call to action of the design */
.big-link {
  display: inline-block;
  font-size: clamp(1.6rem, 3.3vw, 2.9rem);
  line-height: 1;
  letter-spacing: -.038em;
  font-weight: 500;
  padding-bottom: .1em;
  border-bottom: 2px solid currentColor;
  transition: opacity .18s ease;
}
.big-link:hover { opacity: .68; }

.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 13px 24px;
  background: var(--green); color: var(--green-ink);
  font-weight: 600; font-size: .92rem; letter-spacing: -.01em;
  border: 1px solid var(--green);
  transition: background .18s ease, color .18s ease;
}
.btn:hover { background: transparent; color: var(--green); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.band--light .btn-ghost { color: var(--light-ink); border-color: var(--light-line); }
.band--light .btn-ghost:hover { background: var(--light-ink); color: var(--light); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ------------------------------------------------------------------- header */

.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  height: var(--hdr);
  background: rgba(7, 12, 6, .82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: stretch; height: var(--hdr); padding-left: var(--gut); }

.brand {
  display: flex; align-items: center; gap: 2px;
  font-size: 1.12rem; font-weight: 500; letter-spacing: -.045em;
  margin-right: clamp(20px, 4vw, 54px);
}
.brand b { font-weight: 500; color: var(--blue-brand); }
.brand-mark {
  width: 11px; height: 11px; margin-left: 5px; margin-bottom: 7px;
  background:
    linear-gradient(var(--blue-brand), var(--blue-brand)) center / 100% 34% no-repeat,
    linear-gradient(var(--blue-brand), var(--blue-brand)) center / 34% 100% no-repeat;
  flex: none;
}

.hdr-nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
.hdr-nav a { font-size: .88rem; color: rgba(255, 255, 255, .82); transition: color .16s ease; }
.hdr-nav a:hover, .hdr-nav a[aria-current="page"] { color: var(--green); }

.hdr-act { margin-left: auto; display: flex; align-items: stretch; }
.hdr-alt {
  display: flex; align-items: center; padding: 0 clamp(14px, 2vw, 26px);
  font-size: .88rem; color: rgba(255, 255, 255, .82);
}
.hdr-alt:hover { color: var(--green); }
.hdr-cta {
  display: flex; align-items: center; padding: 0 clamp(18px, 2.4vw, 28px);
  background: var(--green); color: var(--green-ink);
  font-size: .88rem; font-weight: 600; letter-spacing: -.012em;
  transition: background .18s ease;
}
.hdr-cta:hover { background: #fff; }

/* Plain word beside the Register button — label, not a link. */
.hdr-word {
  display: flex; align-items: center; padding: 0 clamp(12px, 1.8vw, 22px);
  font-size: .88rem; color: rgba(255, 255, 255, .82);
  white-space: nowrap; cursor: default;
}

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 52px; background: none; border: 0; border-left: 1px solid var(--line);
  color: var(--ink); cursor: pointer;
}
.nav-toggle span { display: block; width: 19px; height: 1.5px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 19px; height: 1.5px; background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* --------------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  padding: clamp(34px, 5vw, 58px) var(--gut) clamp(70px, 14vh, 150px);
  overflow: hidden;
  background: var(--bg-2);
}
.hero-orbs { position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none; }
.hero-orbs i {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(58px); opacity: .62;
}
.hero-orbs i:nth-child(1) { width: 26%; padding-bottom: 26%; left: 26%; top: 18%; background: #1a3f8f; }
.hero-orbs i:nth-child(2) { width: 20%; padding-bottom: 20%; left: 40%; top: 8%;  background: #6f7a86; opacity: .42; }
.hero-orbs i:nth-child(3) { width: 24%; padding-bottom: 24%; left: 58%; top: 30%; background: #23407a; opacity: .38; }
.hero-orbs i:nth-child(4) { width: 16%; padding-bottom: 16%; left: 12%; top: 46%; background: #2c6b3a; opacity: .3; }
.hero h1 { position: relative; z-index: 1; max-width: 100%; }
.hero-sub { position: relative; z-index: 1; margin-top: 1.6rem; max-width: 46ch; color: var(--muted); }
.hero-actions { position: relative; z-index: 1; margin-top: clamp(1.6rem, 3vw, 2.4rem); }

/* --------------------------------------------------- two-cell intro / prices */

.duo { display: grid; grid-template-columns: 1fr 1fr; }
.duo > * + * { border-left: 1px solid var(--line); }
.duo-cell {
  padding: 22px var(--gut) 32px;
  min-height: clamp(220px, 30vh, 300px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
}

.inline-form { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px, 2.6vw, 38px); }
.inline-form input[type="email"] {
  flex: 1 1 240px; min-width: 0;
  height: 54px; padding: 0 18px;
  background: #fff; color: #05080a; border: 0; border-radius: 0;
  font: inherit; font-size: .98rem;
}
.inline-form input::placeholder { color: #8b9089; }
.inline-form button {
  background: none; border: 0; padding: 0; color: inherit; cursor: pointer;
  font: inherit;
  font-size: clamp(1.6rem, 3.3vw, 2.9rem);
  line-height: 1; letter-spacing: -.038em; font-weight: 500;
  padding-bottom: .1em; border-bottom: 2px solid currentColor;
  transition: opacity .18s ease;
}
.inline-form button:hover { opacity: .68; }

/* ------------------------------------------------------------------ marquee */

.marquee-band {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(34px, 6vw, 76px) 0;
}
.marquee-band::before {
  content: ''; position: absolute; left: 20%; top: -60%; width: 60%; height: 220%;
  background: radial-gradient(closest-side, rgba(24, 62, 160, .55), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.marquee { position: relative; display: flex; width: max-content; animation: slide 42s linear infinite; }
.marquee-row { display: flex; align-items: center; gap: clamp(40px, 6vw, 96px); padding-right: clamp(40px, 6vw, 96px); }
.marquee-row span {
  font-size: clamp(.86rem, 1.15vw, 1.05rem);
  font-weight: 600; letter-spacing: -.02em; white-space: nowrap;
  color: rgba(255, 255, 255, .9);
}
.marquee-row span i { font-style: normal; color: var(--green); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ results */

.results { display: grid; grid-template-columns: var(--rail) repeat(4, 1fr); border-top: 1px solid var(--line); }
.results-head {
  background: var(--light); color: var(--light-ink);
  padding: 26px var(--gut) 30px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
}
.results-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); }
.results-head .accent-blue { color: var(--blue-sky); }

.pixel { display: grid; grid-template-columns: repeat(5, 15px); gap: 3px; filter: blur(3px); opacity: .85; }
.pixel i { display: block; height: 15px; background: #dfe6ee; }
.pixel i:nth-child(3)  { background: #a9e88c; }
.pixel i:nth-child(7)  { background: #77d34f; }
.pixel i:nth-child(9)  { background: #cfd8e6; }
.pixel i:nth-child(12) { background: #1f5fd8; }
.pixel i:nth-child(13) { background: #0f3fae; }
.pixel i:nth-child(18) { background: #b7c7de; }

.stat {
  position: relative;
  min-height: clamp(280px, 34vw, 430px);
  padding: 18px 20px 26px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-left: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}
.stat-n { position: absolute; top: 18px; left: 20px; font-size: .84rem; color: rgba(255, 255, 255, .78); }
.stat b { display: block; font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.stat small { display: block; margin-top: .7em; font-size: .82rem; color: rgba(255, 255, 255, .84); }
.results > div:nth-child(2) { background: var(--blue-sky); }
.results > div:nth-child(3) { background: radial-gradient(120% 90% at 78% 34%, #4d93e6 0%, #123a94 42%, #061537 100%); }
.results > div:nth-child(4) { background: var(--blue-3); }
.results > div:nth-child(5) { background: var(--blue-4); }

/* ---------------------------------------------------------------- testimony */

.voices-head { display: grid; grid-template-columns: var(--rail) 1fr; min-height: clamp(200px, 26vh, 300px); }
.voices-head > * + * { border-left: 1px solid var(--line); }
.voices-head .pad { display: flex; flex-direction: column; justify-content: space-between; }
.counter { margin: 0; font-size: .82rem; color: var(--green); }
.counter span { color: var(--faint); }

.voice { display: grid; grid-template-columns: var(--rail) 1fr; border-top: 1px solid var(--line); }
.voice[hidden] { display: none; }
.voice-media {
  position: relative; min-height: clamp(280px, 32vw, 420px);
  background:
    radial-gradient(58% 44% at 64% 32%, rgba(66, 138, 220, .55), transparent 72%),
    linear-gradient(150deg, #16233a 0%, #0a1120 55%, #04070c 100%);
  display: flex; align-items: flex-end;
}
.voice-media::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(72% 52% at 62% 30%, rgba(163, 250, 142, .16), transparent 68%);
}
.voice-chips { position: relative; margin-bottom: 0; }
.voice-chips b, .voice-chips i {
  display: block; padding: 9px 16px; font-style: normal;
  font-size: .84rem; letter-spacing: -.01em;
}
.voice-chips b { background: #fff; color: var(--light-ink); font-weight: 500; }
.voice-chips i { background: var(--green); color: var(--green-ink); }

.voice-body {
  border-left: 1px solid var(--line);
  padding: 26px var(--gut) 26px;
  display: grid; grid-template-rows: auto 1fr auto; gap: 30px;
  position: relative;
}
.voice-body blockquote {
  margin: 0; max-width: 34ch;
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  line-height: 1.3; letter-spacing: -.022em;
}
.voice-body blockquote em { font-style: normal; color: var(--green); }
.voice-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 60px); align-self: end; }
.voice-stats div { border-left: 1px solid var(--green); padding-left: 14px; }
.voice-stats b { display: block; font-size: clamp(1.3rem, 2vw, 1.85rem); font-weight: 500; letter-spacing: -.04em; }
.voice-stats small { display: block; margin-top: .8em; font-size: .8rem; color: rgba(255, 255, 255, .8); max-width: 22ch; }
.voice-nav { position: absolute; top: 0; right: 0; display: flex; }
.voice-nav button {
  width: 52px; height: 52px; background: none; cursor: pointer; color: var(--ink);
  border: 0; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 1rem; transition: background .16s ease;
}
.voice-nav button:hover { background: rgba(255, 255, 255, .07); }

/* ---------------------------------------------------------- stacked how-to */

.stack-head { display: grid; grid-template-columns: var(--rail) 1fr; min-height: 140px; }
.stack-head > * + * { border-left: 1px solid var(--line); }
.stack-head .pad { display: flex; align-items: flex-end; }

.stack-words { border-top: 1px solid var(--line); }
.stack-row {
  display: block; width: 100%; text-align: left;
  background: none; border: 0; border-top: 1px solid var(--line);
  padding: clamp(10px, 1.6vw, 18px) var(--gut);
  color: rgba(255, 255, 255, .3);
  font: inherit; font-size: clamp(2.2rem, 6.4vw, 5.4rem);
  font-weight: 500; letter-spacing: -.042em; line-height: 1.06;
  cursor: pointer; transition: color .25s ease;
}
.stack-row:first-child { border-top: 0; }
.stack-row .pre { display: none; color: var(--ink); }
.stack-row[aria-current="true"] { color: var(--green); }
.stack-row[aria-current="true"] .pre { display: inline; }

.stack-note { display: grid; grid-template-columns: var(--rail) 1fr; border-top: 1px solid var(--line); }
.stack-note > * + * { border-left: 1px solid var(--line); }
.stack-note .inner { padding: clamp(50px, 9vw, 130px) var(--gut) 26px; max-width: 46ch; }

/* ----------------------------------------------------------------- products */

.prod-num { font-size: .84rem; color: currentColor; opacity: .74; }

/* variant A — light header plate, stacked cards, dark feature panel */
.prod-a-head {
  background: var(--light); color: var(--light-ink);
  display: grid; grid-template-columns: var(--rail) 1fr auto;
  align-items: start; gap: 0;
  border-top: 1px solid var(--light-line);
}
.prod-a-head > .pad { padding: 24px var(--gut) clamp(48px, 8vw, 110px); }
.prod-a-head > .pad + .pad { border-left: 1px solid var(--light-line); }
.prod-a-head .prod-num { padding: 24px var(--gut) 0; }

.prod-a-panel { background: var(--light); padding: 0 0 clamp(30px, 5vw, 70px); }
.prod-a-stack { position: relative; padding-top: 26px; }
.prod-a-stack::before, .prod-a-stack::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%); height: 12px;
}
.prod-a-stack::before { top: 0;  width: calc(100% - 2 * var(--gut) - 120px); background: #d5d8dd; }
.prod-a-stack::after  { top: 13px; width: calc(100% - 2 * var(--gut) - 60px);  background: #9298a3; }
.prod-a-inner {
  position: relative;
  margin: 0 var(--gut);
  background: var(--bg-2); color: var(--ink);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(20px, 3vw, 50px);
  padding: clamp(24px, 3.4vw, 42px);
  min-height: clamp(280px, 32vw, 400px);
}
.prod-a-copy { display: flex; flex-direction: column; gap: 18px; }
.prod-a-copy .step { font-size: 1.5rem; font-weight: 500; letter-spacing: -.04em; }
.prod-a-copy h3 { font-size: clamp(1.15rem, 1.7vw, 1.5rem); letter-spacing: -.03em; line-height: 1.12; }
.prod-a-copy p { color: rgba(255, 255, 255, .74); font-size: .88rem; max-width: 34ch; }

/* variant B — light accordion left, dark mock right */
.prod-b { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--light-line); }
.prod-b-left { background: var(--light); color: var(--light-ink); display: flex; flex-direction: column; }
.prod-b-head { padding: 26px var(--gut) clamp(40px, 7vw, 96px); display: flex; justify-content: space-between; gap: 20px; }
.prod-b-right { background: var(--bg-2); padding: clamp(24px, 3vw, 44px) var(--gut); display: flex; flex-direction: column; justify-content: space-between; gap: 30px; }
.prod-b-right p { color: rgba(255, 255, 255, .74); font-size: .84rem; max-width: 40ch; }

.acc { margin-top: auto; }
.acc li { border-top: 1px solid var(--light-line); }
.acc button {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; border-left: 4px solid transparent;
  padding: 20px var(--gut);
  font: inherit; font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: -.028em; color: var(--light-ink);
  transition: background .18s ease, border-color .18s ease;
}
.acc button:hover { background: rgba(5, 8, 10, .04); }
.acc li[data-active="true"] button { background: var(--light-tint); border-left-color: var(--blue-1); }

/* variant C — light left, graduated blue rows right */
.prod-c { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--light-line); }
.prod-c-left {
  background: var(--light); color: var(--light-ink);
  padding: 26px var(--gut) 30px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  min-height: clamp(300px, 36vw, 480px);
}
.prod-c-left .head { display: flex; justify-content: space-between; gap: 20px; }
.prod-c-right { background: var(--bg-2); display: flex; flex-direction: column; }
.ramp li {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(14px, 1.9vw, 22px) var(--gut);
  font-size: clamp(1rem, 1.5vw, 1.35rem); letter-spacing: -.028em;
}
.ramp li small { font-size: .78rem; opacity: .82; }
.ramp li:nth-child(1) { background: var(--blue-1); }
.ramp li:nth-child(2) { background: var(--blue-2); }
.ramp li:nth-child(3) { background: var(--blue-3); }
.ramp li:nth-child(4) { background: var(--blue-4); }
.ramp li:nth-child(n+5) { background: transparent; }
.prod-c-foot { margin-top: auto; padding: clamp(26px, 4vw, 60px) var(--gut) clamp(20px, 3vw, 34px); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.prod-c-foot p { color: rgba(255, 255, 255, .74); font-size: .84rem; max-width: 34ch; }

/* the small technical mock card that stands in for product imagery */
.mock {
  background: #0b0f0c; border: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 18px; width: 100%; max-width: 420px;
}
.mock-top { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mock-dot { width: 30px; height: 30px; flex: none; background: var(--green); position: relative; }
.mock-dot::after {
  content: ''; position: absolute; inset: 8px;
  background: linear-gradient(var(--green-ink), var(--green-ink)) center / 100% 22% no-repeat,
              linear-gradient(var(--green-ink), var(--green-ink)) center / 22% 100% no-repeat;
}
.mock-top b { font-size: .86rem; font-weight: 500; }
.mock-top small { display: block; font-size: .74rem; color: var(--faint); }
.mock-wave { margin-left: auto; display: flex; align-items: center; gap: 2px; height: 18px; }
.mock-wave i { display: block; width: 2px; background: rgba(255, 255, 255, .55); }
.mock-wave i:nth-child(odd) { height: 60%; }
.mock-wave i:nth-child(even) { height: 100%; }
.mock-wave i:nth-child(3n) { height: 35%; background: var(--green); }
.mock dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 9px 16px; padding-top: 14px; font-size: .8rem; }
.mock dt { color: var(--faint); white-space: nowrap; }
.mock dd { margin: 0; text-align: right; }

/* -------------------------------------------------------------- application */

.applic { display: grid; grid-template-columns: var(--rail) 1fr .92fr; border-top: 1px solid var(--line); }
.applic > * + * { border-left: 1px solid var(--line); }
.applic-list { padding: 26px var(--gut) 30px; }
.applic-list li + li { border-top: 1px solid var(--line); }
.applic-list button {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; padding: 15px 16px;
  font: inherit; font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: -.028em; color: var(--ink);
  transition: background .18s ease, color .18s ease;
}
.applic-list li[data-active="true"] { border-top-color: transparent; }
.applic-list li[data-active="true"] button { background: #fff; color: var(--light-ink); }
.applic-note { margin-top: 22px; padding-left: 16px; font-size: .82rem; color: var(--faint); }
.applic-media {
  min-height: clamp(240px, 30vw, 420px);
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(66, 138, 220, .5), transparent 70%),
    linear-gradient(160deg, #12305f 0%, #071227 60%, #04070c 100%);
}

/* ---------------------------------------------------------------- delivery */

.connect-head { display: grid; grid-template-columns: 1fr .68fr .52fr; gap: 0; border-top: 1px solid var(--line); }
.connect-head > * { padding: 26px var(--gut) clamp(40px, 6vw, 80px); }
.connect-head p { color: rgba(255, 255, 255, .78); font-size: .84rem; max-width: 34ch; }
.connect-head .name { font-size: clamp(1.05rem, 1.7vw, 1.5rem); letter-spacing: -.03em; color: var(--ink); }

.logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); border-top: 1px solid var(--line); }
.logo-grid div {
  min-height: clamp(110px, 12vw, 156px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; text-align: center;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: clamp(.94rem, 1.3vw, 1.15rem); font-weight: 600; letter-spacing: -.028em;
  color: rgba(255, 255, 255, .92);
}
.logo-grid div small { display: block; margin-top: .5em; font-size: .72rem; font-weight: 400; color: var(--faint); }

/* --------------------------------------------------------------- assurance */

.assur { display: grid; grid-template-columns: var(--rail) 1fr; border-top: 1px solid var(--line); }
.assur-media {
  position: relative; min-height: clamp(280px, 32vw, 430px);
  background:
    radial-gradient(60% 50% at 50% 46%, rgba(40, 110, 230, .55), transparent 72%),
    linear-gradient(170deg, #0a1c46 0%, #050c1e 60%, #02050c 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.assur-media::before, .assur-media::after {
  content: ''; position: absolute; border: 1px solid rgba(90, 160, 255, .32); border-radius: 50%;
}
.assur-media::before { width: 120%; padding-bottom: 120%; }
.assur-media::after  { width: 76%;  padding-bottom: 76%; }
.shield { position: relative; width: clamp(96px, 12vw, 150px); }

.assur-body { border-left: 1px solid var(--line); padding: 26px var(--gut) 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 44px; }
.assur-body p { color: rgba(255, 255, 255, .78); font-size: .86rem; max-width: 46ch; }

.assur-items { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border-top: 1px solid var(--line); }
.assur-items div { padding: 22px var(--gut) 30px; border-right: 1px solid var(--line); }
.assur-items b { display: block; font-size: 1.05rem; font-weight: 500; letter-spacing: -.03em; }
.assur-items small { display: block; margin-top: .7em; font-size: .8rem; color: var(--muted); }

/* -------------------------------------------------------------- closing cta */

.cta-hero {
  position: relative; overflow: hidden;
  min-height: clamp(320px, 46vh, 520px);
  display: flex; align-items: flex-end;
  padding: clamp(40px, 7vw, 90px) var(--gut) clamp(34px, 5vw, 66px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(105deg, #0a1f6d 0%, #0f3fae 26%, #061020 58%, #1173c8 84%, #2aa8e8 100%);
}
.cta-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 84px 84px;
}
.cta-hero h2 { position: relative; }

.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
.cta-half {
  padding: 22px var(--gut) 32px;
  min-height: clamp(220px, 28vh, 290px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
}
.cta-half--blue { background: linear-gradient(90deg, #0b2a96 0%, #061027 46%, #030603 100%); }
.cta-half--green { background: var(--green); color: var(--green-ink); }
.cta-half--green .eyebrow { color: var(--green-ink); }

/* ------------------------------------------------------------------- footer */

.ftr { border-top: 1px solid var(--line); background: var(--bg); }
.ftr-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) auto; gap: 30px; padding: clamp(36px, 5vw, 64px) var(--gut) clamp(24px, 3.2vw, 40px); }
.ftr-top h2 { font-size: .8rem; font-weight: 400; color: var(--faint); margin-bottom: 1.6em; letter-spacing: -.01em; }
.ftr-top p { color: var(--muted); font-size: .84rem; max-width: 30ch; }
.ftr-top li + li { margin-top: .7em; }
.ftr-top a { font-size: .86rem; }
.ftr-top a:hover { color: var(--green); }
.ftr-act { display: flex; gap: 22px; align-items: flex-start; }

.ftr-mid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; padding: 0 var(--gut) clamp(26px, 3.4vw, 44px); }
.ftr-mid h2 { font-size: .78rem; font-weight: 400; color: var(--faint); margin: 0 0 .85em; }
.ftr-mid .big-link { font-size: 1rem; border-bottom-width: 1px; }
.ftr-form { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.ftr-form input {
  flex: 1 1 170px; min-width: 0; max-width: 300px; height: 40px; padding: 0 13px;
  background: #fff; color: #05080a; border: 0; border-radius: 0; font: inherit; font-size: .88rem;
}
.ftr-form button {
  background: none; border: 0; padding: 0 0 .1em; color: inherit; cursor: pointer; font: inherit;
  font-size: 1rem; letter-spacing: -.02em; font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.ftr-word {
  border-top: 1px solid var(--line);
  padding: clamp(16px, 1.8vw, 24px) var(--gut);
  display: flex; align-items: center; justify-content: flex-start;
}
.ftr-word span {
  display: flex; align-items: baseline; gap: 0;
  font-size: 1.35rem; font-weight: 500;
  letter-spacing: -.045em; line-height: 1; white-space: nowrap;
}
.ftr-word b { font-weight: 500; color: var(--blue-brand); }
.ftr-word i {
  display: inline-block; align-self: flex-start; margin-top: .1em;
  width: .2em; height: .2em; margin-left: .09em;
  background:
    linear-gradient(var(--blue-brand), var(--blue-brand)) center / 100% 36% no-repeat,
    linear-gradient(var(--blue-brand), var(--blue-brand)) center / 36% 100% no-repeat;
}

.ftr-legal {
  border-top: 1px solid var(--line);
  padding: 16px var(--gut);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  font-size: .78rem; color: var(--faint);
}
.ftr-legal nav { display: flex; flex-wrap: wrap; gap: 26px; }
.ftr-legal a:hover { color: var(--green); }

/* -------------------------------------------------------------- inner pages */

.page-hero {
  padding: clamp(34px, 5vw, 62px) var(--gut) clamp(44px, 7vw, 96px);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; left: 30%; top: -80%; width: 50%; height: 240%;
  background: radial-gradient(closest-side, rgba(26, 63, 143, .5), transparent 70%);
  filter: blur(50px);
}
.page-hero > * { position: relative; }
.page-hero .lead { margin-top: 1.4rem; max-width: 52ch; color: var(--muted); }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.3rem, 2.1vw, 1.85rem); margin: 2.2em 0 .7em; letter-spacing: -.032em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 1.8em 0 .6em; }
.prose p, .prose li { color: rgba(255, 255, 255, .8); font-size: .95rem; line-height: 1.68; }
.prose ul { margin: 0 0 1.4em; }
.prose ul li { position: relative; padding-left: 1.3em; margin-bottom: .5em; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; background: var(--green); }
.prose a { color: var(--green); border-bottom: 1px solid rgba(163, 250, 142, .4); }
.prose a:hover { border-bottom-color: var(--green); }
.prose ol { margin: 0 0 1.4em; padding-left: 1.3em; }
.prose ol li { margin-bottom: .5em; }

.checks li { position: relative; padding-left: 1.5em; margin-bottom: .6em; color: rgba(255, 255, 255, .84); font-size: .92rem; }
.checks li::before {
  content: ''; position: absolute; left: 0; top: .34em; width: 10px; height: 10px;
  background: var(--green);
}

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); border-top: 1px solid var(--line); }
.card {
  padding: 26px var(--gut) 34px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s ease;
}
a.card:hover { background: var(--bg-3); }
.card h3 { font-size: clamp(1.15rem, 1.9vw, 1.6rem); letter-spacing: -.032em; }
.card p { color: var(--muted); font-size: .88rem; }
.card .more { margin-top: auto; padding-top: 18px; font-size: .82rem; color: var(--green); }
.card .idx { font-size: .78rem; color: var(--faint); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); border-top: 1px solid var(--line); }
.steps > div { padding: 22px var(--gut) 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps b { display: block; font-size: 1.4rem; font-weight: 500; letter-spacing: -.04em; color: var(--green); }
.steps h3 { margin: .9em 0 .5em; font-size: 1.08rem; letter-spacing: -.03em; }
.steps p { color: var(--muted); font-size: .85rem; }

.table-scroll { overflow-x: auto; }
.spec, .hours { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec th, .spec td, .hours th, .hours td {
  text-align: left; padding: 12px 14px 12px 0;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.spec th, .hours th { font-weight: 500; color: var(--faint); white-space: nowrap; padding-right: 26px; }
.spec td, .hours td { color: rgba(255, 255, 255, .9); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { display: grid; grid-template-columns: var(--rail) 1fr; border-bottom: 1px solid var(--line); }
.faq-item > * { padding: 22px var(--gut) 30px; }
.faq-item > * + * { border-left: 1px solid var(--line); }
.faq-item h2, .faq-item h3 { font-size: clamp(1.05rem, 1.7vw, 1.4rem); letter-spacing: -.03em; }
.faq-item p { color: rgba(255, 255, 255, .78); font-size: .9rem; line-height: 1.62; }

/* enquiry form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .8rem; color: var(--muted); }
.field .hint { color: var(--faint); }
.field input, .field select, .field textarea {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line); border-radius: 0;
  color: var(--ink); font: inherit; font-size: .94rem;
  padding: 13px 14px;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: rgba(255, 255, 255, .08);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 19px) 21px, calc(100% - 13px) 21px; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--bg); color: var(--ink); }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.check input { margin-top: 3px; accent-color: var(--green); width: 16px; height: 16px; }

.errors { border: 1px solid rgba(255, 120, 120, .5); background: rgba(255, 60, 60, .08); padding: 16px 18px; margin-bottom: 22px; }
.errors ul li { font-size: .88rem; color: #ffb3b3; padding-left: 1.1em; position: relative; }
.errors ul li::before { content: '—'; position: absolute; left: 0; }

.contact-block h3 { font-size: 1rem; margin-bottom: .8em; letter-spacing: -.02em; }
.contact-block { margin-bottom: 26px; }
.contact-block p { font-size: .9rem; color: rgba(255, 255, 255, .82); }
.contact-block a { color: var(--green); }

address { font-style: normal; }

/* ------------------------------------------------------------ exclusive deals */
/* One section, two shapes: a featured deal panel over a grid of the rest, or
   the grid on its own for pages that already carry a lot of furniture. */

.offers-head { display: grid; grid-template-columns: var(--rail) 1fr; }
.offers-head > * + * { border-left: 1px solid var(--line); }

.offer-tag {
  margin: 0 0 1em;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green);
}
.offer-text { color: rgba(255, 255, 255, .8); font-size: .9rem; max-width: 42ch; }
.offer-terms { color: var(--faint); font-size: .76rem; line-height: 1.55; max-width: 44ch; }
.offer-terms a { color: var(--green); }

/* the code a visitor quotes with their enquiry */
.offer-chip {
  display: inline-block; vertical-align: middle;
  padding: 4px 10px; background: var(--green); color: var(--green-ink);
  font-size: .74rem; font-weight: 700; letter-spacing: .08em;
}

.offer-feature {
  display: grid; grid-template-columns: 1.35fr 1fr;
  border-top: 1px solid var(--line);
  background: linear-gradient(100deg, #0b2a96 0%, #061027 52%, #030603 100%);
}
.offer-feature-copy { padding: clamp(26px, 3.4vw, 46px) var(--gut); display: flex; flex-direction: column; gap: 18px; }
.offer-feature-copy h3 { max-width: 18ch; }
.offer-feature-copy .checks { margin-top: 2px; }
.offer-feature-copy .big-link { margin-top: auto; }
.offer-feature-side {
  border-left: 1px solid var(--line);
  padding: clamp(26px, 3.4vw, 46px) var(--gut);
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
}
.offer-code { border-left: 2px solid var(--green); padding-left: 14px; }
.offer-code small { display: block; font-size: .74rem; color: var(--faint); }
.offer-code b {
  display: block; margin-top: .35em;
  font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 500;
  letter-spacing: .02em; color: var(--green);
}

.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border-top: 1px solid var(--line); }
.offer-card {
  padding: 24px var(--gut) 28px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s ease;
}
.offer-card:hover { background: var(--bg-3); }
.offer-card h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); letter-spacing: -.032em; }
.offer-points { margin-top: 2px; }
.offer-points li {
  position: relative; padding-left: 1.3em; margin-bottom: .5em;
  font-size: .84rem; color: rgba(255, 255, 255, .76);
}
.offer-points li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 8px; height: 2px; background: var(--green);
}
.offer-card-foot {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.offer-claim { font-size: .84rem; font-weight: 600; color: var(--green); }
.offer-claim:hover { opacity: .72; }

.offers-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px var(--gut) 26px;
}
.offers-foot p { max-width: 62ch; }

/* the claimed deal, restated on the enquiry form and the thank-you page */
.claim {
  border: 1px solid rgba(163, 250, 142, .45);
  background: rgba(163, 250, 142, .07);
  padding: 18px 20px; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.claim-tag {
  margin: 0; font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green);
}
.claim h3 { font-size: 1.15rem; letter-spacing: -.028em; }
.claim p { margin: 0; color: rgba(255, 255, 255, .82); }
.claim .offer-terms { max-width: none; }

/* ------------------------------------------------------ newsletter register */

.field-legend { font-size: .8rem; color: var(--muted); }
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px 20px; margin-top: 4px; }
.check-grid .check { align-items: center; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  :root { --rail: 32%; }
  .results { grid-template-columns: 1fr 1fr; }
  .results-head { grid-column: 1 / -1; }
  .connect-head { grid-template-columns: 1fr 1fr; }
  .connect-head > *:last-child { grid-column: 1 / -1; padding-top: 0; }
  .applic { grid-template-columns: var(--rail) 1fr; }
  .applic-media { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
  .ftr-top { grid-template-columns: 1fr 1fr 1fr; }
  .ftr-act { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --hdr: 52px; }
  .hdr-nav {
    position: fixed; top: var(--hdr); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .hdr-nav.open { max-height: 70vh; }
  .hdr-nav a { padding: 15px var(--gut); border-top: 1px solid var(--line); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .hdr-alt, .hdr-word { display: none; }

  .duo, .cta-split, .prod-b, .prod-c, .form-grid, .offer-feature { grid-template-columns: 1fr; }
  .offer-feature > * + * { border-left: 0; border-top: 1px solid var(--line); }
  .duo > * + *, .prod-b > * + *, .prod-c > * + * { border-left: 0; border-top: 1px solid var(--line); }
  .rail-grid, .voices-head, .voice, .stack-head, .stack-note, .assur, .faq-item, .offers-head { grid-template-columns: 1fr; }
  .rail-grid > * + *, .voices-head > * + *, .stack-head > * + *, .stack-note > * + *, .faq-item > * + *, .offers-head > * + * {
    border-left: 0; border-top: 1px solid var(--line);
  }
  .voice-body { border-left: 0; border-top: 1px solid var(--line); }
  .prod-a-head { grid-template-columns: 1fr auto; }
  .prod-a-head > .pad + .pad { border-left: 0; }
  .prod-a-inner { grid-template-columns: 1fr; }
  .assur-body { border-left: 0; border-top: 1px solid var(--line); }
  .ftr-top, .ftr-mid { grid-template-columns: 1fr; }
  .stack-row .pre { display: none !important; }
  .connect-head { grid-template-columns: 1fr; }
  .connect-head > * { padding-bottom: 26px; }
  .voice-nav { position: static; justify-content: flex-end; margin-top: 10px; }
  .voice-nav button { border: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .results { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .inline-form, .ftr-form { gap: 16px; }
  .inline-form input[type="email"], .ftr-form input { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------ shared page furniture */

.wrap { width: 100%; margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(36px, 5.5vw, 80px) 0; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(26px, 4vw, 48px); }
.section-head h1, .section-head h2 { font-size: clamp(1.8rem, 3.6vw, 3.1rem); letter-spacing: -.036em; }
.section-head p { margin-top: 1.1em; color: var(--muted); font-size: .95rem; }

.crumbs { padding: 15px var(--gut); font-size: .78rem; color: var(--faint); border-bottom: 1px solid var(--line); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--green); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.alert { border: 1px solid var(--line); padding: 16px 18px; margin-bottom: 26px; font-size: .9rem; }
.alert-ok { border-color: rgba(163, 250, 142, .5); background: rgba(163, 250, 142, .08); color: var(--green); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 40px); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(20px, 3vw, 40px); }

/* --------------------------------------------------------------- utilities */
/* The site's CSP blocks inline style attributes, so one-off spacing and width
   tweaks live here as classes instead. */

.mt-xs { margin-top: .6em; }
.mt-sm { margin-top: 15px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 26px; }
.mb-0  { margin-bottom: 0; }
.mb-xs { margin-bottom: .6em; }
.mb-sm { margin-bottom: .9em; }
.mb-md { margin-bottom: 1.4em; }
.mb-lg { margin-bottom: 22px; }
.my-note { margin: 1.4em 0 2em; }

.narrow-32 { max-width: 32ch; }
.narrow-40 { max-width: 40ch; }
.narrow-46 { max-width: 46ch; }
.narrow-52 { max-width: 52ch; }
.narrow-54 { max-width: 54ch; }
.narrow-60 { max-width: 60ch; }

.link-accent { color: var(--green); }
.link-accent:hover { opacity: .75; }
.on-light-muted { color: var(--light-muted); }
.addr-lg { font-size: 1.15rem; }

.big-link--sm { font-size: 1.05rem; border-bottom-width: 1px; }
.big-link--md { font-size: clamp(1.05rem, 1.7vw, 1.4rem); }

.idx { font-size: .78rem; color: var(--faint); }

/* --------------------------------------------------- narrow-viewport guards */
/* Grid and flex children default to min-width:auto, which lets long words and
   wide tables push the page past the viewport on a phone. */

.duo-cell, .pad, .voice-body, .prod-b-right, .prod-c-right, .prod-c-left,
.prod-a-copy, .cta-half, .connect-head > *, .assur-body, .results-head,
.ftr-top > *, .ftr-mid > *, .stat, .card, .steps > div,
.offer-card, .offer-feature-copy, .offer-feature-side { min-width: 0; }

.big-link, .inline-form button, .ftr-form button { max-width: 100%; overflow-wrap: anywhere; }
.hero h1, .cta-hero h2, .page-hero h1, .display-lg, .display-md { overflow-wrap: break-word; }

@media (max-width: 520px) {
  .brand { margin-right: 12px; font-size: 1.05rem; }
  .hdr-cta { padding: 0 14px; font-size: .84rem; }
  .nav-toggle { width: 46px; }
  .prod-a-inner { padding: 20px 16px; }
  .voice-stats { gap: 20px; }
}
