/* ============================================================
   MARGINR v2 — NORTHSTAR × CHARCOAL ICE (light mode)
   Brand handout palette, inverted: charcoal as ink, ice as
   accent on white; the dark palette survives only inside the
   product visual and the closing banner.
   Font: Inter (Suisse Intl stand-in).
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-2: #f6f8fa;
  --ink: #0f1217;
  --ink-2: #46505c;
  --ink-3: #6b7684;
  --line: #e5eaf0;
  --line-2: #d3dce5;
  --ice: #7dbce3;
  --ice-hi: #a8d6f2;
  --ice-deep: #2f7faf;
  --ice-soft: #eaf4fb;
  --ice-softer: #f4fafd;
  --dark: #0f1217;
  --surface: #171c23;
  --elevated: #1f2630;
  --green: #12b76a;
  --red: #f04438;
  --amber: #f79009;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15,18,23,0.05);
  --shadow-md: 0 4px 16px rgba(15,18,23,0.07);
  --shadow-lg: 0 20px 56px rgba(15,18,23,0.13);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.55; }
a { color: var(--ice-deep); text-decoration: none; }
button { font-family: var(--font); }
::selection { background: var(--ice-soft); }
:focus-visible { outline: 2px solid var(--ice-deep); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 900;
  height: 66px; display: flex; align-items: center;
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.wordmark { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); }
.wordmark .m-mark { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.nl { position: relative; color: var(--ink-2); font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav-links a.nl::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
  background: var(--ice); transition: right 0.2s ease;
}
.nav-links a.nl:hover { color: var(--ink); }
.nav-links a.nl:hover::after { right: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  padding: 13px 26px; border-radius: 11px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.2s, transform 0.12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:disabled, .btn[aria-disabled="true"] { cursor: not-allowed; opacity: .55; box-shadow: none; transform: none; }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 1px 2px rgba(15,18,23,0.16); }
.btn-primary:hover { background: var(--elevated); box-shadow: 0 8px 22px rgba(15,18,23,0.22); }
.btn-ice { background: var(--ice); color: var(--ink); }
.btn-ice:hover { background: var(--ice-hi); box-shadow: 0 8px 22px rgba(125,188,227,0.4); }
.btn-outline { background: #fff; color: var(--ink-2); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--ice); color: var(--ice-deep); }
.btn-lg { font-size: 16px; padding: 16px 34px; border-radius: 13px; }
.btn-sm { font-size: 13.5px; padding: 9px 18px; border-radius: 9px; }
.link-arrow { font-size: 15px; font-weight: 600; color: var(--ice-deep); transition: color 0.15s; }
.link-arrow::after { content: " →"; transition: margin 0.15s; display: inline-block; }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover::after { margin-left: 3px; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ice-deep);
  background: var(--ice-soft); border: 1px solid rgba(125,188,227,0.35);
  padding: 7px 15px; border-radius: 999px;
}
.eyebrow.plain { background: transparent; border: none; padding: 0; }
.eyebrow .e-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ice); }
.h-hero { font-size: clamp(40px, 5.6vw, 62px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; }
.h-section { font-size: clamp(28px, 3.8vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.grad { background: linear-gradient(94deg, var(--ice-deep) 10%, var(--ice) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: 17px; color: var(--ink-2); line-height: 1.65; }
.lede-short { display: none; }
.section { padding: 100px 0; }
.section-tint { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 700px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .h-section { margin: 18px 0 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 96px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -320px; left: -120px;
  width: 820px; height: 640px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(125,188,227,0.16), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 64px; align-items: center; position: relative; }
.hero .h-hero { margin: 24px 0 22px; }
.hero .lede { max-width: 540px; margin-bottom: 34px; }
.hero .lede strong { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-micro { margin-top: 28px; display: flex; gap: 20px; flex-wrap: wrap; }
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-3); font-weight: 500; }
.hero-micro svg { width: 14px; height: 14px; flex-shrink: 0; }

/* --- Hero product visual (dark Charcoal Ice panel) --- */
.hero-visual { position: relative; }
.dash {
  position: relative; background: var(--dark); border-radius: 22px;
  border: 1px solid #232c38;
  box-shadow: 0 40px 90px rgba(15,18,23,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 26px 28px 22px;
  overflow: visible;
}
.dash::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 260px; height: 220px;
  background: radial-gradient(closest-side, rgba(125,188,227,0.14), transparent);
  border-radius: 50%; pointer-events: none;
}
.dash-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 6px; }
.dash-head .dh-title { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,248,250,0.55); }
.dash-head .dh-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ice); background: rgba(125,188,227,0.12); border: 1px solid rgba(125,188,227,0.25); border-radius: 999px; padding: 4px 11px; }
.d-metric { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.d-metric:last-of-type { border-bottom: none; }
.d-metric-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.d-metric-name { font-size: 13px; font-weight: 500; color: rgba(246,248,250,0.85); }
.d-metric-val { font-size: 17px; font-weight: 700; color: #f6f8fa; font-variant-numeric: tabular-nums; }
.d-bandbar { position: relative; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.09); margin-bottom: 8px; }
.d-bandbar .zone { position: absolute; top: -3px; bottom: -3px; border-radius: 6px; background: rgba(18,183,106,0.18); border: 1px solid rgba(18,183,106,0.4); }
.d-bandbar .marker {
  position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%;
  transform: translate(-50%, -50%); border: 2.5px solid var(--dark);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.25), 0 1px 5px rgba(0,0,0,0.5);
  transition: left 0.6s cubic-bezier(0.22,1,0.36,1);
}
.d-bandbar .marker.within { background: var(--green); }
.d-bandbar .marker.above { background: var(--red); }
.d-metric-foot { display: flex; justify-content: space-between; font-size: 11.5px; color: rgba(163,173,184,0.75); }
.d-metric-foot em { font-style: normal; font-weight: 700; }
.d-metric-foot .flag-above { color: #ff8a80; }
.d-metric-foot .flag-within { color: #5ad89a; }
.d-metric-foot .leak { font-weight: 700; color: var(--ice-hi); font-variant-numeric: tabular-nums; }
.dash-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding: 14px 16px; border-radius: 13px;
  background: rgba(125,188,227,0.09); border: 1px solid rgba(125,188,227,0.2);
}
.dash-total .dt-label { font-size: 12px; font-weight: 600; color: rgba(246,248,250,0.7); }
.dash-total .dt-val { font-size: 21px; font-weight: 700; color: var(--ice); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* floating widgets */
.float-widget {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: rgba(23,28,35,0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(125,188,227,0.3);
  border-radius: 14px; padding: 13px 17px;
  box-shadow: 0 18px 46px rgba(15,18,23,0.45);
  animation: floaty 6s ease-in-out infinite;
  transition: transform 0.2s;
}
.float-widget:hover { transform: scale(1.03); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.fw-alert { top: -26px; right: -18px; }
.fw-ok { bottom: -40px; left: 50%; transform: translateX(-50%); animation: floaty-c 6s ease-in-out infinite -3s; }
.fw-ok:hover { transform: translateX(-50%) scale(1.03); }
@keyframes floaty-c { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -9px); } }
.fw-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fw-alert .fw-icon { background: rgba(240,68,56,0.16); }
.fw-ok .fw-icon { background: rgba(18,183,106,0.16); }
.fw-body .fw-title { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: #f6f8fa; }
.fw-body .fw-sub { font-size: 11.5px; color: rgba(163,173,184,0.9); margin-top: 2px; font-variant-numeric: tabular-nums; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; }
.ok-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---------- Authority strip ---------- */
.auth-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.auth-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.auth-item { display: flex; align-items: center; gap: 12px; padding: 22px 26px; border-right: 1px solid var(--line); font-size: 13.5px; color: var(--ink-2); }
.auth-item:first-child { padding-left: 0; }
.auth-item:last-child { border-right: none; }
.auth-item svg { flex-shrink: 0; }
.auth-item strong { color: var(--ink); font-weight: 600; }

/* ---------- Value section ---------- */
.value-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.compare { display: flex; flex-direction: column; }
.compare-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 17px 0; border-bottom: 1px solid var(--line);
}
.compare-row .cr-what { font-size: 15px; color: var(--ink-2); }
.compare-row .cr-what small { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.compare-row .cr-price { font-size: 16px; font-weight: 700; color: var(--ink-3); font-variant-numeric: tabular-nums; white-space: nowrap; }
.compare-row.free {
  margin-top: 14px; border: 1.5px solid var(--ice); background: var(--ice-softer);
  border-radius: 14px; padding: 18px 20px;
}
.compare-row.free .cr-what { color: var(--ink); font-weight: 700; }
.compare-row.free .cr-price { color: var(--ice-deep); font-size: 19px; }
.compare-row .cr-price.cr-red { color: #d14a40; }
.compare-row .cr-price.cr-orange { color: #d07a24; }
.compare-row .cr-price.cr-yellow { color: #c2a024; }
.compare-row.free .cr-price.cr-green { color: #1f9d5a; }
.free-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 38px 40px 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.free-card:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(15,18,23,0.16); }
.free-card .fc-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ice-deep); background: var(--ice-soft); border-radius: 999px; padding: 6px 14px; margin-bottom: 20px;
}
.free-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 20px; }
.free-list { list-style: none; }
.free-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.5;
}
.free-list li strong { color: var(--ink); font-weight: 600; }
.free-list .fl-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--ice-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.free-card .fc-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* ---------- Walk (how it works, upgraded) ---------- */
.walk { position: relative; }
.walk-line { position: absolute; top: 44px; left: 4%; right: 4%; height: 2px; background: linear-gradient(90deg, var(--line), var(--ice), var(--line)); z-index: 0; }
.walk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1; }
.walk-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  display: flex; flex-direction: column;
}
.walk-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ice-hi); }
.ws-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ws-num {
  width: 36px; height: 36px; border-radius: 11px; background: var(--ink); color: var(--ice);
  font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.walk-step:hover .ws-num { background: var(--ice-deep); color: #fff; }
.ws-time { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ice-deep); background: var(--ice-soft); border-radius: 999px; padding: 5px 11px; }
.walk-step h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
.walk-step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; flex: 1; }
.ws-art { margin-top: 18px; border-top: 1px dashed var(--line-2); padding-top: 16px; }
.ws-art .doc-chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--ink-2);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 5px 9px; margin: 0 5px 6px 0;
}
.ws-mini-input { display: flex; align-items: center; gap: 8px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 9px 13px; font-size: 13px; font-weight: 600; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.ws-mini-input .caret { width: 2px; height: 15px; background: var(--ice-deep); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ws-mini-band { display: flex; flex-direction: column; gap: 7px; }
.ws-mini-band .mb { height: 5px; border-radius: 99px; background: #eef1f5; position: relative; }
.ws-mini-band .mb i { position: absolute; top: -2px; width: 9px; height: 9px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(15,18,23,0.25); }
.ws-mini-band .mb i.above { background: var(--red); }
.ws-mini-band .mb i.within { background: var(--green); }
.ws-report { display: flex; align-items: center; gap: 10px; background: var(--ice-softer); border: 1px solid rgba(125,188,227,0.3); border-radius: 10px; padding: 10px 13px; }
.ws-report .wr-title { font-size: 12px; font-weight: 700; color: var(--ink); }
.ws-report .wr-sub { font-size: 11px; color: var(--ink-3); }

/* ---------- Engine / trust ---------- */
.engine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engine-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.engine-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.engine-card .ec-icon {
  width: 44px; height: 44px; border-radius: 13px; background: var(--ice-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.engine-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 9px; }
.engine-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.65; }

/* ---------- Ten checks ---------- */
.checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.check-row {
  display: flex; gap: 18px; padding: 20px 12px; margin: 0 -12px; border-bottom: 1px solid var(--line);
  border-radius: 12px; transition: background 0.15s;
}
.check-row:hover { background: var(--ice-softer); }
.check-row .ck-icon {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: var(--ice-softer); border: 1px solid #dcecf7;
  display: flex; align-items: center; justify-content: center;
}
.check-row h4 { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.check-row p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ---------- CTA banner (charcoal, brand dark) ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--dark); color: #f6f8fa;
  border-radius: 28px; padding: 76px 40px; text-align: center;
  box-shadow: 0 40px 90px rgba(15,18,23,0.3);
}
.cta-banner::before {
  content: ""; position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 480px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(125,188,227,0.2), transparent);
}
.cta-banner h2 { position: relative; font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px; }
.cta-banner p { position: relative; color: rgba(246,248,250,0.65); max-width: 560px; margin: 0 auto 34px; font-size: 16px; line-height: 1.6; }
.cta-banner .btn { position: relative; }
.cta-banner .cb-micro { position: relative; margin-top: 22px; font-size: 13px; color: rgba(163,173,184,0.8); }
.cta-banner .cb-micro em { color: var(--ice); font-style: normal; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 70px; }
.site-footer .f-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.site-footer p { font-size: 12.5px; color: var(--ink-3); line-height: 1.65; max-width: 740px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-widget { animation: none; }
  .ws-mini-input .caret, .pulse-dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 560px; }
  .value-grid { grid-template-columns: 1fr; gap: 44px; }
  .walk-grid { grid-template-columns: 1fr 1fr; }
  .walk-line { display: none; }
  .engine-grid { grid-template-columns: 1fr; }
  .checks-grid { grid-template-columns: 1fr; }
  .auth-strip .wrap { grid-template-columns: 1fr; }
  .auth-item { border-right: none; border-bottom: 1px solid var(--line); padding-left: 0; }
  .auth-item:last-child { border-bottom: none; }
  .nav-links a.nl { display: none; }
  .section { padding: 72px 0; }
  .fw-alert { right: 0; }
}
@media (max-width: 620px) {
  .walk-grid { grid-template-columns: 1fr; }
  .float-widget { display: none; }
}

