:root {
  --ink: #101512;
  --ink-soft: #18201b;
  --paper: #f3f0e7;
  --paper-deep: #e7e2d5;
  --signal: #b8f34a;
  --signal-deep: #86bf20;
  --muted: #687169;
  --line: rgba(16, 21, 18, 0.14);
  --dark-line: rgba(243, 240, 231, 0.14);
  --radius: 22px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 16px; background: var(--signal); }
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 26px 5vw;
  color: var(--paper);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; text-decoration: none; font-weight: 720; letter-spacing: -0.02em; }
.brand-mark { width: 31px; height: 31px; overflow: visible; }
.brand-mark path { fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2.4; }
.brand-mark circle { fill: var(--signal); }
.site-header nav { display: flex; gap: 30px; font-size: 0.84rem; }
.site-header nav a { text-decoration: none; color: rgba(243, 240, 231, 0.72); }
.site-header nav a:hover { color: var(--paper); }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 0.78rem; }
.button-primary { background: var(--signal); color: var(--ink); }
.button-primary:hover { background: #c8ff5b; }
.button-ghost { border-color: rgba(243, 240, 231, 0.26); color: var(--paper); }
.button-ghost:hover { border-color: rgba(243, 240, 231, 0.58); }
.button-light { background: var(--paper); color: var(--ink); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  gap: 7vw;
  align-items: center;
  min-height: 810px;
  padding: 150px max(5vw, calc((100vw - 1296px) / 2)) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(184, 243, 74, 0.13), transparent 24%),
    linear-gradient(135deg, #111713 0%, #0c110e 60%, #141b16 100%);
  color: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -390px;
  bottom: -340px;
  border: 1px solid rgba(184, 243, 74, 0.21);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(184, 243, 74, 0.018), 0 0 0 180px rgba(184, 243, 74, 0.012);
}
.hero-copy { position: relative; z-index: 1; max-width: 730px; }
.eyebrow, .section-number { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: rgba(243, 240, 231, 0.61); }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 5px rgba(184, 243, 74, 0.09); }
.hero h1 {
  max-width: 760px;
  margin: 27px 0 24px;
  font-size: clamp(4rem, 6.6vw, 7.35rem);
  line-height: 0.91;
  letter-spacing: -0.072em;
  font-weight: 650;
}
.hero h1 em { display: block; color: var(--signal); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.06em; }
.hero-lede { max-width: 650px; margin: 0; color: rgba(243, 240, 231, 0.72); font-size: clamp(1rem, 1.4vw, 1.24rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 37px; }
.text-link { font-size: 0.88rem; text-decoration: none; color: rgba(243, 240, 231, 0.72); }
.text-link span { display: inline-block; margin-left: 6px; color: var(--signal); }
.hero-signals { display: flex; flex-wrap: wrap; gap: 24px; margin: 46px 0 0; padding: 0; list-style: none; font-family: var(--mono); font-size: 0.7rem; color: rgba(243, 240, 231, 0.48); }
.hero-signals li::before { content: "✓"; margin-right: 7px; color: var(--signal); }

.system-card {
  position: relative;
  z-index: 1;
  padding: 25px;
  border: 1px solid rgba(243, 240, 231, 0.15);
  border-radius: 28px;
  background: rgba(28, 37, 31, 0.78);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.29);
  backdrop-filter: blur(18px);
}
.system-card-header { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 23px; border-bottom: 1px solid var(--dark-line); }
.system-card-header p { margin: 0 0 8px; color: rgba(243, 240, 231, 0.39); font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.12em; }
.system-card-header h2 { margin: 0; font-size: 1.08rem; letter-spacing: -0.02em; }
.status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(184, 243, 74, 0.22); border-radius: 999px; color: var(--signal); font-family: var(--mono); font-size: 0.65rem; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(184, 243, 74, 0.09); }
.workflow { padding: 25px 0; }
.workflow-node { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 12px 13px; border: 1px solid transparent; border-radius: 13px; }
.workflow-node.active { border-color: rgba(184, 243, 74, 0.18); background: rgba(184, 243, 74, 0.055); }
.workflow-node.approval { border-color: rgba(243, 240, 231, 0.1); background: rgba(243, 240, 231, 0.025); }
.node-icon { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(243, 240, 231, 0.16); border-radius: 10px; color: rgba(243, 240, 231, 0.48); font-family: var(--mono); font-size: 0.63rem; }
.workflow-node.active .node-icon { border-color: rgba(184, 243, 74, 0.3); color: var(--signal); }
.workflow-node strong, .workflow-node small { display: block; }
.workflow-node strong { font-size: 0.77rem; }
.workflow-node small { margin-top: 3px; color: rgba(243, 240, 231, 0.39); font-size: 0.68rem; }
.node-result { min-width: 26px; padding: 5px; border-radius: 7px; background: rgba(243, 240, 231, 0.07); color: rgba(243, 240, 231, 0.7); font-family: var(--mono); font-size: 0.63rem; text-align: center; }
.workflow-node.approval .node-result { background: rgba(255, 199, 92, 0.11); color: #ffc75c; }
.workflow-line { width: 1px; height: 12px; margin-left: 29px; background: rgba(184, 243, 74, 0.32); }
.workflow-line.muted { background: rgba(243, 240, 231, 0.15); }
.system-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--dark-line); border-radius: 14px; background: var(--dark-line); }
.system-metrics div { padding: 15px; background: #19221c; }
.system-metrics span, .system-metrics strong { display: block; }
.system-metrics span { color: rgba(243, 240, 231, 0.39); font-size: 0.62rem; }
.system-metrics strong { margin-top: 7px; font-family: var(--mono); font-size: 0.88rem; }
.system-metrics .accent { color: var(--signal); }
.demo-label { margin: 14px 0 0; color: rgba(243, 240, 231, 0.26); font-family: var(--mono); font-size: 0.56rem; text-align: center; }

.proof-bar { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 21px max(5vw, calc((100vw - 1296px) / 2)); border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.proof-bar p { margin: 0; color: var(--muted); font-size: 0.74rem; }
.proof-bar ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 26px; margin: 0; padding: 0; list-style: none; font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; }
.proof-bar li::before { content: "•"; margin-right: 9px; color: var(--signal-deep); }

.section { max-width: 1440px; margin: 0 auto; padding: 116px 5vw; }
.section-number { margin: 0 0 24px; color: var(--muted); }
.section-heading { display: grid; grid-template-columns: 0.62fr 1.2fr 0.8fr; gap: 6vw; align-items: start; }
.section-heading h2, .principles h2, .fit-section h2, .cta-section h2 { margin: 0; font-size: clamp(2.55rem, 4.7vw, 5.3rem); line-height: 0.98; letter-spacing: -0.06em; font-weight: 630; }
.section-heading > p:last-child { margin: 4px 0 0; color: var(--muted); line-height: 1.7; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 68px; }
.service-card { min-height: 320px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.22); }
.feature-card { grid-row: span 2; min-height: 656px; background: var(--ink); color: var(--paper); }
.card-index { font-family: var(--mono); font-size: 0.65rem; color: var(--muted); }
.feature-card .card-index { color: rgba(243, 240, 231, 0.35); }
.service-card h3 { margin: 76px 0 15px; font-size: 1.8rem; letter-spacing: -0.04em; }
.feature-card h3 { margin-top: 210px; font-size: clamp(2.6rem, 4vw, 4.4rem); line-height: 0.98; }
.service-card p { max-width: 650px; color: var(--muted); line-height: 1.65; }
.feature-card p { color: rgba(243, 240, 231, 0.61); }
.service-card ul { display: grid; gap: 11px; margin: 27px 0 0; padding: 0; list-style: none; color: rgba(243, 240, 231, 0.73); font-size: 0.82rem; }
.service-card li::before { content: "↳"; margin-right: 9px; color: var(--signal); }
.service-card a { display: inline-block; margin-top: 24px; font-size: 0.78rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.service-card a span { color: var(--signal-deep); }

.portfolio-section { border-top: 1px solid var(--line); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 68px; }
.portfolio-card { min-width: 0; min-height: 390px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.28); }
.portfolio-card:nth-child(2) { background: var(--ink); color: var(--paper); }
.portfolio-card-top { display: flex; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em; }
.portfolio-card-top span { color: var(--muted); }
.portfolio-card:nth-child(2) .portfolio-card-top span { color: rgba(243, 240, 231, 0.4); }
.portfolio-card-top strong { color: var(--signal-deep); font-weight: 500; }
.portfolio-card h3 { margin: auto 0 15px; font-size: 2rem; letter-spacing: -0.045em; }
.portfolio-card p { min-height: 88px; margin: 0; color: var(--muted); line-height: 1.6; }
.portfolio-card:nth-child(2) p { color: rgba(243, 240, 231, 0.58); }
.portfolio-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; }
.portfolio-card li { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 0.65rem; }
.portfolio-card:nth-child(2) li { border-color: var(--dark-line); color: rgba(243, 240, 231, 0.58); }
.portfolio-card-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .73rem; font-weight: 720; text-decoration: none; }
.portfolio-card-link span { color: var(--signal-deep); font-size: 1rem; transition: transform 160ms ease; }
.portfolio-card-link:hover span { transform: translateX(4px); }
.portfolio-card:nth-child(2) .portfolio-card-link { border-color: var(--dark-line); }

