/* Permanent dark. System type. No imports, fonts, scripts, or tracking. */
:root {
  color-scheme: only dark;
  --background: #080808;
  --text: #e9e9e7;
  --muted: #989896;
  --gutter: clamp(1.25rem, 4.2vw, 5rem);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 16rem; }
p, h1 { margin: 0; }
::selection { background: #dededb; color: #080808; }

.page {
  width: min(100%, 48rem);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-top: clamp(7rem, 22vh, 14rem);
  padding-bottom: 8rem;
}

h1 { display: flex; align-items: baseline; gap: .25rem; font-weight: 400; }
.wordmark {
  display: block;
  width: fit-content;
  font-size: clamp(3.75rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.07em;
  color: #bcbcb9;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .wordmark {
    background: linear-gradient(170deg, #d7d7d4 10%, #a1a19e 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.club {
  display: block;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .025em;
  color: var(--muted);
}

.welcome {
  margin-top: 3.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #bcbcb9;
}
.thanks { color: var(--muted); }

.footer {
  padding-block: 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.65;
}
.year { font-family: "Courier New", monospace; padding-block: .5rem; }
@media (max-width: 40rem) {
  .page { padding-inline: clamp(1.5rem, 8vw, 3rem); }
  main { padding-top: 19vh; }
}

@media (forced-colors: active) {
  .wordmark { background: none; color: CanvasText; }
}
