@font-face {
  font-family: Marcellus;
  src: url("/Marcellus-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
:root {
  --font-display: Marcellus, Georgia, "Times New Roman", serif;
  --shadow: 0 2px 8px rgba(46, 32, 18, 0.09), 0 1px 2px rgba(46, 32, 18, 0.06);
  --ring: 0 0 0 2px var(--panel), 0 0 0 4px rgba(178, 63, 34, 0.55);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.6 ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 0;
  box-shadow: var(--ring);
  border-radius: 4px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}
h1 {
  font-size: clamp(40px, 4.7vw, 66px);
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(31px, 3.2vw, 44px);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
h3 {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 48px;
  border: 1px solid #cfc4a9;
  border-radius: 12px;
  background: var(--panel-soft);
}
.brand strong {
  display: block;
  font: 26px/1.05 var(--font-display);
}
.brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.nav-actions > a:not(.button) {
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 46px;
  padding: 11px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 650;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 120ms;
}
.primary {
  background: var(--accent);
  color: var(--panel);
}
.primary:hover {
  background: var(--accent-hover);
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: 88px 96px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-copy > .eyebrow {
  color: var(--accent);
}
.lede {
  font-size: 19px;
  line-height: 1.65;
  color: #4a4237;
  max-width: 51ch;
  margin-bottom: 16px;
}
.supporting {
  color: var(--muted);
  margin-bottom: 30px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.text-link {
  font-size: 14px;
}
.fine-print {
  font-size: 13px;
  color: var(--muted);
  margin: 15px 0 0;
}
.journey-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--good);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.card-heading .eyebrow {
  margin: 0;
}
.small-mark {
  color: var(--bronze);
  font-size: 25px;
}
.journey-card h2 {
  font-size: clamp(29px, 2.7vw, 36px);
  margin-bottom: 30px;
}
.journey {
  list-style: none;
  padding: 0;
  margin: 0;
}
.journey li {
  display: flex;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}
.journey strong {
  font-size: 16px;
}
.journey p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 5px 0 0;
}
.step {
  display: grid;
  place-items: center;
  flex: 0 0 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--bronze);
  font-size: 12px;
}
.card-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 18px;
  color: var(--good-ink);
  font-size: 12px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
}
.section {
  border-top: 1px solid var(--line);
  padding-block: 66px 80px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 46px;
}
.number {
  display: block;
  font: 25px var(--font-display);
  color: var(--bronze);
  margin-bottom: 24px;
}
.feature p {
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 0;
}
.control-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-soft);
  padding: 44px 48px;
  margin-bottom: 78px;
}
.control-section h2 {
  margin: 0;
}
.control-copy {
  font-size: 19px;
}
.control-copy .muted {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}
.policy {
  max-width: 800px;
  padding-block: 64px 80px;
}
.policy h1 {
  margin-bottom: 16px;
}
.policy h2 {
  font-size: clamp(26px, 3vw, 32px);
  margin-top: 40px;
  margin-bottom: 16px;
}
.policy-date {
  color: var(--muted);
  margin-bottom: 32px;
}
.policy li {
  margin-bottom: 12px;
}
.policy a {
  overflow-wrap: anywhere;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-block: 24px 36px;
  font-size: 13px;
  color: var(--muted);
}
.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--panel);
  padding: 10px;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-actions {
    gap: 18px;
  }
  .how-link {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 52px;
  }
  .hero-copy {
    max-width: 600px;
  }
  .journey-card {
    max-width: 600px;
  }
  .steps-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }
  .feature p {
    max-width: 58ch;
  }
  .number {
    margin-bottom: 10px;
  }
  .section {
    padding-block: 42px;
  }
  .control-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
    margin-bottom: 44px;
  }
  .control-section .eyebrow {
    margin-bottom: 16px;
  }
}
@media (max-width: 440px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .navigation {
    gap: 10px;
    min-height: 76px;
  }
  .brand {
    gap: 8px;
  }
  .brand-mark {
    width: 35px;
    height: 42px;
  }
  .brand strong {
    font-size: 24px;
  }
  .brand small {
    font-size: 10px;
  }
  .nav-actions {
    gap: 12px;
    font-size: 13px;
  }
  .nav-actions .button {
    padding: 9px 12px;
    font-size: 13px;
  }
  .journey-card {
    padding: 24px;
  }
  .actions {
    gap: 20px;
  }
  .lede {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