.insights-preview { border-top: 1px solid var(--line); }
.insight-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 68px; }
.insight-preview-grid article { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.25); }
.insight-preview-grid article:nth-child(2) { color: var(--paper); background: var(--ink); }
.insight-preview-grid article > span { color: var(--signal-deep); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; }
.insight-preview-grid h3 { margin: auto 0 15px; font-size: 1.8rem; line-height: 1.03; letter-spacing: -.045em; }
.insight-preview-grid p { min-height: 78px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.62; }
.insight-preview-grid article:nth-child(2) p { color: rgba(243,240,231,.52); }
.insight-preview-grid a { display: flex; justify-content: space-between; gap: 18px; margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .72rem; font-weight: 700; text-decoration: none; }
.insight-preview-grid article:nth-child(2) a { border-color: var(--dark-line); }
.insight-preview-grid a strong { color: var(--signal-deep); }
.insight-hub-link { display: inline-flex; gap: 15px; margin-top: 30px; font-size: .78rem; font-weight: 720; text-decoration: none; }
.insight-hub-link span { color: var(--signal-deep); }

.process { border-top: 1px solid var(--line); }
.section-heading.compact { grid-template-columns: 0.62fr 2fr; }
.process-list { margin: 73px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 6vw; padding: 31px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--signal-deep); font-family: var(--mono); font-size: 0.68rem; }
.process-list div { display: grid; grid-template-columns: 0.55fr 1.2fr; align-items: baseline; gap: 5vw; }
.process-list h3 { margin: 0; font-size: 1.65rem; letter-spacing: -0.035em; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.6; }

.principles { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 9vw; border-radius: 32px; background: var(--ink); color: var(--paper); }
.principles-copy { padding-right: 2vw; }
.principles .section-number { color: rgba(243, 240, 231, 0.38); }
.principles-list { border-top: 1px solid var(--dark-line); }
.principles-list article { padding: 29px 0; border-bottom: 1px solid var(--dark-line); }
.principles-list span { color: var(--signal); font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.1em; }
.principles-list h3 { margin: 13px 0 7px; font-size: 1.45rem; letter-spacing: -0.035em; }
.principles-list p { margin: 0; color: rgba(243, 240, 231, 0.5); line-height: 1.55; }

.fit-section { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 9vw; max-width: 1440px; margin: 0 auto; padding: 116px 5vw; }
.fit-list { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 10px; }
.fit-list span { padding: 13px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 0.78rem; }

.assessment-promo { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: end; max-width: 1440px; margin: 0 auto 116px; padding: 64px 5vw; border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.3); }
.assessment-promo h2 { margin: 15px 0 0; font-size: clamp(2.7rem, 4.6vw, 5rem); line-height: .98; letter-spacing: -.06em; }
.assessment-promo > div:last-child p { max-width: 650px; margin: 0 0 28px; color: var(--muted); line-height: 1.7; }

.cta-section { padding: 100px max(5vw, calc((100vw - 1296px) / 2)) 112px; background: var(--signal); color: var(--ink); }
.cta-section .eyebrow { color: rgba(16, 21, 18, 0.52); }
.cta-section .eyebrow span { background: var(--ink); box-shadow: 0 0 0 5px rgba(16, 21, 18, 0.08); }
.cta-section h2 { max-width: 1000px; margin: 25px 0 37px; }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; padding: 37px max(5vw, calc((100vw - 1296px) / 2)); background: #0c110e; color: var(--paper); }
footer p { margin: 0; color: rgba(243, 240, 231, 0.45); font-size: 0.75rem; text-align: center; }
footer > span { justify-self: end; color: rgba(243, 240, 231, 0.3); font-family: var(--mono); font-size: 0.61rem; }
.footer-links { display: flex; justify-content: center; gap: 18px; }
.footer-links a { color: rgba(243, 240, 231, 0.55); text-decoration: none; }
.footer-links a:hover { color: var(--signal); }
.legal-disclosure { grid-column: 1 / -1; color: rgba(243, 240, 231, 0.48); line-height: 1.65; }
.legal-disclosure a { color: rgba(243, 240, 231, 0.72); }

