/* ServiceAlly — design system
   Warm off-white ground, deep navy ink, one restrained clay accent.
   Hairlines and space do the work; shadows are almost absent. */

@import url("https://api.fontshare.com/v2/css?f[]=switzer@500,600,700&f[]=satoshi@400,500,700&display=swap");

:root {
  --bg: #FBFAF7;
  --surface: #FFFFFF;
  --sand: #F4F1EA;
  --sand-deep: #EDE8DE;

  --ink: #0F1A28;
  --ink-2: #26364A;
  --muted: #5C6A79;
  --faint: #8C96A2;

  --line: #E4DFD5;
  --line-2: #D3CCBF;

  --navy: #101F33;
  --navy-2: #182C45;
  --on-navy: #C9D2DC;
  --on-navy-faint: #8494A6;

  --accent: #BE5320;
  --accent-ink: #98411A;
  --accent-soft: #FBF0E8;
  --accent-line: #EBD3C2;
  --accent-on-navy: #E8873F;

  --cool: #6E7C8D;
  --cool-soft: #F1F2F3;
  --cool-line: #DFE2E5;
  --ok: #2E6B45;

  --font-display: "Switzer", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Satoshi", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s5: 24px;  --s6: 32px;  --s7: 40px;  --s8: 48px;
  --s9: 64px;  --s10: 80px; --s11: 104px; --s12: 136px;

  --wrap: 1160px;
  --narrow: 760px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::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(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.021em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.4vw, 3.9rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.7rem); letter-spacing: -0.026em; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); letter-spacing: -0.016em; }

p { margin: 0; text-wrap: pretty; }

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--s5); }
.narrow { max-width: var(--narrow); }

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

/* ---------- shared bits ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s4);
}
.eyebrow--cool { color: var(--muted); }
.eyebrow--on-navy { color: var(--accent-on-navy); }

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 62ch;
}

.sect { padding-block: clamp(var(--s10), 9vw, var(--s12)); }
.sect--tight { padding-block: clamp(var(--s9), 7vw, var(--s11)); }
.sect--sand { background: var(--sand); }
.sect--line { border-top: 1px solid var(--line); }
.sect--navy { background: var(--navy); color: var(--on-navy); }
.sect--navy h2, .sect--navy h3 { color: #fff; }

.sect__head { max-width: 40ch; margin-bottom: clamp(var(--s7), 5vw, var(--s9)); }
.sect__head--center { max-width: 46ch; margin-inline: auto; text-align: center; }
.sect__head p { margin-top: var(--s4); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  padding: 15px 26px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease);
  line-height: 1.15;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-ink); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); }

.btn--on-navy { background: #fff; color: var(--navy); }
.btn--on-navy:hover { background: var(--on-navy); color: var(--navy); }
.btn--ghost-navy { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost-navy:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); color: #fff; }

.btn--sm { padding: 11px 18px; font-size: .9375rem; }
.btn--lg { padding: 17px 32px; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.btn__ico { width: 17px; height: 17px; flex: none; }

.ctas { display: flex; flex-wrap: wrap; gap: var(--s3); }

.microtrust {
  margin-top: var(--s5);
  font-size: .9375rem;
  color: var(--muted);
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px;
}
.microtrust span { display: inline-flex; align-items: center; gap: 7px; }
.microtrust svg { width: 15px; height: 15px; color: var(--ok); flex: none; }
.sect--navy .microtrust { color: var(--on-navy-faint); }
.sect--navy .microtrust svg { color: var(--accent-on-navy); }

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

.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 250, 247, .88);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.hdr--stuck { border-bottom-color: var(--line); background: rgba(251, 250, 247, .95); }

.hdr__in {
  display: flex; align-items: center; gap: var(--s6);
  min-height: 74px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none; flex: none;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -.01em; font-size: 1.1875rem;
}
.brand__mark { width: 29px; height: 29px; color: var(--accent); flex: none; }
.brand b { font-weight: 700; }
.brand i { font-style: normal; font-weight: 500; color: var(--ink-2); }

.nav { display: flex; align-items: center; gap: var(--s6); margin-left: auto; }
.nav__links { display: flex; align-items: center; gap: var(--s6); list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: var(--ink-2); text-decoration: none; font-size: .96875rem; font-weight: 500;
  padding: 6px 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__acts { display: flex; align-items: center; gap: var(--s3); }

.burger {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  width: 44px; height: 44px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.burger svg { width: 21px; height: 21px; }

@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__acts .btn--ghost { display: none; }
}
@media (max-width: 720px) {
  .hdr__in { min-height: 64px; gap: var(--s4); }
  .burger { display: inline-flex; }
  .nav { display: none; }
  .brand { font-size: 1.0625rem; }
  .brand__mark { width: 26px; height: 26px; }
}

/* mobile drawer */
.mnav {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  display: none; flex-direction: column;
  padding: var(--s5);
  overflow-y: auto;
}
.mnav[data-open="true"] { display: flex; }
.mnav__top { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.mnav__close {
  background: none; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
.mnav__close svg { width: 21px; height: 21px; }
.mnav__links { list-style: none; margin: var(--s7) 0 0; padding: 0; display: grid; gap: 2px; }
.mnav__links a {
  display: block; padding: var(--s4) 0; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mnav__acts { margin-top: auto; padding-top: var(--s7); display: grid; gap: var(--s3); }

/* sticky mobile CTA */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  display: none; gap: var(--s2);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,250,247,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mcta .btn { flex: 1; }
@media (max-width: 720px) {
  .mcta { display: flex; }
  body { padding-bottom: 76px; }
}

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

.hero { padding-top: clamp(var(--s8), 6vw, var(--s10)); padding-bottom: clamp(var(--s9), 8vw, var(--s11)); }
.hero__grid {
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: clamp(var(--s7), 5vw, var(--s10)); align-items: center;
}
.hero h1 { margin-bottom: var(--s5); }
.hero__sub { font-size: clamp(1.0625rem, 1.55vw, 1.22rem); color: var(--muted); line-height: 1.55; max-width: 34ch; }
.hero__re {
  margin-top: var(--s5); padding-left: var(--s4);
  border-left: 2px solid var(--accent);
  font-size: 1.0625rem; color: var(--ink-2); font-weight: 500; max-width: 38ch;
}
.hero .ctas { margin-top: clamp(var(--s6), 4vw, var(--s7)); }

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s8); }
  .hero__sub, .hero__re { max-width: 46ch; }
}

