:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f7f8fb;
  color: #172033;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  min-height: 40px;
  border: 1px solid #285aa5;
  border-radius: 6px;
  background: #285aa5;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd4e1;
  border-radius: 6px;
  padding: 10px;
  background: #ffffff;
  color: #172033;
}

a {
  color: #285aa5;
  font-weight: 700;
}

.page {
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 18px 48px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.nav strong {
  font-size: 0.95rem;
}

.nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 28px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid #dce3ee;
}

.hero img {
  width: 100%;
  height: auto;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: #5e6b80;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 12px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

p,
li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
}

.lede {
  max-width: 760px;
  margin: 18px 0 0;
  color: #263449;
  font-size: 1.18rem;
}

.meta,
.note {
  color: #5e6b80;
  font-size: 0.9rem;
}

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

.fact {
  min-height: 128px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  color: #172033;
  font-size: 1.15rem;
}

.cta {
  margin-top: 32px;
  padding: 18px;
  border-left: 4px solid #285aa5;
  background: #ffffff;
}

.cta p {
  margin: 0;
}

.intake-panel {
  margin-top: 34px;
  padding-top: 8px;
}

.intake-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.intake-form label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-weight: 800;
}

.checkline {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  font-weight: 700;
}

.checkline input {
  width: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 28px;
  margin-top: 12px;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.footer {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #dce3ee;
}

@media (max-width: 780px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }
}