.legal-body { min-height: 100vh; }
.legal-header { display: flex; align-items: center; justify-content: space-between; min-height: 86px; padding: 0 max(5vw, calc((100vw - 1296px) / 2)); color: var(--paper); background: var(--ink); }
.legal-page { max-width: 1440px; margin: 0 auto; padding: 92px 5vw 120px; }
.legal-title { max-width: 1020px; }
.legal-title .eyebrow { color: var(--muted); }
.legal-title h1 { margin: 28px 0 26px; font-size: clamp(3.4rem, 6.6vw, 7rem); font-weight: 630; line-height: .93; letter-spacing: -.067em; }
.legal-title > p:last-child { max-width: 820px; margin: 0; color: var(--muted); font-size: 1.06rem; line-height: 1.7; }
.draft-notice { margin: 54px 0 68px; padding: 23px 26px; border: 1px solid rgba(160, 100, 0, .24); border-radius: 18px; background: rgba(255, 199, 92, .14); }
.draft-notice strong { font-family: var(--mono); font-size: .69rem; letter-spacing: .08em; }
.draft-notice p { margin: 8px 0 0; color: #725a2a; font-size: .78rem; }
.legal-layout { display: grid; grid-template-columns: .32fr 1fr; gap: 8vw; align-items: start; }
.legal-toc { position: sticky; top: 24px; display: grid; border-top: 1px solid var(--line); }
.legal-toc a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .65rem; text-decoration: none; }
.legal-toc a:hover { color: var(--signal-deep); }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 24px; padding: 0 0 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); }
.legal-content section > span, .security-grid article > span { color: var(--signal-deep); font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; }
.legal-content h2 { margin: 15px 0 22px; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.045em; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.72; }
.legal-content ul { display: grid; gap: 10px; padding-left: 20px; }
.legal-content a { color: var(--ink); text-underline-offset: 3px; }
.legal-content strong { color: var(--ink); }
.legal-note, .legal-source-note { padding: 17px 19px; border-left: 3px solid var(--signal-deep); background: rgba(255,255,255,.3); }
.legal-source-note { margin: 0; font-size: .75rem; }
.legal-table-wrap { overflow-x: auto; }
.legal-content table { width: 100%; min-width: 640px; border-collapse: collapse; }
.legal-content th, .legal-content td { padding: 15px; border: 1px solid var(--line); color: var(--muted); font-size: .75rem; line-height: 1.5; text-align: left; vertical-align: top; }
.legal-content th { color: var(--ink); font-family: var(--mono); font-size: .6rem; text-transform: uppercase; }

.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 66px; }
.security-grid article { min-height: 310px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.25); }
.security-grid article:nth-child(2), .security-grid article:nth-child(5) { color: var(--paper); background: var(--ink); }
.security-grid h2 { margin: 115px 0 14px; font-size: 1.55rem; letter-spacing: -.04em; }
.security-grid p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.62; }
.security-grid article:nth-child(2) p, .security-grid article:nth-child(5) p { color: rgba(243,240,231,.52); }
.security-callout { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-top: 80px; padding: 64px; border-radius: 28px; color: var(--paper); background: var(--ink); }
.security-callout h2, .security-disclosure h2 { margin: 15px 0 0; font-size: clamp(2.4rem, 4.5vw, 5rem); line-height: .98; letter-spacing: -.058em; }
.security-callout > div:last-child p { color: rgba(243,240,231,.54); line-height: 1.7; }
.security-disclosure { margin-top: 80px; padding: 50px 0 0; border-top: 1px solid var(--line); }
.security-disclosure h2 strong { color: var(--signal-deep); }
.security-disclosure h2 strong, .security-disclosure h2 a { overflow-wrap: anywhere; word-break: break-word; }
.security-disclosure > p:last-child { max-width: 820px; color: var(--muted); line-height: 1.7; }

