:root {
  --bg: #0d1720;
  --panel: #142331;
  --panel-2: #192c3d;
  --text: #edf4f8;
  --muted: #adbdc9;
  --accent: #e3b34b;
  --accent-soft: #f6d98d;
  --border: rgba(255,255,255,.11);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(227,179,75,.10), transparent 30rem),
    linear-gradient(180deg, #0d1720 0%, #091118 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.page {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 36px;
}

.hero {
  max-width: 820px;
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(227,179,75,.45);
  border-radius: 14px;
  background: rgba(227,179,75,.08);
  color: var(--accent-soft);
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.tagline {
  margin: 22px 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--accent-soft);
}

.intro {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.75;
  color: var(--muted);
}

.archive-note {
  margin-top: 42px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}

.archive-note h2,
.links h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: .01em;
}

.archive-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.coming-soon {
  margin: 28px 0 0;
  font-weight: 750;
}

.links {
  margin-top: 76px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.link-grid a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.link-grid a:hover,
.link-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(227,179,75,.42);
  background: rgba(227,179,75,.05);
  outline: none;
}

.link-grid span {
  color: var(--muted);
  line-height: 1.45;
  font-size: .92rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-top: 76px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

footer p {
  margin: 0;
}

.small {
  max-width: 570px;
  font-size: .8rem;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 760px) {
  .page {
    padding-top: 42px;
  }

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

  footer {
    display: block;
  }

  .small {
    margin-top: 10px;
    text-align: left;
  }
}
