:root {
  --bg: #121318;
  --surface: #1b1c23;
  --surface-2: #22232c;
  --text: #f3f1ec;
  --muted: #9b9890;
  --line: rgba(243, 241, 236, 0.1);
  --gold: #e2b657;
  --gold-dim: rgba(226, 182, 87, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  font-family: "Inter Tight", "Segoe UI", sans-serif;
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1080px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0 1.2rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: inherit;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.15rem;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.links a:hover,
.links a:focus-visible,
.links a[aria-current="page"] {
  color: var(--text);
  outline: none;
}

main {
  padding: 2.4rem 0 3rem;
}

.kicker {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 198px;
  padding: 1.2rem 1.2rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

a.card {
  box-shadow: 0 0 0 1px transparent;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

a.card:hover,
a.card:focus-visible {
  border-color: rgba(226, 182, 87, 0.45);
  background: var(--surface-2);
  transform: translateY(-2px);
  outline: none;
}

.card.soon {
  color: var(--muted);
  background: transparent;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.status {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live .status {
  color: var(--gold);
}

.card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.card-cta {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.live .card-cta {
  color: var(--gold);
}

.prose {
  max-width: 40rem;
}

.prose h1,
.article-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.prose .meta {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.prose h2 {
  margin: 1.7rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.prose p,
.prose li {
  color: #d7d4cc;
  font-size: 0.98rem;
  line-height: 1.6;
}

.prose ul {
  padding-left: 1.15rem;
}

.address {
  margin: 0;
  width: fit-content;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.footer p {
  margin: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-top: auto;
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .links {
    justify-content: flex-start;
  }
}
