@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;800&display=swap');

:root {
  --red: #E1382A;
  --red-ink: #C43125;
  --red-ink-hover: #A72A1F;
  --maroon: #3B1420;
  --cream: #F6F1E6;
  --cream-100: #FBF8F1;
  --ink: #18130F;
  --ink-600: #4B433B;
  --ink-400: #8C8175;
  --line: #E3DAC5;
  --amber-dark: #C4831F;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Archivo', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red-ink); }
a:hover { color: var(--red-ink-hover); }

.link-muted { color: var(--ink-600); }
.link-muted:hover { color: var(--ink); }

.link-accent { color: var(--red-ink); }
.link-accent:hover { color: var(--red-ink-hover); }

header.site-header {
  min-height: 72px;
  background: var(--cream-100);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 14px 56px;
  position: sticky;
  top: 8px;
  z-index: 50;
  transition: box-shadow 0.2s ease;
}

header.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(24, 19, 15, 0.08);
}

@media (max-width: 640px) {
  header.site-header { padding: 12px 20px; min-height: 56px; }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 24px;
}

.site-nav a:not(.btn-primary) {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-600);
  text-decoration: none;
}

.site-nav a:hover:not(.btn-primary) { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle svg { display: block; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-100);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
  }
  .site-nav.is-open a { padding: 10px 0; }
  .site-nav .btn-primary { margin-top: 6px; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-badge {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--red-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex: none;
}

@media (max-width: 640px) {
  .logo-badge { width: 26px; height: 26px; font-size: 10px; }
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-stripe { display: flex; flex-direction: column; position: sticky; top: 0; z-index: 51; }
.brand-stripe .stripe-red { height: 3px; background: var(--red); }
.brand-stripe .stripe-maroon { height: 5px; background: var(--maroon); }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin: 0 0 10px;
}

.eyebrow-on-dark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 12px;
}

h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 8px;
}

.meta {
  font-size: 13px;
  color: var(--ink-600);
  margin: 0 0 40px;
}

.legal-doc h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 40px 0 12px;
}

.legal-doc h2:first-of-type { margin-top: 0; }

.legal-doc p, .legal-doc li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-600);
}

.legal-doc strong { color: var(--ink); }

.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13px;
}

.legal-doc th, .legal-doc td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.legal-doc th {
  background: var(--cream-100);
  font-weight: 700;
  font-size: 12px;
}

.legal-doc code {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 12px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.card + .card { margin-top: 20px; }

.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  height: 46px;
  padding: 0 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline:hover { color: var(--ink); background: var(--cream-100); border-color: var(--ink-400); }

.btn-primary, .btn-secondary, .btn-on-dark {
  height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: none;
}

.btn-primary, .btn-on-dark { background: var(--red-ink); color: #fff; }
.btn-primary:hover, .btn-on-dark:hover { color: #fff; background: var(--red-ink-hover); }

.btn-secondary { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.btn-secondary:hover { color: var(--ink); background: var(--cream-100); border-color: var(--ink-400); }

footer.site-footer {
  text-align: center;
  padding: 32px 20px 56px;
  font-size: 11px;
  line-height: 1.8;
  color: var(--ink-600);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 16px;
}
.footer-social a { display: inline-flex; color: var(--ink-600); }
.footer-social a:hover { color: var(--red-ink); }
.footer-social svg { display: block; width: 20px; height: 20px; }

footer.site-footer a {
  color: var(--ink-600);
  text-decoration: underline;
}
footer.site-footer a:hover { color: var(--ink); }

.back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-600);
  text-decoration: none;
  margin-bottom: 24px;
}

.back-link:hover { color: var(--ink); }

/* ============================
   Home page
   ============================ */

.hero {
  background: #fff;
  padding: 96px 56px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-copy { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }

.hero-copy h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}

.hero-copy p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--ink-600);
  max-width: 560px;
  margin: 0 0 40px;
}

.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-cta .btn-primary, .hero-cta .btn-secondary { height: 52px; padding: 0 28px; font-size: 15px; }

.hero-visual { flex: none; width: 460px; max-width: 100%; height: 458px; position: relative; }
.hero-texture { position: absolute; left: 15%; top: 2%; width: 72%; height: 66%; display: block; }
.hero-portrait { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: block; filter: grayscale(1) contrast(1.05); object-fit: cover; }

.hero-card {
  position: absolute;
  left: 51%;
  top: 52%;
  width: 33%;
  min-width: 168px;
  background: #fff;
  border-right: 8px solid var(--red);
  border-bottom: 8px solid var(--red);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card .label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-600); }
.hero-card .sub { font-size: 11px; color: var(--ink-600); }
.hero-card .score-row { display: flex; align-items: baseline; gap: 6px; }
.hero-card .score-row .num { font-size: 48px; font-weight: 800; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.hero-card .score-row .denom { font-size: 15px; color: var(--ink-600); }
.hero-card .caption { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-600); }

