:root {
  --ink: #102018;
  --ink-soft: #33443a;
  --paper: #f5f7f1;
  --paper-2: #edf1e8;
  --white: #ffffff;
  --green: #0d5c37;
  --green-dark: #073c25;
  --lime: #5b9279;
  --orange: #395e66;
  --blue: #1858a6;
  --line: rgba(16, 32, 24, 0.18);
  --line-strong: rgba(16, 32, 24, 0.38);
  --shadow: 0 22px 70px rgba(19, 46, 31, 0.12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, input, textarea { font: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--lime); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 108px 0; }
.section-tight { padding: 72px 0; }
.section-ink { background: var(--ink); color: var(--white); }
.section-green { background: var(--green-dark); color: var(--white); }
.section-white { background: var(--white); }
.section-muted { background: var(--paper-2); }
.section-line { border-top: 1px solid var(--line); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(48px, 8vw, 120px); align-items: start; }
.split-reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.narrow { max-width: 780px; }
.center { text-align: center; margin-inline: auto; }
.stack-sm > * + * { margin-top: 14px; }
.stack > * + * { margin-top: 24px; }
.stack-lg > * + * { margin-top: 40px; }
.space-top { margin-top: 48px; }
.space-top-lg { margin-top: 72px; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -100px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 6px;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 247, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.07em;
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--green); }
.site-nav { display: flex; align-items: center; gap: 25px; }
.nav-link { position: relative; font-size: 14px; font-weight: 700; text-decoration: none; }
.nav-link::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -9px;
  background: var(--green);
  transition: right 180ms ease;
}
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.is-active::after { right: 0; }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { width: 24px; height: 32px; padding: 0; border: 0; background: transparent; color: currentColor; cursor: pointer; }
.nav-dropdown-toggle span { display: block; font-size: 17px; line-height: 1; transition: transform 160ms ease; }
.nav-dropdown[data-open="true"] .nav-dropdown-toggle span { transform: rotate(180deg); }
.nav-submenu { position: absolute; z-index: 110; top: calc(100% + 19px); left: -20px; width: 310px; padding: 10px; visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-5px); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease; }
.nav-submenu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 20px; }
.nav-dropdown:hover .nav-submenu, .nav-dropdown:focus-within .nav-submenu, .nav-dropdown[data-open="true"] .nav-submenu { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.nav-submenu a { display: block; padding: 12px 13px; text-decoration: none; }
.nav-submenu a:hover, .nav-submenu a:focus-visible { background: var(--paper-2); }
.nav-submenu strong, .nav-submenu span { display: block; }
.nav-submenu strong { font-size: 14px; line-height: 1.3; }
.nav-submenu span { margin-top: 3px; color: var(--ink-soft); font-size: 11px; line-height: 1.35; }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 11px; border: 1px solid var(--line); background: transparent; border-radius: 8px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--green); color: var(--ink); border-color: var(--green); }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.button-ghost { background: transparent; }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--lime); }
.eyebrow-orange { color: var(--orange); }
.display {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}
.display em { color: var(--green); font-family: var(--serif); font-weight: 400; text-transform: none; }
.page-title {
  max-width: 1050px;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}
.section-title {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 67px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}
.section-title em { color: var(--green); font-family: var(--serif); font-weight: 400; text-transform: none; }
.section-title-small { font-size: clamp(32px, 4vw, 52px); }
.lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(20px, 2vw, 27px); line-height: 1.45; }
.lead-light { color: rgba(255, 255, 255, 0.78); }
.kicker { font-family: var(--serif); font-size: clamp(25px, 3vw, 40px); line-height: 1.2; }
.muted { color: var(--ink-soft); }
.small { font-size: 14px; }

.hero { position: relative; overflow: hidden; padding: clamp(86px, 11vw, 145px) 0 105px; }
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: -310px;
  right: -150px;
  border: 100px solid rgba(91, 146, 121, 0.16);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr); gap: clamp(55px, 8vw, 105px); align-items: center; }
.hero-copy .lead { margin-bottom: 34px; }
.hero-note { margin-top: 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; }

