:root {
  --ink: #10231f;
  --muted: #5b6b66;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --green: #185c4a;
  --green-dark: #0e4336;
  --mint: #cfe8dc;
  --lime: #d9ef70;
  --line: #d9ddd6;
  --danger: #a12a2a;
  --shadow: 0 24px 60px rgba(16, 35, 31, 0.1);
  --radius: 22px;
}

* { 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;
  line-height: 1.6;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { padding: 22px 0; border-bottom: 1px solid rgba(16,35,31,.12); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 11px; background: var(--green); box-shadow: inset -8px -8px 0 var(--lime); }
.nav-links { display: flex; gap: 24px; align-items: center; font-size: .94rem; }
.nav-links a { text-decoration: none; }
.eyebrow { color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero { padding: 78px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: center; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.6rem); margin-bottom: 24px; max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 18px; }
h3 { font-size: 1.2rem; }
.lede { color: var(--muted); font-size: 1.15rem; max-width: 650px; }
.actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 24px; border: 0; border-radius: 999px; background: var(--green); color: white; font-weight: 800; text-decoration: none; box-shadow: 0 10px 24px rgba(24,92,74,.2); transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: var(--green-dark); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.price-note { color: var(--muted); font-size: .92rem; }
.scorecard { position: relative; padding: 32px; border-radius: 30px; background: var(--green); color: white; box-shadow: var(--shadow); transform: rotate(2deg); }
.scorecard::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border-radius: inherit; background: var(--mint); z-index: -1; }
.scorecard-label { color: var(--lime); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scorecard h2 { margin: 14px 0 28px; font-size: 2rem; }
.meter { display: grid; gap: 14px; }
.meter-row { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 12px; font-size: .86rem; }
.meter-track { height: 8px; border-radius: 99px; background: rgba(255,255,255,.18); overflow: hidden; }
.meter-fill { height: 100%; border-radius: inherit; background: var(--lime); }
.fill-72 { width: 72%; }
.fill-46 { width: 46%; }
.fill-64 { width: 64%; }
.fill-58 { width: 58%; }
.section { padding: 84px 0; }
.section-alt { background: var(--white); border-block: 1px solid var(--line); }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card-number { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--mint); color: var(--green-dark); font-weight: 900; margin-bottom: 28px; }
.card p { color: var(--muted); margin-bottom: 0; }
.deliverable { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--lime); font-weight: 900; }
.cta { padding: 52px; border-radius: 30px; background: var(--ink); color: white; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { margin-bottom: 8px; }
.cta p { color: #b9c5c1; margin: 0; }
.site-footer { padding: 42px 0; color: var(--muted); font-size: .88rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }

.intake-page { min-height: 100vh; background: linear-gradient(180deg, #edf4ef 0, var(--paper) 420px); }
.intake-main { padding: 64px 0 90px; }
.gate, .assessment { width: min(820px, 100%); margin: 0 auto; }
.gate { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 60px 32px; box-shadow: var(--shadow); }
.gate-actions { justify-content: center; }
.spinner { width: 42px; height: 42px; margin: 0 auto 24px; border: 4px solid var(--mint); border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.alert { padding: 16px 18px; border-radius: 14px; background: #f8e5e1; color: var(--danger); margin: 20px 0; }
.success-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 99px; background: var(--mint); color: var(--green-dark); font-size: .85rem; font-weight: 800; }
.assessment-header { margin-bottom: 36px; }
.assessment-header h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin: 18px 0; }
.progress { width: 100%; height: 8px; border: 0; border-radius: 99px; overflow: hidden; background: var(--line); margin-top: 24px; appearance: none; }
.progress::-webkit-progress-bar { background: var(--line); }
.progress::-webkit-progress-value { background: var(--green); transition: width .25s; }
.progress::-moz-progress-bar { background: var(--green); }
.form-section { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; margin-bottom: 20px; }
.form-section > p { color: var(--muted); }
.field { display: grid; gap: 8px; margin-top: 20px; }
.field label, fieldset legend { font-weight: 750; }
.required { color: var(--danger); }
input, select, textarea { width: 100%; border: 1px solid #bdc7c2; border-radius: 12px; padding: 13px 14px; background: white; color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }
fieldset { border: 0; margin: 22px 0 0; padding: 0; }
.radio-grid { display: grid; gap: 10px; margin-top: 10px; }
.radio { display: flex; gap: 11px; align-items: flex-start; padding: 13px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.radio:has(input:checked) { border-color: var(--green); background: #f1f8f4; }
.radio input { width: auto; margin-top: 5px; }
.form-actions { display: flex; justify-content: flex-end; margin-top: 28px; }
.fine-print { color: var(--muted); font-size: .82rem; }
.hidden { display: none !important; }
.legal { width: min(760px, calc(100% - 40px)); margin: 70px auto; }
.legal h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
.legal h2 { font-size: 1.5rem; margin-top: 38px; }

@media (max-width: 800px) {
  .hero { padding-top: 52px; }
  .hero-grid, .deliverable { grid-template-columns: 1fr; }
  .scorecard { margin: 10px 12px 18px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta { padding: 36px 26px; align-items: flex-start; flex-direction: column; }
  .nav-links a:not(.button) { display: none; }
}

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