:root {
  color-scheme: dark;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-synthesis: none;
  --navy: #03142e;
  --panel: #081e3d;
  --line: #24466b;
  --cyan: #00d4ef;
  --text: #f2f8ff;
  --muted: #afc3db;
  color: var(--text);
  background: var(--navy);
}
* { box-sizing: border-box; }
body { margin: 0; background: radial-gradient(ellipse at 88% 17%, #07477555, transparent 48%), var(--navy); }
a { color: inherit; text-underline-offset: 4px; }
header, main, footer { max-width: 1160px; margin: auto; padding: 28px 32px; }
header {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  max-width: none; padding: 12px max(32px, calc((100vw - 1096px) / 2));
  background: #fff; color: #063369; border-bottom: 3px solid var(--cyan);
}
.brand { text-decoration: none; font-size: 27px; font-weight: 750; letter-spacing: -1px; }
.brand span { color: var(--cyan); }
.brand-logo { display: block; position: relative; width: 156px; aspect-ratio: 2.02; overflow: hidden; flex-shrink: 0; background: #fff; }
/* Frame the supplied square artwork's whitespace without changing the asset. */
.brand-logo img { position: absolute; width: 116%; max-width: none; height: auto; left: -8%; top: -68%; }
nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 600; }
nav a { text-decoration: none; }
nav a:hover { color: #007ac4; }
.nav-cta { border: 1px solid #164d87; border-radius: 7px; padding: 10px 18px; }
main { min-height: 73vh; padding-top: 78px; padding-bottom: 85px; }
.eyebrow, .number { font: 600 11px/1.4 "Segoe UI", sans-serif; letter-spacing: 2px; color: #52ddf5; }
h1 { font-size: clamp(38px, 5.8vw, 72px); line-height: 1.07; letter-spacing: -2.5px; max-width: 850px; margin: 24px 0; }
h1 span { color: #52d5f3; }
h2 { font-size: 23px; line-height: 1.25; letter-spacing: -.5px; }
.lead { font-size: 19px; line-height: 1.7; max-width: 690px; color: #c1d2e7; }
p { line-height: 1.7; color: var(--muted); }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin: 32px 0; }
.button, .secondary { display: inline-block; border-radius: 8px; padding: 14px 20px; font-family: inherit; font-size: 14px; font-weight: 600; line-height: 1.3; cursor: pointer; text-decoration: none; }
.button { background: linear-gradient(110deg, #1fbbff, var(--cyan)); border: 1px solid #5ce7ff; color: #021b38; box-shadow: 0 6px 24px #007acd25; }
.button span { margin-left: 22px; }
.button:hover { background: #79edff; }
.secondary { background: #08234466; border: 1px solid #4975a6; color: var(--text); }
.secondary:hover { background: #12365c; }
button:disabled { opacity: .6; cursor: wait; }
.notice { border-left: 2px solid var(--cyan); padding: 12px 18px; background: #0b294b; max-width: 850px; color: #c0d4eb; font-size: 13px; margin: 40px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 66px; }
.cards article, .panel { border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(145deg, #0b284c, var(--panel)); padding: 27px; }
.cards article { border-top: 2px solid #147cc1; }
.cards p { font-size: 14px; margin-bottom: 0; }
.roadmap { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 40px; max-width: 850px; }
.narrow { max-width: 760px; }
.narrow h1 { font-size: clamp(36px, 5vw, 55px); }
.panel { margin: 25px 0; }
label { display: block; color: #d5e5f7; margin-bottom: 20px; font-size: 14px; }
input { display: block; background: #02152d; border: 1px solid #456b97; border-radius: 7px; padding: 12px; color: #fff; width: 100%; font: inherit; margin-top: 9px; }
input:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
header a:focus-visible { outline-color: #006daf; }
.muted { font-size: 13px; color: #a4bbd5; }
.form-status { min-height: 1.6em; }
.form-status[data-error=true] { color: #ffc1b6; }
footer { border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 25px; font-size: 12px; }
footer .brand { font-size: 20px; }
footer p { max-width: 320px; }
.skip { position: absolute; top: -90px; z-index: 1; }
.skip:focus { top: 10px; left: 10px; background: var(--navy); padding: 10px; }
[hidden] { display: none !important; }
@media (max-width: 720px) {
  header, main, footer { padding-left: 20px; padding-right: 20px; }
  header { gap: 18px; }
  nav { gap: 14px; font-size: 12px; }
  .brand-logo { width: 122px; }
  .nav-cta { padding: 9px 12px; }
  .cards { grid-template-columns: 1fr; margin-top: 38px; }
  main { padding-top: 44px; }
  h1 { letter-spacing: -1.5px; }
  footer { align-items: flex-start; flex-direction: column; }
  .lead { font-size: 17px; }
}
@media (max-width: 380px) {
  header { gap: 10px; padding-left: 14px; padding-right: 14px; }
  .brand-logo { width: 108px; }
  nav { gap: 10px; }
}