/* ============================================================
   QUESTIONNAIRE (check.html) — Charcoal Ice light
   ============================================================ */

.nav-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  background: var(--ice-softer); border: 1px solid #dcecf7;
  border-radius: 99px; padding: 7px 14px;
}
.nav-chip .nc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: ncpulse 2.2s ease-in-out infinite; }
@keyframes ncpulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.quiz-shell { max-width: 680px; margin: 0 auto; padding: 60px 24px 110px; }

.quiz-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 44px; }
.quiz-progress .label { font-size: 13px; font-weight: 600; color: var(--ink-3); white-space: nowrap; min-width: 92px; }
.quiz-progress .label.qpct { min-width: 40px; text-align: right; font-variant-numeric: tabular-nums; }
.bits { display: flex; gap: 5px; flex: 1; }
.bits .bit { height: 6px; border-radius: 99px; background: var(--line); flex: 1; transition: background 0.35s ease; }
.bits .bit.done { background: var(--ice-deep); }
.bits .bit.now { background: var(--ink); animation: bitpulse 1.8s ease-in-out infinite; }
@keyframes bitpulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.qstep { display: none; }
.qstep.active { display: block; animation: qfade 0.38s cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes qfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.q-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ice-deep); margin-bottom: 10px; }
.qstep h1 { font-size: clamp(27px, 4vw, 36px); font-weight: 700; letter-spacing: -0.022em; margin-bottom: 12px; }
.qstep .lede { font-size: 16.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 24px; }