/* hero visual: call flow */
.flowcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(var(--s5), 3vw, var(--s6));
  display: grid; gap: var(--s4);
  box-shadow: 0 1px 2px rgba(15,26,40,.03), 0 14px 40px -22px rgba(15,26,40,.16);
}

.fc__row { display: flex; align-items: flex-start; gap: var(--s4); }
.fc__ico {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-2); background: var(--sand); color: var(--ink-2);
}
.fc__ico svg { width: 18px; height: 18px; }
.fc__ico--live { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent); }
.fc__k { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.fc__v { font-weight: 600; font-size: 1.03rem; color: var(--ink); margin-top: 1px; }
.fc__note { font-size: .9375rem; color: var(--muted); margin-top: 3px; }

.fc__rule { height: 1px; background: var(--line); margin-block: var(--s1); }

.fc__live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8125rem; font-weight: 700; color: var(--accent);
  letter-spacing: .04em; text-transform: uppercase;
}
.fc__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.82); } }
@media (prefers-reduced-motion: reduce) { .fc__dot { animation: none; } }

/* summary card (reused in proof section) */
.summary {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}
.summary--inset { background: var(--sand); }
.summary__hd {
  padding: var(--s4) var(--s5);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
}
.summary--inset .summary__hd { background: var(--sand-deep); }
.summary__t {
  font-size: .71rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-2);
}
.summary__time { font-size: .8125rem; color: var(--faint); white-space: nowrap; }
.summary__bd { padding: var(--s5); display: grid; gap: var(--s4); }
.srow { display: grid; grid-template-columns: 116px 1fr; gap: var(--s4); align-items: baseline; }
.srow dt { font-size: .8125rem; color: var(--faint); font-weight: 500; }
.srow dd { margin: 0; font-weight: 500; color: var(--ink); font-size: 1rem; }
.summary dl { margin: 0; display: grid; gap: var(--s3); }
.summary__ft {
  padding: var(--s4) var(--s5); border-top: 1px solid var(--line);
  display: flex; gap: var(--s3); flex-wrap: wrap;
}
.urgent {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); color: var(--accent-ink);
  border: 1px solid var(--accent-line);
  font-size: .8125rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.urgent svg { width: 13px; height: 13px; }

