@font-face { font-family: Outfit; src: url(assets/fonts/Outfit-Regular.ttf); font-weight: 400; font-display: swap; }
@font-face { font-family: Outfit; src: url(assets/fonts/Outfit-Medium.ttf); font-weight: 500; font-display: swap; }
@font-face { font-family: Outfit; src: url(assets/fonts/Outfit-SemiBold.ttf); font-weight: 600; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url(assets/fonts/BarlowCondensed-SemiBold.ttf); font-weight: 600; font-display: swap; }

:root {
  --bg: #000;
  --fg: #f2f2f2;
  --muted: #9a9a9a;
  --line: #1f1f1f;
  --live: #ff453a;
  --card: #0d0d0d;
}
@media (prefers-color-scheme: light) {
  :root { --bg: #f6f4ef; --fg: #141414; --muted: #6b6b6b; --line: #e2dfd7; --card: #fffdf8; }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--fg);
  font-family: Outfit, system-ui, sans-serif; font-size: 17px; line-height: 1.55;
  padding: 0 20px;
}
a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--muted); }
a:hover { text-decoration-color: var(--fg); }
main { max-width: 760px; margin: 0 auto; }
header.top { display: flex; align-items: center; gap: 12px; padding: 28px 0; }
header.top img { width: 44px; height: 44px; border-radius: 10px; }
header.top a { text-decoration: none; font-weight: 600; }
header.top nav { margin-left: auto; display: flex; gap: 18px; font-size: 15px; color: var(--muted); }
h1 { font-size: 42px; line-height: 1.1; font-weight: 600; letter-spacing: -0.01em; margin: 24px 0 12px; }
h2 { font-size: 22px; font-weight: 600; margin: 40px 0 10px; }
p, li { color: var(--fg); margin-bottom: 12px; }
ul { padding-left: 22px; }
.lede { font-size: 21px; color: var(--muted); max-width: 34ch; }
.hero { padding: 24px 0 8px; }
.cta { display: inline-block; margin: 22px 0 8px; background: var(--fg); color: var(--bg); padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 500; }
.cta.soon { background: transparent; color: var(--muted); border: 1px solid var(--line); cursor: default; }
.num { font-family: "Barlow Condensed", Outfit, sans-serif; font-weight: 600; }
.live { color: var(--live); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 36px 0 8px; }
.shots img { width: 100%; height: auto; border-radius: 22px; border: 1px solid var(--line); display: block; }
.shots figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; text-align: center; }
@media (max-width: 640px) { .shots { grid-template-columns: 1fr; } .shots figure { max-width: 320px; margin: 0 auto; } h1 { font-size: 34px; } }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 16px; }
.grid div { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.grid h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.grid p { color: var(--muted); font-size: 15px; margin: 0; }
footer { border-top: 1px solid var(--line); margin-top: 56px; padding: 24px 0 48px; font-size: 14px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 18px; }
.doc h1 { font-size: 34px; }
.doc .meta { color: var(--muted); font-size: 15px; }