.work-body { min-height: 100vh; }
.work-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .55fr); gap: 8vw; align-items: end; min-height: 620px; padding: 112px max(5vw, calc((100vw - 1296px) / 2)) 82px; color: var(--paper); background: radial-gradient(circle at 78% 12%, rgba(184,243,74,.12), transparent 26%), var(--ink); }
.work-hero-copy { max-width: 850px; }
.work-kicker { display: flex; align-items: center; gap: 11px; margin: 0 0 70px; color: rgba(243,240,231,.52); font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.work-kicker span { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 5px rgba(184,243,74,.09); }
.work-index { margin: 0 0 17px; color: var(--signal); font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; }
.work-hero h1 { margin: 0; font-size: clamp(4.6rem, 9vw, 9.6rem); font-weight: 630; line-height: .82; letter-spacing: -.076em; }
.work-lede { max-width: 750px; margin: 36px 0 0; color: rgba(243,240,231,.66); font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.7; }
.work-stats { display: grid; margin: 0; border-top: 1px solid var(--dark-line); }
.work-stats div { display: flex; align-items: baseline; justify-content: space-between; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--dark-line); }
.work-stats dt { color: rgba(243,240,231,.46); font-family: var(--mono); font-size: .64rem; text-transform: uppercase; }
.work-stats dd { margin: 0; color: var(--signal); font-size: 1.55rem; font-weight: 650; letter-spacing: -.04em; }
.work-page { max-width: 1440px; margin: 0 auto; padding: 112px 5vw 125px; }
.work-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 9vw; align-items: start; }
.work-section { padding-bottom: 72px; margin-bottom: 72px; border-bottom: 1px solid var(--line); }
.work-section:last-child { margin-bottom: 0; }
.work-section h2 { max-width: 820px; margin: 16px 0 25px; font-size: clamp(2.25rem, 4.2vw, 4.7rem); font-weight: 630; line-height: 1; letter-spacing: -.058em; }
.work-section > p:last-child { max-width: 820px; color: var(--muted); font-size: 1rem; line-height: 1.78; }
.work-flow { margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.work-flow li { display: grid; grid-template-columns: 80px 1fr; gap: 25px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.work-flow li > span { color: var(--signal-deep); font-family: var(--mono); font-size: .67rem; }
.work-flow strong { display: block; margin-bottom: 7px; font-size: 1.25rem; letter-spacing: -.03em; }
.work-flow p { margin: 0; color: var(--muted); line-height: 1.65; }
.work-flow code, .evidence-list code { padding: 2px 5px; border-radius: 5px; background: var(--paper-deep); font-family: var(--mono); font-size: .78em; }
.evidence-list { display: grid; gap: 0; margin: 45px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.evidence-list li { display: grid; grid-template-columns: minmax(180px,.55fr) 1fr; gap: 35px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.evidence-list strong { letter-spacing: -.02em; }
.evidence-list span { color: var(--muted); line-height: 1.65; }
.work-limitations { padding: 44px; border: 1px solid rgba(160,100,0,.22); border-radius: var(--radius); background: rgba(255,199,92,.1); }
.work-limitations h2 { font-size: clamp(2.1rem, 3.5vw, 3.5rem); }
.work-aside { position: sticky; top: 24px; display: grid; gap: 14px; }
.work-aside-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.27); }
.work-aside-card .section-number { margin-bottom: 22px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.tag-list li { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .65rem; }
.plain-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .8rem; }
.plain-list li::before { content: "↳"; margin-right: 9px; color: var(--signal-deep); }
.work-verdict { color: var(--paper); background: var(--ink); }
.work-verdict strong { display: block; color: var(--signal); font-size: 1.25rem; letter-spacing: -.03em; }
.work-verdict p:last-child { margin: 16px 0 0; color: rgba(243,240,231,.52); font-size: .78rem; line-height: 1.65; }
.work-cta { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; padding: 92px max(5vw, calc((100vw - 1296px) / 2)) 100px; color: var(--paper); background: #18201b; }
.work-cta h2 { max-width: 780px; margin: 18px 0 0; font-size: clamp(2.8rem, 5vw, 5.6rem); font-weight: 630; line-height: .98; letter-spacing: -.062em; }
.work-cta > div:last-child { align-self: end; }
.work-cta > div:last-child p { max-width: 560px; margin: 0 0 30px; color: rgba(243,240,231,.58); line-height: 1.7; }

.offer-body, .faq-body { min-height: 100vh; }
.offer-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .55fr); gap: 8vw; align-items: end; min-height: 650px; padding: 112px max(5vw, calc((100vw - 1296px) / 2)) 82px; color: var(--paper); background: radial-gradient(circle at 78% 12%, rgba(184,243,74,.12), transparent 26%), var(--ink); }
.offer-hero-copy { max-width: 900px; }
.offer-hero h1 { max-width: 950px; margin: 0; font-size: clamp(4.2rem, 8vw, 8.7rem); font-weight: 630; line-height: .86; letter-spacing: -.073em; }
.offer-lede { max-width: 760px; margin: 36px 0 0; color: rgba(243,240,231,.66); font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.7; }
.offer-facts { display: grid; margin: 0; border-top: 1px solid var(--dark-line); }
.offer-facts div { padding: 20px 0; border-bottom: 1px solid var(--dark-line); }
.offer-facts dt { margin-bottom: 9px; color: rgba(243,240,231,.4); font-family: var(--mono); font-size: .61rem; letter-spacing: .06em; text-transform: uppercase; }
.offer-facts dd { margin: 0; color: var(--paper); font-size: 1.08rem; font-weight: 650; letter-spacing: -.025em; }
.offer-page { max-width: 1440px; margin: 0 auto; padding: 112px 5vw 125px; }
.offer-intro { display: grid; grid-template-columns: .42fr 1.05fr .75fr; gap: 6vw; padding-bottom: 100px; }
.offer-intro h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 630; line-height: .98; letter-spacing: -.062em; }
.offer-intro > p:last-child { margin: 5px 0 0; color: var(--muted); line-height: 1.75; }
.offer-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 14px; }
.offer-panel { padding: 36px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.27); }
.offer-panel-dark { color: var(--paper); background: var(--ink); }
.offer-panel-dark .section-number { color: rgba(243,240,231,.42); }
.offer-steps { margin: 55px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--dark-line); }
.offer-steps li { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 24px 0; border-bottom: 1px solid var(--dark-line); }
.offer-steps li > span { color: var(--signal); font-family: var(--mono); font-size: .64rem; }
.offer-steps strong { display: block; margin-bottom: 7px; font-size: 1.18rem; letter-spacing: -.025em; }
.offer-steps p { margin: 0; color: rgba(243,240,231,.52); font-size: .82rem; line-height: 1.65; }
.deliverable-list { display: grid; gap: 0; margin: 55px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.deliverable-list li { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .85rem; line-height: 1.5; }
.deliverable-list li::before { content: "✓"; margin-right: 11px; color: var(--signal-deep); font-weight: 800; }
.fit-matrix { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-top: 112px; padding: 95px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fit-matrix h2 { max-width: 560px; margin: 15px 0 30px; font-size: clamp(2.1rem, 3.6vw, 4rem); font-weight: 630; line-height: 1; letter-spacing: -.055em; }
.fit-matrix ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; color: var(--muted); line-height: 1.6; }
.fit-matrix li { position: relative; padding-left: 22px; }
.fit-matrix li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--signal-deep); }
.fit-matrix > div:last-child li::before { background: #b2823f; }
.proof-link-panel { display: grid; grid-template-columns: 1.25fr auto; gap: 8vw; align-items: end; margin-top: 112px; padding: 64px; border-radius: 28px; color: var(--paper); background: var(--ink); }
.proof-link-panel h2 { margin: 15px 0 20px; font-size: clamp(2.6rem, 4.5vw, 5rem); font-weight: 630; line-height: .98; letter-spacing: -.058em; }
.proof-link-panel p:last-child { max-width: 740px; color: rgba(243,240,231,.54); line-height: 1.7; }
.proof-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 112px; }
.proof-pair article { min-height: 380px; display: flex; flex-direction: column; padding: 35px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.27); }
.proof-pair article:nth-child(2) { color: var(--paper); background: var(--ink); }
.proof-pair h2 { margin: auto 0 16px; font-size: clamp(2.5rem, 4.4vw, 4.8rem); letter-spacing: -.058em; }
.proof-pair article > p:nth-of-type(2) { color: var(--muted); line-height: 1.65; }
.proof-pair article:nth-child(2) > p:nth-of-type(2) { color: rgba(243,240,231,.52); }
.proof-pair a { display: inline-flex; justify-content: space-between; gap: 20px; margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .75rem; font-weight: 700; text-decoration: none; }
.proof-pair article:nth-child(2) a { border-color: var(--dark-line); }
.proof-pair a span { color: var(--signal-deep); }
.commercial-boundary { max-width: 1000px; margin: 112px auto 0; padding: 70px 0 0; border-top: 1px solid var(--line); text-align: center; }
.commercial-boundary h2 { margin: 15px 0 25px; font-size: clamp(2.7rem, 5vw, 5.3rem); font-weight: 630; line-height: .98; letter-spacing: -.062em; }
.commercial-boundary > p:last-child { max-width: 760px; margin: 0 auto; color: var(--muted); line-height: 1.75; }