@media (max-width: 520px) {
  .srow { grid-template-columns: 1fr; gap: 2px; }
  .summary__bd { padding: var(--s4); }
  .summary__hd, .summary__ft { padding-inline: var(--s4); }
}

/* ---------- voicemail comparison ---------- */

.vs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s4), 2.5vw, var(--s6)); }
@media (max-width: 860px) { .vs { grid-template-columns: 1fr; } }

.vs__col {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(var(--s5), 3vw, var(--s7));
  background: var(--surface);
  display: flex; flex-direction: column;
}
.vs__col--old { background: var(--cool-soft); border-color: var(--cool-line); }
.vs__col--new { border-color: var(--accent-line); box-shadow: inset 3px 0 0 var(--accent); }

.vs__label {
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px; margin-bottom: var(--s5);
}
.vs__col--old .vs__label { color: var(--cool); }
.vs__col--new .vs__label { color: var(--accent-ink); }
.vs__label svg { width: 20px; height: 20px; flex: none; }

.vs__quote {
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.9vw, 1.42rem);
  font-weight: 500; line-height: 1.32; letter-spacing: -.017em;
  padding-bottom: var(--s5); margin-bottom: var(--s5);
  border-bottom: 1px solid var(--line);
}
.vs__col--old .vs__quote { color: var(--cool); border-bottom-color: var(--cool-line); }
.vs__col--new .vs__quote { color: var(--ink); border-bottom-color: var(--accent-line); }

.vlist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s4); }
.vlist li { display: flex; gap: var(--s3); align-items: flex-start; font-size: 1rem; line-height: 1.48; }
.vlist svg { width: 17px; height: 17px; flex: none; margin-top: 4px; }
.vs__col--old .vlist { color: var(--muted); }
.vs__col--old .vlist svg { color: var(--cool); }
.vs__col--new .vlist { color: var(--ink-2); }
.vs__col--new .vlist svg { color: var(--accent); }

.vs__end { margin-top: clamp(var(--s7), 5vw, var(--s8)); text-align: center; }
.vs__end p { color: var(--muted); max-width: 58ch; margin-inline: auto; }
.vs__punch {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.32rem, 2.6vw, 1.85rem); letter-spacing: -.023em;
  color: var(--ink); margin-bottom: var(--s4) !important; max-width: 30ch;
}

/* ---------- generic card grids ---------- */

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(var(--s4), 2.5vw, var(--s6)); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s5), 3vw, var(--s7)); }
@media (max-width: 900px) { .grid3 { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .grid2 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: clamp(var(--s5), 3vw, var(--s6));
}
.card__ico {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: grid; place-items: center; margin-bottom: var(--s5);
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line);
}
.card__ico svg { width: 19px; height: 19px; }
.card h3 { margin-bottom: var(--s3); }
.card p { color: var(--muted); font-size: 1rem; }

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: var(--s7) var(--s6) 0 0; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: 0; padding-right: 0; }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 46px; height: 2px; background: var(--accent);
}
.step__n {
  font-family: var(--font-display); font-size: .8125rem; font-weight: 700;
  letter-spacing: .1em; color: var(--accent); margin-bottom: var(--s4);
}
.step h3 { margin-bottom: var(--s3); font-size: clamp(1.18rem, 1.8vw, 1.42rem); }
.step p { color: var(--muted); font-size: 1rem; max-width: 34ch; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); padding: var(--s6) 0; }
  .step:last-child { border-bottom: 0; padding-bottom: 0; }
  .step p { max-width: none; }
}

.reinforce {
  margin-top: clamp(var(--s7), 5vw, var(--s8));
  padding: var(--s5) var(--s6);
  background: var(--sand); border-radius: var(--r-lg);
  border-left: 3px solid var(--accent);
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 500; color: var(--ink); letter-spacing: -.014em; line-height: 1.4;
}
.sect--sand .reinforce { background: var(--surface); }

/* ---------- two-list (handles / controls) ---------- */

.tl { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.tl__hd { padding: var(--s5) var(--s6); border-bottom: 1px solid var(--line); background: var(--sand); }
.tl__hd h3 { font-size: 1.14rem; }
.tl__hd p { font-size: .9375rem; color: var(--muted); margin-top: 4px; }
.tl ul { list-style: none; margin: 0; padding: var(--s5) var(--s6) var(--s6); display: grid; gap: var(--s3); }
.tl li { display: flex; gap: var(--s3); align-items: flex-start; font-size: 1rem; color: var(--ink-2); line-height: 1.45; }
.tl li svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--accent); }
.tl--yours li svg { color: var(--cool); }
.tl--yours .tl__hd { background: var(--cool-soft); }

