:root {
  color-scheme: dark;
  --ink: #07111f;
  --surface: #0d1a2b;
  --surface-2: #122239;
  --text: #f8fafc;
  --muted: #a8b4c7;
  --line: #243750;
  --blue: #2563eb;
  --blue-soft: #60a5fa;
  --gold: #d4a72c;
  --mint: #5ee7c3;
}

* { box-sizing: border-box; }

html { background: var(--ink); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 12%, rgba(37, 99, 235, .18), transparent 32rem),
    linear-gradient(180deg, #091525 0%, var(--ink) 72%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 184px;
  max-width: 42vw;
  height: auto;
}
.back-link {
  color: var(--muted);
  text-underline-offset: 5px;
  text-decoration-color: var(--line);
}

.back-link:hover,
.back-link:focus-visible { color: var(--text); }

.hero { padding: 104px 0 88px; }

.eyebrow,
.kicker,
.label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 750;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-soft);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(94, 231, 195, .10);
}

h1,
h2 {
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin: 22px 0 22px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: .98;
}

.intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.65;
}

.intro strong { color: var(--text); }

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.status-card {
  min-height: 174px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 34, 57, .88), rgba(13, 26, 43, .68));
}

.label { color: var(--blue-soft); }
.status-card strong { margin-top: 28px; font-size: 1.1rem; }
.detail { margin-top: auto; color: var(--muted); font-size: .88rem; }

.policy-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 34px;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 7px;
}

.policy-link:hover,
.policy-link:focus-visible { color: var(--blue-soft); }

.assurance {
  max-width: 840px;
  padding: 64px 0 110px;
}

.rule { width: 64px; height: 3px; background: var(--gold); margin-bottom: 32px; }
.kicker { color: var(--gold); }

h2 {
  margin: 18px 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
}

.assurance > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

footer {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .85rem;
}

footer nav { display: flex; gap: 22px; }
footer a { text-underline-offset: 4px; text-decoration-color: var(--line); }
footer a:hover, footer a:focus-visible { color: var(--text); }

:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 4px; }

@media (max-width: 760px) {
  .hero { padding-top: 72px; }
  .status-grid { grid-template-columns: 1fr; }
  .status-card { min-height: 150px; }
  footer { align-items: flex-start; flex-direction: column; padding: 30px 0; }
  footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