.faq-hero { min-height: 610px; padding: 130px max(5vw, calc((100vw - 1296px) / 2)) 92px; color: var(--paper); background: radial-gradient(circle at 78% 14%, rgba(184,243,74,.12), transparent 26%), var(--ink); }
.faq-hero h1 { max-width: 1080px; margin: 95px 0 28px; font-size: clamp(4.2rem, 8vw, 8.8rem); font-weight: 630; line-height: .87; letter-spacing: -.074em; }
.faq-hero > p:last-child { max-width: 760px; margin: 0; color: rgba(243,240,231,.62); font-size: 1.1rem; line-height: 1.75; }
.faq-page { max-width: 1440px; margin: 0 auto; padding: 112px 5vw 125px; }
.faq-group { display: grid; grid-template-columns: .62fr 1.38fr; gap: 7vw; padding: 80px 0; border-bottom: 1px solid var(--line); }
.faq-group:first-child { padding-top: 0; }
.faq-group-title h2 { max-width: 390px; margin: 15px 0 0; font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1; letter-spacing: -.05em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; align-items: baseline; padding: 25px 0; cursor: pointer; font-size: 1.2rem; font-weight: 650; letter-spacing: -.025em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--signal-deep); font-family: var(--mono); font-size: .64rem; font-weight: 500; }
.faq-list summary::after { content: "+"; color: var(--muted); font-family: var(--mono); font-size: 1.1rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { max-width: 760px; padding: 0 0 28px 70px; color: var(--muted); line-height: 1.75; }
.faq-list details > div p { margin: 0 0 12px; }
.faq-list details > div p:last-child { margin-bottom: 0; }
.faq-list details a { color: var(--ink); font-weight: 700; text-underline-offset: 4px; }

.assessment-body { min-height: 100vh; }
.assessment-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .55fr); gap: 8vw; align-items: end; min-height: 680px; padding: 112px max(5vw, calc((100vw - 1296px) / 2)) 82px; color: var(--paper); background: radial-gradient(circle at 78% 12%, rgba(184,243,74,.12), transparent 26%), var(--ink); }
.assessment-hero-copy { max-width: 920px; }
.assessment-hero h1 { max-width: 920px; margin: 0; font-size: clamp(4.2rem, 7.5vw, 8.1rem); font-weight: 630; line-height: .87; letter-spacing: -.073em; }
.assessment-hero-copy > h1 + p { max-width: 760px; margin: 36px 0 0; color: rgba(243,240,231,.64); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.72; }
.assessment-hero-cta { margin-top: 30px; color: var(--ink); background: var(--signal); }
.assessment-hero-cta:hover { background: #c5ff5a; }
.assessment-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.assessment-facts div { min-height: 118px; padding: 22px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.assessment-facts dt { margin-bottom: 18px; color: rgba(243,240,231,.38); font-family: var(--mono); font-size: .59rem; letter-spacing: .06em; text-transform: uppercase; }
.assessment-facts dd { margin: 0; color: var(--paper); font-size: .95rem; font-weight: 650; line-height: 1.35; letter-spacing: -.02em; }
.assessment-page { max-width: 1440px; margin: 0 auto; padding: 84px 5vw 125px; }
.assessment-privacy { display: grid; grid-template-columns: .65fr 1.35fr; gap: 6vw; padding: 24px 27px; border: 1px solid rgba(134,191,32,.4); border-radius: 18px; background: rgba(184,243,74,.11); }
.assessment-privacy > div { display: flex; align-items: center; gap: 10px; }
.assessment-privacy > div span { color: var(--signal-deep); font-size: .65rem; }
.assessment-privacy strong { font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.assessment-privacy p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.assessment-intro { display: grid; grid-template-columns: .42fr 1.05fr .75fr; gap: 6vw; padding: 105px 0 75px; }
.assessment-intro h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 630; line-height: .98; letter-spacing: -.062em; }
.assessment-intro > p:last-child { margin: 5px 0 0; color: var(--muted); line-height: 1.72; }
.assessment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.assessment-form { scroll-margin-top: 24px; }
.assessment-grid fieldset { min-width: 0; margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.25); }
.assessment-grid legend { display: grid; grid-template-columns: 36px 1fr; gap: 12px; width: 100%; padding: 0 0 22px; font-size: 1.15rem; font-weight: 670; line-height: 1.35; letter-spacing: -.025em; }
.assessment-grid legend span { padding-top: 4px; color: var(--signal-deep); font-family: var(--mono); font-size: .63rem; font-weight: 500; }
.assessment-grid label { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; margin-top: 9px; padding: 13px 14px; border: 1px solid transparent; border-radius: 12px; color: var(--muted); cursor: pointer; font-size: .82rem; line-height: 1.5; transition: border-color 140ms ease, background 140ms ease, color 140ms ease; }
.assessment-grid label:hover { border-color: var(--line); color: var(--ink); }
.assessment-grid label:has(input:checked) { border-color: rgba(134,191,32,.5); color: var(--ink); background: rgba(184,243,74,.1); }
.assessment-grid input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--signal-deep); }
.assessment-grid input:focus-visible { outline: 3px solid rgba(134,191,32,.35); outline-offset: 3px; }
.assessment-error { margin: 22px 0 0; padding: 16px 18px; border-left: 3px solid #a85c42; color: #75422f; background: rgba(198,97,66,.09); }
.assessment-submit { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 30px; padding: 32px; border-radius: 22px; color: var(--paper); background: var(--ink); }
.assessment-submit p { max-width: 520px; margin: 0; color: rgba(243,240,231,.5); font-size: .78rem; line-height: 1.6; }
.assessment-submit button { border: 0; cursor: pointer; }
.assessment-result { scroll-margin-top: 24px; margin-top: 72px; padding: 58px; border: 1px solid var(--line); border-radius: 30px; background: #f8f5ed; box-shadow: 0 30px 80px rgba(16,21,18,.08); }
.assessment-result[data-status="ready"] { border-color: rgba(134,191,32,.48); }
.assessment-result[data-status="not-ready"] { border-color: rgba(168,92,66,.45); }
.assessment-result-head { max-width: 930px; }
.result-status { display: inline-flex; margin: 0 0 40px; padding: 8px 11px; border: 1px solid rgba(134,191,32,.4); border-radius: 999px; color: #4c7012; font-family: var(--mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }
.assessment-result[data-status="not-ready"] .result-status { border-color: rgba(168,92,66,.35); color: #8a4832; }
.assessment-result[data-status="discovery-first"] .result-status { border-color: rgba(178,130,63,.38); color: #80602e; }
.assessment-result h2 { margin: 16px 0 25px; font-size: clamp(3rem, 5.8vw, 6.3rem); font-weight: 630; line-height: .94; letter-spacing: -.066em; }
.assessment-result-head > p:last-child { max-width: 760px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.assessment-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-top: 60px; padding: 45px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.assessment-result-grid > div > p:last-child, .assessment-result-grid li { color: var(--muted); line-height: 1.65; }
.assessment-result-grid ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; }
.assessment-result-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 35px; }
.assessment-secondary { border-color: var(--line); color: var(--ink); background: transparent; cursor: pointer; }
.assessment-secondary:hover { border-color: rgba(16,21,18,.4); }
.assessment-email-note { max-width: 760px; margin: 16px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }
.assessment-reset { margin-left: auto; padding: 12px 0; border: 0; color: var(--muted); background: transparent; cursor: pointer; font: inherit; font-size: .75rem; text-decoration: underline; text-underline-offset: 4px; }

.insight-body, .article-body { min-height: 100vh; }
.insight-index-hero { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.5fr); gap: 8vw; align-items: end; min-height: 670px; padding: 112px max(5vw, calc((100vw - 1296px) / 2)) 82px; color: var(--paper); background: radial-gradient(circle at 78% 12%, rgba(184,243,74,.12), transparent 26%), var(--ink); }
.insight-index-hero > div { max-width: 920px; }
.insight-index-hero h1 { margin: 0; font-size: clamp(4.3rem,7.7vw,8.4rem); font-weight: 630; line-height: .86; letter-spacing: -.074em; }
.insight-index-hero > div > p:last-child { max-width: 760px; margin: 36px 0 0; color: rgba(243,240,231,.63); font-size: 1.08rem; line-height: 1.72; }
.insight-index-facts { display: grid; margin: 0; border-top: 1px solid var(--dark-line); }
.insight-index-facts div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--dark-line); }
.insight-index-facts dt { color: rgba(243,240,231,.38); font-family: var(--mono); font-size: .6rem; text-transform: uppercase; }
.insight-index-facts dd { margin: 0; color: var(--signal); font-size: 1.55rem; font-weight: 650; }
.insight-index-page { max-width: 1440px; margin: 0 auto; padding: 112px 5vw 125px; }
.insight-index-intro { display: grid; grid-template-columns: .42fr 1.05fr .75fr; gap: 6vw; padding-bottom: 85px; }
.insight-index-intro h2 { margin: 0; font-size: clamp(2.8rem,5vw,5.5rem); font-weight: 630; line-height: .98; letter-spacing: -.062em; }
.insight-index-intro > p:last-child { margin: 5px 0 0; color: var(--muted); line-height: 1.72; }
.insight-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.insight-card { min-height: 590px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.27); }
.insight-card:nth-child(2) { color: var(--paper); background: var(--ink); }
.insight-card-top { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-family: var(--mono); font-size: .59rem; letter-spacing: .05em; }
.insight-card-top strong { color: var(--signal-deep); font-weight: 500; }
.insight-card:nth-child(2) .insight-card-top { color: rgba(243,240,231,.38); }
.insight-card h2 { margin: auto 0 20px; font-size: clamp(2rem,3vw,3.2rem); line-height: 1; letter-spacing: -.052em; }
.insight-card > p { min-height: 100px; margin: 0; color: var(--muted); line-height: 1.65; }
.insight-card:nth-child(2) > p { color: rgba(243,240,231,.52); }
.insight-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0 0; padding: 0; list-style: none; }
.insight-card li { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .63rem; }
.insight-card:nth-child(2) li { border-color: var(--dark-line); color: rgba(243,240,231,.52); }
.insight-card > a { display: flex; justify-content: space-between; gap: 20px; margin-top: 27px; padding-top: 19px; border-top: 1px solid var(--line); font-size: .74rem; font-weight: 700; text-decoration: none; }
.insight-card:nth-child(2) > a { border-color: var(--dark-line); }
.insight-card > a span { color: var(--signal-deep); }
.insight-method { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-top: 110px; padding: 65px; border-radius: 28px; color: var(--paper); background: var(--ink); }
.insight-method h2 { margin: 15px 0 0; font-size: clamp(2.8rem,5vw,5.4rem); line-height: .98; letter-spacing: -.06em; }
.insight-method > div:last-child { align-self: end; }
.insight-method > div:last-child p { margin: 0 0 27px; color: rgba(243,240,231,.54); line-height: 1.72; }
.insight-method a { color: var(--paper); font-size: .76rem; font-weight: 700; text-decoration: none; }
.insight-method a span { color: var(--signal); }

