:root {
  --ink: #102039;
  --ink-soft: #425d79;
  --sand: #f6f1e7;
  --paper: #fffdf9;
  --line: #d9cfbf;
  --brand: #0f4c81;
  --brand-deep: #0a3454;
  --accent: #d97706;
  --accent-soft: #f4c98a;
  --mint: #2f855a;
  --warm: #fff7ec;
  --shadow: 0 18px 44px rgba(16, 32, 57, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 201, 138, 0.28), transparent 24%),
    linear-gradient(180deg, #f4ede2 0%, #fffdf9 24%, #fffdf9 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
h1, h2, h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}
p { margin: 0 0 16px; }
ul { margin: 0; padding-left: 18px; }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(217, 207, 191, 0.9);
  backdrop-filter: blur(12px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}
.brand img { width: 160px; height: auto; }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button-primary {
  background: linear-gradient(135deg, var(--brand), #1a679f);
  color: #fff;
  box-shadow: var(--shadow);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border-color: var(--line);
}
.hero {
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 28px;
  align-items: start;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}
.lead {
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.09);
  border: 1px solid rgba(15, 76, 129, 0.12);
  color: var(--brand-deep);
  font-weight: 700;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}
.hero-note,
.card,
.form-card,
.roster-card,
.faq-card,
.simple-card {
  background: var(--paper);
  border: 1px solid rgba(217, 207, 191, 0.88);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.hero-note {
  padding: 20px;
}
.hero-note ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  color: var(--ink-soft);
}
.form-card {
  padding: 24px;
}
.form-card h2 {
  font-size: 1.45rem;
}
.field-group { margin-bottom: 14px; }
.field-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--brand-deep);
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c8baa4;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: 3px solid rgba(217, 119, 6, 0.22);
  border-color: var(--accent);
}
.field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 12px;
  font-size: 0.95rem;
}
.consent-row input { margin-top: 4px; }
.microcopy {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.section {
  padding: 40px 0;
}
.section-head {
  margin-bottom: 20px;
}
.subtle {
  color: var(--ink-soft);
}
.launch-band {
  background: linear-gradient(135deg, rgba(9, 52, 84, 0.96), rgba(15, 76, 129, 0.94));
  color: #f8fafc;
}
.launch-band h2,
.launch-band p,
.launch-band li,
.launch-band a {
  color: inherit;
}
.split-grid,
.steps-grid,
.roster-grid,
.faq-grid,
.footer-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}
.split-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card,
.simple-card,
.roster-card,
.faq-card {
  padding: 20px;
}
.roster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.status-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.status-approved {
  background: rgba(47, 133, 90, 0.12);
  color: #216643;
}
.status-open {
  background: rgba(217, 119, 6, 0.12);
  color: #9a4f05;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  border: 1px solid rgba(15, 76, 129, 0.1);
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 700;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.city-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,239,229,0.94));
  border: 1px solid rgba(217, 207, 191, 0.88);
  font-weight: 700;
}
.site-footer {
  margin-top: 36px;
  padding: 38px 0;
  background: #132235;
  color: #edf2f7;
}
.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
  color: inherit;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}
.footer-grid ul {
  margin: 0;
  padding-left: 18px;
}
.footer-grid li + li {
  margin-top: 8px;
}
@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .steps-grid,
  .roster-grid,
  .faq-grid,
  .footer-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav { width: 100%; }
  .hero-note ul,
  .city-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 20px, 1120px); }
  .two-up { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero { padding-top: 40px; }
}
