:root {
  --ink: #10251f;
  --ink-2: #183a31;
  --green: #0d7155;
  --green-dark: #07523d;
  --lime: #daf36b;
  --paper: #f5f2e9;
  --white: #fffdf8;
  --soft: #eaf0e8;
  --muted: #586862;
  --line: #d5d9d1;
  --orange: #ef8c5b;
  --shadow: 0 24px 64px rgba(16, 37, 31, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: -9999px; top: 12px; z-index: 100; }
.skip-link:focus { left: 12px; padding: 10px 14px; background: white; border-radius: 8px; }

.site-header { position: relative; z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 24px; }
.brand { color: var(--ink); font-size: 1.35rem; font-weight: 950; letter-spacing: -.05em; text-decoration: none; }
.brand span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .92rem; font-weight: 750; }
.nav-links > a:not(.button) { text-decoration: none; }
.nav-links > a:not(.button):hover { color: var(--green); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { background: var(--green-dark); transform: translateY(-2px); }
.button.small { min-height: 42px; padding: 9px 17px; }
.button.secondary { background: transparent; color: var(--green); }
.button.secondary:hover { background: rgba(13, 113, 85, .08); }
.button.lime { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.button.lime:hover { background: white; }
.text-link { color: var(--green-dark); font-weight: 850; text-underline-offset: 4px; }

.hero { position: relative; overflow: hidden; padding: 76px 0 108px; }
.hero::before { position: absolute; top: -190px; right: -140px; width: 560px; height: 560px; border-radius: 50%; background: var(--lime); content: ""; opacity: .52; z-index: -1; }
.hero::after { position: absolute; bottom: -260px; left: -280px; width: 520px; height: 520px; border: 1px solid rgba(13, 113, 85, .28); border-radius: 50%; content: ""; z-index: -1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: 76px; align-items: center; }
.eyebrow { display: inline-block; margin-bottom: 16px; color: var(--green); font-size: .79rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: var(--lime); }
h1, h2, h3 { margin-top: 0; line-height: 1.06; letter-spacing: -.046em; }
h1 { max-width: 830px; margin-bottom: 24px; font-size: clamp(3rem, 6.7vw, 6.2rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4.5vw, 4.2rem); }
h3 { margin-bottom: 12px; font-size: 1.45rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.32rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 32px; }
.microcopy { max-width: 650px; margin-top: 16px; color: var(--muted); font-size: .88rem; }

.campaign-map { padding: 28px; border-radius: 30px; background: var(--ink); color: white; box-shadow: var(--shadow); transform: rotate(1deg); }
.map-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.16); color: #bed0c9; font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
.map-head strong { color: var(--lime); }
.campaign-map ol { display: grid; gap: 0; margin: 0; padding: 8px 0 0; list-style: none; }
.campaign-map li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.campaign-map li:last-child { border-bottom: 0; }
.campaign-map li > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: .76rem; font-weight: 950; }
.campaign-map li div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.campaign-map small { color: #afc0ba; text-align: right; }

.signal-strip { background: var(--white); border-block: 1px solid var(--line); }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.signal-grid p { display: grid; gap: 4px; margin: 0; padding: 27px 30px; border-right: 1px solid var(--line); }
.signal-grid p:first-child { padding-left: 0; }
.signal-grid p:last-child { border-right: 0; }
.signal-grid span { color: var(--muted); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.section { padding: 104px 0; }
.section.soft { background: var(--soft); }
.section.dark { background: var(--ink); color: white; }
.section-head { max-width: 850px; margin-bottom: 48px; }
.section-head > p { max-width: 720px; color: var(--muted); font-size: 1.12rem; }
.center-head { margin-inline: auto; text-align: center; }
.center-head > p { margin-inline: auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.card.featured { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-10px); }
.card p { color: var(--muted); }
.number { display: inline-grid; width: 40px; height: 40px; margin-bottom: 28px; place-items: center; border-radius: 50%; background: var(--lime); font-size: .8rem; font-weight: 950; }
.diagnosis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 72px; }
.diagnosis-item { display: grid; gap: 2px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.diagnosis-item strong { color: var(--green); }
.diagnosis-item span { color: var(--muted); font-size: .9rem; }
.service-heading { max-width: 720px; margin-bottom: 38px; }
.scope-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; margin-top: 24px; }
.scope-card { padding: 34px; border-radius: var(--radius); }
.scope-card h3 { font-size: 1.8rem; }
.scope-card ul { margin-bottom: 0; padding-left: 20px; }
.scope-card li { margin-top: 11px; }
.scope-input { background: var(--ink); color: white; }
.scope-input li { color: #d4dfdb; }
.scope-output { border: 2px solid var(--green); background: var(--white); }

.case-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 74px; align-items: center; }
.section.dark .muted { color: #b7c8c2; }
.evidence-card { padding: 36px; border: 1px solid #3c5a50; border-radius: 30px; background: var(--ink-2); }
.evidence-card .label { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.evidence-card h3 { margin-top: 24px; font-size: 2rem; }
.evidence-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 24px; overflow: hidden; border-radius: 16px; background: #47645a; }
.evidence-stats div { display: grid; gap: 4px; padding: 18px; background: #203f35; }
.evidence-stats strong { color: var(--lime); font-size: 1.8rem; letter-spacing: -.05em; }
.evidence-stats span { color: #c7d5d0; font-size: .86rem; }
.evidence-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.evidence-card li { position: relative; margin-top: 12px; padding-left: 25px; color: #d4dfdb; }
.evidence-card li::before { position: absolute; left: 0; color: var(--lime); content: "→"; }
.case-note { margin: 34px 0 0; color: #aebfb9; font-size: .86rem; }
.white-section { background: var(--white); }
.founder-panel { display: grid; grid-template-columns: 190px 1fr; gap: 52px; align-items: center; max-width: 960px; }
.founder-photo { display: block; width: 160px; aspect-ratio: 1; border: 5px solid var(--paper); border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.founder-panel h2 { margin-bottom: 14px; }
.founder-panel p:last-child { margin-bottom: 0; }

.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.path-card { display: flex; min-height: 390px; flex-direction: column; align-items: flex-start; padding: 40px; border-radius: 30px; }
.path-card h3 { max-width: 440px; margin-top: 20px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.path-card p { max-width: 540px; margin-bottom: 32px; }
.path-card .button { margin-top: auto; }
.service-path { background: var(--green); color: white; }
.service-path p { color: #d5e5df; }
.method-path { border: 2px solid var(--green); background: var(--white); }
.path-label { padding: 7px 12px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.fit-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.fit-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.check-list, .cross-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .cross-list li { position: relative; margin-top: 13px; padding-left: 29px; }
.check-list li::before, .cross-list li::before { position: absolute; left: 0; font-weight: 950; }
.check-list li::before { color: var(--green); content: "✓"; }
.cross-list li::before { color: #b4473e; content: "×"; }

details { padding: 22px 0; border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 850; }
details p { max-width: 700px; color: var(--muted); }

.cta-section { padding: 0 0 104px; }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; padding: 54px; border-radius: 34px; background: var(--ink); color: white; }
.cta-box h2 { max-width: 760px; }
.cta-box p { max-width: 680px; margin-bottom: 0; color: #bccbc6; }
.cta-actions { display: grid; gap: 12px; max-width: 360px; }
.cta-actions p { font-size: .84rem; text-align: center; }
.cta-actions p a { color: white; text-underline-offset: 3px; }
.footer { padding: 50px 0; border-top: 1px solid var(--line); background: var(--white); }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.footer p { color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: .9rem; }

.legal { padding: 70px 0 110px; }
.legal h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); }
.legal h2 { margin-top: 44px; font-size: 1.8rem; }
.legal p, .legal li { color: var(--muted); }
.legal .notice { padding: 16px 18px; border-left: 4px solid var(--orange); border-radius: 10px; background: #fff0e7; color: var(--ink); }

@media (max-width: 900px) {
  .nav-links > a:not(.button) { display: none; }
  .hero-grid, .case-grid, .fit-grid, .scope-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .campaign-map { max-width: 620px; transform: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .card.featured { transform: none; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid p, .signal-grid p:first-child { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-grid p:last-child { border-bottom: 0; }
  .cta-box { grid-template-columns: 1fr; }
  .founder-panel { grid-template-columns: 140px 1fr; gap: 30px; }
  .founder-photo { width: 140px; }
}

@media (max-width: 680px) {
  .wrap, .narrow { width: min(100% - 28px, 1160px); }
  .nav { padding-block: 18px; }
  .nav-links { gap: 0; }
  .hero { padding: 48px 0 76px; }
  .section { padding: 76px 0; }
  .path-grid, .fit-columns, .diagnosis-grid, .founder-panel { grid-template-columns: 1fr; }
  .path-card { min-height: 0; padding: 30px 24px; }
  .campaign-map { padding: 22px; }
  .campaign-map li div { display: grid; }
  .campaign-map small { text-align: left; }
  .actions .button { width: 100%; }
  .cta-box { padding: 34px 24px; }
  .cta-box .button { width: 100%; }
  .cta-actions { max-width: none; }
  .founder-photo { width: 112px; }
  .footer-grid { display: grid; }
  .footer-links { display: grid; gap: 10px; }
}

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