:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: #05070f;
  color: #eceaf2;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: #05070f; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% -8%, rgba(80, 112, 178, 0.18), transparent 35rem),
    radial-gradient(circle at 100% 25%, rgba(87, 181, 160, 0.07), transparent 28rem),
    #05070f;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(circle, rgba(232, 230, 240, 0.42) 0 0.55px, transparent 0.9px),
    radial-gradient(circle, rgba(125, 180, 255, 0.28) 0 0.45px, transparent 0.8px);
  background-position: 9px 19px, 43px 7px;
  background-size: 79px 83px, 113px 127px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

a { color: #91c6ff; text-underline-offset: 0.18em; }
a:hover { color: #b9dcff; }

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  color: #f5f3f8;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.36em;
  text-decoration: none;
}

.brand span { color: #f5c76b; }

nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
nav a { color: #aaa9b6; font-size: 12px; text-decoration: none; }

main {
  padding: clamp(44px, 8vw, 88px) 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f5c76b;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: #c5c3ce;
  font-size: clamp(18px, 2.8vw, 22px);
  line-height: 1.5;
}

.updated { margin: 18px 0 0; color: #858492; font-size: 12px; }

.hero-card,
section {
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(16, 20, 34, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-card { padding: clamp(22px, 4vw, 34px); }
section { padding: clamp(20px, 3.5vw, 30px); }

h2 { margin: 0 0 13px; font-size: 20px; letter-spacing: -0.015em; }
h3 { margin: 24px 0 8px; font-size: 15px; color: #dedce6; }
p, li { color: #b9b8c4; font-size: 15px; line-height: 1.65; }
p { margin: 10px 0 0; }
ul, ol { margin: 10px 0 0; padding-left: 22px; }
li + li { margin-top: 7px; }
strong { color: #eeecf3; }

.callout {
  margin-top: 18px;
  padding: 15px 17px;
  border-left: 2px solid #7dffb2;
  border-radius: 4px 14px 14px 4px;
  background: rgba(125, 255, 178, 0.055);
}

.callout p { margin: 0; color: #d5d3dd; }

.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid rgba(145, 198, 255, 0.44);
  border-radius: 999px;
  background: rgba(125, 180, 255, 0.1);
  color: #cce6ff;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.button.secondary { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #dddbe5; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.fact { padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(255,255,255,.025); }
.fact b { display: block; color: #f5c76b; font-size: 22px; }
.fact span { display: block; margin-top: 4px; color: #9d9ca9; font-size: 12px; line-height: 1.45; }

table { width: 100%; margin-top: 16px; border-collapse: collapse; }
th, td { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; vertical-align: top; color: #b9b8c4; font-size: 13px; line-height: 1.5; }
th { color: #eceaf2; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

address { margin-top: 12px; color: #b9b8c4; font-size: 14px; font-style: normal; line-height: 1.7; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #777684;
  font-size: 11px;
}

@media (max-width: 600px) {
  .site-header { align-items: flex-start; }
  nav { max-width: 210px; gap: 10px 13px; }
  main { padding-top: 34px; }
  h1 { font-size: 42px; }
  th:nth-child(3), td:nth-child(3) { display: none; }
  .site-footer { flex-direction: column; }
}

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