:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #5b6762;
  --paper: #f5f3ed;
  --surface: #fffdf8;
  --line: #d9ddd7;
  --green: #166149;
  --green-dark: #0d4937;
  --lime: #d8ee9f;
  --orange: #e87534;
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
.site-header, main, footer { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--green); color: white; font-size: .82rem; }
nav { display: flex; align-items: center; gap: 26px; }
nav a { color: var(--muted); text-decoration: none; font-size: .94rem; font-weight: 650; }
nav a:hover, nav a:focus-visible { color: var(--green); }
.nav-cta { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; }
.hero { min-height: 610px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 70px; padding: 80px 0 100px; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: .77rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(3rem, 6.2vw, 6.2rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { margin-bottom: 14px; font-size: 1.45rem; }
.lead { max-width: 700px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 21px; border-radius: 999px; text-decoration: none; font-weight: 780; }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { background: var(--green-dark); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.button-light { background: var(--lime); color: var(--ink); }
.data-card { border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius); background: var(--green-dark); color: white; box-shadow: 0 28px 70px rgba(31,49,42,.16); overflow: hidden; transform: rotate(1deg); }
.data-card-head { display: flex; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.12); color: #cbd8d2; font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.status { display: flex; align-items: center; gap: 7px; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(216,238,159,.12); }
.process-list { margin: 0; padding: 12px 24px 24px; list-style: none; }
.process-list li { display: grid; grid-template-columns: 40px 1fr; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.process-list li:last-child { border-bottom: 0; }
.process-list li > span { color: var(--lime); font-size: .8rem; font-weight: 850; }
.process-list strong { font-size: 1.05rem; }
.process-list small { grid-column: 2; color: #bdcbc5; }
.section { padding: 105px 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.service-card:nth-child(2) { background: #edf2ea; }
.service-card p { margin-bottom: 0; color: var(--muted); }
.service-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 58px; border-radius: 50%; background: var(--paper); color: var(--green); font-size: .8rem; font-weight: 850; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.principles { display: grid; gap: 0; }
.principles p { margin: 0; padding: 24px 0; border-top: 1px solid var(--line); color: var(--muted); }
.principles strong { color: var(--ink); }
.feature-band { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin: 60px 0 90px; padding: 50px; border-radius: var(--radius); background: var(--green); color: white; }
.feature-band > div { max-width: 760px; }
.feature-band .eyebrow { color: var(--lime); }
.feature-band h2 { margin-bottom: 14px; font-size: clamp(2rem, 3.5vw, 3.4rem); }
.feature-band p:last-child { margin-bottom: 0; color: #cfddd7; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px 0 45px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 820px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding: 60px 0 80px; }
  .data-card { transform: none; }
  .service-grid, .split-section { grid-template-columns: 1fr; }
  .split-section { gap: 20px; }
  .feature-band { align-items: flex-start; flex-direction: column; padding: 32px; }
}

@media (max-width: 540px) {
  .site-header, main, footer { width: min(100% - 24px, 1180px); }
  .site-header { min-height: 70px; }
  .brand > span:last-child { font-size: .92rem; }
  h1 { font-size: 2.65rem; }
  .section { padding: 78px 0; }
  .service-card { min-height: 0; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