.where {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--ice-softer); border: 1px solid #dcecf7; border-radius: 14px;
  padding: 14px 16px; margin-bottom: 30px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.where svg { flex-shrink: 0; margin-top: 1px; }
.where strong { color: var(--ink); font-weight: 600; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.field label .hint { font-weight: 500; color: var(--ink-3); }
.field-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.money { position: relative; }
.money > span { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-3); font-size: 15px; font-weight: 500; pointer-events: none; }
.money input, .text-input {
  width: 100%; border: 1.5px solid var(--line-2); border-radius: 12px;
  padding: 13px 15px 13px 30px;
  font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--ink);
  background: #fff; font-variant-numeric: tabular-nums;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.text-input { padding-left: 15px; }
select.text-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7684' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.money input:focus, .text-input:focus { outline: none; border-color: var(--ice-deep); box-shadow: 0 0 0 4px rgba(47,127,175,0.13); }
.money input::placeholder, .text-input::placeholder { color: #aab4bf; font-weight: 500; }
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

.prefill-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ice-deep); background: var(--ice-soft); border-radius: 99px; padding: 2px 9px; margin-left: 8px; vertical-align: 1px;
}

details.opt { margin: 26px 0 4px; border-top: 1px dashed var(--line-2); padding-top: 18px; }
details.opt summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ice-deep);
}
details.opt summary::-webkit-details-marker { display: none; }
details.opt summary .plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 7px; background: var(--ice-soft);
  font-size: 14px; font-weight: 700; line-height: 1; transition: transform 0.2s;
}
details.opt[open] summary .plus { transform: rotate(45deg); }
details.opt summary:hover { color: var(--ink); }
details.opt[open] summary { margin-bottom: 18px; }