/* ---------- pricing ---------- */

.price {
  max-width: 660px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,26,40,.03), 0 26px 60px -34px rgba(15,26,40,.2);
}
.price__top {
  padding: clamp(var(--s6), 4vw, var(--s8)) clamp(var(--s5), 4vw, var(--s8)) clamp(var(--s6), 3vw, var(--s7));
  text-align: center; border-bottom: 1px solid var(--line);
}
.price__plan {
  font-size: .73rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--faint); margin-bottom: var(--s4);
}
.price__free {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .8125rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: var(--s5);
}
.price__fig {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 8vw, 4.2rem); letter-spacing: -.04em; line-height: 1;
  color: var(--ink); display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.price__fig sup { font-size: .4em; font-weight: 600; top: -.62em; position: relative; letter-spacing: 0; }
.price__per { font-family: var(--font-body); font-size: .26em; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price__plus { margin-top: var(--s4); font-size: 1.14rem; font-weight: 600; color: var(--ink-2); }
.price__cap {
  margin-top: var(--s5); display: inline-flex; align-items: center; gap: 8px;
  background: var(--sand); border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 16px; font-size: .9375rem; font-weight: 600; color: var(--ink);
}
.price__cap svg { width: 16px; height: 16px; color: var(--ok); }
.price__sub { margin-top: var(--s4); font-size: .9375rem; color: var(--muted); }

.price__body { padding: clamp(var(--s6), 4vw, var(--s7)) clamp(var(--s5), 4vw, var(--s8)); }
.price__lbl {
  font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: var(--s4);
}
.incl { list-style: none; margin: 0 0 var(--s7); padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s5); }
.incl li { display: flex; gap: 10px; align-items: flex-start; font-size: .96875rem; color: var(--ink-2); line-height: 1.42; }
.incl svg { width: 15px; height: 15px; color: var(--accent); flex: none; margin-top: 4px; }
@media (max-width: 620px) { .incl { grid-template-columns: 1fr; } }

.never { background: var(--sand); border-radius: var(--r); padding: var(--s5); }
.never__row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s3); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px; padding: 5px 12px; font-size: .875rem; color: var(--muted); font-weight: 500;
}
.chip svg { width: 12px; height: 12px; color: var(--cool); }

.price__ft { padding: 0 clamp(var(--s5), 4vw, var(--s8)) clamp(var(--s6), 4vw, var(--s7)); }
.price__ft .btn { width: 100%; }
.price__ft .microtrust { justify-content: center; text-align: center; }

.pnote {
  max-width: 660px; margin: var(--s6) auto 0;
  font-size: .9375rem; color: var(--muted); text-align: center; line-height: 1.55;
}

/* ---------- compare table ---------- */

.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.cmp__col { padding: clamp(var(--s5), 3vw, var(--s7)); background: var(--cool-soft); }
.cmp__col + .cmp__col { background: var(--surface); border-left: 1px solid var(--line); }
.cmp__t { font-family: var(--font-display); font-size: 1.14rem; font-weight: 700; margin-bottom: var(--s5); color: var(--cool); }
.cmp__col + .cmp__col .cmp__t { color: var(--accent-ink); display: flex; align-items: center; gap: 9px; }
.cmp__col + .cmp__col .cmp__t svg { width: 19px; height: 19px; }
.cmp ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s4); }
.cmp li { display: flex; gap: var(--s3); align-items: flex-start; font-size: 1rem; line-height: 1.45; color: var(--muted); }
.cmp li svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--cool); }
.cmp__col + .cmp__col li { color: var(--ink-2); }
.cmp__col + .cmp__col li svg { color: var(--accent); }
@media (max-width: 800px) {
  .cmp { grid-template-columns: 1fr; }
  .cmp__col + .cmp__col { border-left: 0; border-top: 1px solid var(--line); }
}

