:root {
  --ink: #071713;
  --ink-2: #102820;
  --paper: #f5f3ec;
  --paper-2: #ece9df;
  --white: #fffef9;
  --lime: #c7ff4a;
  --lime-strong: #a9ed17;
  --mint: #aaf6d1;
  --teal: #1a7660;
  --coral: #ff8b68;
  --muted: #66736d;
  --line: rgba(7, 23, 19, .14);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(7, 23, 19, .10);
  --max: 1180px;
}

* { 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.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 36px), 820px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.surface { background: var(--white); }
.surface-soft { background: var(--paper-2); }
.surface-dark { background: var(--ink); color: var(--white); }
.surface-mint { background: var(--mint); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(7, 23, 19, .94);
  color: var(--white);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
}
.brand-mark::before { width: 8px; height: 8px; left: 5px; top: 11px; }
.brand-mark::after { width: 8px; height: 8px; right: 5px; top: 11px; }
.brand-mark span {
  position: absolute;
  width: 14px;
  height: 7px;
  left: 8px;
  bottom: 6px;
  border-bottom: 2px solid var(--lime);
  border-radius: 50%;
}
.site-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}
.site-nav .button { display: none; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--lime); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button::before { transform: translateY(-6px); }
.menu-button::after { transform: translateY(6px); }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(2px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-2px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--lime-strong); box-shadow: 0 10px 30px rgba(199,255,74,.18); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--ink-2); box-shadow: 0 10px 30px rgba(7,23,19,.22); }
.button-ghost { background: transparent; color: currentColor; border-color: currentColor; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-small { min-height: 40px; padding: 10px 16px; font-size: 13px; }
.arrow::after { content: "↗"; font-size: 1.05em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; background: var(--lime-strong); border-radius: 50%; }
.surface-dark .eyebrow { color: var(--lime); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.04em; }
h1 { margin-bottom: 26px; font-size: clamp(3.1rem, 7.3vw, 6.9rem); max-width: 1040px; }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4.4vw, 4.3rem); max-width: 940px; }
h3 { margin-bottom: 14px; font-size: clamp(1.28rem, 2vw, 1.75rem); }
p { margin-top: 0; }
.lede { max-width: 790px; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.52; color: var(--muted); }
.surface-dark .lede { color: rgba(255,255,255,.72); }
.kicker { max-width: 720px; font-size: 18px; color: var(--muted); }
.surface-dark .kicker { color: rgba(255,255,255,.68); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-head > div { max-width: 850px; }
.section-head p { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 18px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 88px;
  background: var(--ink);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    radial-gradient(circle at 78% 20%, rgba(199,255,74,.21), transparent 25%),
    radial-gradient(circle at 8% 80%, rgba(170,246,209,.11), transparent 23%),
    linear-gradient(115deg, transparent 0 68%, rgba(255,255,255,.035) 68% 69%, transparent 69% 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -240px;
  border: 1px solid rgba(199,255,74,.38);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(199,255,74,.045), 0 0 0 108px rgba(199,255,74,.035), 0 0 0 162px rgba(199,255,74,.025);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin-top: 25px; color: rgba(255,255,255,.6); font-size: 14px; }
.hero-note strong { color: var(--white); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 64px; align-items: end; }
.signal-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.signal-card::before { content: "LIVE"; display: inline-block; margin-bottom: 24px; color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.signal-row { display: flex; gap: 12px; align-items: flex-start; margin-top: 14px; }
.signal-dot { flex: 0 0 9px; width: 9px; height: 9px; margin-top: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(199,255,74,.09); }
.signal-row p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.signal-row strong { display: block; color: var(--white); font-size: 15px; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 24px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item strong { display: block; margin-bottom: 3px; font-size: 15px; }
.trust-item span { color: var(--muted); font-size: 13px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
a.card { display: block; text-decoration: none; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
a.card:hover { transform: translateY(-5px); border-color: rgba(26,118,96,.42); box-shadow: var(--shadow); }
.card-index { display: block; margin-bottom: 42px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.card p { margin-bottom: 0; color: var(--muted); }
.card-link { display: inline-block; margin-top: 24px; color: var(--teal); font-weight: 850; font-size: 14px; }
.card-link::after { content: " →"; }
.card-dark { border-color: rgba(255,255,255,.13); background: var(--ink-2); color: var(--white); }
.card-dark p { color: rgba(255,255,255,.65); }
.card-lime { background: var(--lime); }
.card-lime p { color: rgba(7,23,19,.72); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 25px 0 0; list-style: none; }
.tag { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 750; }
.surface-dark .tag { border-color: rgba(255,255,255,.19); color: rgba(255,255,255,.72); }
.list-clean { padding: 0; margin: 22px 0 0; list-style: none; }
.list-clean li { position: relative; margin-top: 13px; padding-left: 24px; }
.list-clean li::before { content: "↳"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.surface-dark .list-clean li::before { color: var(--lime); }

.flow { display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; gap: 0; counter-reset: flow; }
.flow-step { position: relative; padding: 26px 25px 28px; border: 1px solid rgba(255,255,255,.15); border-right: 0; }
.flow-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.flow-step:last-child { border-right: 1px solid rgba(255,255,255,.15); border-radius: 0 var(--radius) var(--radius) 0; }
.flow-step::before { counter-increment: flow; content: "0" counter(flow); display: block; margin-bottom: 34px; color: var(--lime); font-size: 12px; font-weight: 900; }
.flow-step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -13px; top: 50%; display: grid; place-items: center; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 900; }
.flow-step strong { display: block; margin-bottom: 8px; }
.flow-step p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }

.split { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 80px; align-items: start; }
.split.reverse { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.sticky-copy { position: sticky; top: 116px; }
.feature-stack { display: grid; gap: 14px; }
.feature-row { padding: 25px 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.feature-row strong { display: block; margin-bottom: 7px; font-size: 18px; }
.feature-row p { margin: 0; color: var(--muted); }

.escalation { display: grid; gap: 12px; }
.level { display: grid; grid-template-columns: 92px 1fr auto; gap: 24px; align-items: center; padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.level-code { color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.level strong { display: block; }
.level p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.level-route { padding: 7px 11px; border-radius: 999px; background: var(--paper-2); font-size: 12px; font-weight: 800; white-space: nowrap; }

.proof {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 32px;
  background: var(--ink);
  color: var(--white);
}
.proof::after { content: "🐩"; position: absolute; right: 22px; bottom: -50px; font-size: 180px; opacity: .08; filter: grayscale(1); }
.proof-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.proof-label { color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.proof h2 { margin-top: 20px; font-size: clamp(2.2rem, 4vw, 4rem); }
.proof p { color: rgba(255,255,255,.7); }
.proof-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 30px; }
.proof-point { padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; }
.proof-point strong { display: block; color: var(--lime); font-size: 14px; }
.proof-point span { color: rgba(255,255,255,.66); font-size: 13px; }

.quote { padding: 34px; border-left: 5px solid var(--lime-strong); background: var(--white); font-size: 20px; font-weight: 700; line-height: 1.5; }
.number-list { display: grid; gap: 14px; counter-reset: ordered; }
.number-item { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.number-item::before { counter-increment: ordered; content: counter(ordered); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--lime); font-size: 14px; font-weight: 900; }
.number-item p { margin: 6px 0 0; color: var(--muted); }

.breadcrumbs { padding: 24px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: 13px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #a3aaa6; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal); }
.page-hero { padding: 82px 0 72px; background: var(--ink); color: var(--white); }
.page-hero h1 { max-width: 980px; font-size: clamp(2.8rem, 6.2vw, 5.8rem); }
.page-hero .lede { max-width: 850px; }
.page-tags { margin-top: 30px; }
.page-body h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.content-section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.content-section:last-child { border-bottom: 0; }
.content-grid { display: grid; grid-template-columns: minmax(240px,.72fr) minmax(0,1.28fr); gap: 70px; }
.content-copy p, .content-copy li { color: #45534d; }
.content-copy p { font-size: 17px; }
.content-copy h3 { margin-top: 32px; }
.callout { margin-top: 30px; padding: 25px; border-radius: var(--radius-sm); background: var(--mint); }
.callout strong { display: block; margin-bottom: 7px; }
.callout p { margin: 0; color: rgba(7,23,19,.72); }

.related { padding: 72px 0; background: var(--paper-2); }
.related .grid-3 { margin-top: 34px; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; padding: 48px; border-radius: 30px; background: var(--lime); }
.cta-panel h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3.7rem); }
.cta-panel p { max-width: 700px; margin: 0; color: rgba(7,23,19,.7); font-size: 18px; }

.faq-list { display: grid; gap: 10px; margin-top: 38px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.faq-list summary { position: relative; padding: 22px 56px 22px 24px; cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 23px; top: 18px; color: var(--teal); font-size: 24px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-answer { padding: 0 24px 23px; color: var(--muted); }
.faq-answer p { margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.team-card { overflow: hidden; padding: 0; }
.team-top { min-height: 170px; padding: 28px; background: var(--ink); color: var(--white); }
.team-monogram { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 30px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--lime); font-size: 22px; font-weight: 900; }
.team-top span { color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.team-copy { padding: 28px; }
.team-copy p { color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 24px; align-items: start; }
.contact-options { display: grid; gap: 24px; }
.contact-card { padding: 36px; }
.contact-card p { color: var(--muted); }
.contact-action { margin-top: 28px; }
.contact-form-card { padding: 40px; }
.contact-form-card > p { color: var(--muted); }
.contact-form { position: relative; margin-top: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; gap: 8px; font-size: 14px; font-weight: 800; }
.form-field-wide { grid-column: 1 / -1; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  font-weight: 500;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea { resize: vertical; min-height: 160px; line-height: 1.5; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(26,118,96,.12); }
.form-consent { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; margin-top: 20px; color: var(--muted); font-size: 13px; font-weight: 600; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); }
.form-consent a { color: var(--teal); }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.form-actions button:disabled { cursor: wait; opacity: .65; }
.form-status { margin: 0; color: var(--muted); font-size: 14px; }
.form-status.success { color: var(--teal); font-weight: 800; }
.form-status.error { color: #a13420; font-weight: 800; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.legal { padding: 72px 0 96px; }
.legal h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.legal h2 { margin-top: 50px; margin-bottom: 14px; font-size: 1.65rem; letter-spacing: -.025em; }
.legal h3 { margin-top: 28px; font-size: 1.15rem; letter-spacing: -.015em; }
.legal p, .legal li { color: #45534d; }
.legal a { color: var(--teal); }
.legal-note { padding: 20px; border-left: 4px solid var(--coral); background: var(--white); }

.site-footer { padding: 72px 0 30px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .65fr); gap: 60px; }
.footer-intro p { max-width: 410px; color: rgba(255,255,255,.6); }
.footer-col strong { display: block; margin-bottom: 18px; color: var(--lime); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; color: rgba(255,255,255,.66); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: 12px; }
.footer-bottom a { color: inherit; }

@media (max-width: 960px) {
  .site-nav { display: none; position: fixed; inset: 76px 0 0; padding: 30px 24px; background: var(--ink); flex-direction: column; align-items: flex-start; gap: 22px; }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 20px; }
  .site-nav .button { display: inline-flex; margin-top: 10px; color: var(--ink); font-size: 15px; }
  .header-inner > .button { display: none; }
  .menu-button { display: flex; flex-direction: column; }
  .hero-grid, .split, .split.reverse, .proof-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(3.1rem, 10vw, 5.6rem); }
  .signal-card { max-width: 520px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-right: 1px solid rgba(255,255,255,.15); border-bottom: 0; }
  .flow-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .flow-step:last-child { border-bottom: 1px solid rgba(255,255,255,.15); border-radius: 0 0 var(--radius) var(--radius); }
  .flow-step:not(:last-child)::after { content: "↓"; right: 24px; top: auto; bottom: -13px; }
  .split { gap: 45px; }
  .sticky-copy { position: static; }
  .content-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section-tight { padding: 52px 0; }
  .hero { padding: 78px 0 64px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .button { margin-top: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .grid-2, .grid-3, .grid-4, .team-grid, .proof-points { grid-template-columns: 1fr; }
  .card { padding: 25px; }
  .level { grid-template-columns: 1fr; gap: 8px; }
  .level-route { justify-self: start; }
  .proof { padding: 30px 24px; border-radius: 24px; }
  .proof-grid { gap: 30px; }
  .page-hero { padding: 62px 0 58px; }
  .page-hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .cta-panel { grid-template-columns: 1fr; padding: 32px 24px; border-radius: 24px; }
  .cta-panel .button { justify-self: start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .contact-form-card { padding: 28px 22px; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

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

@media print {
  .site-header, .site-footer, .breadcrumbs, .hero-actions, .cta-panel { display: none !important; }
  body { background: white; color: black; }
  .page-hero, .hero { background: white; color: black; padding: 30px 0; }
  .surface-dark { background: white; color: black; }
}