.section-receive {
  background: var(--cream-100);
  padding: 96px 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-receive .inner { max-width: 1328px; margin: 0 auto; }
.receive-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.receive-step { display: flex; flex-direction: column; gap: 14px; }
.receive-step .rule { height: 1px; width: 100%; background: var(--line); }
.receive-step.is-featured .rule { background: var(--red); }
.receive-step .index { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--ink-600); }
.receive-step h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0; }
.receive-step p { font-size: 14px; line-height: 1.6; color: var(--ink-600); margin: 0; }
.receive-stats { display: flex; gap: 20px; margin: 2px 0; }
.receive-stats .num { font-size: 44px; font-weight: 800; line-height: 1; color: var(--red); }
.receive-stats .cap { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-600); margin-top: 6px; }

.section-proof { background: #fff; padding: 88px 56px; display: flex; justify-content: center; }
.proof-card {
  width: 100%;
  max-width: 780px;
  background: #fff;
  border: 1.5px solid var(--red);
  border-radius: 16px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-card .num { font-size: 48px; font-weight: 800; line-height: 1; color: var(--red); flex: none; }
.proof-card p { font-size: 14px; line-height: 1.6; color: var(--ink-600); margin: 0; }
.proof-card p.lead { font-size: 17px; color: var(--ink); font-weight: 600; }
.proof-card .body { display: flex; flex-direction: column; gap: 12px; }

.section-tools {
  background: var(--cream-100);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: stretch;
  min-height: 560px;
}
.tools-image { flex: none; width: 45%; overflow: hidden; }
.tools-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tools-copy { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 32px; padding: 72px 56px; }
.tools-copy h2 { font-size: 36px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); margin: 0; max-width: 520px; }
.tools-copy .body { display: flex; flex-direction: column; gap: 20px; max-width: 520px; }
.tools-copy p { font-size: 16px; line-height: 1.68; color: var(--ink-600); margin: 0; }

.section-framework, .section-measures { background: var(--maroon); padding: 88px 56px; }
.section-framework .inner, .section-measures .inner { max-width: 1328px; margin: 0 auto; }
.framework-lead { font-size: 20px; font-weight: 600; line-height: 1.5; color: #fff; max-width: 760px; margin: 0 0 48px; }
.framework-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; margin-bottom: 40px; list-style: none; padding: 0; }
.framework-pillar { display: flex; flex-direction: column; gap: 10px; }
.framework-pillar .rule { height: 1px; width: 100%; background: rgba(255,255,255,0.15); }
.framework-pillar h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 6px 0 0; }
.framework-pillar p { font-size: 15px; line-height: 1.68; color: rgba(255,255,255,0.7); margin: 0; }

.section-measures { position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.08); }
.measures-ghost {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: clamp(90px, 18vw, 260px); font-weight: 800; line-height: 1; color: rgba(255,255,255,0.05); pointer-events: none;
}
.section-measures .inner { text-align: center; position: relative; }
.measures-lead { font-size: 22px; font-weight: 600; line-height: 1.55; color: #fff; margin: 0; }
.measures-note { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); margin: 20px 0 0; }

