:root {
  --night: #0b1d2f;
  --navy: #10243a;
  --panel: #163550;
  --ink: #13263a;
  --muted: #5e6b77;
  --paper: #f7f5ef;
  --white: #fff;
  --gold: #d2a43e;
  --teal: #0b7f87;
  --line: #d7dee4;
  --soft: #eaf2f6;
  --warn: #9f2f2f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.hero {
  background: linear-gradient(145deg, var(--night), var(--panel));
  color: var(--white);
  padding: 24px 0 76px;
  border-top: 8px solid var(--gold);
}
.top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}
.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  color: var(--gold);
  font-size: 22px;
}
.back { font-size: 14px; color: #dce8ef; text-underline-offset: 4px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 58px;
  align-items: center;
  padding-top: 66px;
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  margin: 14px 0 22px;
  letter-spacing: -.035em;
}
.lead { font-size: clamp(18px, 2.2vw, 23px); max-width: 760px; color: #e6eef3; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-block;
  border-radius: 8px;
  padding: 13px 20px;
  background: var(--gold);
  color: #10243a;
  text-decoration: none;
  font-weight: 800;
}
.button.secondary { background: transparent; color: white; border: 1px solid #7b94a7; }
.status-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 22px 55px #0004;
}
.status-card strong { display: block; color: var(--warn); font-size: 18px; }
.status-card ul { padding-left: 20px; margin: 18px 0 0; }
.status-card li + li { margin-top: 9px; }
main { padding: 70px 0; }
.section { margin-bottom: 72px; }
.section h2 {
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -.025em;
}
.intro { font-size: 18px; color: var(--muted); max-width: 820px; }
.role-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 30px; }
.role {
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 12px;
  padding: 20px;
  min-height: 175px;
}
.role h3 { font-size: 18px; margin: 0 0 8px; }
.count {
  display: inline-block;
  background: var(--soft);
  color: #12546b;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}
.role p { font-size: 14px; color: var(--muted); }
.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 30px; }
.step { counter-increment: steps; border-left: 2px solid var(--gold); padding-left: 18px; }
.step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
}
.step h3 { margin: 7px 0 5px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }
.guardrails { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.box { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.box h3 { margin-top: 0; }
.box ul { padding-left: 20px; }
.box li + li { margin-top: 10px; }
.callout {
  background: var(--navy);
  color: white;
  border-radius: 18px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.callout h2 { margin: 0 0 10px; }
.callout p { margin: 0; color: #dce7ee; max-width: 700px; }
.small { font-size: 13px; color: var(--muted); margin-top: 18px; }
.callout .small { color: #cbd9e2; }
footer { border-top: 1px solid var(--line); padding: 28px 0 42px; color: var(--muted); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-row nav { display: flex; gap: 18px; flex-wrap: wrap; }
:focus-visible { outline: 3px solid #f2c453; outline-offset: 3px; }

@media (max-width: 900px) {
  .hero-grid, .callout { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .hero { padding-bottom: 50px; }
  .top { align-items: flex-start; }
  .hero-grid { padding-top: 44px; gap: 32px; }
  .role-grid, .steps, .guardrails { grid-template-columns: 1fr; }
  .actions { display: grid; }
  .button { text-align: center; }
  .callout { padding: 28px; }
  .footer-row { display: block; }
  .footer-row nav { margin-top: 14px; }
}