.closer {
  margin-top: clamp(var(--s7), 5vw, var(--s8)); text-align: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.72rem); letter-spacing: -.022em; line-height: 1.32;
  max-width: 34ch; margin-inline: auto; color: var(--ink);
}
.sect--navy .closer { color: #fff; }

/* ---------- trades ---------- */

.trades { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(var(--s4), 2vw, var(--s5)); }
@media (max-width: 900px) { .trades { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trades { grid-template-columns: 1fr; } }

.trade {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: var(--s6) var(--s5);
  transition: border-color .18s var(--ease), transform .18s var(--ease);
}
.trade:hover { border-color: var(--line-2); transform: translateY(-2px); }
.trade svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: var(--s4); }
.trade h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.trade p { font-size: .9375rem; color: var(--muted); line-height: 1.45; }

.also {
  margin-top: var(--s7); text-align: center; font-size: .96875rem;
  color: var(--muted); max-width: 66ch; margin-inline: auto;
}

/* ---------- demo ---------- */

.demo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s6), 4vw, var(--s9)); align-items: start; }
@media (max-width: 900px) { .demo { grid-template-columns: 1fr; } }

.tabs { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s5); }
.tab {
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600;
  padding: 9px 16px; border-radius: 100px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-2);
  transition: all .16s var(--ease);
}
.tab:hover { border-color: var(--line-2); }
.tab[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.player {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: var(--s5);
}
.player__hd { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s4); }
.player__who { font-weight: 600; font-size: 1.0625rem; }
.player__kind { font-size: .8125rem; color: var(--faint); margin-top: 2px; }

.scenarios { display: flex; gap: var(--s2); margin-bottom: var(--s5); }
.scen {
  flex: 1; font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  padding: 9px 12px; border-radius: var(--r-sm); cursor: pointer;
  background: var(--sand); border: 1px solid var(--line); color: var(--muted);
  transition: all .16s var(--ease);
}
.scen[aria-selected="true"] { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent-ink); }

.playbar { display: flex; align-items: center; gap: var(--s4); }
.playbtn {
  width: 52px; height: 52px; border-radius: 50%; flex: none; cursor: pointer;
  background: var(--accent); border: 0; color: #fff; display: grid; place-items: center;
  transition: background-color .16s var(--ease);
}
.playbtn:hover { background: var(--accent-ink); }
.playbtn svg { width: 20px; height: 20px; margin-left: 2px; }
.playbtn[data-playing="true"] svg { margin-left: 0; }

.track { flex: 1; }
.track__bar { height: 5px; border-radius: 100px; background: var(--sand-deep); overflow: hidden; }
.track__fill { height: 100%; width: 0; background: var(--accent); border-radius: 100px; transition: width .1s linear; }
.track__meta { display: flex; justify-content: space-between; font-size: .8125rem; color: var(--faint); margin-top: 7px; font-variant-numeric: tabular-nums; }

.transcript {
  margin-top: var(--s5); padding-top: var(--s5); border-top: 1px solid var(--line);
  display: grid; gap: var(--s4); max-height: 290px; overflow-y: auto;
}
.tline { display: grid; grid-template-columns: 78px 1fr; gap: var(--s4); font-size: .96875rem; line-height: 1.5; }
.tline dt { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); padding-top: 3px; }
.tline--sa dt { color: var(--accent); }
.tline dd { margin: 0; color: var(--ink-2); }
@media (max-width: 480px) { .tline { grid-template-columns: 1fr; gap: 2px; } }

.demo__note { margin-top: var(--s5); font-size: .9375rem; color: var(--muted); }

/* ---------- rules / control ---------- */

.rules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.rule { padding: var(--s6) var(--s6) var(--s6) 0; border-bottom: 1px solid var(--line); }
.rule:nth-child(odd) { border-right: 1px solid var(--line); }
.rule:nth-child(even) { padding-left: var(--s6); }
.rule:nth-last-child(-n+2) { border-bottom: 0; }
.rule h3 { font-size: 1.0625rem; margin-bottom: var(--s2); display: flex; align-items: center; gap: 10px; }
.rule h3 svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.rule p { color: var(--muted); font-size: .96875rem; }
@media (max-width: 760px) {
  .rules { grid-template-columns: 1fr; }
  .rule, .rule:nth-child(odd) { border-right: 0; padding: var(--s5) 0; }
  .rule:nth-child(even) { padding-left: 0; }
  .rule:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .rule:last-child { border-bottom: 0; }
}

/* ---------- flow diagram ---------- */

