:root {
  --navy: #0e2a38;
  --navy-2: #14384a;
  --teal: #58c5c7;
  --teal-2: #d9fbfb;
  --gold: #f3b64b;
  --ink: #10212b;
  --muted: #647684;
  --line: #d9e6ea;
  --bg: #f5f8f8;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(14, 42, 56, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Satoshi, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(88,197,199,.24), transparent 32rem), var(--bg);
  line-height: 1.5;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 10; background: #fff; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245,248,248,.82);
  border-bottom: 1px solid rgba(217,230,234,.8);
}
.header-row, .footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-wordmark { display: grid; }
.brand-name { font-weight: 900; letter-spacing: -.02em; }
.brand-tag { color: var(--muted); font-size: .82rem; }
.header-nav { display: flex; align-items: center; gap: 12px; }
.header-link { color: var(--navy); text-decoration: none; font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 14px 34px rgba(14,42,56,.22); }
.btn-primary:hover { background: var(--navy-2); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn-lg { padding: 15px 22px; }
.btn-sm { padding: 9px 14px; font-size: .9rem; }

.hero { padding: 78px 0 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 48px; align-items: center; }
.eyebrow, .kicker {
  display: inline-flex;
  color: var(--navy);
  background: var(--teal-2);
  border: 1px solid rgba(88,197,199,.35);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow-dark { background: rgba(88,197,199,.14); }
.hero-title, .section-title, .wizard-title {
  font-family: "Cabinet Grotesk", Satoshi, sans-serif;
  color: var(--navy);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 20px 0 18px;
}
.hero-title { font-size: clamp(3rem, 7vw, 6.6rem); }
.hero-accent { color: #16888c; }
.hero-sub, .lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #3f5663; max-width: 720px; }
.hero-bullets { display: grid; gap: 12px; list-style: none; padding: 0; margin: 28px 0; color: #3d525d; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); margin-right: 9px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card {
  background: linear-gradient(160deg, var(--navy), #0b1d27);
  color: #fff;
  border-radius: 32px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: -100px -80px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(88,197,199,.55), transparent 68%);
}
.hero-card .kicker { color: #082631; background: var(--teal); position: relative; }
.hero-card-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 18px; position: relative; }
.hero-card-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.hero-card-list strong {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,.12); color: var(--teal);
}
.li-title { margin: 0 0 4px; font-weight: 900; }
.li-sub { margin: 0; color: rgba(255,255,255,.72); }
.hero-card-foot { border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; color: rgba(255,255,255,.78); display: flex; gap: 10px; }

.how-strip { margin-top: 84px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 0; }
.how-num { color: var(--teal); font-weight: 900; }
.how-grid h3 { margin: 8px 0 6px; color: var(--navy); }
.how-grid p { margin: 0; color: var(--muted); font-size: .95rem; }

.wizard, .results { padding: 72px 0; }
.wizard-head { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 16px 44px rgba(14,42,56,.08); }
.wizard-title, .section-title { font-size: clamp(2.2rem, 4.2vw, 4.2rem); }
.wizard-help { color: var(--muted); font-size: 1.1rem; margin: 0; }
.progress { height: 10px; background: #e7eff1; border-radius: 999px; overflow: hidden; margin-top: 24px; }
.progress-bar { height: 100%; width: 25%; background: linear-gradient(90deg, var(--teal), #16888c); border-radius: inherit; transition: width .25s ease; }
.chip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.chip {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  min-height: 118px;
  box-shadow: 0 10px 30px rgba(14,42,56,.06);
}
.chip[aria-pressed="true"] { border-color: var(--teal); background: linear-gradient(180deg, #fff, #effdfd); box-shadow: 0 18px 36px rgba(88,197,199,.18); }
.chip-title { display: block; color: var(--navy); font-size: 1.05rem; font-weight: 900; margin-bottom: 6px; }
.chip-copy { color: var(--muted); }
.wizard-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; }
.hint { color: var(--muted); font-size: .95rem; text-align: center; }

.results-head { display: grid; gap: 10px; margin-bottom: 30px; }
.results-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.results-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }
.results-main, .impact-card, .summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 46px rgba(14,42,56,.08);
}
.block-title { margin: 0 0 16px; color: var(--navy); font-size: 1.1rem; letter-spacing: -.015em; }
.solution-list { display: grid; gap: 16px; }
.solution-card { border: 1px solid var(--line); border-radius: 20px; padding: 20px; background: #fbfdfd; }
.solution-card h4 { margin: 0 0 8px; color: var(--navy); font-size: 1.15rem; }
.solution-card p { margin: 0 0 12px; color: #4d606a; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { background: var(--teal-2); color: #0f5f63; border-radius: 999px; padding: 5px 9px; font-size: .78rem; font-weight: 800; }
.impact-note { color: var(--muted); margin-top: -4px; }
.lever-list, .summary-section ul { padding-left: 19px; color: #3e535e; }
.lever-list li { margin-bottom: 10px; }
.impact-foot { margin-top: 18px; padding: 18px; background: #f2f8f8; border-radius: 18px; }
.impact-foot p { margin-bottom: 0; font-weight: 900; color: var(--navy); }

.cta-band {
  margin: 28px 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  background: linear-gradient(135deg, var(--navy), #071922);
  color: #fff;
  border-radius: 32px;
  padding: 30px;
}
.cta-title { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; margin: 0 0 12px; letter-spacing: -.04em; }
.cta-sub { color: rgba(255,255,255,.76); }
.lead-form { display: grid; gap: 14px; }
.row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 7px; font-weight: 800; }
label span { font-size: .9rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 14px;
  padding: 12px 13px;
  outline: none;
}
select option { color: var(--ink); }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(88,197,199,.18); }
textarea::placeholder { color: rgba(255,255,255,.55); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.fineprint { color: rgba(255,255,255,.58); font-size: .85rem; margin: 0; }
.lead-success { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 24px; }

.summary { margin-top: 28px; }
.summary-head { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 18px; }
.summary h3 { margin: 10px 0 0; color: var(--navy); font-size: 1.8rem; }
.summary-date { color: var(--muted); }
.summary-answers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.summary-answers div { border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.summary-answers dt { color: var(--muted); font-weight: 800; font-size: .82rem; }
.summary-answers dd { margin: 4px 0 0; font-weight: 900; color: var(--navy); }
.summary-section { margin-top: 18px; }
.summary-foot { color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin-top: 20px; }

.site-footer { background: var(--navy); color: #fff; margin-top: 60px; }
.site-footer .brand-tag, .foot-meta { color: rgba(255,255,255,.72); }
.foot-meta { text-align: right; max-width: 520px; }
.foot-meta p { margin: 4px 0; }

@media (max-width: 860px) {
  .header-row, .footer-row { align-items: flex-start; }
  .header-nav { display: none; }
  .hero-grid, .results-grid, .cta-band { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-grid, .row, .summary-answers { grid-template-columns: 1fr; }
  .wizard-foot { flex-wrap: wrap; }
  .hint { order: 3; width: 100%; }
  .foot-meta { text-align: left; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding-top: 48px; }
  .hero-card, .cta-band { border-radius: 24px; padding: 22px; }
  .how-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
}

@media print {
  .site-header, .hero, .wizard, .results-head, .results-grid, .cta-band, .site-footer { display: none !important; }
  #results, .summary { display: block !important; padding: 0; box-shadow: none; border: 0; }
  body { background: #fff; }
}