.live-panel { display: none; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 20px 22px; margin-top: 28px; }
.live-panel.show { display: block; animation: qfade 0.3s ease; }
.lp-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.lp-val { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.lp-verdict { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; text-align: right; }
.lp-verdict.good { color: #0e9255; }
.lp-verdict.bad { color: var(--red); }
.lp-verdict.neutral { color: var(--ink-3); }
.bandbar { position: relative; height: 6px; border-radius: 99px; background: #eef2f5; margin: 14px 0 2px; }
.bandbar .zone { position: absolute; top: -3px; bottom: -3px; border-radius: 6px; background: rgba(18,183,106,0.13); border: 1px solid rgba(18,183,106,0.35); }
.bandbar .marker { position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%; transform: translate(-50%, -50%); border: 3px solid #fff; box-shadow: 0 1px 5px rgba(15,18,23,0.3); transition: left 0.25s ease; }
.bandbar .marker.within { background: var(--green); }
.bandbar .marker.above, .bandbar .marker.below { background: var(--red); }
.bandbar .marker.neutral { background: var(--ink); }
.lp-note { font-size: 12.5px; color: var(--ink-3); margin-top: 12px; line-height: 1.55; }
.lp-note .leak { color: var(--red); font-weight: 600; }
.lp-note b { color: var(--ink); }

.quiz-actions { display: flex; align-items: center; gap: 20px; margin-top: 34px; flex-wrap: wrap; }
.quiz-skip { background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; padding: 0; }
.quiz-skip:hover { color: var(--ink); }
.qback { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 13.5px; font-weight: 500; color: var(--ink-3); padding: 0; }
.qback:hover { color: var(--ink); }
.quiz-note { margin-top: 26px; font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* ---------- check 10 · equipment ---------- */
.eq-list { display: flex; flex-direction: column; gap: 12px; }
.eq-row {
  display: grid; grid-template-columns: 1.3fr auto auto 34px; gap: 12px; align-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 12px 12px 12px 14px;
  animation: qfade 0.3s ease;
}
.eq-row .text-input { padding: 10px 13px; font-size: 14.5px; background: #fff; }
.eq-toggles .tg-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.tg { display: flex; gap: 4px; }
.tg button { border: 1px solid var(--line-2); background: #fff; border-radius: 8px; padding: 5px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink-3); cursor: pointer; transition: all 0.15s; }
.tg button:hover { border-color: var(--ink-3); }
.tg button.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.eq-remove { border: none; background: none; color: var(--ink-3); cursor: pointer; font-size: 19px; line-height: 1; padding: 7px; border-radius: 8px; }
.eq-remove:hover { color: var(--red); background: rgba(240,68,56,0.08); }
.eq-add {
  margin-top: 14px; width: 100%; border: 1.5px dashed var(--line-2); background: none; border-radius: 12px;
  padding: 12px; font-size: 13.5px; font-weight: 600; color: var(--ice-deep); cursor: pointer; transition: all 0.2s;
}
.eq-add:hover { border-color: var(--ice-deep); background: var(--ice-softer); }
.eq-counts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.chipN { font-size: 12.5px; font-weight: 500; background: var(--bg-2); border: 1px solid var(--line); border-radius: 99px; padding: 7px 13px; color: var(--ink-2); }
.chipN b { color: var(--ink); font-weight: 700; }
.chipN.warn b { color: var(--red); }

/* ---------- done ---------- */
.done-card { text-align: center; padding-top: 26px; }
.done-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--ice-soft); border: 1px solid #dcecf7; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.done-stats { display: flex; gap: 10px; justify-content: center; margin: 8px 0 32px; flex-wrap: wrap; }

/* ---------- questionnaire responsive ---------- */
@media (max-width: 640px) {
  .quiz-shell { padding: 40px 18px 90px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .quiz-progress .label { min-width: 0; }
  .eq-row { grid-template-columns: 1fr 1fr; }
  .eq-row .eq-name { grid-column: 1 / -1; }
  .eq-remove { justify-self: end; }
  .qback { margin-left: 0; width: 100%; order: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .bits .bit.now, .nav-chip .nc-dot { animation: none; }
  .qstep.active, .live-panel.show, .eq-row { animation: none; }
  .bandbar .marker { transition: none; }
}

/* ---------- skip acknowledgment + case-file counter + done flagged list ---------- */
.skip-note {
  display: flex; align-items: center; gap: 10px;
  background: var(--ice-softer); border: 1px solid #dcecf7; border-radius: 14px;
  padding: 13px 16px; margin-top: 26px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2); line-height: 1.45;
  animation: qfade 0.3s ease;
}
.skip-note svg { flex-shrink: 0; }

.case-file { white-space: nowrap; }

.done-flagged { margin: 26px 0 30px; }
.df-heading { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ice-deep); margin-bottom: 14px; }
.df-chips { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.df-note { font-size: 13.5px; color: var(--ink-3); max-width: 440px; margin: 0 auto; line-height: 1.55; }

@media (max-width: 640px) {
  .quiz-progress { flex-wrap: wrap; }
  .case-file { order: 4; flex-basis: 100%; margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .skip-note { animation: none; }
}

/* ============================================================
   RESULTS (results.html) — light report page
   ============================================================ */

.res-shell { max-width: 860px; margin: 0 auto; padding: 64px 24px 130px; }

/* ---------- stage 1 ---------- */
.res-hero { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); padding: 34px 34px 30px; }
.r-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px; }
.r-total { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap; padding: 20px 22px; border-radius: 16px; background: var(--ice-softer); border: 1px solid #dcecf7; }
.r-total-val { font-size: clamp(34px, 6vw, 46px); font-weight: 700; color: var(--ice-deep); letter-spacing: -0.03em; }
.r-total-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.r-profile { margin-top: 26px; }
.r-meter { display: flex; gap: 6px; }
.r-seg { flex: 1; text-align: center; font-size: 12px; font-weight: 600; padding: 9px 0; border-radius: 9px; background: var(--bg-2); color: var(--ink-3); border: 1px solid var(--line); transition: all 0.3s; }
.r-seg.on { background: var(--ice-soft); border-color: var(--ice-deep); color: var(--ice-deep); }
.r-profile-cap { font-size: 13px; color: var(--ink-3); line-height: 1.55; margin-top: 12px; }
.r-fast { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 18px; }
.r-fast-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice-deep); margin-bottom: 4px; }
.r-more { font-size: 12.5px; color: var(--ink-3); margin-top: 8px; }

/* d-metric + d-bandbar reused on light */
.res-shell .d-metric-name { color: var(--ink); }
.res-shell .d-metric-val { color: var(--ink); }
.res-shell .d-metric-foot { color: var(--ink-3); }
.res-shell .d-bandbar { background: #eef2f5; }
.res-shell .d-bandbar .zone { background: rgba(18,183,106,0.13); border-color: rgba(18,183,106,0.35); }
.res-shell .d-bandbar .marker { border-color: #fff; box-shadow: 0 0 0 1.5px rgba(15,18,23,0.1), 0 1px 4px rgba(15,18,23,0.25); }
.res-shell .d-bandbar .marker.below { background: var(--red); }

/* ---------- gate ---------- */
.gate-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 30px 26px; margin-top: 22px; box-shadow: var(--shadow-md); }
.gate-card h2 { font-size: 23px; letter-spacing: -0.02em; margin-bottom: 8px; }
.gate-sub { font-size: 14.5px; color: var(--ink-3); margin-bottom: 22px; }
.gate-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; margin: 16px 0 22px; cursor: pointer; }
.gate-consent input { margin-top: 1px; accent-color: var(--ice-deep); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
.gate-err { color: var(--red); font-size: 13px; margin-top: 12px; }
.checkout-status { margin: 12px 0 0; color: var(--ink-3); font-size: 12.5px; line-height: 1.5; text-align: center; }
.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; }

/* ---------- gated stages ---------- */
.gated { display: none; }
.gated.open { display: block; }
.r-h2 { font-size: clamp(22px, 3.4vw, 28px); letter-spacing: -0.02em; margin: 56px 0 22px; }

/* ---------- findings cards ---------- */
.findings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.finding-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 20px 16px; box-shadow: var(--shadow-sm); }
.fc-title { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.fc-head { font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; margin-bottom: 14px; }
.finding-card .d-bandbar { margin: 2px 0 12px; }
.fc-bench { font-size: 12.5px; color: var(--ink-3); line-height: 1.55; margin-bottom: 14px; }
.fc-foot { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 12px; }
.fc-src { font-size: 11px; color: var(--ink-3); margin-right: auto; }
.fc-conf { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line); border-radius: 99px; padding: 3px 9px; }
.fc-leak { font-size: 11.5px; font-weight: 700; color: var(--ice-deep); background: var(--ice-soft); border: 1px solid #dcecf7; border-radius: 99px; padding: 3px 10px; }
.fc-cant { background: var(--ice-softer); border: 1.5px dashed rgba(47,127,175,0.45); box-shadow: none; }
.fc-cant .fc-title { color: var(--ice-deep); }
.fc-cantline { font-size: 15px; font-weight: 600; line-height: 1.45; margin-bottom: 12px; }
.fc-cantline em { color: var(--ice-deep); font-style: normal; }
.fc-where { font-size: 12.5px; color: var(--ink-3); line-height: 1.5; }

/* ---------- stage 3 ---------- */
.r-para { font-size: 15px; color: var(--ink-2); line-height: 1.65; max-width: 640px; margin-bottom: 26px; }
.cant-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cant-row { display: flex; justify-content: space-between; gap: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; font-size: 13.5px; flex-wrap: wrap; }
.cr-title { font-weight: 600; }
.cr-hides { color: var(--ink-3); }
.r-bridge { font-size: 15px; font-weight: 600; color: var(--ice-deep); margin-bottom: 26px; }

/* ---------- offer card — dark closing centerpiece (design-system exception) ---------- */
.offer-card { position: relative; overflow: hidden; background: var(--elevated); border: 1px solid rgba(125,188,227,0.3); border-radius: 22px; padding: 36px 36px 32px; box-shadow: 0 30px 80px rgba(15,18,23,0.25); }
.offer-card::before { content: ""; position: absolute; top: -80px; right: -80px; width: 300px; height: 260px; background: radial-gradient(closest-side, rgba(125,188,227,0.16), transparent); border-radius: 50%; pointer-events: none; }
.offer-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice); background: rgba(125,188,227,0.12); border: 1px solid rgba(125,188,227,0.3); border-radius: 99px; padding: 5px 13px; margin-bottom: 16px; }
.offer-card h2 { font-size: clamp(26px, 4vw, 34px); letter-spacing: -0.025em; margin-bottom: 20px; color: #f6f8fa; position: relative; }
.offer-list { list-style: none; margin-bottom: 26px; position: relative; }
.offer-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: rgba(246,248,250,0.85); line-height: 1.5; padding: 7px 0; }
.offer-list svg { flex-shrink: 0; margin-top: 3px; }
.offer-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.op-standard { font-size: 15px; color: rgba(163,173,184,0.7); text-decoration: line-through; }
.op-founding { font-size: 26px; font-weight: 700; color: #f6f8fa; letter-spacing: -0.02em; }
.op-founding span { font-size: 14px; font-weight: 500; color: rgba(163,173,184,0.8); }
.offer-guarantee { display: inline-flex; align-items: center; gap: 9px; background: rgba(18,183,106,0.1); border: 1px solid rgba(18,183,106,0.35); color: #5ad89a; font-size: 13.5px; font-weight: 700; border-radius: 11px; padding: 10px 16px; margin-bottom: 24px; }

/* ---------- sticky CTA — dark pill (charcoal CTA pattern) ---------- */
.sticky-cta { position: fixed; left: 50%; bottom: 16px; transform: translate(-50%, 160%); z-index: 950; display: flex; align-items: center; gap: 16px; background: rgba(23,28,35,0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(125,188,227,0.25); border-radius: 99px; padding: 9px 10px 9px 22px; font-size: 13.5px; font-weight: 600; color: #f6f8fa; box-shadow: 0 18px 46px rgba(15,18,23,0.35); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); white-space: nowrap; }
.sticky-cta.show { transform: translate(-50%, 0); }

/* ---------- results responsive + reduced motion ---------- */
@media (max-width: 720px) { .findings-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  .res-shell { padding: 40px 16px 110px; }
  .res-hero { padding: 24px 20px; }
  .gate-card, .offer-card { padding: 24px 20px; }
  .sticky-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
  .d-bandbar .marker { transition: none; }
  .r-seg { transition: none; }
}

/* ============================================================
   AUDIT (audit.html) — light single-purpose sales page
   ============================================================ */

.audit-shell { max-width: 720px; margin: 0 auto; padding: 64px 24px 110px; }
.audit-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-lg); padding: 46px 46px 40px; }
.a-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice-deep); background: var(--ice-soft); border: 1px solid #dcecf7; border-radius: 99px; padding: 6px 14px; margin-bottom: 18px; }
.audit-card h1 { font-size: clamp(30px, 5vw, 40px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }
.a-sub { font-size: 16.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 36px; }

.a-list { border-top: 1px solid var(--line); }
.a-row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.a-row-l { display: flex; flex-direction: column; gap: 2px; }
.a-row-title { font-size: 15px; font-weight: 600; }
.a-row-sub { font-size: 12.5px; color: var(--ink-3); }
.a-row-price { font-size: 15px; white-space: nowrap; }
.a-row s, .a-price s { color: var(--ink-3); font-weight: 500; }
.a-total .a-row-title { font-weight: 700; }
.a-total s { font-size: 16px; }
.a-total b { font-weight: 700; margin-left: 10px; }

.a-price { text-align: center; margin: 38px 0 4px; }
.a-standard { font-size: 15px; }
.a-founding-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice-deep); margin: 10px 0 4px; }
.a-big { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.a-big-val { font-size: clamp(56px, 10vw, 76px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.a-big-once { font-size: 15px; font-weight: 500; color: var(--ink-3); }
.a-price-sub { font-size: 13.5px; color: var(--ink-3); margin-top: 12px; }

.a-progress { margin: 30px 0 26px; }
.a-progress-top { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 9px; }
.a-progress-top span:last-child { color: var(--ice-deep); }
.a-bar { height: 6px; border-radius: 99px; background: #eef2f5; overflow: hidden; }
.a-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--ice-deep), var(--ice)); transition: width 0.8s cubic-bezier(0.22,1,0.36,1); }

.a-cta { display: flex; justify-content: center; width: 100%; box-shadow: 0 12px 34px rgba(125,188,227,0.5); }
.a-cta:hover { box-shadow: 0 16px 42px rgba(125,188,227,0.62); }

.a-guarantee { display: flex; gap: 14px; align-items: flex-start; margin-top: 26px; background: #0f1a14; border: 1px solid rgba(18,183,106,0.4); border-radius: 16px; padding: 20px 22px; }
.a-guarantee svg { flex-shrink: 0; margin-top: 2px; }
.ag-title { font-size: 15.5px; font-weight: 700; color: #5ad89a; margin-bottom: 5px; }
.ag-sub { font-size: 13px; color: rgba(246,248,250,0.75); line-height: 1.55; }

@media (max-width: 620px) {
  .audit-shell { padding: 40px 16px 90px; }
  .audit-card { padding: 30px 22px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .a-bar i { transition: none; }
}

/* ============================================================
   THANKS / DESK READ / UNSUBSCRIBE / LEGAL pages
   ============================================================ */

.thanks-h1 { font-size: clamp(30px, 5vw, 40px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }

/* ---------- audit-thanks list (walk-step doc-chip style) ---------- */
.t-list { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.t-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 15px 17px;
  transition: border-color 0.2s, transform 0.2s;
}
.t-item:hover { border-color: var(--ice); transform: translateY(-2px); }
.t-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700; color: var(--ice-deep); background: var(--ice-soft);
}
.t-title { display: block; font-size: 15px; font-weight: 600; }
.t-sub { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; line-height: 1.45; }

/* ---------- desk read (smaller dark offer card) ---------- */
.desk-shell { max-width: 600px; margin: 0 auto; padding: 64px 24px 110px; }
.desk-card { padding: 32px 32px 28px; }
.desk-card h1 { font-size: clamp(24px, 3.6vw, 30px); letter-spacing: -0.025em; margin-bottom: 12px; color: #f6f8fa; position: relative; }
.desk-sub { font-size: 14.5px; color: rgba(246,248,250,0.75); line-height: 1.6; margin-bottom: 24px; position: relative; }
.desk-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; position: relative; }
.dp-val { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: #f6f8fa; line-height: 1; }
.dp-once { font-size: 14px; font-weight: 500; color: rgba(163,173,184,0.8); }
.desk-credit {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(125,188,227,0.1); border: 1px solid rgba(125,188,227,0.3); border-radius: 12px;
  padding: 13px 15px; margin-bottom: 24px;
  font-size: 13px; color: var(--ice-hi); line-height: 1.5; position: relative;
}
.desk-credit svg { flex-shrink: 0; margin-top: 1px; }

/* ---------- legal pages ---------- */
.legal-shell { max-width: 760px; margin: 0 auto; padding: 64px 24px 110px; }
.legal-updated { font-size: 13px; color: var(--ink-3); margin-bottom: 26px; }
.legal-intro { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin-bottom: 22px; }
.legal-intro a, .legal-section a { color: var(--ice-deep); text-decoration: none; }
.legal-intro a:hover, .legal-section a:hover { text-decoration: underline; }
.legal-notice {
  background: var(--ice-softer); border: 1px solid #dcecf7; border-radius: 14px;
  padding: 15px 17px; font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 12px;
}
.legal-notice strong { color: var(--ink); }
.legal-section { border-top: 1px solid var(--line); padding: 26px 0 6px; margin-top: 26px; }
.legal-section h2 { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 12px; }
.legal-section p, .legal-section li { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; }
.legal-section p + p { margin-top: 10px; }
.legal-section ul { margin: 8px 0 10px 20px; }
.legal-section li { margin-bottom: 5px; }
.legal-contact {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 17px; font-size: 14px; color: var(--ink-2); line-height: 1.6; margin: 12px 0;
}
.legal-contact strong { color: var(--ink); }

/* ---------- footer small links line ---------- */
.f-links { margin: 8px 0 10px; font-size: 12.5px; display: flex; gap: 10px; align-items: center; }
.f-links a { color: var(--ink-3); text-decoration: none; font-weight: 500; }
.f-links a:hover { color: var(--ice-deep); }
.f-links span { color: var(--line-2); }

@media (max-width: 620px) {
  .desk-shell, .legal-shell { padding: 40px 16px 90px; }
  .desk-card { padding: 24px 20px; }
}

/* ============================================================
   FOUNDER PROFILE CARD (main page, engine section)
   ============================================================ */

.f-mark { width: 18px; height: 18px; vertical-align: -3px; margin-right: 3px; }

.profile-card {
  max-width: 880px; margin: 0 auto;
  display: flex; gap: 34px; align-items: center; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-md); padding: 38px 42px;
}
.pc-photo { flex-shrink: 0; width: 128px; height: 128px; border-radius: 24px; object-fit: cover; object-position: center 22%; box-shadow: 0 4px 14px rgba(15,18,23,0.14); }
.pc-body { flex: 1; min-width: 0; }
.pc-name { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.pc-role { font-size: 14px; font-weight: 600; color: var(--ice-deep); margin-top: 2px; }
.pc-bio { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; margin-top: 12px; }
.pc-bio strong { color: var(--ink); font-weight: 600; }
.pc-orgs { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.pc-org { display: flex; align-items: center; gap: 9px; }
.pc-org img { width: 38px; height: 38px; object-fit: cover; border-radius: 10px; box-shadow: 0 1px 4px rgba(15,18,23,0.18); }
.pc-org span { font-size: 12px; font-weight: 600; color: var(--ink-2); line-height: 1.25; }
.pc-org small { display: block; font-weight: 500; color: var(--ink-3); font-size: 11px; }
.pc-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pc-fact { font-size: 11.5px; font-weight: 600; color: var(--ink-2); background: var(--ice-softer); border: 1px solid #dcecf7; border-radius: 99px; padding: 5px 12px; }

@media (max-width: 620px) {
  .profile-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px; border-radius: 22px; }
  .pc-photo { width: 76px; height: 76px; border-radius: 16px; }
  .pc-name { font-size: 19px; }
  .pc-role { font-size: 13.5px; }
  .pc-bio { font-size: 13.5px; margin-top: 10px; }
  .pc-orgs { gap: 14px; margin-top: 14px; }
  .pc-org img { width: 34px; height: 34px; border-radius: 9px; }
  .pc-org span { font-size: 11.5px; }
  .pc-org small { font-size: 10.5px; }
  .pc-facts { display: none; }
}

/* ============================================================
   QUESTIONNAIRE VALIDATION
   ============================================================ */

.input-err, .money input.input-err, .text-input.input-err { border-color: var(--red) !important; box-shadow: 0 0 0 4px rgba(240,68,56,0.1); }
.q-err-msg {
  display: flex; align-items: center; gap: 9px;
  background: rgba(240,68,56,0.07); border: 1px solid rgba(240,68,56,0.3);
  border-radius: 12px; padding: 12px 15px; margin-top: 22px;
  font-size: 13px; font-weight: 500; color: var(--red); line-height: 1.45;
  animation: qfade 0.25s ease;
}
.eq-row.input-err { border-color: var(--red); box-shadow: 0 0 0 4px rgba(240,68,56,0.08); }

/* ============================================================
   CONTACT PAGE (between questionnaire and results)
   ============================================================ */

.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); padding: 34px 34px 30px; margin-top: 8px; }
.contact-card .gate-consent { color: var(--ink-2); }
.contact-perks { display: flex; flex-direction: column; gap: 9px; margin: 0 0 24px; }
.contact-perks span { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.contact-perks svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   RESULTS — locked checks card
   ============================================================ */

.locked-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: var(--bg-2); border: 1.5px dashed var(--line-2); border-radius: 16px; padding: 26px 20px;
  min-height: 100%;
}
.locked-card svg { margin-bottom: 12px; }
.lc-big { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.lc-sub { font-size: 13px; color: var(--ink-3); margin-top: 5px; line-height: 1.5; }

/* ---------- mobile text trims ---------- */
@media (max-width: 640px) {
  .nav-chip { font-size: 11px; padding: 5px 11px; white-space: nowrap; }
  .contact-card { padding: 24px 20px; }
}

/* ============================================================
   MAIN PAGE — PHONE PASS (hero / value / footer)
   ============================================================ */
@media (max-width: 620px) {
  /* hero: centered, shorter lede, compact dash, no widgets */
  .hero { padding: 52px 0 70px; }
  .hero-grid { gap: 44px; }
  .hero-grid > div { text-align: center; }
  .hero .h-hero { margin: 0 0 18px; }
  .hero .lede { margin: 0 auto 28px; }
  .lede-full { display: none; }
  .lede-short { display: block; }
  .hero-ctas { justify-content: center; gap: 18px; }
  .hero-micro { justify-content: center; gap: 10px 16px; }
  .hero-visual { margin: 0 auto; max-width: 100%; }
  .dash { padding: 18px 18px 14px; border-radius: 18px; }
  .dash-head { padding-bottom: 12px; margin-bottom: 2px; }
  .d-metric { padding: 10px 0; }
  .d-metric-head { margin-bottom: 7px; }
  .d-metric-foot { flex-wrap: wrap; gap: 2px 10px; }
  .dash-total { flex-direction: column; align-items: flex-start; gap: 2px; padding: 10px 14px; margin-top: 10px; }
  .dash-total .dt-val { font-size: 19px; white-space: nowrap; }
  /* value section: centered, headlines ~10% smaller */
  #value .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  #value .h-section { font-size: 25px; }
  #value .free-card h3 { font-size: 20px; }
  /* footer centered */
  .site-footer { text-align: center; }
  .site-footer .f-brand { justify-content: center; }
  .site-footer p { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   RESULTS — three-column single-screen restructure (≥1100px)
   ============================================================ */

/* new components (all widths) */
.offer-open { font-size: 13px; color: rgba(246,248,250,0.6); line-height: 1.55; margin-bottom: 14px; position: relative; }
.offer-flagged { font-size: 12.5px; font-weight: 600; color: var(--ice); background: rgba(125,188,227,0.1); border: 1px solid rgba(125,188,227,0.25); border-radius: 11px; padding: 10px 14px; margin-bottom: 18px; line-height: 1.5; position: relative; }

.fix-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 26px 22px; box-shadow: var(--shadow-sm); }
.fix-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice-deep); margin-bottom: 12px; }
.fix-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.fix-sub { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 14px; }
.fix-line { font-size: 12.5px; color: var(--ink-3); line-height: 1.5; border-top: 1px solid var(--line); padding-top: 12px; margin-bottom: 14px; }
.fix-line strong { color: var(--ink-2); font-weight: 600; }
.fix-list { list-style: none; margin-bottom: 18px; }
.fix-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--ink-2); line-height: 1.5; padding: 5px 0; }
.fix-list svg { flex-shrink: 0; margin-top: 3px; }
.fix-card .text-input { width: 100%; margin-bottom: 10px; }
.fix-foot { font-size: 11.5px; color: var(--ink-3); line-height: 1.5; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.fix-done { text-align: center; padding: 34px 10px; }
.fix-done-big { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin-top: 14px; }
.fix-done-sub { font-size: 13.5px; color: var(--ink-3); margin-top: 6px; }

/* gate overlay (desktop only — unhidden by JS ≥1100px) */
.res-gate {
  position: fixed; inset: 0; z-index: 980;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(238,243,247,0.45);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.res-gate[hidden] { display: none; }
.res-gate-card { width: 100%; max-width: 480px; margin-top: 0; box-shadow: var(--shadow-lg); max-height: calc(100vh - 48px); overflow-y: auto; }
@media (max-width: 1099.98px) { .res-gate { display: none; } }

/* stacked layout (below 1100px) */
.res-col-audit { margin-top: 52px; }
.res-col-doc { margin-top: 44px; }
.r-bridge { margin: 22px 0 0; }
.offer-cta { width: 100%; justify-content: center; }

/* ---------- desktop: single screen, three columns ---------- */
@media (min-width: 1100px) {
  .res-nav { height: 56px; }
  .res-body { overflow: hidden; }
  .res-shell.res-grid {
    max-width: none; margin: 0; padding: 16px 24px 20px;
    height: calc(100vh - 56px); overflow: hidden;
    display: grid; gap: 20px;
    grid-template-columns: minmax(0,1.55fr) minmax(300px,1fr) minmax(280px,0.92fr);
  }
  .res-col {
    min-height: 0; overflow-y: auto; scrollbar-width: none;
    display: flex; flex-direction: column; margin-top: 0;
  }
  .res-col::-webkit-scrollbar { display: none; }

  /* ~35% tighter vertical rhythm */
  .res-hero { padding: 18px 22px 16px; border-radius: 18px; box-shadow: var(--shadow-md); }
  .r-eyebrow { margin-bottom: 10px; font-size: 11.5px; }
  .r-total { padding: 11px 18px; border-radius: 13px; }
  .r-total-val { font-size: 30px; }
  .r-total-label { font-size: 12.5px; }
  .r-profile { margin-top: 12px; }
  .r-seg { padding: 6px 0; font-size: 11.5px; }
  .r-profile-cap { margin-top: 6px; font-size: 12.5px; }
  .r-fast { margin-top: 10px; padding-top: 10px; }
  .r-fast .d-metric { padding: 10px 0 6px; }
  .r-more { margin-top: 5px; font-size: 12px; }
  .r-h2 { margin: 16px 0 10px; font-size: 21px; }
  .findings-grid { gap: 10px; }
  .finding-card { padding: 13px 16px 11px; border-radius: 14px; }
  .fc-title { margin-bottom: 7px; }
  .fc-head { font-size: 14px; margin-bottom: 8px; }
  .fc-bench { font-size: 12px; margin-bottom: 8px; }
  .fc-foot { padding-top: 8px; }
  .fc-cantline { font-size: 13.5px; margin-bottom: 8px; }
  .r-bridge { margin: 10px 0 2px; font-size: 13.5px; }
  .locked-card { padding: 18px 14px; }

  /* middle column: dark panel, full height, CTA pinned bottom */
  .offer-card {
    flex: 1; display: flex; flex-direction: column;
    padding: 24px 24px 20px; border-radius: 18px;
  }
  .offer-badge { margin-bottom: 12px; }
  .offer-card h2 { font-size: 26px; margin-bottom: 14px; }
  .offer-list { margin-bottom: 14px; }
  .offer-list li { font-size: 13.5px; padding: 5px 0; }
  .offer-flagged { margin-bottom: 14px; font-size: 12px; padding: 9px 13px; }
  .offer-bottom { margin-top: auto; }
  .offer-price { margin-bottom: 12px; }
  .op-founding { font-size: 23px; }
  .offer-guarantee { margin-bottom: 16px; padding: 8px 14px; font-size: 12.5px; }

  /* right column: quiet side note */
  .fix-card { padding: 22px 22px 18px; }

  /* single-screen: footer + sticky CTA leave the viewport */
  .res-footer { display: none; }
  .sticky-cta { display: none !important; }
}
