:root {
  color-scheme: dark;
  --bg: #09131f;
  --surface: #0e1c2b;
  --surface-soft: #0b1825;
  --line: rgba(174, 205, 232, 0.14);
  --text: #f2f6fa;
  --muted: #99aabc;
  --cyan: #77d5ef;
  --green: #6de0bc;
  --amber: #efb461;
  --max: 1060px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  background:
    radial-gradient(circle at 85% 3%, rgba(36, 102, 139, 0.18), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

body > header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--line);
}

body > header {
  height: 82px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 750;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
}

nav a,
footer {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--text);
}

.hero {
  padding: 120px 0 108px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 9vw, 7rem);
  font-weight: 630;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.lede {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.section {
  padding: 86px 0;
}

.section-heading,
.report-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.updated,
time {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.status-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(14, 28, 43, 0.65);
}

.status-grid strong,
.status-grid span {
  display: block;
}

.status-grid article span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.status-dot.online {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(109, 224, 188, 0.08);
}

.status-dot.planned {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(239, 180, 97, 0.08);
}

.report {
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 34, 51, 0.94), rgba(9, 24, 37, 0.9));
}

.report-header {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.report section {
  padding: 34px 0 8px;
}

.report h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.report p,
.report li,
.next li {
  color: var(--muted);
}

.report ul,
.next ol {
  margin: 0;
  padding-left: 22px;
}

.report li + li,
.next li + li {
  margin-top: 8px;
}

code {
  color: #a9e1f2;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.85em;
}

.namespace {
  display: grid;
  gap: 8px;
}

.namespace div {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  padding: 12px 14px;
  border-radius: 9px;
  background: rgba(4, 15, 24, 0.48);
}

.namespace span {
  color: var(--muted);
  font-size: 0.86rem;
}

.next {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}

.next .eyebrow {
  padding-top: 9px;
}

.next ol {
  grid-column: 2;
  margin-top: 10px;
}

footer {
  padding: 28px 0 40px;
}

footer a {
  color: var(--cyan);
}

@media (max-width: 700px) {
  nav {
    gap: 14px;
  }

  .hero {
    padding: 84px 0 76px;
  }

  .section-heading,
  .report-header,
  .next {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .report {
    padding: 30px 24px;
    border-radius: 17px;
  }

  .namespace div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .next ol {
    grid-column: 1;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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