:root {
  --ink: #1b1c2f;
  --muted: #656879;
  --line: #e8d7cf;
  --paper: #fffaf6;
  --surface: #ffffff;
  --navy: #292b63;
  --clay: #e85d3f;
  --sand: #f5e5dc;
  --mint: #dbece6;
  --gold: #f0b55d;
  --radius: 4px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.topbar-inner, .nav, .wrap { max-width: 1180px; margin: 0 auto; }
.topbar-inner {
  min-height: 34px;
  padding: 7px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,250,246,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 70px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-grid;
  grid-template-columns: 44px minmax(0, max-content);
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}
.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: grid;
  gap: 1px;
}
.brand-text strong { font-size: 16px; line-height: 1.1; }
.brand-text span { font-size: 12px; color: var(--muted); font-weight: 700; }
.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a { padding: 8px 5px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.hero {
  background:
    linear-gradient(90deg, rgba(27,28,47,.98) 0%, rgba(41,43,99,.88) 46%, rgba(41,43,99,.26) 100%),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-inner {
  min-height: 650px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px 70px;
  display: grid;
  align-items: center;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 14px;
}
h1, h2, h3 { letter-spacing: 0; margin: 0; }
h1 {
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.05;
  max-width: 850px;
  margin-bottom: 18px;
}
.lead {
  color: rgba(255,255,255,.86);
  font-size: 20px;
  max-width: 700px;
  margin: 0 0 30px;
}
.button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.button {
  border: 1px solid transparent;
  min-height: 44px;
  padding: 12px 17px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
}
.button.primary { background: var(--clay); color: #fff; }
.button.secondary { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.09); }
.button.dark { background: var(--navy); color: #fff; }
.button.outline { background: transparent; border-color: var(--line); color: var(--navy); }
.section { padding: 78px 22px; }
.section.alt { background: var(--sand); }
.section.mint { background: var(--mint); }
.section-title { max-width: 760px; margin-bottom: 30px; }
.section-title p, .muted { color: var(--muted); }
h2 { font-size: clamp(30px, 5vw, 48px); line-height: 1.14; margin-bottom: 16px; }
h3 { font-size: 22px; line-height: 1.2; margin-bottom: 10px; }
p { margin: 0 0 16px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
}
.card.strong { border-top: 5px solid var(--clay); }
.kicker {
  color: var(--clay);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: start;
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.step {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px 18px 18px 62px;
  position: relative;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.notice {
  border-left: 5px solid var(--gold);
  background: #fff8e8;
  padding: 16px 18px;
}
form { display: grid; gap: 14px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: grid; gap: 7px; font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.status { min-height: 26px; color: var(--navy); font-weight: 800; }
.band {
  background: var(--navy);
  color: #fff;
  padding: 42px 22px;
}
.band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 34px 22px;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.field-grid.single { grid-template-columns: 1fr; }
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
form[data-pending="true"] { opacity: .78; }
form[data-pending="true"] button { cursor: wait; }
.status[data-tone="error"] { color: #a93422; }
.status[data-tone="neutral"] { color: var(--navy); }
.login-card { border-top: 5px solid var(--navy); }
.small { font-size: 13px; }
.narrow { max-width: 860px; }
.confirmation-section { min-height: 520px; display: grid; align-items: center; }
.dark-copy { color: var(--muted); }
button:disabled, input:disabled, select:disabled, textarea:disabled { opacity: .72; }
@media (max-width: 880px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero-inner { min-height: 560px; padding-top: 64px; }
  .grid, .grid.two, .split, .field-grid { grid-template-columns: 1fr; }
}

