@font-face {
  font-family: "Sofia Sans Local";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/assets/fonts/sofia-sans-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Sofia Sans Local";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/assets/fonts/sofia-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #12201d;
  --muted: #5f6e69;
  --bg: #f8faf9;
  --surface: #ffffff;
  --soft: #eef3f1;
  --line: #d7e0dc;
  --green: #0d624f;
  --green-dark: #0b3b32;
  --green-deep: #082c26;
  --mint: #e3f1ec;
  --coral: #e95f48;
  --coral-soft: #fff0ec;
  --yellow: #f2c75c;
  --yellow-soft: #fff8e5;
  --blue: #376f91;
  --warning: #855419;
  --warning-soft: #fff5e5;
  --focus: #1c6ca1;
  --shadow-sm: 0 8px 24px rgba(15, 43, 36, .07);
  --shadow-lg: 0 24px 64px rgba(8, 36, 30, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Sofia Sans Local", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body::selection { background: #c6e4d9; }

a { color: var(--green); }

button, input, textarea { font: inherit; }

button { letter-spacing: 0; }

.brand-icon { display: block; width: 1.15em; height: 1.15em; flex: 0 0 auto; overflow: visible; }
.header-action .brand-icon, .hero-cta .brand-icon, .primary-link .brand-icon, .primary .brand-icon, .secondary .brand-icon, .inline-cta .brand-icon { width: 18px; height: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 72px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-bottom-color: var(--line);
  box-shadow: 0 5px 20px rgba(12,42,35,.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: inherit;
  font-size: 1rem;
  font-weight: 820;
  text-decoration: none;
}

.brand-symbol, .footer-symbol { display: block; width: 38px; height: 38px; flex: 0 0 auto; background-position: center; background-repeat: no-repeat; background-size: contain; }
.brand-symbol { background-image: url("/assets/brand/logo-mark-reverse.svg"); }
.site-header.scrolled .brand-symbol { background-image: url("/assets/brand/logo-mark.svg"); }
.brand-wordmark { line-height: 1; }

.desktop-nav { display: none; align-items: center; gap: 28px; margin-left: auto; }

.desktop-nav a {
  color: inherit;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  opacity: .82;
}

.desktop-nav a:hover { opacity: 1; }

.header-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 4px;
  color: inherit;
  font-size: .8rem;
  font-weight: 850;
  text-decoration: none;
}

.site-header.scrolled .header-action { border-color: var(--green); background: var(--green); color: #fff; }

.hero {
  position: relative;
  display: flex;
  min-height: 650px;
  height: min(82vh, 760px);
  align-items: flex-end;
  overflow: hidden;
  background: #dce4e0 url('/assets/organized-plan.webp') 60% center / cover no-repeat;
}

.hero-overlay { position: absolute; inset: 0; background: rgba(5, 34, 28, .67); }

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 82px;
  color: #fff;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #cce9df;
  font-size: .73rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-kicker .brand-icon { width: 17px; height: 17px; color: var(--yellow); }

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.15rem);
  font-weight: 780;
  line-height: .97;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 22px 0 28px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-cta, .primary-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--coral);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.hero-cta:hover, .primary-link:hover { background: #ce4f39; }

.hero-secondary {
  padding: 12px 4px;
  color: #fff;
  font-size: .86rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.hero-note { margin: 16px 0 0; color: rgba(255,255,255,.68); font-size: .75rem; }

.proof-rail {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.proof-item { display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 16px 20px; align-items: center; border-bottom: 1px solid var(--line); }

.proof-item:last-child { border-bottom: 0; }
.proof-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #c5d9d1; border-radius: 4px; background: var(--mint); color: var(--green); }
.proof-icon .brand-icon { width: 21px; height: 21px; }
.proof-copy { display: grid; gap: 2px; }

.proof-value { color: var(--ink); font-size: .92rem; font-weight: 850; }

.proof-label { color: var(--muted); font-size: .74rem; }

.app-layout {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 74px auto 104px;
}

.progress-nav { display: none; }

.app-content { min-width: 0; }

.flow-section { scroll-margin-top: 92px; padding: 0 0 82px; }

.flow-section + .flow-section { padding-top: 64px; border-top: 1px solid var(--line); }

.section-head { max-width: 770px; margin-bottom: 30px; }

.section-head h2, .marketing-copy h2, .center-heading h2, .methodology-main h2, .privacy-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.55rem);
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-head > p:not(.eyebrow), .marketing-copy > p:not(.eyebrow), .center-heading > p:not(.eyebrow), .methodology-main > p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-heading { max-width: none; display: grid; gap: 18px; }

.scenario-heading > p { max-width: 530px !important; margin: 0 !important; align-self: end; }

.scenario-grid { display: grid; gap: 12px; }

.resume-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  padding: 17px 18px;
  border: 1px solid #b9d4ca;
  border-left: 4px solid var(--green);
  border-radius: 4px;
  background: var(--mint);
}

.resume-copy { display: grid; gap: 2px; }
.resume-copy strong { font-size: .94rem; }
.resume-copy span { color: var(--muted); font-size: .76rem; }
.resume-actions { display: flex; flex: 0 0 auto; gap: 8px; }

.resume-actions button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 850;
}

.resume-primary { border: 1px solid var(--green); background: var(--green); color: #fff; }
.resume-clear { border: 1px solid #afc4bc; background: transparent; color: var(--muted); }
.resume-primary { display: inline-flex; align-items: center; gap: 8px; }
.resume-primary .brand-icon { width: 16px; height: 16px; }

.scenario-card {
  position: relative;
  display: grid;
  min-height: 238px;
  align-content: start;
  gap: 14px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.scenario-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 28px solid var(--scenario-tint, var(--mint));
  border-radius: 50%;
}

.scenario-card:hover { transform: translateY(-4px); border-color: #9eb9af; box-shadow: var(--shadow-lg); }
.scenario-card.selected { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.scenario-top { z-index: 1; display: flex; align-items: center; justify-content: space-between; }

.scenario-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--scenario-tint, var(--mint));
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 900;
}

.scenario-time { color: var(--muted); font-size: .72rem; }
.scenario-time { display: inline-flex; align-items: center; gap: 5px; }
.scenario-time .brand-icon { width: 14px; height: 14px; color: var(--green); }
.scenario-icon { position: absolute; z-index: 2; top: 73px; right: 22px; width: 44px; height: 44px; color: var(--green-dark); }

.scenario-card strong {
  z-index: 1;
  max-width: 86%;
  margin-top: 4px;
  font-size: clamp(1.24rem, 2vw, 1.48rem);
  font-weight: 800;
  line-height: 1.12;
}

.scenario-card > span:not(.scenario-top):not(.scenario-arrow) { z-index: 1; max-width: 82%; color: var(--muted); font-size: .84rem; }

.scenario-arrow { position: absolute; z-index: 2; right: 22px; bottom: 20px; width: 22px; height: 22px; color: var(--green-dark); }

.scenario-assurance { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; color: var(--muted); font-size: .74rem; }
.scenario-assurance .brand-icon { width: 18px; height: 18px; color: var(--green); }

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 750;
}

.question-shell {
  max-width: 780px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.question-progress { height: 5px; background: #e8eeeb; }
.question-progress span { display: block; width: 0; height: 100%; background: var(--coral); transition: width .25s ease; }
.question-meta { display: flex; justify-content: space-between; padding: 20px 24px 0; color: var(--muted); font-size: .73rem; }
.time-note { display: inline-flex; align-items: center; gap: 5px; }
.time-note .brand-icon { width: 14px; height: 14px; }
#questionnaire-form { padding: 18px 24px 24px; }
.question { margin: 0; padding: 0; border: 0; }

.question legend {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 780;
  line-height: 1.16;
}

.option-list { display: grid; gap: 10px; }

.option {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}

.option:hover { border-color: #9fb7ae; background: var(--soft); }
.option:has(input:checked) { border-color: var(--green); background: var(--mint); box-shadow: inset 0 0 0 1px var(--green); }
.option input { width: 18px; height: 18px; margin: 0; accent-color: var(--green); }
.question-actions { display: flex; gap: 10px; margin-top: 24px; }

.secondary, .primary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 850;
}

.primary { border: 1px solid var(--green); background: var(--green); color: #fff; }
.primary:hover { border-color: var(--green-dark); background: var(--green-dark); }
.primary:disabled { border-color: #c5cfcb; background: #c5cfcb; cursor: not-allowed; }
.secondary { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.question-actions .primary { flex: 1; }

.result-summary { display: grid; gap: 12px; margin-bottom: 28px; padding: 20px; border-left: 4px solid var(--green); background: var(--mint); }
.result-summary strong { font-size: 1.14rem; }
.result-summary-title { display: flex; align-items: center; gap: 10px; }
.result-summary-title .brand-icon { width: 24px; height: 24px; color: var(--green); }
.answer-summary { display: flex; flex-wrap: wrap; gap: 7px; }
.answer-chip { padding: 6px 9px; border: 1px solid #c5dbd3; border-radius: 999px; background: rgba(255,255,255,.62); color: #36584d; font-size: .73rem; }
.plan-label { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 14px; }
.plan-label h3 { display: inline-flex; margin: 0; align-items: center; gap: 7px; font-size: .94rem; }
.plan-label h3 .brand-icon { width: 18px; height: 18px; color: var(--green); }
.plan-label > span { color: var(--muted); font-size: .74rem; }
.plan-title-group { display: flex; align-items: center; gap: 12px; }
.compact-action { min-height: 34px; padding: 0 11px; font-size: .72rem; }
.step-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.step { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 0 0 24px; }
.step:not(:last-child)::before { content: ""; position: absolute; left: 20px; top: 42px; bottom: 0; width: 1px; background: var(--line); }

.step-number {
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #b7d0c6;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 900;
}

.professional .step-number { border-color: #e1bd84; background: var(--warning-soft); color: var(--warning); }
.step-body { padding: 20px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.step-body > strong { display: block; font-size: 1.08rem; font-weight: 800; line-height: 1.2; }
.step-body p { margin: 9px 0 0; color: var(--muted); font-size: .86rem; }

.professional-note {
  display: flex;
  gap: 9px;
  padding: 11px 12px;
  border-radius: 4px;
  background: var(--warning-soft);
  color: var(--warning) !important;
  font-size: .77rem !important;
  font-weight: 750;
}
.professional-note .brand-icon { width: 18px; height: 18px; margin-top: 1px; flex: 0 0 auto; }

.source-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.source-pill { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: .72rem; font-weight: 750; text-underline-offset: 3px; }
.source-pill .brand-icon { width: 15px; height: 15px; }
.source-pill > span { min-width: 0; }
.support-grid { display: grid; gap: 12px; margin-top: 12px; }
.support-block { padding: 20px; border: 1px solid var(--line); background: #fff; }
.support-block.warning { border-color: #ecd6b4; background: var(--warning-soft); }
.support-block h3 { display: flex; margin: 0 0 12px; align-items: center; gap: 8px; font-size: 1.05rem; }
.support-block h3 .brand-icon { width: 19px; height: 19px; color: var(--green); }
.support-block.warning h3 .brand-icon { color: var(--warning); }
.support-block ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .84rem; }
.support-block li + li { margin-top: 8px; }
.disclaimer { margin-top: 18px; padding: 14px 16px; border: 1px dashed #bfcac5; color: var(--muted); font-size: .74rem; }

.price-grid { display: grid; gap: 12px; }

.price-card {
  position: relative;
  display: grid;
  min-height: 410px;
  align-content: start;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.price-card:hover { transform: translateY(-4px); border-color: #a9bdb6; box-shadow: var(--shadow-lg); }
.price-card.selected { border-color: var(--green); box-shadow: inset 0 0 0 2px var(--green); }
.price-card.featured { border-color: var(--green-dark); background: var(--green-dark); color: #fff; }
.popular-label { justify-self: start; padding: 5px 8px; border-radius: 999px; background: var(--coral); color: #fff; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.package-name { margin-top: 4px; font-size: 1.3rem; font-weight: 800; }
.price { display: flex; align-items: baseline; gap: 6px; color: var(--muted); }
.featured .price, .featured .package-description { color: rgba(255,255,255,.7); }
.price strong { color: var(--ink); font-size: 3.5rem; font-weight: 760; line-height: 1; }
.featured .price strong { color: #fff; }
.package-description { min-height: 48px; margin-bottom: 6px; color: var(--muted); font-size: .84rem; }
.package-line { display: flex; gap: 8px; padding-top: 11px; align-items: flex-start; border-top: 1px solid var(--line); font-size: .8rem; }
.package-line::before { content: ""; width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; background: var(--green); -webkit-mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; }
.featured .package-line { border-color: rgba(255,255,255,.16); }
.featured .package-line::before { background: #8ed0ba; }
.choose-package { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; font-weight: 850; }

.order-form { max-width: 780px; display: grid; gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; gap: 18px; }
.order-form label:not(.check-row) { display: grid; gap: 7px; font-size: .82rem; font-weight: 800; }
.order-form label small { color: var(--muted); font-weight: 500; }

input, textarea { width: 100%; padding: 12px 13px; border: 1px solid #c7d2cd; border-radius: 4px; background: #fff; color: var(--ink); }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: #8b9692; }
input:focus, textarea:focus, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(28,108,161,.25); outline-offset: 2px; }
.check-row { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .79rem; }
.check-row input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; accent-color: var(--green); }
.consent-row { padding: 14px; background: var(--soft); }
.order-form .primary { width: 100%; }
.form-status { min-height: 24px; margin: 0; color: var(--green); font-weight: 750; }
.success-panel { display: grid; grid-template-columns: 38px 1fr; gap: 8px 12px; padding: 28px; border: 1px solid #bcd4cb; background: var(--mint); }
.success-icon { grid-row: 1 / 3; width: 32px; height: 32px; color: var(--green); }
.success-panel strong { font-size: 1.35rem; }
.success-panel p { grid-column: 2; margin: 0; color: var(--muted); }

.marketing-band { scroll-margin-top: 72px; padding: 104px 0; }
.marketing-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.preview-band { border-top: 1px solid var(--line); background: #fff; }
.preview-layout, .comparison-layout, .methodology-layout, .privacy-layout, .faq-layout { display: grid; gap: 48px; }
.marketing-copy { align-self: center; }

.benefit-list { display: grid; gap: 0; margin: 28px 0; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.benefit-list li:last-child { border-bottom: 1px solid var(--line); }
.benefit-list > li > span { color: var(--coral); font-size: .7rem; font-weight: 900; }
.benefit-icon { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid #e5bbb2; border-radius: 4px; background: var(--coral-soft); }
.benefit-icon .brand-icon { width: 18px; height: 18px; }
.benefit-list div { display: grid; gap: 2px; }
.benefit-list strong { font-size: .88rem; }
.benefit-list small { color: var(--muted); font-size: .78rem; }
.inline-cta { display: inline-flex; align-items: center; gap: 14px; font-weight: 850; text-underline-offset: 4px; }

.plan-preview { align-self: center; overflow: hidden; border: 1px solid #bfcfc9; border-radius: 6px; background: #fff; box-shadow: var(--shadow-lg); }
.preview-topbar { display: flex; justify-content: space-between; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--green-dark); color: #fff; font-size: .68rem; font-weight: 800; }
.preview-status { display: flex; align-items: center; gap: 6px; color: #bfe4d6; }
.preview-status .brand-icon { width: 14px; height: 14px; }
.preview-context { display: grid; gap: 6px; padding: 18px; border-bottom: 1px solid var(--line); background: var(--mint); }
.preview-context > span { color: var(--muted); font-size: .65rem; text-transform: uppercase; }
.preview-context > strong { font-size: 1.02rem; }
.preview-context > div { display: flex; flex-wrap: wrap; gap: 6px; }
.preview-context em { padding: 4px 7px; border: 1px solid #c4d9d1; border-radius: 999px; background: #fff; color: var(--muted); font-size: .65rem; font-style: normal; }
.preview-steps { display: grid; gap: 0; margin: 0; padding: 20px 18px 6px; list-style: none; }
.preview-steps li { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding-bottom: 20px; }
.preview-steps li:not(:last-child)::after { content: ""; position: absolute; left: 16px; top: 34px; bottom: 0; width: 1px; background: var(--line); }
.preview-steps li > span { z-index: 1; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #b8d1c8; border-radius: 50%; background: var(--mint); color: var(--green); font-size: .7rem; font-weight: 900; }
.preview-steps li > div { display: grid; gap: 5px; padding-top: 1px; }
.preview-steps small { color: var(--coral); font-size: .63rem; font-weight: 900; text-transform: uppercase; }
.preview-steps strong { font-size: .9rem; line-height: 1.2; }
.preview-steps p { margin: 1px 0; color: var(--muted); font-size: .73rem; }
.preview-steps a { display: inline-flex; align-items: center; gap: 4px; font-size: .65rem; font-weight: 750; text-underline-offset: 3px; }
.preview-steps a .brand-icon { width: 13px; height: 13px; }
.preview-muted-step { opacity: .62; }
.preview-warning { display: grid; grid-template-columns: 22px 1fr; gap: 9px; margin: 0 18px 18px; padding: 13px; border-left: 3px solid var(--yellow); background: var(--yellow-soft); }
.preview-warning > .brand-icon { width: 19px; height: 19px; color: var(--warning); }
.preview-warning > div { display: grid; gap: 3px; }
.preview-warning strong { color: var(--warning); font-size: .75rem; }
.preview-warning span { color: #7f6a49; font-size: .68rem; }

.section-split-head {
  display: grid;
  gap: 26px;
  margin-bottom: 48px;
  align-items: end;
}

.section-split-head h2, .methodology-main h2, .faq-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.55rem);
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-split-head > p, .methodology-main > p, .faq-intro > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.how-band { overflow: hidden; background: var(--green-deep); color: #fff; }
.how-band .eyebrow { color: #93d7bf; }
.section-split-head-dark > p { color: rgba(255,255,255,.64); }

.product-tour {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: #103b33;
  box-shadow: 0 28px 72px rgba(1,20,16,.28);
}

.tour-tabs { display: grid; align-content: start; background: #0b332c; }
.tour-tab {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  gap: 14px;
  width: 100%;
  min-height: 102px;
  padding: 20px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, box-shadow .18s ease;
}

.tour-tab:last-child { border-bottom: 0; }
.tour-tab:hover { background: rgba(255,255,255,.04); }
.tour-tab.active { background: #17483e; box-shadow: inset 4px 0 0 var(--coral); }
.tour-index { color: #8bcbb5; font-size: .68rem; font-weight: 900; }
.tour-tab-copy { display: grid; gap: 4px; }
.tour-tab-copy strong { font-size: .92rem; }
.tour-tab-copy small { color: rgba(255,255,255,.54); font-size: .7rem; font-weight: 500; line-height: 1.45; }
.tour-tab-arrow { width: 20px; height: 20px; color: #8bcbb5; transform: translateX(-4px); opacity: 0; transition: opacity .18s ease, transform .18s ease; }
.tour-tab.active .tour-tab-arrow { opacity: 1; transform: translateX(0); }

.tour-stage { min-width: 0; min-height: 510px; background: #f7faf9; color: var(--ink); }
.tour-stage-bar { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 16px; padding: 0 18px; border-bottom: 1px solid var(--line); background: #fff; }
.tour-mini-brand { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 850; }
.tour-mini-brand img { display: block; object-fit: contain; }
.tour-demo-label { color: var(--muted); font-size: .64rem; font-weight: 750; text-transform: uppercase; }
.tour-screen { min-height: 456px; padding: 26px; }
.tour-screen-head { display: grid; gap: 3px; margin-bottom: 22px; }
.tour-screen-head span, .tour-result-head span { color: var(--coral); font-size: .64rem; font-weight: 900; text-transform: uppercase; }
.tour-screen-head strong { font-size: 1.5rem; }
.tour-scenario-list { display: grid; gap: 8px; }
.tour-scenario { display: grid; grid-template-columns: 32px minmax(0, 1fr) 20px; gap: 12px; min-height: 68px; padding: 13px 14px; align-items: center; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.tour-scenario.active { border-color: #9bc5b5; background: var(--mint); box-shadow: inset 3px 0 0 var(--green); }
.tour-scenario > span { color: var(--coral); font-size: .65rem; font-weight: 900; }
.tour-scenario strong { font-size: .8rem; line-height: 1.3; }
.tour-scenario > .brand-icon { width: 18px; height: 18px; color: var(--green); }
.tour-screen-note { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.tour-progress { height: 5px; overflow: hidden; background: #dbe4e0; }
.tour-progress span { display: block; height: 100%; background: var(--green); }
.tour-question-meta { display: flex; justify-content: space-between; gap: 12px; margin: 11px 0 28px; color: var(--muted); font-size: .66rem; }
.tour-question { display: grid; gap: 20px; }
.tour-question > strong { max-width: 560px; font-size: 1.35rem; line-height: 1.25; }
.tour-options { display: grid; gap: 8px; }
.tour-options > span { display: flex; min-height: 46px; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 4px; background: #fff; font-size: .76rem; font-weight: 750; }
.tour-options i { width: 15px; height: 15px; border: 1px solid #aab8b3; border-radius: 50%; }
.tour-options .selected { border-color: var(--green); background: var(--mint); color: var(--green-dark); }
.tour-options .selected i { border: 4px solid var(--green); background: #fff; }
.tour-next { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; }
.tour-next > .brand-icon { width: 18px; height: 18px; color: var(--green); }
.tour-result-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.tour-result-head > div { display: grid; gap: 3px; }
.tour-result-head > div > strong { font-size: 1.2rem; }
.tour-result-head em { color: var(--muted); font-size: .68rem; font-style: normal; }
.tour-plan-list { display: grid; margin: 0; padding: 18px 0 0; list-style: none; }
.tour-plan-list li { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding-bottom: 17px; }
.tour-plan-list li:not(:last-child)::after { content: ""; position: absolute; top: 31px; bottom: 0; left: 15px; width: 1px; background: var(--line); }
.tour-plan-list li > span { z-index: 1; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid #b9cec6; border-radius: 50%; background: var(--mint); color: var(--green); font-size: .67rem; font-weight: 900; }
.tour-plan-list li > div { display: grid; gap: 3px; padding-top: 1px; }
.tour-plan-list small { color: var(--coral); font-size: .6rem; font-weight: 900; text-transform: uppercase; }
.tour-plan-list strong { font-size: .78rem; line-height: 1.35; }
.tour-plan-list p { margin: 0; color: var(--muted); font-size: .66rem; }
.tour-plan-list .tour-plan-warning > span { border-color: #dfb36f; background: var(--yellow-soft); color: var(--warning); }
.tour-plan-warning > span .brand-icon { width: 17px; height: 17px; }
.tour-source-proof { display: flex; gap: 10px; margin-top: 2px; padding: 12px; border: 1px solid #bed5cc; background: #edf7f3; color: #3f6258; font-size: .68rem; }
.tour-source-proof > .brand-icon { width: 17px; height: 17px; color: var(--green); }

.comparison-band { background: #eef2f0; }
.comparison-points { display: grid; border-top: 1px solid #cfd8d4; }
.comparison-points span { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid #cfd8d4; color: #40524c; font-size: .78rem; font-weight: 750; }
.comparison-points i { color: var(--coral); font-size: .63rem; font-style: normal; font-weight: 900; }
.comparison-visual { display: grid; align-items: stretch; }
.comparison-side { display: grid; min-width: 0; min-height: 550px; grid-template-rows: auto 1fr auto; overflow: hidden; border: 1px solid #cbd6d1; border-radius: 5px; background: #fff; }
.comparison-side > header { display: flex; min-height: 74px; justify-content: space-between; gap: 14px; padding: 16px 18px; align-items: center; border-bottom: 1px solid var(--line); }
.comparison-side > header > div { display: grid; gap: 2px; }
.comparison-side > header span, .comparison-side > footer span { color: var(--coral); font-size: .61rem; font-weight: 900; text-transform: uppercase; }
.comparison-side > header strong { font-size: .92rem; }
.comparison-side > header small { color: var(--muted); font-size: .61rem; }
.comparison-before { background: #fffafa; }
.comparison-before > header { background: #fff1ed; }
.search-window { margin: 18px; overflow: hidden; align-self: stretch; border: 1px solid #dccfc9; background: #fff; }
.search-window-top { display: flex; justify-content: space-between; gap: 10px; padding: 11px 12px; border-bottom: 1px solid #eadbd5; color: #775e56; font-size: .61rem; }
.search-window-top b { font-weight: 800; }
.search-query { display: flex; margin: 12px; padding: 10px 11px; align-items: center; gap: 7px; border: 1px solid #dfd4cf; border-radius: 4px; color: #786c67; font-size: .7rem; }
.search-query .brand-icon { width: 16px; height: 16px; color: var(--coral); }
.search-fragments { display: grid; padding: 0 12px 12px; }
.search-fragments > div { display: grid; grid-template-columns: 28px 1fr; gap: 4px 8px; padding: 12px 0; border-top: 1px solid #ebdfda; }
.search-fragments > div > span { grid-row: 1 / 3; color: #bd7969; font-size: .62rem; font-weight: 900; }
.search-fragments p { margin: 0; color: #423a37; font-size: .76rem; font-weight: 800; }
.search-fragments small { color: #8a7770; font-size: .64rem; }
.comparison-side > footer { display: grid; gap: 2px; padding: 14px 18px; border-top: 1px solid var(--line); background: #fff; }
.comparison-side > footer strong { font-size: .72rem; }
.comparison-transition { display: flex; min-height: 84px; align-items: center; justify-content: center; gap: 10px; color: var(--green); }
.comparison-transition span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid #aac8bd; border-radius: 50%; background: #fff; font-size: 1rem; }
.comparison-transition .brand-icon { width: 20px; height: 20px; }
.comparison-transition small { color: var(--muted); font-size: .63rem; font-weight: 800; text-transform: uppercase; }
.comparison-after { border-color: #9ebfb3; }
.comparison-after > header { background: var(--green-dark); color: #fff; }
.comparison-after > header span { color: #8fd1ba; }
.comparison-after > header small { color: rgba(255,255,255,.62); }
.ordered-plan { margin: 18px; align-self: stretch; border: 1px solid #c4d7d0; background: #fff; }
.ordered-plan-top { display: flex; justify-content: space-between; gap: 10px; padding: 11px 12px; border-bottom: 1px solid var(--line); background: var(--mint); color: #4c675f; font-size: .61rem; }
.ordered-plan-top strong { color: var(--green-dark); }
.ordered-plan ol { display: grid; margin: 0; padding: 5px 12px; list-style: none; }
.ordered-plan li { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 9px; padding: 11px 0; align-items: start; border-bottom: 1px solid var(--line); }
.ordered-plan li > span { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid #b6cec5; border-radius: 50%; background: var(--mint); color: var(--green); font-size: .6rem; font-weight: 900; }
.ordered-plan li > div { display: grid; gap: 2px; }
.ordered-plan li small { color: var(--coral); font-size: .56rem; font-weight: 900; text-transform: uppercase; }
.ordered-plan li strong { font-size: .68rem; line-height: 1.38; }
.ordered-plan li em { padding: 3px 5px; background: var(--soft); color: var(--muted); font-size: .55rem; font-style: normal; font-weight: 800; }
.ordered-source { display: grid; grid-template-columns: 24px 1fr; gap: 9px; margin: 5px 12px 12px; padding: 10px; background: #edf7f3; color: var(--green); }
.ordered-source > .brand-icon { width: 18px; height: 18px; }
.ordered-source > div { display: grid; gap: 2px; }
.ordered-source strong { font-size: .66rem; }
.ordered-source small { color: #617870; font-size: .59rem; }

.methodology-band { background: #fff; }
.source-section-head { display: grid; gap: 32px; margin-bottom: 42px; align-items: end; }
.methodology-main > p { margin-top: 16px; }
.source-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid #b9cec6; background: var(--green-dark); color: #fff; }
.source-metrics > div { display: grid; gap: 3px; padding: 18px; }
.source-metrics > div + div { border-left: 1px solid rgba(255,255,255,.14); }
.source-metrics strong { color: #a7ddca; font-size: 1.35rem; }
.source-metrics span { color: rgba(255,255,255,.58); font-size: .64rem; }
.source-ledger { overflow: hidden; border: 1px solid #bdcbc6; border-radius: 5px; background: #fff; box-shadow: var(--shadow-sm); }
.source-ledger-toolbar { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #f2f5f4; }
.source-ledger-toolbar > div { display: grid; gap: 2px; }
.source-ledger-toolbar > div span { color: var(--coral); font-size: .61rem; font-weight: 900; text-transform: uppercase; }
.source-ledger-toolbar > div strong { font-size: .85rem; }
.source-ledger-state { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: .65rem; font-weight: 850; }
.source-ledger-state .brand-icon { width: 16px; height: 16px; }
.source-ledger-loading { margin: 0; padding: 22px 18px; color: var(--muted); font-size: .76rem; }
.source-row { display: grid; grid-template-columns: 32px minmax(0, 1fr) 20px; gap: 10px; padding: 15px 18px; align-items: center; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: background .15s ease; }
.source-row[hidden] { display: none; }
.source-row:hover { background: #f5f8f7; }
.source-row-index { color: var(--coral); font-size: .61rem; font-weight: 900; }
.source-row-main { display: grid; min-width: 0; gap: 2px; }
.source-row-main strong { overflow-wrap: anywhere; font-size: .74rem; line-height: 1.35; }
.source-row-main small { overflow: hidden; color: var(--muted); font-size: .61rem; text-overflow: ellipsis; white-space: nowrap; }
.source-row-status { grid-column: 2; display: flex; align-items: center; gap: 6px; color: #4c6c62; font-size: .61rem; }
.source-row-status .brand-icon { width: 15px; height: 15px; color: var(--green); }
.source-row-open { grid-row: 1 / 3; grid-column: 3; width: 17px; height: 17px; color: var(--green); }
.source-ledger-toggle { display: flex; width: 100%; min-height: 50px; align-items: center; justify-content: center; gap: 7px; border: 0; border-top: 1px solid var(--line); background: #f7faf9; color: var(--green); cursor: pointer; font-size: .72rem; font-weight: 850; }
.source-ledger-toggle:hover { background: var(--mint); }
.source-ledger-toggle .brand-icon { width: 16px; height: 16px; transition: transform .15s ease; }
.source-ledger-toggle.is-expanded .toggle-icon { transform: rotate(180deg); }
.scope-boundary { display: grid; grid-template-columns: 38px 1fr; gap: 14px; margin-top: 20px; padding: 20px; border-left: 4px solid var(--yellow); background: var(--warning-soft); }
.scope-mark { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #dda957; color: var(--warning); font-weight: 900; }
.scope-mark .brand-icon { width: 19px; height: 19px; }
.scope-boundary > div { display: grid; gap: 2px; }
.scope-boundary > div span { color: #9a6c2c; font-size: .6rem; font-weight: 900; text-transform: uppercase; }
.scope-boundary > div strong { color: var(--warning); font-size: .82rem; }
.scope-boundary p { grid-column: 1 / -1; margin: 0; color: #756144; font-size: .74rem; }

.public-pricing { border-top: 1px solid var(--line); background: #f6f8f7; }
.pricing-ladder { display: grid; gap: 12px; align-items: stretch; }
.pricing-tier { display: grid; min-height: 450px; align-content: start; grid-template-rows: auto auto auto 1fr auto; gap: 20px; padding: 24px; border: 1px solid var(--line); border-top: 5px solid #98b5aa; border-radius: 5px; background: #fff; }
.pricing-tier > header { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.pricing-tier > header > span { color: var(--coral); font-size: .65rem; font-weight: 900; }
.pricing-tier > header em { padding: 5px 7px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .58rem; font-style: normal; font-weight: 850; text-transform: uppercase; }
.tier-title { display: grid; gap: 8px; }
.tier-title h3 { margin: 0; font-size: 1.15rem; }
.tier-title > strong { font-size: 3rem; font-weight: 760; line-height: 1; }
.tier-title small { color: var(--muted); font-size: .75rem; font-weight: 750; }
.pricing-tier > p { min-height: 48px; margin: 0; color: var(--muted); font-size: .77rem; }
.pricing-tier ul { display: grid; align-content: start; margin: 0; padding: 0; list-style: none; }
.pricing-tier li { display: flex; gap: 8px; padding: 11px 0; align-items: flex-start; border-top: 1px solid var(--line); font-size: .74rem; }
.pricing-tier li::before { content: ""; width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; background: var(--green); -webkit-mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; }
.pricing-tier > a { display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 12px; padding: 0 13px; border: 1px solid #b8c9c3; border-radius: 4px; color: var(--green-dark); font-size: .72rem; font-weight: 850; text-decoration: none; }
.pricing-tier > a:hover { border-color: var(--green); background: var(--mint); }
.pricing-tier-personal { border-top-color: var(--coral); box-shadow: var(--shadow-sm); }
.pricing-tier-personal > header em { border-color: #f0bdb2; background: var(--coral-soft); color: #9a4d3d; }
.pricing-tier-extended { border-color: var(--green-dark); border-top-color: var(--yellow); background: var(--green-dark); color: #fff; box-shadow: var(--shadow-lg); }
.pricing-tier-extended > header > span { color: #9ad5c0; }
.pricing-tier-extended > header em { border-color: rgba(255,255,255,.2); color: #f2d98e; }
.pricing-tier-extended .tier-title small, .pricing-tier-extended > p { color: rgba(255,255,255,.62); }
.pricing-tier-extended li { border-color: rgba(255,255,255,.14); }
.pricing-tier-extended li::before { background: #9ad5c0; }
.pricing-tier-extended > a { border-color: rgba(255,255,255,.24); color: #fff; }
.pricing-tier-extended > a:hover { border-color: #9ad5c0; background: rgba(255,255,255,.08); }
.pricing-notice { display: grid; gap: 18px; margin-top: 14px; padding: 20px; border: 1px solid #e5c79a; background: var(--warning-soft); }
.pricing-notice > div { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.pricing-notice > div > span { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid #d9aa62; color: var(--warning); font-size: .72rem; font-weight: 900; }
.pricing-notice > div > span .brand-icon { width: 16px; height: 16px; }
.pricing-notice p { margin: 0; color: #725f43; font-size: .74rem; }
.pricing-notice p strong { display: block; color: var(--warning); }
.pricing-notice .primary-link { justify-self: start; }

.privacy-band { background: #dce9ef; }
.privacy-head > p { color: #526d7b; }
.privacy-board { display: grid; overflow: hidden; border: 1px solid #aebfc7; border-radius: 5px; background: #fff; box-shadow: 0 24px 58px rgba(35,70,89,.12); }
.privacy-flow { padding: 8px 20px; }
.data-row { display: grid; gap: 14px; padding: 20px 0; border-bottom: 1px solid #d9e2e6; }
.data-row:last-child { border-bottom: 0; }
.data-origin, .data-destination { display: grid; grid-template-columns: 36px 1fr; gap: 11px; align-items: center; }
.data-origin > span, .data-destination > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #b9cbd3; color: var(--blue); font-size: .63rem; font-weight: 900; }
.data-origin > div, .data-destination > div { display: grid; gap: 2px; }
.data-origin strong, .data-destination strong { font-size: .78rem; }
.data-origin small, .data-destination small { color: #667c87; font-size: .64rem; }
.data-route { display: flex; align-items: center; justify-content: center; gap: 9px; color: #65808e; }
.data-route span { font-size: .58rem; font-weight: 850; text-transform: uppercase; }
.data-route > .brand-icon { width: 18px; height: 18px; }
.data-destination { padding: 12px; background: #edf4f7; }
.data-destination.local { background: #e8f3ef; }
.data-destination.local > span, .data-destination.consent > span { border-color: #a9c9bd; color: var(--green); }
.data-destination > span .brand-icon { width: 19px; height: 19px; }
.data-destination.consent { background: #f7f3e6; }
.data-exclusion { display: grid; align-content: start; gap: 22px; padding: 26px; background: #244b62; color: #fff; }
.data-exclusion > div { display: grid; gap: 4px; }
.data-exclusion > div span { color: #9dc8dc; font-size: .61rem; font-weight: 900; text-transform: uppercase; }
.data-exclusion > div strong { font-size: 1.05rem; line-height: 1.25; }
.data-exclusion ul { display: grid; margin: 0; padding: 0; list-style: none; }
.data-exclusion li { display: flex; gap: 10px; padding: 11px 0; align-items: center; border-top: 1px solid rgba(255,255,255,.15); font-size: .76rem; }
.data-exclusion li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.data-exclusion li .brand-icon { width: 18px; height: 18px; color: #f2c75c; }
.data-exclusion p { margin: 0; color: rgba(255,255,255,.58); font-size: .67rem; }

.faq-band { background: #fff; }
.faq-intro { align-self: start; }
.faq-intro > p { margin-top: 14px; }
.faq-summary { display: grid; gap: 13px; margin-top: 30px; padding: 20px; border-left: 4px solid var(--coral); background: var(--green-deep); color: #fff; }
.faq-summary > span { color: #9cd6c2; font-size: .6rem; font-weight: 900; text-transform: uppercase; }
.faq-summary ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.faq-summary li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; color: rgba(255,255,255,.72); font-size: .7rem; }
.faq-summary li::before { content: ""; width: 14px; height: 14px; margin-top: 2px; background: #9cd6c2; -webkit-mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); transition: background .15s ease, box-shadow .15s ease; }
.faq-list details[open] { background: #f5f8f7; box-shadow: inset 3px 0 0 var(--green); }
.faq-list summary { display: grid; grid-template-columns: 36px minmax(0, 1fr) 28px; gap: 12px; min-height: 76px; padding: 16px 10px; align-items: center; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-number { color: var(--coral); font-size: .62rem; font-weight: 900; }
.faq-list summary strong { font-size: .82rem; line-height: 1.35; }
.faq-toggle { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green); font-size: 1rem; font-weight: 500; transition: transform .15s ease, background .15s ease; }
.faq-toggle .brand-icon { width: 17px; height: 17px; }
.faq-list details[open] .faq-toggle { border-color: #b5cec5; background: var(--mint); transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -3px 18px 20px 58px; color: var(--muted); font-size: .76rem; }

.mobile-start { display: none; }

.load-error { grid-column: 1 / -1; margin: 0; padding: 18px; border: 1px solid #e0b4aa; background: var(--coral-soft); color: #7b4438; }

.site-footer { padding: 44px 0; border-top: 1px solid rgba(255,255,255,.12); background: var(--green-deep); color: #fff; }
.footer-inner { display: grid; width: min(1180px, calc(100% - 40px)); margin: 0 auto; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-symbol { width: 42px; height: 42px; background-image: url("/assets/brand/logo-mark-reverse.svg"); }
.footer-brand > div { display: grid; gap: 2px; }
.footer-brand strong { font-size: 1.02rem; }
.footer-brand small { color: rgba(255,255,255,.56); font-size: .72rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.footer-links a, .footer-meta a { color: rgba(255,255,255,.72); font-size: .75rem; text-underline-offset: 3px; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; color: rgba(255,255,255,.5); font-size: .7rem; }

.hidden { display: none !important; }

.admin-page { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 80px; }
.admin-page h1 { margin: 0 0 28px; font-size: 2.4rem; }
.admin-title { display: flex; align-items: center; gap: 14px; }
.admin-title img { flex: 0 0 auto; }
.admin-title > span { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.admin-title small { color: var(--muted); font-size: .9rem; font-weight: 650; }
.admin-page .panel { margin-bottom: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.admin-page h2 { margin-top: 0; }
pre, .table-wrap { overflow: auto; }
pre { padding: 16px; background: var(--soft); font-size: .8rem; }
table { width: 100%; border-collapse: collapse; font-size: .82rem; }
th, td { padding: 11px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
th { background: var(--soft); }

@media (min-width: 680px) {
  .proof-rail { grid-template-columns: repeat(3, 1fr); }
  .proof-item { border-right: 1px solid var(--line); border-bottom: 0; }
  .proof-item:last-child { border-right: 0; }
  .scenario-heading { grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); }
  .scenario-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-grid, .support-grid, .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-scenario-list, .tour-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tour-scenario { grid-template-columns: 1fr 18px; min-height: 112px; align-content: space-between; }
  .tour-scenario > span { grid-column: 1 / -1; }
  .tour-scenario strong { align-self: end; }
  .source-row { grid-template-columns: 32px minmax(0, 1fr) 170px 20px; }
  .source-row-status { grid-row: 1; grid-column: 3; justify-self: end; }
  .source-row-open { grid-row: 1; grid-column: 4; }
  .scope-boundary { grid-template-columns: 38px minmax(230px, .75fr) minmax(0, 1.25fr); align-items: center; }
  .scope-boundary p { grid-row: 1; grid-column: 3; }
  .pricing-notice { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .pricing-notice .primary-link { justify-self: end; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-meta { grid-column: 1 / -1; }
}

@media (min-width: 920px) {
  .desktop-nav { display: flex; }
  .preview-layout { grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr); gap: 80px; }
  .section-split-head { grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: 76px; }
  .product-tour { grid-template-columns: 340px minmax(0, 1fr); }
  .tour-tabs { grid-template-rows: repeat(3, 1fr); }
  .tour-tab { min-height: 0; }
  .tour-stage, .tour-screen { min-height: 510px; }
  .tour-screen { padding: 32px 38px; }
  .comparison-visual { grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr); }
  .comparison-transition { min-height: 0; flex-direction: column; }
  .source-section-head { grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: 78px; }
  .pricing-ladder { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .privacy-board { grid-template-columns: minmax(0, 1.55fr) minmax(290px, .45fr); }
  .privacy-flow { padding: 14px 26px; }
  .data-row { grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1.08fr); align-items: center; }
  .faq-layout { grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); gap: 88px; }
  .faq-intro { position: sticky; top: 102px; }
}

@media (min-width: 1040px) {
  .app-layout.flow-active { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 64px; }
  .app-layout.flow-active .progress-nav { position: sticky; top: 96px; display: block; align-self: start; }
  .progress-label { margin: 0 0 18px; color: var(--muted); font-size: .69rem; font-weight: 900; text-transform: uppercase; }
  .progress-nav ol { display: grid; margin: 0; padding: 0; list-style: none; }
  .progress-item { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 11px; min-height: 72px; color: #8a9691; }
  .progress-item:not(:last-child)::after { content: ""; position: absolute; left: 16px; top: 35px; bottom: 0; width: 1px; background: var(--line); }
  .progress-item > .progress-marker { z-index: 1; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--bg); }
  .progress-marker .brand-icon { width: 17px; height: 17px; }
  .progress-item div { display: grid; align-content: start; padding-top: 1px; }
  .progress-item strong { font-size: .8rem; }
  .progress-item small { font-size: .69rem; }
  .progress-item.active { color: var(--ink); }
  .progress-item.active > .progress-marker { border-color: var(--green); background: var(--green); color: #fff; }
  .progress-item.complete > .progress-marker { border-color: #b8d2c8; background: var(--mint); color: var(--green); }
  .progress-item.complete > .progress-marker .brand-icon { display: none; }
  .progress-item.complete > .progress-marker::before { content: ""; width: 16px; height: 16px; background: var(--green); -webkit-mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; mask: url("/assets/brand/icon-check-mask.svg") center / contain no-repeat; }
  .nav-note { margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .69rem; }
  .app-layout.flow-active .scenario-heading { grid-template-columns: 1fr; }
  .app-layout.flow-active .scenario-heading > p { margin-top: 0 !important; }
  .app-layout.flow-active .scenario-card { min-height: 230px; padding: 21px; }
}

@media (max-width: 679px) {
  body { padding-bottom: 72px; }
  .site-header { height: 64px; }
  .header-inner { width: calc(100% - 30px); }
  .header-action { min-width: 40px; padding: 0 10px; font-size: 0; }
  .header-action .brand-icon { width: 18px; height: 18px; }
  .hero { min-height: 650px; height: min(78vh, 690px); background-position: 68% center; }
  .hero-overlay { background: rgba(5,34,28,.75); }
  .hero-inner { width: calc(100% - 36px); padding: 96px 0 52px; }
  .hero h1 { max-width: 520px; font-size: clamp(2.35rem, 10.5vw, 2.85rem); line-height: 1; }
  .lead { font-size: .96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-cta { width: 100%; }
  .hero-secondary { text-align: center; }
  .hero-note { text-align: center; }
  .proof-rail { margin-top: -20px; }
  .app-layout { margin-top: 56px; margin-bottom: 76px; }
  .flow-section { padding-bottom: 58px; }
  .flow-section + .flow-section { padding-top: 48px; }
  .scenario-card { min-height: 218px; }
  .question-actions { flex-direction: column-reverse; }
  .question-actions .secondary { width: 100%; }
  .price-card { min-height: 390px; }
  .resume-card { align-items: stretch; flex-direction: column; }
  .resume-actions button { flex: 1; }
  .plan-label { align-items: flex-start; }
  .plan-title-group { align-items: flex-start; flex-direction: column; }
  .marketing-band { padding: 76px 0; }
  .marketing-copy h2, .center-heading h2, .section-split-head h2, .methodology-main h2, .faq-intro h2 { font-size: 2.05rem; }
  .section-split-head { margin-bottom: 34px; }
  .tour-tab { min-height: 88px; padding: 16px; }
  .tour-stage { min-height: 470px; }
  .tour-screen { min-height: 416px; padding: 20px; }
  .tour-demo-label { display: none; }
  .tour-question > strong { font-size: 1.1rem; }
  .comparison-side { min-height: 520px; }
  .comparison-transition { min-height: 72px; }
  .ordered-plan li { grid-template-columns: 28px minmax(0, 1fr); }
  .ordered-plan li em { grid-column: 2; justify-self: start; }
  .source-ledger-state { display: none; }
  .source-metrics strong { font-size: 1.15rem; }
  .source-metrics span { font-size: .59rem; }
  .pricing-tier { min-height: 420px; }
  .data-route { justify-content: flex-start; padding-left: 46px; }
  .data-route > .brand-icon { transform: rotate(90deg); }
  .faq-list details p { margin-left: 58px; }
  .mobile-start {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid #b9cac3;
    background: rgba(255,255,255,.98);
    box-shadow: 0 -10px 28px rgba(8,36,30,.09);
  }
  .mobile-start > div { display: grid; }
  .mobile-start strong { font-size: .75rem; }
  .mobile-start span { color: var(--muted); font-size: .62rem; }
  .mobile-start a { display: inline-flex; min-height: 42px; align-items: center; gap: 8px; padding: 0 13px; border-radius: 4px; background: var(--coral); color: #fff; font-size: .73rem; font-weight: 850; text-decoration: none; }
  .mobile-start a .brand-icon { width: 16px; height: 16px; }
  .mobile-start.flow-started { display: none; }
  .site-footer { padding-bottom: 36px; }
}

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