:root {
  color-scheme: dark;
  --bg: #090c10;
  --surface: #11161c;
  --surface-strong: #171d24;
  --line: #27313c;
  --text: #f3f7f5;
  --muted: #a6b0b8;
  --ready: #71e3a0;
  --amber: #f5bd57;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% -10%, rgba(113, 227, 160, 0.11), transparent 34rem),
    linear-gradient(180deg, #0c1015 0, var(--bg) 36rem);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:hover { color: var(--ready); }

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(39, 49, 60, 0.72);
  background: rgba(9, 12, 16, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.045em;
}

.brand img { width: 2.25rem; height: 2.25rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a { text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.7fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  padding: clamp(5.5rem, 11vw, 9rem) 0 clamp(4.5rem, 9vw, 7.5rem);
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--ready);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.4rem, 9vw, 7.7rem);
  font-weight: 760;
}

.intro {
  margin: 1.8rem 0 0;
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.status-panel {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.4rem;
  background: linear-gradient(145deg, rgba(23, 29, 36, 0.92), rgba(13, 17, 22, 0.9));
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.32);
}

.status-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 720;
}

.status-label::before {
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-radius: 99px;
  background: var(--amber);
  box-shadow: 0 0 0 0.3rem rgba(245, 189, 87, 0.12);
}

.status-panel p { margin: 0.9rem 0 0; color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 7rem;
}

.card {
  min-height: 17rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(17, 22, 28, 0.78);
}

.card-index {
  color: var(--ready);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.card h2 { margin: 3.75rem 0 1rem; font-size: 1.6rem; }
.card p { margin: 0; color: var(--muted); }

.publisher {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(2rem, 8vw, 7rem);
  padding: 5.5rem 0;
  border-top: 1px solid var(--line);
}

.publisher h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); }
.publisher p { margin: 0 0 1rem; color: var(--muted); }
.publisher strong { color: var(--text); }

.contact-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.contact-list a { width: fit-content; color: var(--text); text-underline-offset: 0.25rem; }

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

.footer-links { display: flex; gap: 1rem; }
.footer-links a { text-underline-offset: 0.2rem; }

.document {
  max-width: 54rem;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.document h1 { max-width: none; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.document h2 { margin-top: 3rem; font-size: 1.55rem; }
.document p, .document li { color: var(--muted); }
.document strong { color: var(--text); }
.document .updated { margin: 1rem 0 3rem; color: var(--ready); font-size: 0.92rem; }

@media (max-width: 780px) {
  .hero, .publisher { grid-template-columns: 1fr; }
  .hero { align-items: start; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card h2 { margin-top: 2.5rem; }
  .nav-links a:not(:last-child) { display: none; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 1.5rem 0; }
}

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