.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); margin-top: var(--s7); }
.fstep {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--s5); position: relative;
}
.sect--sand .fstep { background: var(--surface); }
.fstep__n {
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sand); border: 1px solid var(--line-2); color: var(--ink-2);
  font-size: .75rem; font-weight: 700; margin-bottom: var(--s4);
}
.fstep--live { border-color: var(--accent-line); background: var(--accent-soft); }
.fstep--live .fstep__n { background: var(--accent); border-color: var(--accent); color: #fff; }
.fstep p { font-size: .96875rem; color: var(--ink-2); font-weight: 500; line-height: 1.42; }
.fstep__arrow {
  position: absolute; right: calc(var(--s4) * -1); top: 50%; transform: translate(50%, -50%);
  width: 15px; height: 15px; color: var(--line-2); z-index: 2;
}
.fstep:last-child .fstep__arrow { display: none; }
@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; }
  .fstep__arrow { right: 50%; top: auto; bottom: calc(var(--s4) * -1); transform: translate(50%, 50%) rotate(90deg); }
}

/* ---------- scenario story ---------- */

.story { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(var(--s7), 5vw, var(--s9)); align-items: center; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.story__body { display: grid; gap: var(--s5); }
.story__body p { color: var(--on-navy); font-size: 1.0625rem; line-height: 1.6; }
.story__body p strong { color: #fff; font-weight: 600; }
.story__end {
  padding-top: var(--s5); border-top: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-display); font-size: clamp(1.14rem, 2vw, 1.42rem);
  font-weight: 500; color: #fff !important; letter-spacing: -.018em; line-height: 1.38;
}

/* dark summary variant */
.summary--dark { background: var(--navy-2); border-color: rgba(255,255,255,.14); }
.summary--dark .summary__hd { background: rgba(255,255,255,.05); border-bottom-color: rgba(255,255,255,.12); }
.summary--dark .summary__t { color: var(--on-navy); }
.summary--dark .summary__time { color: var(--on-navy-faint); }
.summary--dark .srow dt { color: var(--on-navy-faint); }
.summary--dark .srow dd { color: #fff; }
.summary--dark .summary__ft { border-top-color: rgba(255,255,255,.12); }
.summary--dark .urgent { background: rgba(232,135,63,.14); color: var(--accent-on-navy); border-color: rgba(232,135,63,.3); }

/* ---------- fit filter ---------- */

.fit { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(var(--s5), 3vw, var(--s7)); align-items: start; }
@media (max-width: 820px) { .fit { grid-template-columns: 1fr; } }
.fit__good { background: var(--surface); border: 1px solid var(--accent-line); border-radius: var(--r-lg); padding: clamp(var(--s5), 3vw, var(--s6)); }
.fit__bad { background: transparent; border: 1px dashed var(--line-2); border-radius: var(--r-lg); padding: clamp(var(--s5), 3vw, var(--s6)); }
.fit h3 { font-size: 1.0625rem; margin-bottom: var(--s4); }
.fit__bad h3 { color: var(--muted); }
.fit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s3); }
.fit li { display: flex; gap: var(--s3); align-items: flex-start; font-size: .96875rem; line-height: 1.45; }
.fit__good li { color: var(--ink-2); }
.fit__good li svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 4px; }
.fit__bad li { color: var(--muted); }
.fit__bad li svg { width: 16px; height: 16px; color: var(--faint); flex: none; margin-top: 4px; }
.fit__lead { font-size: 1.0625rem; color: var(--ink-2); margin-bottom: var(--s5); font-weight: 500; }

/* ---------- faq ---------- */

.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s5);
  padding: var(--s5) 0; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.03rem, 1.5vw, 1.14rem); font-weight: 600;
  color: var(--ink); letter-spacing: -.012em; line-height: 1.38;
}
.qa__q:hover { color: var(--accent-ink); }
.qa__ico {
  width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px;
  transition: transform .22s var(--ease);
}
.qa[data-open="true"] .qa__ico { transform: rotate(45deg); }
.qa__a { display: none; padding: 0 clamp(var(--s6), 6vw, 56px) var(--s6) 0; }
.qa[data-open="true"] .qa__a { display: block; }
.qa__a p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.qa__a p + p { margin-top: var(--s4); }

/* ---------- final cta ---------- */

.final { text-align: center; }
.final h2 { max-width: 26ch; margin-inline: auto; }
.final .lede { margin: var(--s5) auto 0; text-align: center; color: var(--on-navy); }
.final .ctas { justify-content: center; margin-top: clamp(var(--s6), 4vw, var(--s7)); }
.final .microtrust { justify-content: center; }

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