.section-review { background: #fff; padding: 88px 56px; display: flex; justify-content: center; }
.section-review .inner { max-width: 760px; display: flex; flex-direction: column; gap: 20px; }
.section-review p { font-size: 17px; line-height: 1.68; color: var(--ink-600); margin: 0; }

.section-checked {
  background: var(--cream-100);
  padding: 72px 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.section-checked .inner { max-width: 640px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.section-checked p { font-size: 17px; line-height: 1.6; color: var(--ink); margin: 0; }

.section-faq { background: #fff; padding: 88px 56px; display: flex; justify-content: center; }
.section-faq .inner { max-width: 780px; width: 100%; }
.section-faq h2 { font-size: 32px; font-weight: 800; color: var(--ink); margin: 0 0 40px; }
.faq-item { padding: 24px 0; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.faq-item p { font-size: 14px; line-height: 1.6; color: var(--ink-600); margin: 0; }

.section-closer {
  background: var(--cream-100);
  padding: 96px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}
.section-closer h2 { font-size: 40px; font-weight: 800; line-height: 1.25; color: var(--ink); margin: 0 0 32px; }
.closer-copy { display: flex; flex-direction: column; align-items: flex-start; text-align: left; max-width: 480px; }
.closer-copy .hero-cta { justify-content: flex-start; }

.score-card { flex: none; width: 320px; max-width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: 0 4px 12px rgba(24,19,15,0.18); }
.score-card .head { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.score-card .avatar { width: 36px; height: 36px; border-radius: 50%; background: #EDE4D3; display: flex; align-items: center; justify-content: center; flex: none; }
.score-card .head .label { font-size: 12px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink-600); }
.score-card .center { text-align: center; }
.score-card .score-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 12px; }
.score-card .score-row .num { font-size: 64px; font-weight: 800; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.score-card .score-row .denom { font-size: 16px; color: var(--ink-600); }
.score-card .bar-track { height: 6px; width: 100%; background: #F1EAE0; border-radius: 3px; overflow: hidden; margin-bottom: 24px; }
.score-card .bar-fill { height: 100%; background: var(--red); }
.score-card .stats { display: flex; gap: 10px; margin-bottom: 24px; }
.score-card .stat { flex: 1 1 0; background: var(--cream-100); border-radius: 10px; padding: 12px; }
.score-card .stat .k { font-size: 11px; color: var(--ink-600); margin-bottom: 4px; }
.score-card .stat .v { font-size: 14px; font-weight: 700; color: var(--ink); }
.score-card .btn-primary { width: 100%; }

/* ============================
   How It Works page
   ============================ */

.hiw-hero { background: #fff; padding: 96px 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hiw-hero h1 { font-size: 52px; font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); max-width: 880px; margin: 0 0 24px; }
.hiw-hero p { font-size: 17px; font-weight: 400; line-height: 1.68; color: var(--ink-600); max-width: 640px; margin: 0; }

.section-journey { background: var(--cream-100); padding: 88px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-journey .inner { max-width: 1328px; margin: 0 auto; }
.journey-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.journey-step { display: flex; flex-direction: column; gap: 14px; }
.journey-step .rule { height: 1px; width: 100%; background: var(--line); }
.journey-step.is-featured .rule { background: var(--red); }
.journey-step .index { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--ink-400); }
.journey-step h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0; }
.journey-step p { font-size: 14px; line-height: 1.6; color: var(--ink-600); margin: 0; }

.section-submit { background: #fff; padding: 88px 56px; display: flex; justify-content: center; gap: 64px; align-items: center; }
.submit-image { flex: none; width: 420px; height: 460px; border-radius: 16px; overflow: hidden; }
.submit-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.submit-copy { max-width: 460px; }
.submit-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.submit-fields div { font-size: 14px; color: var(--ink-600); }
.submit-fields strong { font-size: 15px; color: var(--ink); }
.submit-copy > p { font-size: 14px; line-height: 1.7; color: var(--ink-600); margin: 0; }

.section-metrics { background: var(--cream-100); padding: 88px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.section-metrics .inner { max-width: 1040px; margin: 0 auto; position: relative; }
.metrics-ghost { position: absolute; right: 4%; top: 64px; font-size: 220px; font-weight: 800; line-height: 1; color: rgba(24,19,15,0.045); pointer-events: none; }
.metrics-lead { font-size: 17px; color: var(--ink); margin: 0 0 56px; max-width: 560px; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; margin-bottom: 56px; }
.cluster-label { font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--red-ink); margin: 0 0 18px; }
.cluster-items { display: flex; flex-direction: column; gap: 18px; }
.cluster-items p { font-size: 14px; line-height: 1.6; color: var(--ink-600); margin: 0; }
.cluster-items strong { color: var(--ink); display: block; margin-bottom: 2px; }
.metrics-footnotes { border-top: 1px solid var(--line); padding-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.metrics-footnotes p { font-size: 13px; line-height: 1.6; color: var(--ink-600); margin: 0; }
.metrics-footnotes strong { color: var(--ink); }

.section-evidence { background: var(--maroon); padding: 88px 56px; }
.section-evidence .inner { max-width: 900px; margin: 0 auto; }
.evidence-lead { font-size: 20px; font-weight: 600; line-height: 1.5; color: #fff; max-width: 640px; margin: 0 0 48px; }
.evidence-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; margin-bottom: 48px; }
.evidence-stat .num { font-size: 44px; font-weight: 800; line-height: 1; color: #fff; margin-bottom: 10px; }
.evidence-stat .num.is-primary { color: #fff; }
.evidence-stat .bar-track { height: 6px; width: 100%; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden; margin-bottom: 10px; }
.evidence-stat .bar-fill { height: 100%; background: rgba(255,255,255,0.5); }
.evidence-stat:first-child .bar-fill { background: var(--red); }
.evidence-stat .cap { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }
.evidence-note { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); margin: 0 0 44px; }
.evidence-body { display: flex; flex-direction: column; gap: 20px; max-width: 700px; }
.evidence-body p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.8); margin: 0; }
.evidence-sources { font-size: 12px; color: rgba(255,255,255,0.4); margin: 32px 0 0; font-style: italic; }

.section-result { background: #fff; padding: 88px 56px; display: flex; justify-content: center; }
.section-result .inner { max-width: 1000px; width: 100%; }
.result-row { display: flex; gap: 64px; align-items: flex-start; margin-top: 32px; }
.result-score { flex: none; width: 220px; }
.result-score .num { font-size: 60px; font-weight: 800; line-height: 1; color: var(--red-ink); letter-spacing: -0.02em; }
.result-score .cap { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-600); margin: 10px 0 12px; }
.result-score .note { font-size: 14px; line-height: 1.6; color: var(--ink-600); margin: 0; }
.result-list { flex: 1; display: flex; flex-direction: column; gap: 20px; border-left: 1px solid var(--line); padding-left: 48px; }
.result-list p { font-size: 15px; line-height: 1.6; color: var(--ink-600); margin: 0; }
.result-list strong { color: var(--ink); display: block; margin-bottom: 2px; }

.section-boundaries { background: var(--cream-100); padding: 88px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: center; }
.section-boundaries .inner { max-width: 760px; }
.section-boundaries > .inner > p { font-size: 16px; line-height: 1.7; color: var(--ink-600); margin: 0 0 28px; }
.section-boundaries > .inner > p:last-child { margin: 0; }
.boundaries-callout { background: #fff; border: 1.5px solid var(--red); border-radius: 14px; padding: 28px; margin-bottom: 28px; }
.callout-label { font-size: 15px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--red-ink); margin: 0 0 12px; }
.boundaries-callout p:not(.callout-label) { font-size: 16px; line-height: 1.7; color: var(--ink); margin: 0; }

.section-timing { background: #fff; padding: 88px 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.timing-track { width: 100%; max-width: 460px; margin: 36px 0 0; }
.track-row { display: flex; align-items: center; }
.dot { border-radius: 50%; flex: none; }
.dot-start { width: 9px; height: 9px; background: var(--ink-400); }
.dot-end { width: 12px; height: 12px; background: var(--red-ink); }
.track-line { flex: 1; height: 1px; background: var(--line); }
.track-labels { display: flex; justify-content: space-between; margin-top: 12px; }
.track-labels .align-right { text-align: right; }
.track-labels .label { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-400); margin: 0 0 2px; }
.track-labels .label.is-accent { color: var(--red-ink); }
.track-labels .sub { font-size: 13px; color: var(--ink-600); margin: 0; }
.section-timing > .num { font-size: 60px; font-weight: 800; line-height: 1; color: var(--red-ink); letter-spacing: -0.02em; margin: 40px 0 10px; }
.section-timing > .cap { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-600); margin: 0 0 28px; }
.timing-fact { font-size: 14px; line-height: 1.6; color: var(--ink-600); max-width: 480px; margin: 0 0 24px; }
.timing-retake { padding-top: 20px; border-top: 1px solid var(--line); max-width: 480px; }
.timing-retake p { font-size: 14px; line-height: 1.6; color: var(--ink-600); margin: 0; }

.section-hiw-closer { background: var(--cream-100); padding: 112px 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-hiw-closer h2 { font-size: 40px; font-weight: 800; line-height: 1.25; color: var(--ink); max-width: 600px; margin: 0 0 32px; }
.section-hiw-closer .hero-cta { justify-content: center; }
.section-hiw-closer .btn-primary, .section-hiw-closer .btn-secondary { height: 52px; padding: 0 28px; font-size: 15px; }

/* ============================
   For Teams page
   ============================ */
.ft-hero { background: var(--maroon); padding: 104px 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.ft-hero h1 { font-size: 54px; font-weight: 800; line-height: 1.16; letter-spacing: -0.01em; color: #fff; max-width: 780px; margin: 0 0 24px; }
.ft-hero p { font-size: 17px; font-weight: 400; line-height: 1.68; color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 0 40px; }

.section-ft-problems { background: var(--cream-100); padding: 100px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-ft-problems .inner { max-width: 1200px; margin: 0 auto; display: flex; }
.ft-problem { flex: 1 1 0; }
.ft-problem:first-child { padding-right: 56px; }
.ft-problem:last-child { padding-left: 56px; }
.ft-problem .kicker { width: 32px; height: 3px; background: var(--red-ink); margin: 0 0 18px; }
.ft-problem h2 { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red-ink); margin: 0 0 22px; }
.ft-problem .pull { font-size: 25px; font-weight: 700; line-height: 1.35; color: var(--ink); margin: 0 0 18px; }
.ft-problem p:not(.pull) { font-size: 15px; line-height: 1.7; color: var(--ink-600); margin: 0 0 14px; }
.ft-problem p:not(.pull):last-child { margin-bottom: 0; }
.ft-problem-divider { width: 1px; background: var(--line); flex: none; }

.section-ft-usage { background: #fff; padding: 96px 56px; display: flex; justify-content: center; }
.section-ft-usage .inner { max-width: 980px; width: 100%; }
.ft-usage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; margin-top: 40px; }
.ft-usage-item { display: flex; gap: 22px; }
.ft-usage-item .num { font-size: 36px; font-weight: 800; line-height: 1; color: var(--red-ink); flex: none; }
.ft-usage-item h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.ft-usage-item p { font-size: 15px; line-height: 1.7; color: var(--ink-600); margin: 0; }

.section-ft-proof { display: flex; min-height: 280px; }
.ft-proof-panel { flex: 1 1 0; padding: 64px 56px; }
.ft-proof-panel.is-tagline { background: var(--red-ink); display: flex; align-items: center; }
.ft-proof-panel.is-tagline p { font-size: 24px; font-weight: 700; line-height: 1.4; color: #fff; max-width: 380px; margin: 0; }
.ft-proof-panel.is-stat { background: var(--maroon); display: flex; flex-direction: column; justify-content: center; }
.ft-proof-panel.is-stat .num { font-size: 104px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; color: #fff; }
.ft-proof-panel.is-stat p { font-size: 15px; color: rgba(255,255,255,0.72); margin: 14px 0 0; }

.section-ft-closer { background: var(--maroon); padding: 112px 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-ft-closer p { font-size: 17px; line-height: 1.68; color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 0 32px; }

/* ============================
   Pricing page
   ============================ */
.pricing-hero { background-color: #fff; background-image: radial-gradient(circle, var(--line) 1.2px, transparent 1.2px); background-size: 26px 26px; padding: 88px 56px 72px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pricing-hero h1 { font-size: 46px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); max-width: 700px; margin: 0 0 16px; }
.pricing-hero .meta { font-size: 16px; line-height: 1.6; color: var(--ink-600); margin: 0; }

.section-pricing-credit { background: var(--cream-100); padding: 72px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: center; }
.section-pricing-credit .inner { max-width: 1080px; width: 100%; display: flex; gap: 64px; }
.pricing-credit-col { flex: 1 1 0; }
.pricing-credit-col .kicker { width: 32px; height: 3px; background: var(--red-ink); margin: 0 0 18px; }
.pricing-credit-col h2 { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red-ink); margin: 0 0 22px; }
.pricing-credit-col .pull { font-size: 20px; font-weight: 700; line-height: 1.4; color: var(--ink); margin: 0 0 20px; }
.pricing-credit-col p:not(.pull) { font-size: 15px; line-height: 1.7; color: var(--ink-600); margin: 0 0 16px; }
.pricing-ticket { display: inline-flex; align-items: center; gap: 16px; padding: 16px 22px; border: 1.5px dashed var(--red-ink); border-radius: 10px; background: #fff; margin-top: 12px; }
.pricing-ticket .num { font-size: 40px; font-weight: 800; line-height: 1; color: var(--red-ink); }
.pricing-ticket .label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-600); }
.pricing-divider { width: 1px; background: var(--line); flex: none; }
.pricing-included-col { flex: 1 1 0; }
.pricing-included-list { display: flex; flex-direction: column; margin-top: 8px; }
.pricing-included-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.pricing-included-item.is-last { border-bottom: none; }
.pricing-included-item svg { flex: none; margin-top: 1px; }
.pricing-included-item p { font-size: 15px; color: var(--ink); margin: 0; }
.pricing-crosslinks { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.pricing-crosslinks a { font-size: 14px; font-weight: 700; }

.section-pricing-statement { background-color: #fff; background-image: radial-gradient(circle, var(--line) 1.2px, transparent 1.2px); background-size: 26px 26px; padding: 72px 56px; display: flex; justify-content: center; text-align: center; }
.section-pricing-statement p { font-size: 28px; font-weight: 700; line-height: 1.4; color: var(--ink); max-width: 680px; margin: 0; }

.section-pricing-billing { background: var(--cream-100); padding: 72px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: center; }
.section-pricing-billing .inner { max-width: 760px; width: 100%; }
.pricing-billing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 40px; margin-top: 24px; }
.pricing-billing-item { display: flex; gap: 14px; }
.pricing-billing-item.is-full { grid-column: 1 / -1; }
.pricing-billing-item svg { flex: none; margin-top: 2px; }
.pricing-billing-item .k { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.pricing-billing-item .v { font-size: 14px; line-height: 1.65; color: var(--ink-600); margin: 0; }

.section-pricing-talk { background: #fff; padding: 48px 56px; display: flex; justify-content: center; text-align: center; }
.section-pricing-talk p { font-size: 15px; line-height: 1.7; color: var(--ink-600); margin: 0; }

.section-pricing-faq { background: var(--cream-100); padding: 80px 56px; border-top: 1px solid var(--line); display: flex; justify-content: center; }
.section-pricing-faq .inner { max-width: 760px; width: 100%; }
.section-pricing-faq .eyebrow { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; }
.faq-accordion-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; background: none; border: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; text-align: left; font-family: 'Archivo', sans-serif; }
.faq-question span { font-size: 16px; font-weight: 700; color: var(--ink); }
.faq-chevron { flex: none; transition: transform 0.2s ease; }
.faq-accordion-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 22px; max-width: 640px; }
.faq-accordion-item.is-open .faq-answer { display: block; }
.faq-answer p { font-size: 15px; line-height: 1.7; color: var(--ink-600); margin: 0; }

.section-pricing-closer { background: #fff; padding: 96px 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-pricing-closer h2 { font-size: 32px; font-weight: 800; line-height: 1.3; color: var(--ink); max-width: 520px; margin: 0 0 16px; }
.section-pricing-closer p { font-size: 15px; line-height: 1.7; color: var(--ink-600); max-width: 480px; margin: 0 0 32px; }
.section-pricing-closer .btn-primary { height: 52px; padding: 0 28px; font-size: 15px; }

/* ============================
   FAQ page
   ============================ */
.faq-hero { background: #fff; padding: 88px 56px 64px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.faq-hero h1 { font-size: 46px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); max-width: 700px; margin: 0 0 16px; }
.faq-hero .meta { font-size: 16px; line-height: 1.6; color: var(--ink-600); margin: 0; }

.faq-jumpnav { background: var(--cream-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 56px; display: flex; justify-content: center; }
.faq-jumpnav .inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; }
.faq-jumpnav a { font-size: 13px; font-weight: 700; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; }
.faq-jumpnav a:hover { color: var(--red-ink); border-color: var(--red-ink); }

.section-faq-category { padding: 64px 56px; display: flex; justify-content: center; scroll-margin-top: 96px; }
.section-faq-category.is-white { background: #fff; }
.section-faq-category.is-tint { background: var(--cream-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-faq-category .inner { max-width: 760px; width: 100%; }
.section-faq-category .faq-list { margin-top: 8px; }

.section-faq-closer { background: var(--cream-100); padding: 112px 56px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-faq-closer h2 { font-size: 32px; font-weight: 800; line-height: 1.3; color: var(--ink); max-width: 520px; margin: 0 0 32px; }
.section-faq-closer .hero-cta { justify-content: center; }
.section-faq-closer .btn-primary, .section-faq-closer .btn-secondary { height: 52px; padding: 0 28px; font-size: 15px; }

/* ============================
   About page
   ============================ */
.kicker { width: 32px; height: 3px; background: var(--red-ink); margin: 0 0 18px; }
.eyebrow-accent { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--red-ink); margin: 0 0 14px; }

.about-hero { background-color: #fff; background-image: radial-gradient(circle, var(--line) 1.2px, transparent 1.2px); background-size: 26px 26px; padding: 88px 56px 72px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-hero h1 { font-size: 46px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); max-width: 700px; margin: 0 0 16px; }
.about-hero .meta { font-size: 16px; line-height: 1.6; color: var(--ink-600); margin: 0; }

.section-about-intro { background: var(--cream-100); padding: 72px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: center; }
.section-about-intro .inner { max-width: 1000px; width: 100%; display: flex; gap: 56px; align-items: center; }
.about-intro-copy { flex: 1.3; min-width: 0; }
.about-intro-copy p { font-size: 16px; line-height: 1.75; color: var(--ink-600); margin: 0 0 16px; }
.about-intro-copy p:last-child { margin-bottom: 0; }
.about-intro-visual { flex: 1; min-width: 280px; max-width: 320px; }
.about-intro-visual .score-card { width: 100%; box-shadow: none; }
.about-intro-visual .score-card .plain-fact { font-size: 13px; color: var(--ink-600); margin: 0 0 4px; }
.linked-row { display: flex; align-items: center; gap: 8px; padding-top: 18px; margin-top: 18px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--ink); }
.linked-row svg { flex: none; }

.section-about-case { background: var(--maroon); padding: 88px 56px; display: flex; justify-content: center; }
.section-about-case .inner { max-width: 720px; width: 100%; }
.about-case-lead { font-size: 30px; font-weight: 700; line-height: 1.4; color: #fff; max-width: 620px; margin: 0 0 28px; }
.about-case-body { display: flex; flex-direction: column; gap: 16px; }
.about-case-body p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.7); margin: 0; }

.section-about-practice { background: var(--cream-100); padding: 88px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: center; }
.section-about-practice .inner { max-width: 720px; width: 100%; }
.about-practice-pull { font-size: 22px; font-weight: 700; line-height: 1.4; color: var(--ink); max-width: 620px; margin: 0 0 24px; }
.about-practice-body { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.about-practice-body p { font-size: 15px; line-height: 1.7; color: var(--ink-600); margin: 0; }
.about-ticket { display: inline-flex; align-items: center; gap: 16px; padding: 16px 22px; border: 1.5px dashed var(--red-ink); border-radius: 10px; background: #fff; }
.about-ticket .num { font-size: 36px; font-weight: 800; line-height: 1; color: var(--red-ink); }
.about-ticket .label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-600); }
.about-metrics { padding-top: 32px; margin-top: 40px; border-top: 1px solid var(--line); }
.about-metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.about-metrics-grid .cluster-label { margin-bottom: 10px; }
.about-metrics-grid .cluster-items { gap: 0; }
.about-metrics-grid p.metric-list { font-size: 13px; line-height: 1.7; color: var(--ink-600); margin: 0; }
.about-metrics-note { font-size: 12px; color: var(--ink-600); margin: 20px 0 0; }

.section-about-principles { background: #fff; padding: 88px 56px; display: flex; justify-content: center; }
.section-about-principles .inner { max-width: 1000px; width: 100%; }
.section-about-principles h2.eyebrow { text-align: center; margin-bottom: 48px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.principle-item { text-align: center; }
.principle-item .kicker { margin: 0 auto 18px; }
.principle-item h3 { font-size: 23px; font-weight: 800; color: var(--ink); margin: 0 0 12px; }
.principle-item p { font-size: 15px; line-height: 1.7; color: var(--ink-600); margin: 0; }

.section-about-proof { background: var(--cream-100); padding: 72px 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: center; }
.section-about-proof .inner { max-width: 640px; width: 100%; display: flex; align-items: center; gap: 40px; }
.section-about-proof .num { font-size: 72px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; color: var(--red-ink); flex: none; }
.section-about-proof p { font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--ink); margin: 0; }

.section-about-reference { background: #fff; padding: 88px 56px; display: flex; justify-content: center; }
.section-about-reference .inner { max-width: 720px; width: 100%; }
.about-reference-block + .about-reference-block { margin-top: 56px; padding-top: 56px; border-top: 1px solid var(--line); }
.about-reference-block p { font-size: 16px; line-height: 1.75; color: var(--ink-600); margin: 0; }
.about-reference-block strong { color: var(--ink); }

.section-about-closer { background: var(--cream-100); padding: 96px 56px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-about-closer h2 { font-size: 32px; font-weight: 800; line-height: 1.3; color: var(--ink); max-width: 480px; margin: 0 0 32px; }
.section-about-closer .btn-primary { height: 52px; padding: 0 28px; font-size: 15px; }

@media (max-width: 900px) {
  .hero, .section-receive, .section-proof, .tools-copy, .section-framework, .section-measures, .section-review, .section-checked, .section-faq, .section-closer,
  .hiw-hero, .section-journey, .section-submit, .section-metrics, .section-evidence, .section-result, .section-boundaries, .section-timing, .section-hiw-closer,
  .ft-hero, .section-ft-problems, .section-ft-usage, .section-ft-closer,
  .pricing-hero, .section-pricing-credit, .section-pricing-statement, .section-pricing-billing, .section-pricing-talk, .section-pricing-faq, .section-pricing-closer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero { flex-direction: column; align-items: stretch; padding-top: 40px; padding-bottom: 48px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy p { max-width: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; }
  .hero-visual { width: 100%; max-width: 340px; height: 340px; margin: 32px auto 0; }

  .receive-grid { grid-template-columns: 1fr; gap: 28px; }

  .proof-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px; }

  .section-tools { flex-direction: column; min-height: 0; }
  .tools-image { width: 100%; height: 220px; }
  .tools-copy { padding: 32px 20px 40px; }
  .tools-copy h2 { font-size: 26px; max-width: none; }
  .tools-copy .body { max-width: none; }

  .framework-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-framework .btn-on-dark { width: 100%; }

  .section-closer { flex-direction: column; }
  .closer-copy { align-items: center; text-align: center; }
  .closer-copy .hero-cta { justify-content: center; width: 100%; }
  .closer-copy .hero-cta .btn-primary, .closer-copy .hero-cta .btn-secondary { width: 100%; }

  /* How It Works page */
  .hiw-hero { padding-top: 44px; padding-bottom: 48px; }
  .hiw-hero h1 { font-size: 32px; line-height: 1.22; }

  .journey-grid { grid-template-columns: 1fr; gap: 28px; }

  .section-submit { flex-direction: column; gap: 0; padding: 0 0 44px; }
  .submit-image { width: 100%; height: 220px; border-radius: 0; }
  .submit-copy { max-width: none; padding: 32px 20px 0; }

  .metrics-ghost { right: -10px; top: 0; font-size: 110px; }
  .metrics-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .metrics-footnotes { grid-template-columns: 1fr; gap: 16px; }

  .evidence-stats { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .evidence-lead { font-size: 18px; margin-bottom: 32px; }
  .evidence-note { margin-bottom: 32px; }
  .evidence-body p { font-size: 15px; }

  .result-row { flex-direction: column; gap: 24px; }
  .result-score { width: 100%; }
  .result-list { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }

  .timing-track { max-width: none; }
  .section-timing > .num { font-size: 48px; margin-top: 32px; }

  .section-hiw-closer { padding-top: 56px; padding-bottom: 56px; }
  .section-hiw-closer h2 { font-size: 28px; }
  .section-hiw-closer .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }

  /* For Teams page */
  .ft-hero { padding-top: 48px; padding-bottom: 52px; }
  .ft-hero h1 { font-size: 30px; line-height: 1.24; }
  .ft-hero p { max-width: none; }
  .ft-hero .btn-on-dark { width: 100%; }

  .section-ft-problems { padding-top: 44px; padding-bottom: 44px; }
  .section-ft-problems .inner { flex-direction: column; gap: 32px; }
  .ft-problem:first-child, .ft-problem:last-child { padding: 0; }
  .ft-problem .kicker { width: 26px; }
  .ft-problem h2 { font-size: 12px; margin-bottom: 16px; }
  .ft-problem .pull { font-size: 19px; }
  .ft-problem-divider { width: 100%; height: 1px; }

  .section-ft-usage { padding-top: 44px; padding-bottom: 44px; }
  .ft-usage-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 20px; }
  .ft-usage-item .num { font-size: 28px; }
  .ft-usage-item h3 { font-size: 16px; }
  .ft-usage-item p { font-size: 14px; }

  .section-ft-proof { flex-direction: column; min-height: 0; }
  .ft-proof-panel { padding: 36px 20px; }
  .ft-proof-panel.is-tagline p { font-size: 20px; max-width: none; }
  .ft-proof-panel.is-stat .num { font-size: 68px; }

  .section-ft-closer { padding-top: 52px; padding-bottom: 56px; }
  .section-ft-closer p { font-size: 15px; }
  .section-ft-closer .btn-on-dark { width: 100%; }

  /* Pricing page */
  .pricing-hero { padding-top: 44px; padding-bottom: 40px; background-size: 22px 22px; }
  .pricing-hero h1 { font-size: 28px; line-height: 1.24; }

  .section-pricing-credit { padding-top: 40px; padding-bottom: 40px; }
  .section-pricing-credit .inner { flex-direction: column; gap: 28px; }
  .pricing-divider { width: 100%; height: 1px; }
  .pricing-ticket .num { font-size: 32px; }

  .section-pricing-statement { padding: 40px 20px; background-size: 22px 22px; }
  .section-pricing-statement p { font-size: 21px; }

  .section-pricing-billing { padding-top: 40px; padding-bottom: 40px; }
  .pricing-billing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-billing-item.is-full { grid-column: auto; }

  .section-pricing-talk { padding: 32px 20px; }
  .section-pricing-talk p { font-size: 14px; }

  .section-pricing-faq { padding-top: 44px; padding-bottom: 44px; }

  .section-pricing-closer { padding-top: 52px; padding-bottom: 56px; }
  .section-pricing-closer h2 { font-size: 24px; }
  .section-pricing-closer .btn-primary { width: 100%; }

  /* FAQ page */
  .faq-hero, .faq-jumpnav, .section-faq-category, .section-faq-closer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-hero { padding-top: 44px; padding-bottom: 40px; }
  .faq-hero h1 { font-size: 28px; line-height: 1.24; }

  .faq-jumpnav { padding-top: 18px; padding-bottom: 18px; }
  .faq-jumpnav a { font-size: 12px; padding: 8px 14px; }

  .section-faq-category { padding-top: 40px; padding-bottom: 40px; }

  .section-faq-closer { padding-top: 52px; padding-bottom: 56px; }
  .section-faq-closer h2 { font-size: 24px; }
  .section-faq-closer .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .section-faq-closer .btn-primary, .section-faq-closer .btn-secondary { width: 100%; }

  /* About page */
  .about-hero { padding-top: 44px; padding-bottom: 40px; background-size: 22px 22px; }
  .about-hero h1 { font-size: 28px; line-height: 1.24; }

  .section-about-intro { padding-top: 40px; padding-bottom: 40px; }
  .section-about-intro .inner { flex-direction: column; gap: 28px; }
  .about-intro-visual { max-width: 320px; width: 100%; }

  .section-about-case { padding: 48px 20px; }
  .about-case-lead { font-size: 22px; }

  .section-about-practice { padding: 44px 20px; }
  .about-practice-pull { font-size: 18px; }
  .about-metrics-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-metrics { margin-top: 24px; padding-top: 24px; }

  .section-about-principles { padding: 44px 20px; }
  .principles-grid { grid-template-columns: 1fr; gap: 28px; }
  .principle-item h3 { font-size: 20px; }

  .section-about-proof { padding: 40px 20px; }
  .section-about-proof .inner { flex-direction: column; text-align: center; gap: 16px; }
  .section-about-proof .num { font-size: 56px; }

  .section-about-reference { padding: 48px 20px; }
  .about-reference-block + .about-reference-block { margin-top: 40px; padding-top: 40px; }

  .section-about-closer { padding-top: 52px; padding-bottom: 56px; }
  .section-about-closer h2 { font-size: 24px; }
  .section-about-closer .btn-primary { width: 100%; }
}
