:root {
  --ink: #1f2933;
  --muted: #64707d;
  --line: #d8dee5;
  --paper: #fbfaf7;
  --soft: #f1eee8;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #e0a72f;
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

html {
  scroll-behavior: smooth;
}

.hero,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  min-height: 74vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}

h1 {
  max-width: 18ch;
  font-size: 56px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 18px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.card p,
.muted {
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-dark);
  font-weight: 700;
}

.statement {
  max-width: 680px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
}

.meet-atlas {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 40px;
  align-items: center;
}

.principle-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.list {
  padding-left: 20px;
  color: var(--muted);
}

.band {
  background: var(--soft);
}

.final-cta {
  text-align: center;
}

.final-cta .lead {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .actions {
  justify-content: center;
}

.form {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.field-label,
label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.intake-shell {
  max-width: 760px;
}

.progress {
  margin: 30px 0 34px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--line);
}

.progress-bar {
  width: 25%;
  height: 100%;
  background: var(--accent);
  transition: width 180ms ease;
}

.progress-copy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.intake-step[hidden] {
  display: none;
}

.intake-step h2 {
  font-size: 28px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice label {
  display: block;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 18px;
  cursor: pointer;
}

.choice input:checked + label {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
  color: var(--accent-dark);
}

.choice input:focus-visible + label {
  outline: 3px solid #e0a72f;
  outline-offset: 3px;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.button.quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button.quiet:hover {
  background: var(--soft);
}

.form-error {
  min-height: 24px;
  margin: 14px 0 0;
  color: #9f2d20;
  font-weight: 700;
}

.confirmation {
  border-left: 4px solid var(--accent);
  background: var(--white);
  padding: 26px;
}

.data-notice {
  margin: 26px 0 8px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  padding: 18px 20px;
}

.data-notice p {
  margin-bottom: 6px;
}

.placeholder-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.summary-list {
  padding-left: 20px;
}

.guide-header {
  max-width: 780px;
}

.comparison {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
}

.comparison th,
.comparison td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: var(--soft);
}

.content-narrow {
  max-width: 800px;
}

.callout {
  margin: 30px 0;
  border-left: 4px solid var(--accent);
  background: var(--white);
  padding: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 24px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
  }

  .nav-links {
    width: 100%;
    gap: 10px 14px;
    font-size: 13px;
  }

  .hero,
  .meet-atlas,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 44px 20px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .comparison {
    font-size: 14px;
  }

  .comparison th,
  .comparison td {
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .nav {
    align-items: flex-start;
  }

  .brand {
    padding-top: 8px;
  }

  h1 {
    font-size: 36px;
  }

  .actions,
  .step-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  button {
    width: 100%;
  }
}
