:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #52616b;
  --paper: #f7f8f2;
  --line: #d8ded4;
  --teal: #2ec4b6;
  --amber: #ffbf69;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); line-height: 1.55; }
a { color: inherit; }
.site-header, .site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1120px; margin: 0 auto; padding: 22px 24px; }
.brand { font-weight: 800; text-decoration: none; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-weight: 650; }
.hero { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 480px); gap: 48px; align-items: center; max-width: 1120px; margin: 0 auto; padding: 36px 24px 60px; }
.hero h1 { font-size: clamp(44px, 7vw, 84px); line-height: 1; margin: 0 0 22px; letter-spacing: 0; }
.hero p { font-size: 20px; color: var(--muted); max-width: 680px; }
.hero img { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: white; }
.eyebrow { color: var(--teal) !important; font-weight: 800; text-transform: uppercase; font-size: 13px !important; letter-spacing: 0 !important; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button, button { border: 1px solid var(--ink); background: transparent; color: var(--ink); border-radius: 6px; padding: 12px 16px; font-weight: 750; text-decoration: none; cursor: pointer; }
.button.primary, button { background: var(--ink); color: white; }
.band { max-width: 1120px; margin: 0 auto; padding: 36px 24px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
article { border-top: 3px solid var(--teal); background: white; padding: 18px; border-radius: 8px; min-height: 136px; }
article h3 { margin-top: 0; }
article h4 { margin: 0 0 8px; font-size: 18px; }
small { color: var(--muted); font-weight: 700; }
.metric-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 20px 0 28px; }
.metric { min-height: 104px; border-top-color: var(--amber); }
.metric strong { display: block; font-size: 28px; line-height: 1.1; margin-bottom: 8px; }
.metric span { color: var(--muted); font-weight: 750; }
.connector-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.journey { list-style: none; padding: 0; margin: 16px 0 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.journey li { display: grid; gap: 4px; min-height: 86px; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.journey span { color: var(--muted); font-weight: 700; font-size: 14px; }
.status-list { display: grid; gap: 10px; }
.status-list p { display: flex; justify-content: space-between; gap: 12px; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; margin: 0; }
.contact form { display: grid; gap: 14px; max-width: 560px; }
label { display: grid; gap: 6px; font-weight: 700; }
.check { grid-template-columns: 20px 1fr; align-items: start; font-weight: 650; }
.check input { width: auto; margin-top: 6px; }
input, select { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 12px; font: inherit; background: white; }
dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 16px; }
dt { font-weight: 800; }
dd { margin: 0; color: var(--muted); }
.site-footer { color: var(--muted); border-top: 1px solid var(--line); margin-top: 40px; font-size: 14px; }
@media (max-width: 760px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { font-size: 48px; }
  .status-list p { flex-direction: column; }
}