.article-hero { min-height: 720px; padding: 115px max(5vw, calc((100vw - 1296px) / 2)) 90px; color: var(--paper); background: radial-gradient(circle at 78% 12%, rgba(184,243,74,.12), transparent 26%), var(--ink); }
.article-hero h1 { max-width: 1180px; margin: 95px 0 34px; font-size: clamp(4rem,7.3vw,8rem); font-weight: 630; line-height: .88; letter-spacing: -.073em; }
.article-hero > p:last-child { max-width: 820px; margin: 0; color: rgba(243,240,231,.63); font-size: 1.12rem; line-height: 1.75; }
.article-page { max-width: 1440px; margin: 0 auto; padding: 105px 5vw 125px; }
.article-layout { display: grid; grid-template-columns: minmax(190px,.28fr) minmax(0,1fr); gap: 9vw; align-items: start; }
.article-toc { position: sticky; top: 24px; display: grid; border-top: 1px solid var(--line); }
.article-toc .section-number { padding: 19px 0; margin: 0; border-bottom: 1px solid var(--line); }
.article-toc a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .64rem; text-decoration: none; }
.article-toc a:hover { color: var(--signal-deep); }
.article-content { max-width: 950px; min-width: 0; }
.article-lede { margin-bottom: 88px; padding: 35px 40px; border-left: 4px solid var(--signal-deep); background: rgba(255,255,255,.3); }
.article-lede strong { display: block; font-size: clamp(1.8rem,3vw,3.1rem); line-height: 1.08; letter-spacing: -.045em; }
.article-lede p { margin: 18px 0 0; color: var(--muted); line-height: 1.7; }
.article-section { scroll-margin-top: 24px; padding-bottom: 78px; margin-bottom: 78px; border-bottom: 1px solid var(--line); }
.article-section h2 { margin: 16px 0 28px; font-size: clamp(2.5rem,4.5vw,4.9rem); font-weight: 630; line-height: .98; letter-spacing: -.06em; }
.article-section > p:not(.section-number), .article-section li { color: var(--muted); line-height: 1.78; }
.article-section > p:not(.section-number) { max-width: 820px; }
.article-table-wrap { overflow-x: auto; margin: 38px 0; }
.article-table-wrap table { width: 100%; min-width: 720px; border-collapse: collapse; }
.article-table-wrap th, .article-table-wrap td { padding: 17px; border: 1px solid var(--line); color: var(--muted); font-size: .77rem; line-height: 1.55; text-align: left; vertical-align: top; }
.article-table-wrap th { color: var(--ink); font-family: var(--mono); font-size: .61rem; letter-spacing: .05em; text-transform: uppercase; }
.article-callout { margin: 35px 0; padding: 25px 28px; border: 1px solid rgba(134,191,32,.34); border-radius: 18px; background: rgba(184,243,74,.1); }
.article-callout strong { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.article-callout p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; }
.article-checklist { display: grid; gap: 0; margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-checklist li { position: relative; padding: 17px 0 17px 30px; border-bottom: 1px solid var(--line); }
.article-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--signal-deep); font-weight: 800; }
.article-sequence { margin: 40px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-sequence li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.article-sequence li > span { color: var(--signal-deep); font-family: var(--mono); font-size: .64rem; }
.article-sequence strong { display: block; color: var(--ink); font-size: 1.15rem; letter-spacing: -.025em; }
.article-sequence p { margin: 7px 0 0; }
.article-section blockquote { margin: 40px 0 0; padding: 35px 38px; border-radius: 22px; color: var(--paper); background: var(--ink); font-size: clamp(1.45rem,2.6vw,2.5rem); line-height: 1.25; letter-spacing: -.035em; }
.article-proof { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; align-items: end; padding: 55px; border-radius: 28px; color: var(--paper); background: var(--ink); }
.article-proof h2 { margin: 15px 0 18px; font-size: clamp(3rem,5vw,5.5rem); line-height: .94; letter-spacing: -.064em; }
.article-proof > div:first-child > p:last-child { color: rgba(243,240,231,.52); line-height: 1.7; }
.article-proof > div:last-child { display: grid; gap: 18px; }
.article-proof > div:last-child > a:not(.button) { color: rgba(243,240,231,.72); font-size: .74rem; text-decoration: none; }
.article-next { display: grid; gap: 14px; margin-top: 80px; padding-top: 35px; border-top: 1px solid var(--line); }
.article-next > span { color: var(--muted); font-family: var(--mono); font-size: .63rem; text-transform: uppercase; }
.article-next a { display: flex; justify-content: space-between; gap: 30px; font-size: clamp(1.5rem,2.8vw,2.8rem); font-weight: 630; line-height: 1.1; letter-spacing: -.04em; text-decoration: none; }
.article-next strong { color: var(--signal-deep); }

.error-body { min-height: 100vh; background: var(--ink); color: var(--paper); }
.error-page { display: flex; flex-direction: column; justify-content: space-between; min-height: 100vh; max-width: 1440px; margin: 0 auto; padding: 34px 5vw 8vh; }
.error-copy { max-width: 900px; padding: 12vh 0 4vh; }
.error-copy h1 { max-width: 860px; margin: 28px 0 22px; font-size: clamp(4rem, 9vw, 9rem); font-weight: 630; line-height: .9; letter-spacing: -.075em; }
.error-copy > p:not(.eyebrow) { max-width: 560px; margin: 0 0 35px; color: rgba(243, 240, 231, .6); font-size: 1.05rem; line-height: 1.7; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { max-width: 820px; }
  .system-card { max-width: 620px; }
  .section-heading { grid-template-columns: 0.35fr 1.2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card { min-height: 330px; }
  .insight-preview-grid, .insight-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 500px; }
  .principles { margin-left: 3vw; margin-right: 3vw; }
  .work-hero { grid-template-columns: 1fr; min-height: 700px; }
  .work-stats { grid-template-columns: repeat(3, 1fr); }
  .work-stats div { display: block; }
  .work-stats dd { margin-top: 9px; }
  .work-layout { grid-template-columns: 1fr; }
  .work-aside { position: static; grid-template-columns: repeat(3, 1fr); }
  .offer-hero { grid-template-columns: 1fr; min-height: 760px; }
  .offer-facts { grid-template-columns: repeat(3, 1fr); }
  .offer-facts div { padding-right: 20px; }
  .offer-intro { grid-template-columns: .35fr 1.2fr; }
  .offer-intro > p:last-child { grid-column: 2; }
  .faq-group { grid-template-columns: .45fr 1fr; }
  .insight-index-hero { grid-template-columns: 1fr; min-height: 760px; }
  .insight-index-facts { grid-template-columns: repeat(3,1fr); }
  .insight-index-facts div { display: block; padding-right: 20px; }
  .insight-index-facts dd { margin-top: 10px; }
  .article-layout { grid-template-columns: 190px minmax(0,1fr); gap: 5vw; }
}

@media (max-width: 720px) {
  .site-header { padding: 20px; }
  .site-header > .button { display: none; }
  .hero { min-height: auto; padding: 126px 20px 70px; }
  .hero h1 { font-size: clamp(3.55rem, 16vw, 5.4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .hero-signals { display: grid; gap: 11px; }
  .system-card { padding: 18px; border-radius: 20px; }
  .system-metrics { grid-template-columns: 1fr; }
  .proof-bar { align-items: flex-start; flex-direction: column; padding: 22px 20px; }
  .proof-bar ul { justify-content: flex-start; gap: 12px 18px; }
  .section { padding: 83px 20px; }
  .section-heading, .section-heading.compact { display: block; }
  .section-heading h2 { margin-bottom: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .feature-card { grid-row: auto; min-height: 510px; }
  .feature-card h3 { margin-top: 150px; }
  .process-list li, .process-list div { grid-template-columns: 1fr; gap: 15px; }
  .principles { grid-template-columns: 1fr; gap: 55px; margin: 0; border-radius: 0; }
  .fit-section { grid-template-columns: 1fr; gap: 45px; padding: 83px 20px; }
  .assessment-promo { grid-template-columns: 1fr; gap: 40px; margin: 0 20px 83px; padding: 45px 24px; }
  .cta-section { padding: 80px 20px 90px; }
  footer { grid-template-columns: 1fr; padding: 38px 20px; }
  footer p { text-align: left; }
  footer > span { justify-self: start; }
  .footer-links { justify-content: flex-start; }
  .legal-header { min-height: 76px; padding: 0 20px; }
  .legal-header .button { display: inline-flex; }
  .legal-page { padding: 68px 20px 85px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-template-columns: repeat(2, 1fr); margin-bottom: 30px; }
  .legal-toc a { padding-right: 10px; }
  .security-grid { grid-template-columns: 1fr; }
  .security-grid article { min-height: 280px; }
  .security-callout { grid-template-columns: 1fr; padding: 38px 25px; }
  .work-hero { min-height: auto; padding: 86px 20px 65px; }
  .work-kicker { margin-bottom: 55px; line-height: 1.5; }
  .work-hero h1 { font-size: clamp(4rem, 19vw, 6.1rem); }
  .work-stats { grid-template-columns: 1fr; margin-top: 45px; }
  .work-stats div { display: flex; }
  .work-page { padding: 80px 20px 90px; }
  .work-section { padding-bottom: 55px; margin-bottom: 55px; }
  .work-flow li { grid-template-columns: 45px 1fr; gap: 15px; }
  .evidence-list li { grid-template-columns: 1fr; gap: 9px; }
  .work-limitations { padding: 27px 23px; }
  .work-aside { grid-template-columns: 1fr; }
  .work-cta { grid-template-columns: 1fr; gap: 45px; padding: 75px 20px 85px; }
  .offer-hero { min-height: auto; padding: 86px 20px 65px; }
  .offer-hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .offer-facts { grid-template-columns: 1fr; margin-top: 48px; }
  .offer-facts div { padding-right: 0; }
  .offer-page { padding: 80px 20px 90px; }
  .offer-intro { display: block; padding-bottom: 65px; }
  .offer-intro h2 { margin: 14px 0 24px; }
  .offer-grid, .fit-matrix, .proof-link-panel, .proof-pair { grid-template-columns: 1fr; }
  .offer-panel { padding: 28px 23px; }
  .fit-matrix { gap: 60px; margin-top: 80px; padding: 70px 0; }
  .proof-link-panel { gap: 35px; margin-top: 80px; padding: 38px 25px; }
  .proof-link-panel .button { width: 100%; }
  .proof-pair { margin-top: 80px; }
  .proof-pair article { min-height: 330px; padding: 28px 23px; }
  .commercial-boundary { margin-top: 80px; padding-top: 60px; text-align: left; }
  .faq-hero { min-height: auto; padding: 86px 20px 75px; }
  .faq-hero h1 { margin: 70px 0 25px; font-size: clamp(3.6rem, 18vw, 5.7rem); }
  .faq-page { padding: 70px 20px 90px; }
  .faq-group { grid-template-columns: 1fr; gap: 35px; padding: 65px 0; }
  .faq-list summary { grid-template-columns: 35px 1fr auto; gap: 10px; font-size: 1.05rem; line-height: 1.35; }
  .faq-list details > div { padding-left: 45px; }
  .assessment-hero { grid-template-columns: 1fr; min-height: auto; padding: 86px 20px 65px; }
  .assessment-hero h1 { font-size: clamp(3.6rem, 17.5vw, 5.7rem); }
  .assessment-facts { margin-top: 48px; }
  .assessment-facts div { min-height: 105px; padding: 18px; }
  .assessment-page { padding: 55px 20px 90px; }
  .assessment-privacy { grid-template-columns: 1fr; gap: 15px; padding: 21px; }
  .assessment-intro { display: block; padding: 75px 0 55px; }
  .assessment-intro h2 { margin: 14px 0 24px; }
  .assessment-grid { grid-template-columns: 1fr; }
  .assessment-grid fieldset { padding: 25px 20px; }
  .assessment-submit { align-items: stretch; flex-direction: column; padding: 25px; }
  .assessment-result { margin-top: 55px; padding: 35px 22px; }
  .assessment-result-grid { grid-template-columns: 1fr; gap: 35px; }
  .assessment-result-actions { align-items: stretch; flex-direction: column; }
  .assessment-result-actions .button { width: 100%; }
  .assessment-reset { margin-left: 0; }
  .insight-preview-grid { margin-top: 45px; }
  .insight-preview-grid article { min-height: 300px; }
  .insight-index-hero { min-height: auto; padding: 86px 20px 65px; }
  .insight-index-hero h1 { font-size: clamp(3.7rem,17vw,5.8rem); }
  .insight-index-facts { grid-template-columns: 1fr; margin-top: 48px; }
  .insight-index-facts div { display: flex; padding-right: 0; }
  .insight-index-facts dd { margin-top: 0; }
  .insight-index-page { padding: 80px 20px 90px; }
  .insight-index-intro { display: block; padding-bottom: 60px; }
  .insight-index-intro h2 { margin: 14px 0 24px; }
  .insight-card { min-height: 460px; padding: 25px 22px; }
  .insight-method { grid-template-columns: 1fr; gap: 45px; margin-top: 80px; padding: 38px 25px; }
  .article-hero { min-height: auto; padding: 86px 20px 75px; }
  .article-hero h1 { margin: 75px 0 28px; font-size: clamp(3.55rem,16.5vw,5.5rem); }
  .article-page { padding: 70px 20px 90px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; grid-template-columns: repeat(2,1fr); margin-bottom: 45px; }
  .article-toc .section-number { grid-column: 1 / -1; }
  .article-toc a { padding-right: 10px; }
  .article-lede { margin-bottom: 65px; padding: 27px 24px; }
  .article-section { padding-bottom: 60px; margin-bottom: 60px; }
  .article-table-wrap { margin-right: -20px; padding-right: 20px; }
  .article-section blockquote { padding: 28px 24px; }
  .article-proof { grid-template-columns: 1fr; gap: 38px; padding: 38px 25px; }
  .article-proof .button { width: 100%; }
}

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