.profit-card {
  position: relative;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.profit-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14px -13px -13px 14px;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
}
.profit-card-label { margin: 0 0 36px; color: var(--lime); font-family: var(--mono); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.profit-formula { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.2); font-family: var(--display); font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.06em; line-height: 0.98; }
.profit-formula span { color: var(--lime); }
.profit-axis { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; margin-top: 24px; }
.axis-card { padding: 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm); font-size: 13px; line-height: 1.35; }
.axis-card strong { display: block; margin-bottom: 4px; color: var(--lime); }
.profit-verdict { margin: 24px 0 0; font-family: var(--serif); font-size: 20px; }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-items { display: grid; grid-template-columns: repeat(5, 1fr); }
.proof-item { min-height: 104px; padding: 25px 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item strong { font-family: var(--display); font-size: 21px; letter-spacing: -0.04em; line-height: 1.05; }
.proof-item span { margin-top: 5px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

.card {
  position: relative;
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.card-green { background: var(--green); color: var(--white); border-color: var(--green); }
.card-lime { background: var(--lime); border-color: var(--lime); }
.card-outline { background: transparent; }
.card h3 { margin-bottom: 13px; font-size: 23px; line-height: 1.15; }
.card p:last-child { margin-bottom: 0; }
.card-number { display: block; margin-bottom: 44px; color: var(--green); font-family: var(--mono); font-size: 12px; font-weight: 800; }
.card-dark .card-number, .card-green .card-number { color: var(--lime); }
.card-arrow { position: absolute; top: 28px; right: 28px; font-size: 24px; }
.card-link { color: inherit; text-decoration: none; transition: transform 170ms ease, box-shadow 170ms ease; }
.card-link:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-label { margin-bottom: 12px; color: var(--green); font-family: var(--mono); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.card-dark .card-label, .card-green .card-label { color: var(--lime); }

.quote-block { padding: 55px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.quote-block blockquote { margin: 0 0 30px; font-family: "Lato", Arial, sans-serif; font-size: clamp(30px, 4vw, 52px); font-style: italic; font-weight: 400; line-height: 1.12; }
.quote-block cite { font-family: var(--mono); font-size: 11px; font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; }

.overlap-map { position: relative; min-height: 405px; display: grid; place-items: center; }
.overlap-circle {
  position: absolute;
  width: min(320px, 65vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 65px;
  border: 2px solid;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}
.overlap-circle:first-child { left: 0; color: var(--blue); background: rgba(24,88,166,0.07); }
.overlap-circle:nth-child(2) { right: 0; color: var(--orange); background: rgba(230,121,29,0.07); }
.overlap-badge { z-index: 2; width: 150px; aspect-ratio: 1; display: grid; place-items: center; padding: 18px; background: var(--green-dark); color: var(--white); border-radius: 50%; font-family: var(--display); font-size: 17px; line-height: 1.05; text-align: center; text-transform: uppercase; box-shadow: var(--shadow); }

.process { counter-reset: process; }
.process-step { display: grid; grid-template-columns: 96px 1fr; gap: 34px; padding: 38px 0; border-top: 1px solid var(--line); }
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step::before { counter-increment: process; content: "0" counter(process); color: var(--green); font-family: var(--mono); font-size: 15px; font-weight: 800; }
.process-step h3 { margin-bottom: 8px; font-size: 24px; }
.process-step p { max-width: 680px; margin-bottom: 0; color: var(--ink-soft); }

.service-card { display: flex; min-height: 360px; flex-direction: column; }
.service-card .card-label { margin-bottom: 32px; }
.service-card h3 { font-family: var(--display); font-size: 34px; letter-spacing: -0.05em; text-transform: uppercase; }
.service-card .text-link { margin-top: auto; padding-top: 24px; }
.service-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 0; }
.pill { display: inline-flex; padding: 7px 11px; border: 1px solid var(--line-strong); border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.card-dark .pill, .card-green .pill { border-color: rgba(255,255,255,0.35); }

.check-list, .plain-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding: 11px 0 11px 30px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plain-list li { padding-left: 0; }
.section-ink .check-list li, .card-dark .check-list li, .section-green .check-list li { border-color: rgba(255,255,255,0.17); }
.section-ink .check-list li::before, .card-dark .check-list li::before, .section-green .check-list li::before { color: var(--lime); }
.x-list li::before { content: "—"; color: var(--orange); }

.fit-panel { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.fit-panel > div { padding: clamp(30px, 5vw, 58px); }
.fit-panel > div:first-child { background: var(--green-dark); color: var(--white); }
.fit-panel > div:last-child { background: var(--white); }

.metric { padding: 24px 0; border-top: 1px solid var(--line); }
.metric strong { display: block; font-family: var(--display); font-size: clamp(39px, 5vw, 64px); letter-spacing: -0.06em; line-height: 1; }
.metric span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 13px; }

.portrait-frame { position: sticky; top: 110px; padding: 14px; background: var(--lime); border-radius: var(--radius-lg); transform: rotate(-1.5deg); }
.portrait-frame img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; object-position: 50% 35%; border-radius: calc(var(--radius-lg) - 7px); filter: saturate(0.7) contrast(1.03); }
.portrait-caption { display: flex; justify-content: space-between; gap: 12px; margin: 13px 5px 0; font-family: var(--mono); font-size: 10px; font-weight: 800; text-transform: uppercase; }

.page-hero { padding: 105px 0 86px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr); gap: 70px; align-items: end; }
.page-hero .lead { margin-bottom: 0; }
.hero-aside { padding-left: 24px; border-left: 2px solid var(--green); }
.hero-aside strong { display: block; margin-bottom: 8px; font-size: 15px; }
.hero-aside p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }

.keyword-intro { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(45px, 8vw, 120px); }
.keyword-intro .kicker { margin-bottom: 0; }
.insight-list { display: grid; gap: 0; }
.insight { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
.insight:last-child { border-bottom: 1px solid var(--line); }
.insight-num { color: var(--green); font-family: var(--mono); font-size: 12px; font-weight: 800; }
.insight h3 { margin-bottom: 6px; font-size: 22px; }
.insight p { margin-bottom: 0; color: var(--ink-soft); }

.deliverable { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; padding: 27px 0; border-top: 1px solid rgba(255,255,255,0.18); }
.deliverable:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.deliverable-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--lime); color: var(--ink); border-radius: 50%; font-family: var(--mono); font-size: 12px; font-weight: 900; }
.deliverable h3 { margin-bottom: 6px; font-size: 21px; }
.deliverable p { margin-bottom: 0; color: rgba(255,255,255,0.7); }

.frameworks { display: flex; gap: 12px; flex-wrap: wrap; }
.framework { padding: 12px 15px; border: 1px solid var(--line-strong); border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 700; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-family: var(--mono); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq details > div { max-width: 820px; padding: 0 0 25px; color: var(--ink-soft); }

.cta-band { padding: clamp(50px, 8vw, 90px); background: var(--lime); border-radius: var(--radius-lg); }
.cta-band-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.cta-band .section-title { margin-bottom: 12px; }
.cta-band p { max-width: 720px; margin-bottom: 0; }

.legal { max-width: 820px; }
.legal h2 { margin: 46px 0 15px; font-size: 28px; }
.legal h3 { margin: 30px 0 10px; font-size: 20px; }
.legal p, .legal li { color: var(--ink-soft); }

.site-footer { padding-top: 74px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 52px; padding-bottom: 70px; }
.brand-footer { display: inline-block; color: var(--white); font-size: 28px; }
.brand-footer span { color: var(--lime); }
.footer-brand p { max-width: 320px; margin-top: 24px; color: rgba(255,255,255,0.64); font-size: 14px; }
.footer-label { margin-bottom: 20px; color: var(--lime); font-family: var(--mono); font-size: 10px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { display: block; margin: 12px 0; color: rgba(255,255,255,0.74); font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 23px 0 28px; border-top: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.53); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom a { margin-left: 20px; text-decoration: none; }

.can-reveal [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 550ms ease, transform 550ms ease; }
.can-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 77px 0 auto; max-height: calc(100dvh - 77px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 24px; overflow-y: auto; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav[data-open="true"] { display: flex; }
  .nav-link { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-link::after { display: none; }
  .nav-dropdown { display: grid; grid-template-columns: minmax(0, 1fr) 48px; border-bottom: 1px solid var(--line); }
  .nav-dropdown .nav-link { border-bottom: 0; }
  .nav-dropdown-toggle { width: 48px; height: 56px; }
  .nav-submenu { position: static; grid-column: 1 / -1; display: none; width: auto; padding: 0 0 12px 14px; visibility: visible; opacity: 1; pointer-events: auto; transform: none; background: transparent; border: 0; box-shadow: none; }
  .nav-dropdown[data-open="true"] .nav-submenu { display: block; }
  .nav-submenu::before { display: none; }
  .nav-submenu a { padding: 10px 12px; }
  .nav-cta { margin-top: 22px; }
  .hero-grid, .page-hero-grid, .split, .split-reverse, .keyword-intro { grid-template-columns: 1fr; }
  .hero { padding-top: 90px; }
  .profit-card { max-width: 620px; transform: none; }
  .proof-items { grid-template-columns: repeat(3, 1fr); }
  .proof-item:nth-child(4) { border-left: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
  .portrait-frame { position: relative; top: auto; max-width: 580px; }
  .cta-band-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .section-tight { padding: 52px 0; }
  .display { font-size: clamp(48px, 17vw, 73px); }
  .page-title { font-size: clamp(43px, 14vw, 65px); }
  .section-title { font-size: clamp(36px, 11vw, 52px); }
  .grid-2, .grid-3, .grid-4, .fit-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .profit-card { padding: 23px; }
  .profit-axis { grid-template-columns: 1fr; }
  .profit-axis > span { display: none; }
  .proof-items { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .proof-item:nth-child(4) { border-left: 0; }
  .overlap-map { min-height: 355px; transform: scale(0.86); margin-inline: -25px; }
  .overlap-circle { width: 255px; padding: 50px; font-size: 16px; }
  .overlap-circle:first-child { left: -35px; }
  .overlap-circle:nth-child(2) { right: -35px; }
  .overlap-badge { width: 116px; font-size: 13px; }
  .process-step { grid-template-columns: 52px 1fr; gap: 10px; }
  .quote-block { padding: 34px 26px; }
  .service-card { min-height: 310px; }
  .page-hero { padding: 78px 0 62px; }
  .page-hero-grid { gap: 35px; }
  .insight { grid-template-columns: 38px 1fr; }
  .deliverable { grid-template-columns: 44px 1fr; gap: 14px; }
  .cta-band { padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin: 0 20px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* Quiet editorial direction */
:root {
  --ink: #172019;
  --ink-soft: #566058;
  --paper: #f4f4ef;
  --paper-2: #eeeee8;
  --white: #fbfbf8;
  --green: #315c43;
  --green-dark: #20362a;
  --lime: #5b9279;
  --orange: #395e66;
  --blue: #536b77;
  --line: rgba(23, 32, 25, 0.14);
  --line-strong: rgba(23, 32, 25, 0.28);
  --shadow: none;
  --radius-sm: 3px;
  --radius: 4px;
  --radius-lg: 6px;
  --shell: min(1120px, calc(100vw - 64px));
  --display: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { font-size: 16px; line-height: 1.65; }
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-ink { background: var(--green-dark); }
.section-white { background: var(--white); }
.space-top { margin-top: 34px; }
.space-top-lg { margin-top: 52px; }

.site-header { background: rgba(244, 244, 239, 0.97); backdrop-filter: blur(10px); }
.nav-shell { min-height: 68px; }
.brand { font-size: 20px; letter-spacing: -0.055em; }
.site-nav { gap: 22px; }
.nav-link { color: var(--ink-soft); font-size: 13px; font-weight: 550; }
.nav-link span { margin-left: 2px; font-size: 10px; }
.nav-link::after { height: 1px; bottom: -7px; }

.button {
  min-height: 44px;
  padding: 11px 16px;
  gap: 8px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 650;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}
.button:hover { transform: none; }
.button-dark { background: var(--ink); }
.button-dark:hover { background: var(--green-dark); border-color: var(--green-dark); }
.button-lime { background: var(--white); border-color: var(--line-strong); }
.button-small { min-height: 38px; padding: 8px 13px; font-size: 12px; }
.text-link { font-size: 13px; font-weight: 600; }

.eyebrow {
  display: block;
  margin-bottom: 19px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}
.eyebrow::before { display: none; }
.eyebrow-light { color: #bdcec2; }
.eyebrow-orange { color: var(--orange); }

.display,
.page-title,
.section-title,
.service-card h3,
.overlap-circle,
.overlap-badge {
  font-family: var(--display);
  text-transform: none;
}
.display {
  max-width: 780px;
  margin-bottom: 27px;
  font-size: clamp(48px, 6.5vw, 78px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.display em { font-family: inherit; font-weight: inherit; }
.page-title {
  max-width: 880px;
  margin-bottom: 25px;
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.section-title {
  margin-bottom: 21px;
  font-size: clamp(34px, 4.1vw, 50px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.section-title-small { font-size: clamp(29px, 3.4vw, 42px); }
.lead { max-width: 720px; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; }
.kicker { font-family: var(--serif); font-size: clamp(24px, 2.7vw, 34px); }

.hero { padding: 112px 0 92px; }
.hero::after { display: none; }
.hero-grid { grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr); gap: clamp(48px, 7vw, 88px); align-items: end; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-note { margin-top: 26px; color: var(--ink-soft); font-family: var(--sans); font-size: 11px; letter-spacing: 0.04em; }

.profit-card {
  padding: 29px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: none;
  transform: none;
}
.profit-card::before { display: none; }
.profit-card-label { margin-bottom: 30px; color: var(--ink-soft); font-family: var(--sans); font-size: 10px; font-weight: 650; }
.profit-formula { padding-bottom: 22px; border-color: var(--line); font-family: var(--display); font-size: clamp(35px, 4.2vw, 50px); font-weight: 560; letter-spacing: -0.045em; }
.profit-formula span { color: var(--green); }
.axis-card { padding: 13px; border-color: var(--line); border-radius: var(--radius-sm); font-size: 12px; }
.axis-card strong { color: var(--green); }
.profit-verdict { margin-top: 21px; font-size: 18px; line-height: 1.45; }

.proof-strip { padding: 30px 0 0; background: var(--white); }
.proof-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 20px; }
.proof-heading a { font-size: 16px; font-weight: 650; text-decoration: none; }
.proof-heading a span { margin-left: 4px; font-size: 11px; }
.proof-heading p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.proof-items { border-top: 1px solid var(--line); }
.proof-item { min-height: 88px; padding: 20px 16px; }
.proof-item strong { font-family: var(--sans); font-size: 17px; font-weight: 650; letter-spacing: -0.02em; }
.proof-item span { color: var(--ink-soft); font-family: var(--sans); font-size: 10px; letter-spacing: 0.03em; }

.card {
  padding: 27px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}
.card-dark,
.card-green,
.card-lime { background: transparent; color: inherit; border-color: currentColor; }
.section-ink .card { border-color: rgba(255,255,255,0.22); }
.card h3 { margin-bottom: 11px; font-size: 21px; font-weight: 600; }
.card-number { margin-bottom: 34px; color: var(--green); font-family: var(--sans); font-size: 10px; font-weight: 650; }
.card-dark .card-number,
.card-green .card-number { color: inherit; opacity: 0.68; }
.card-arrow { top: 24px; right: 0; font-size: 17px; }
.card-link { transition: color 140ms ease; }
.card-link:hover { color: var(--green); transform: none; box-shadow: none; }
.section-ink .card-link:hover { color: var(--white); }
.card-label { color: var(--green); font-family: var(--sans); font-size: 10px; font-weight: 650; }
.card-dark .card-label,
.card-green .card-label { color: inherit; opacity: 0.68; }

.service-card { min-height: 285px; }
.service-card h3 { font-size: 28px; font-weight: 580; letter-spacing: -0.035em; }
.pill { padding: 6px 9px; border-radius: 3px; font-family: var(--sans); font-size: 9px; }

.quote-block { padding: 38px 0 38px 34px; border: 0; border-left: 1px solid var(--line-strong); border-radius: 0; }
.quote-block blockquote { margin-bottom: 22px; font-size: clamp(25px, 3.2vw, 39px); line-height: 1.2; }
.quote-block cite { color: var(--ink-soft); font-family: var(--sans); font-size: 10px; }

.overlap-circle { border-width: 1px; background: transparent !important; font-size: 17px; font-weight: 560; }
.overlap-badge { background: var(--green-dark); font-size: 14px; font-weight: 560; box-shadow: none; }

.process-step { grid-template-columns: 66px 1fr; gap: 24px; padding: 30px 0; }
.process-step::before { font-family: var(--sans); font-size: 11px; font-weight: 650; }
.process-step h3 { font-size: 21px; font-weight: 600; }

.check-list li::before { content: "—"; color: var(--green); font-weight: 500; }
.fit-panel { border-radius: 0; }
.fit-panel > div { padding: clamp(30px, 4vw, 48px); background: var(--white) !important; color: var(--ink) !important; }
.fit-panel > div + div { border-left: 1px solid var(--line); }
.fit-panel .eyebrow-light { color: var(--green); }

.page-hero { padding: 92px 0 76px; }
.page-hero-grid { grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.5fr); gap: 62px; }
.hero-aside { padding-left: 21px; border-left-width: 1px; }
.hero-aside strong { font-size: 13px; }
.hero-aside p { font-size: 13px; }

.deliverable { grid-template-columns: 45px 1fr; gap: 17px; }
.deliverable-icon { width: auto; height: auto; display: block; background: transparent; color: #bdcec2; border-radius: 0; font-family: var(--sans); font-size: 10px; font-weight: 650; }
.deliverable h3 { font-size: 19px; }
.frameworks { gap: 8px; }
.framework { padding: 9px 11px; border-radius: 3px; font-family: var(--sans); font-size: 10px; font-weight: 550; }

.case-section { background: var(--white); border-bottom: 1px solid var(--line); }
.case-heading { max-width: 700px; margin-bottom: 44px; }
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.case-item { padding-top: 20px; border-top: 1px solid var(--line-strong); }
.case-context { min-height: 32px; margin-bottom: 24px; color: var(--ink-soft); font-size: 11px; letter-spacing: 0.03em; text-transform: uppercase; }
.case-item strong { display: block; margin-bottom: 14px; font-size: clamp(29px, 3vw, 39px); font-weight: 560; letter-spacing: -0.045em; line-height: 1; }
.case-item > p:last-child { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.case-note { max-width: 780px; margin: 28px 0 0; color: var(--ink-soft); font-size: 11px; }

.cta-band { padding: 51px 0; background: transparent; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); border-radius: 0; }
.cta-band-grid { gap: 40px; }
.cta-band .section-title { max-width: 720px; }

.site-footer { padding-top: 68px; background: var(--paper); color: var(--ink); border-top: 1px solid var(--line); }
.brand-footer { color: var(--ink); font-size: 23px; }
.brand-footer span { color: var(--green); }
.footer-brand p { color: var(--ink-soft); }
.footer-label { color: var(--ink-soft); font-family: var(--sans); font-size: 10px; }
.footer-grid > div:not(.footer-brand) a { color: var(--ink-soft); }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom { border-top-color: var(--line); color: var(--ink-soft); font-family: var(--sans); }
.can-reveal [data-reveal] { transform: none; transition: opacity 400ms ease; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 760px); }
  .section { padding: 76px 0; }
  .site-nav { inset: 69px 0 auto; background: var(--paper); }
  .hero { padding-top: 84px; }
  .hero-grid,
  .page-hero-grid,
  .split,
  .split-reverse,
  .keyword-intro { grid-template-columns: 1fr; }
  .profit-card { max-width: 600px; }
  .fit-panel > div + div { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 62px 0; }
  .display { font-size: clamp(43px, 14vw, 60px); }
  .page-title { font-size: clamp(38px, 12vw, 54px); }
  .section-title { font-size: clamp(31px, 9.5vw, 43px); }
  .hero { padding: 70px 0 66px; }
  .proof-heading { display: block; }
  .proof-heading p { margin-top: 5px; }
  .proof-items { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .case-context { min-height: 0; }
  .profit-axis { grid-template-columns: 1fr; }
  .quote-block { padding: 28px 0 28px 22px; }
  .service-card { min-height: 250px; }
  .page-hero { padding: 68px 0 55px; }
  .cta-band-grid { grid-template-columns: 1fr; }
}

/* RAPYD.AI heritage direction */
@font-face {
  font-family: "Lato";
  src: url("./fonts/lato-regular-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/lato-italic-400.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/lato-bold-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/lato-black-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #141414;
  --ink-soft: #58605b;
  --paper: #ffffff;
  --paper-2: #f6f7f5;
  --white: #ffffff;
  --green: #395e66;
  --green-dark: #223c42;
  --lime: #5b9279;
  --orange: #395e66;
  --blue: #5b9279;
  --line: rgba(20, 20, 20, 0.14);
  --line-strong: rgba(20, 20, 20, 0.28);
  --shadow: 0 26px 70px rgba(20, 20, 20, 0.08);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --shell: min(1180px, calc(100vw - 64px));
  --display: "Lato", Arial, sans-serif;
  --sans: "Lato", Arial, sans-serif;
  --serif: "Lato", Arial, sans-serif;
  --mono: "Lato", Arial, sans-serif;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}
body.theme-transitions-ready {
  transition: background-color 760ms cubic-bezier(.22, .61, .36, 1), color 520ms ease;
}
body.theme-dark { background: #111111; color: var(--white); }

.section { padding: 100px 0; }
.section-tight { padding: 66px 0; }
.section-white { background: var(--paper); }
.section-muted { background: var(--paper-2); }
.section-ink { background: #141414; }
.section-green { background: var(--green); }
.space-top { margin-top: 40px; }
.space-top-lg { margin-top: 58px; }

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  transition: background-color 560ms ease, border-color 560ms ease, color 560ms ease;
}
.nav-shell { min-height: 76px; }
.brand { display: inline-flex; align-items: center; letter-spacing: 0; }
.brand img { width: auto; height: 30px; transition: filter 560ms ease; }
.site-nav { gap: 28px; }
.nav-link { color: var(--ink); font-size: 14px; font-weight: 700; }
.nav-link::after { background: var(--green); }
.theme-dark .site-header {
  background: rgba(17, 17, 17, 0.94);
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.18);
}
.theme-dark .site-header .brand img { filter: invert(1); }
.theme-dark .site-header .nav-link { color: rgba(255,255,255,0.84); }
.theme-dark .site-header .nav-submenu { background: #171717; border-color: rgba(255,255,255,0.18); }
.theme-dark .site-header .nav-submenu a:hover, .theme-dark .site-header .nav-submenu a:focus-visible { background: #242424; }
.theme-dark .site-header .nav-submenu span { color: rgba(255,255,255,0.58); }
.theme-dark .site-header .menu-toggle { border-color: rgba(255,255,255,0.28); }
.theme-dark .site-header .menu-toggle span:not(.sr-only) { background: var(--white); }
.theme-dark .site-header .button-dark { background: var(--white); color: var(--ink); border-color: var(--white); }

.button {
  min-height: 50px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
}
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--green); color: var(--ink); border-color: var(--green); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.text-link { font-size: 14px; font-weight: 700; }

.eyebrow {
  margin-bottom: 22px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.eyebrow-light { color: rgba(255,255,255,0.72); }
.display {
  max-width: 980px;
  margin: 0 auto 30px;
  font-family: var(--display);
  font-size: clamp(54px, 7.4vw, 96px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}
.display em,
.section-title em {
  color: inherit;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}
.page-title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.section-title-small { font-size: clamp(31px, 3.6vw, 45px); }
.lead { font-size: clamp(20px, 2vw, 25px); line-height: 1.48; }
.kicker { font-family: var(--display); font-style: italic; font-size: clamp(27px, 3vw, 39px); }

.hero-centered {
  position: relative;
  min-height: min(790px, calc(100vh - 76px));
  display: grid;
  place-items: center;
  padding: 120px 0 110px;
  overflow: hidden;
  background: var(--paper);
}
.hero-centered::after { display: none; }
.hero-center { position: relative; z-index: 2; max-width: 1020px; text-align: center; }
.hero-center .hero-copy .lead { max-width: 790px; margin: 0 auto 34px; }
.hero-center .button-row { justify-content: center; }
.hero-note { margin-top: 25px; color: var(--ink-soft); font-size: 12px; letter-spacing: 0.06em; }
.hero-scribble { position: absolute; z-index: 1; width: clamp(120px, 15vw, 230px); height: auto; opacity: 0.72; pointer-events: none; }
.hero-scribble-left { left: max(1.5vw, 10px); top: 29%; transform: rotate(-5deg); }
.hero-scribble-right { right: max(1vw, 8px); bottom: 15%; transform: rotate(4deg); }

.decision-strip { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.decision-grid {
  min-height: 148px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.decision-grid > strong { color: var(--green); font-size: 27px; font-weight: 400; }
.decision-grid span { display: block; margin-bottom: 5px; font-size: 14px; font-weight: 900; }
.decision-grid > div:not(.decision-result) span { color: var(--ink); }
.decision-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.decision-result { padding: 24px; background: var(--green); color: var(--white); border-radius: var(--radius); }
.decision-result p { color: rgba(255,255,255,0.78); }

.proof-strip { padding-top: 34px; background: var(--paper); }
.proof-heading { align-items: end; }
.proof-heading > div p { margin: 0 0 3px; color: var(--ink-soft); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.proof-heading > div strong { font-size: 19px; }
.proof-heading a { font-size: 14px; font-weight: 700; }
.proof-items { background: var(--paper); }
.proof-item { min-height: 100px; padding: 23px 18px; }
.proof-item strong { font-size: 19px; font-weight: 900; }
.proof-item span { font-size: 11px; }

.card {
  padding: 31px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card h3 { font-size: 23px; font-weight: 700; }
.card-number { margin-bottom: 40px; }
.card-arrow { top: 28px; right: 28px; }
.card-link:hover { color: inherit; transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card { min-height: 330px; }
.service-card h3 { font-size: 31px; font-weight: 900; }
.pill { border-radius: var(--radius-sm); }
.service-outcome {
  margin: auto 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.service-outcome span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-card .service-outcome + .text-link { margin-top: 0; padding-top: 0; }

.sprint-model { padding-bottom: 30px; }
.sprint-model-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.sprint-model-intro .lead { margin-bottom: 20px; color: var(--ink); font-weight: 700; }
.sprint-model-intro p:last-child { margin-bottom: 0; }
.sprint-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(48px, 7vw, 76px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.sprint-principles span {
  padding: 19px 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.sprint-principles span + span { border-left: 1px solid var(--line-strong); }
.sprint-visual { margin: clamp(42px, 6vw, 70px) 0 0; }
.sprint-visual img { display: block; width: 100%; height: auto; }

.page-hero { padding: 112px 0 92px; background: var(--paper); }
.page-hero-single { max-width: 1040px; margin-inline: auto; }
.page-hero-single .lead { max-width: 850px; }
.hero-aside { border-left: 2px solid var(--lime); }

[data-theme="dark"] {
  background: #111111;
  color: var(--white);
  padding-top: clamp(140px, 14vw, 210px);
  padding-bottom: clamp(140px, 14vw, 210px);
}
.theme-transitions-ready main > section:not([data-theme="dark"]) h1,
.theme-transitions-ready main > section:not([data-theme="dark"]) h2,
.theme-transitions-ready main > section:not([data-theme="dark"]) h3 { color: var(--ink); }
.theme-transitions-ready main > section[data-theme="dark"] h1,
.theme-transitions-ready main > section[data-theme="dark"] h2,
.theme-transitions-ready main > section[data-theme="dark"] h3 { color: var(--white); }
.theme-transitions-ready [data-theme="dark"] { background: transparent; }
[data-theme="dark"] .eyebrow { color: var(--lime); }
[data-theme="dark"] .lead,
[data-theme="dark"] .muted,
[data-theme="dark"] .case-context,
[data-theme="dark"] .case-item > p:last-child,
[data-theme="dark"] .case-note { color: rgba(255,255,255,0.66); }
[data-theme="dark"] .case-item,
[data-theme="dark"] .card,
[data-theme="dark"] .deliverable,
[data-theme="dark"] .process-step { border-color: rgba(255,255,255,0.24); }
[data-theme="dark"] .card { background: transparent; color: var(--white); }
[data-theme="dark"] .card-link:hover { box-shadow: none; border-color: rgba(255,255,255,0.55); }
[data-theme="dark"] .case-section { background: transparent; }
.case-section { border-bottom: 0; }
.case-item { padding: 24px 0 0; }
.case-item strong { font-weight: 900; }
.case-item .case-copy { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.case-item-outcome-first { display: flex; min-height: 250px; flex-direction: column; }
.case-item-outcome-first strong { margin-bottom: 18px; }
.case-item .case-context-footer {
  min-height: 0;
  margin: auto 0 0;
  padding-top: 22px;
  color: rgba(255,255,255,0.54);
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 11px;
  line-height: 1.4;
}

.fit-panel { border-radius: var(--radius-lg); }
.fit-panel > div { padding: clamp(34px, 5vw, 58px); }
.fit-panel > div:first-child { background: var(--green) !important; color: var(--white) !important; }
.fit-panel > div:last-child { background: var(--paper) !important; }
.fit-panel > div + div { border-left: 0; }
.fit-panel > div:first-child .eyebrow-light,
.fit-panel > div:first-child .section-title { color: var(--white) !important; }
.fit-panel > div:first-child .check-list li { border-color: rgba(255,255,255,0.24); }
.fit-panel > div:first-child .check-list li::before { color: rgba(255,255,255,0.82); }
.fit-heading {
  max-width: 20ch;
  margin: 0 0 30px;
  color: var(--green);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.16;
}
.fit-heading-light { color: var(--white) !important; }

.about-teaser { position: relative; overflow: hidden; }
.mountain-panel { margin: 0; align-self: end; }
.mountain-panel img { width: 100%; opacity: 0.88; }
.collective-intro { max-width: 720px; }
.collective-regions { margin: 22px 0 0; color: var(--ink-soft); font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.collective-regions-light { color: rgba(255,255,255,.58); }
.venn-visual { margin: 0; align-self: center; }
.venn-visual img { width: 100%; height: auto; }
.leadership-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(55px, 8vw, 110px); align-items: start; }
.portrait-frame { padding: 0; background: transparent; border-radius: var(--radius-lg); transform: none; }
.portrait-frame img { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); filter: grayscale(.12) saturate(.78); }
.portrait-caption { margin: 16px 0 0; font-size: 11px; }
.credential-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.credential-grid > div { min-height: 112px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credential-grid strong { display: block; margin-bottom: 7px; font-size: 20px; font-weight: 900; }
.credential-grid span { color: var(--ink-soft); font-size: 11px; }
.reference-section { padding: 0 0 clamp(64px, 8vw, 112px); }
.reference-row { padding-top: 28px; border-top: 1px solid var(--line); }
.reference-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; margin: 34px 0 0; padding: 0; list-style: none; }
.reference-list li { color: var(--ink); font-size: clamp(15px, 1.35vw, 19px); font-weight: 700; letter-spacing: -.015em; text-align: center; }
.collective-fields { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.24); }
.collective-fields span { padding: 15px 0 17px; border-bottom: 1px solid rgba(255,255,255,0.24); color: var(--white); font-size: clamp(26px, 3vw, 43px); font-weight: 400; letter-spacing: -.025em; line-height: 1; }
.network-heading { max-width: 820px; margin-bottom: clamp(56px, 8vw, 92px); }
.collective-map { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: clamp(52px, 10vw, 150px); align-items: start; }
.collective-coverage { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.24); }
.collective-coverage span { padding: 17px 0 18px; border-bottom: 1px solid rgba(255,255,255,0.24); color: rgba(255,255,255,.78); font-size: clamp(19px, 2vw, 27px); font-weight: 700; line-height: 1.2; }
.history-heading { max-width: 760px; margin-bottom: 64px; }
.history-heading > p:last-child { max-width: 660px; color: var(--ink-soft); }
.history-line { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.history-line article { position: relative; padding: 32px 26px 0 0; }
.history-line article::before { content: ""; position: absolute; width: 9px; height: 9px; top: -5px; left: 0; background: var(--green); border-radius: 50%; }
.history-line time { display: block; margin-bottom: 26px; color: var(--green); font-weight: 900; }
.history-line h3 { font-size: 20px; }
.history-line p { color: var(--ink-soft); font-size: 14px; }
.membership-section { background: var(--paper-2); }
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 130px); align-items: end; }
.membership-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.membership-logos a { min-height: 150px; display: flex; align-items: center; justify-content: center; padding: 30px; background: var(--white); border: 1px solid var(--line); text-decoration: none; transition: border-color 160ms ease, transform 160ms ease; }
.membership-logos a:hover, .membership-logos a:focus-visible { border-color: var(--line-strong); transform: translateY(-2px); }
.membership-logos img { width: 100%; max-width: 230px; max-height: 68px; object-fit: contain; }

.quote-block { border-left: 2px solid var(--lime); }
.quote-block blockquote { font-family: "Lato", Arial, sans-serif; font-style: italic; font-weight: 400; }

.framework-list { border-top: 1px solid var(--line-strong); }
.framework-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.framework-index {
  padding-top: 3px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.framework-item h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; letter-spacing: -0.015em; }
.framework-item p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.cta-band { padding: clamp(48px, 7vw, 78px); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.site-footer { background: var(--ink); color: var(--white); }
.brand-footer img { width: auto; height: 30px; }
.footer-brand p { color: rgba(255,255,255,0.64); }
.footer-label { color: rgba(255,255,255,0.48); }
.footer-grid > div:not(.footer-brand) a { color: rgba(255,255,255,0.72); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { border-top-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.5); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 780px); }
  .section { padding: 82px 0; }
  .site-nav { background: var(--paper); }
  .theme-dark .site-nav { background: #111111; }
  .hero-centered { min-height: 700px; padding-top: 100px; }
  .hero-scribble { width: 145px; opacity: 0.48; }
  .hero-scribble-left { top: 18%; }
  .hero-scribble-right { bottom: 8%; }
  .decision-grid { grid-template-columns: 1fr 1fr 1fr; gap: 22px; padding: 28px 0; }
  .decision-grid > strong { display: none; }
  .leadership-grid,
  .membership-grid,
  .collective-map { grid-template-columns: 1fr; }
  .portrait-frame { position: relative; top: auto; max-width: 520px; }
  .history-line { grid-template-columns: 1fr 1fr; gap: 46px 26px; border-top: 0; }
  .history-line article { border-top: 1px solid var(--line-strong); }
  .history-line article::before { top: -5px; }
  .sprint-model-intro { grid-template-columns: 1fr; gap: 30px; }
  .sprint-principles { grid-template-columns: 1fr 1fr; }
  .sprint-principles span:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-strong); }
  .sprint-principles span:nth-child(4) { border-top: 1px solid var(--line-strong); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .display { font-size: clamp(46px, 15vw, 68px); }
  .page-title { font-size: clamp(41px, 13vw, 58px); }
  .section-title { font-size: clamp(34px, 10vw, 47px); }
  .hero-centered { min-height: 650px; padding: 90px 0 78px; }
  .hero-scribble { width: 100px; opacity: 0.32; }
  .hero-scribble-left { top: 12%; left: -25px; }
  .hero-scribble-right { right: -20px; bottom: 4%; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid > div:not(.decision-result) { padding: 8px 0; }
  .proof-items { grid-template-columns: 1fr 1fr; }
  .card { padding: 25px; }
  .service-card { min-height: 285px; }
  [data-theme="dark"] { padding-top: 120px; padding-bottom: 120px; }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .credential-grid > div { min-height: 102px; padding: 18px; }
  .reference-list { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  .collective-fields { margin-top: 12px; }
  .membership-logos { grid-template-columns: 1fr; }
  .history-line { grid-template-columns: 1fr; gap: 40px; }
  .mountain-panel { margin-bottom: 15px; }
  .sprint-principles { grid-template-columns: 1fr; }
  .sprint-principles span + span { border-left: 0; border-top: 1px solid var(--line-strong); }
  .sprint-visual { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  body { transition: none; }
  [data-theme="dark"] { background: #111111; }
}
