@font-face {
  font-family: "Geist";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("geist.woff2") format("woff2-variations");
}

:root {
  --bg: #0e0f12;
  --surface: #15161a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2efe8;
  --muted: #a2a3aa;
  --faint: #6e7078;
  --gold: #e8b94a;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-underline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

header.site {
  padding: 28px 0 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

main {
  padding: 48px 0 64px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
h2 {
  margin: 40px 0 8px;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
p,
li {
  color: var(--muted);
}
p {
  max-width: 65ch;
}
strong {
  color: var(--text);
  font-weight: 600;
}
ul {
  padding-left: 20px;
}
li {
  margin: 4px 0;
}

.lede {
  font-size: 18px;
}
.notice {
  margin: 28px 0;
  padding: 14px 16px;
  border: 1px solid rgba(232, 185, 74, 0.4);
  border-radius: 12px;
  background: rgba(232, 185, 74, 0.07);
  color: var(--text);
  font-weight: 500;
}
.meta {
  color: var(--faint);
  font-size: 14px;
}

/* The landing page table: felt in a dark rail with a brass inlay. */
.table {
  display: grid;
  place-items: center;
  height: 220px;
  margin: 36px 8px;
  border-radius: 26px;
  background: radial-gradient(120% 100% at 50% 30%, #1d7a52 0%, #145c3d 55%, #0e4029 100%);
  box-shadow:
    0 0 0 1px rgba(232, 185, 74, 0.3),
    0 0 0 7px #101114,
    0 0 0 8px rgba(255, 255, 255, 0.07),
    inset 0 0 70px rgba(6, 20, 13, 0.55);
}
.cards {
  display: flex;
}
.card {
  display: grid;
  width: 76px;
  height: 106px;
  padding: 7px 8px;
  border-radius: 8px;
  background: #f7f4ee;
  box-shadow: 0 10px 20px -10px rgba(4, 12, 8, 0.9);
  color: #16171b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.card.red {
  color: #c8352c;
}
.card:first-child {
  rotate: -8deg;
  translate: 0 6px;
}
.card + .card {
  margin-left: -20px;
  rotate: 7deg;
  translate: 0 6px;
}

footer.site {
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--faint);
  font-size: 14px;
}
footer.site p {
  color: var(--faint);
}
footer.site nav {
  display: flex;
  gap: 18px;
}