.foot { background: var(--bg); border-top: 1px solid var(--line); padding-block: clamp(var(--s8), 6vw, var(--s10)) var(--s7); }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(var(--s6), 4vw, var(--s8)); }
@media (max-width: 760px) { .foot__top { grid-template-columns: 1fr; gap: var(--s7); } }
.foot__tag { margin-top: var(--s4); color: var(--muted); font-size: 1rem; max-width: 30ch; }
.foot__built { margin-top: var(--s4); color: var(--faint); font-size: .9375rem; max-width: 34ch; }
.foot h4 {
  font-family: var(--font-body); font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: var(--s4);
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s3); }
.foot ul a { color: var(--ink-2); text-decoration: none; font-size: .96875rem; }
.foot ul a:hover { color: var(--accent-ink); text-decoration: underline; }
.foot__bot {
  margin-top: clamp(var(--s7), 5vw, var(--s8)); padding-top: var(--s5); border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: var(--s4) var(--s6); justify-content: space-between;
  font-size: .875rem; color: var(--faint);
}
.foot__bot a { color: var(--faint); }

/* ---------- forms ---------- */

.formwrap { max-width: 720px; margin-inline: auto; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
@media (max-width: 640px) { .fgrid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.field .hint { font-size: .8125rem; color: var(--faint); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  background: var(--surface); width: 100%;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6A79' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 17px; padding-right: 42px; }

.opts { display: grid; gap: var(--s2); }
.opt {
  display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); font-size: .96875rem; color: var(--ink-2);
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.opt:hover { border-color: var(--line-2); }
.opt input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--accent); flex: none; }
.opt:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); color: var(--ink); }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.fnote {
  margin-top: var(--s5); padding: var(--s5); background: var(--sand);
  border-radius: var(--r); border-left: 3px solid var(--accent);
  font-size: .96875rem; color: var(--ink-2); line-height: 1.55;
}

/* ---------- reveal ---------- */

.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

@media print { .hdr, .mcta, .mnav { display: none !important; } }

/* ── legal pages ────────────────────────────────────────────── */
.legal{padding:var(--s10) 0 var(--s12)}
.legal__wrap{max-width:680px;margin:0 auto}
.backlink{display:inline-flex;align-items:center;gap:8px;font-size:.9rem;font-weight:600;color:var(--muted);text-decoration:none;margin-bottom:var(--s6)}
.backlink:hover{color:var(--accent-ink)}
.backlink svg{width:16px;height:16px;transform:rotate(180deg)}
.legal h1{font-family:var(--font-display);font-size:clamp(2.1rem,5vw,3rem);line-height:1.04;letter-spacing:-.025em;color:var(--ink);margin:0 0 12px}
.legal__meta{font-size:.875rem;color:var(--faint);margin:0 0 var(--s7)}
.legal h2{font-family:var(--font-display);font-size:1.22rem;line-height:1.25;letter-spacing:-.012em;color:var(--ink);margin:var(--s8) 0 var(--s3);padding-top:var(--s5);border-top:1px solid var(--line)}
.legal h2:first-of-type{margin-top:var(--s7)}
.legal p,.legal li{font-size:1.0rem;line-height:1.68;color:var(--ink-2)}
.legal p{margin:0 0 var(--s4)}
.legal>.legal__wrap>p:first-of-type{font-size:1.09rem;color:var(--muted)}
.legal ul{margin:0 0 var(--s4);padding:0;list-style:none}
.legal li{position:relative;padding-left:20px;margin-bottom:12px}
.legal li::before{content:"";position:absolute;left:2px;top:.68em;width:5px;height:5px;border-radius:50%;background:var(--line-2)}
.legal a{color:var(--accent-ink);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}
.legal strong,.legal b{color:var(--ink);font-weight:650}
.callout{background:var(--accent-soft);border:1px solid var(--accent-line);border-radius:var(--r-lg);padding:var(--s4) var(--s5);margin:0 0 var(--s5)}
.callout p{margin:0;font-size:.97rem;color:var(--ink-2)}
.callout strong{color:var(--accent-ink)}
.legal__note{margin-top:var(--s8);padding-top:var(--s4);border-top:1px solid var(--line);font-size:.85rem;color:var(--faint)}
.legal__note p{font-size:.85rem;color:var(--faint);margin:0}
@media(max-width:700px){.legal{padding:var(--s8) 0 var(--s10)}.legal p,.legal li{font-size:.97rem}}
