:root {
  --bg: #08080c;
  --surface: #0f0f15;
  --border: #1d1d26;
  --text: #ececf1;
  --muted: #9b9bab;
  --accent: #ff4a3a;
  --link: #ff7a6c;
  --max-width: 760px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

header.site-header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  color: var(--accent);
}

nav.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 22px;
  transition: color 0.15s ease;
}

nav.site-nav a:hover {
  color: var(--text);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 96px;
}

main h1 {
  font-size: 34px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 8px;
}

main h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 48px 0 12px;
  letter-spacing: -0.01em;
}

main h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 8px;
  color: var(--text);
}

main p {
  color: var(--text);
  margin: 12px 0;
}

main .meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}

main ul, main ol {
  padding-left: 20px;
  color: var(--text);
}

main li {
  margin: 6px 0;
}

main a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 108, 0.4);
  text-underline-offset: 2px;
}

main a:hover {
  text-decoration-color: var(--link);
}

main hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

main strong { color: var(--text); font-weight: 600; }
main em { color: var(--text); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14.5px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

tr:last-child td { border-bottom: 0; }

th {
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

footer.site-footer a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 10px;
}

footer.site-footer a:hover { color: var(--text); }

/* Home page hero */
.hero {
  text-align: center;
  padding: 96px 24px 48px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  background: linear-gradient(180deg, #ffffff 0%, #b0b0bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .tagline {
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto 40px;
  max-width: 480px;
  line-height: 1.5;
}

.hero .coming-soon {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-links {
  margin-top: 56px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.15s ease;
}

.hero-links a:hover {
  border-color: var(--accent);
  color: var(--text);
}

@media (max-width: 600px) {
  main { padding: 40px 20px 64px; }
  main h1 { font-size: 28px; }
  main h2 { font-size: 20px; }
  .hero { padding: 64px 20px 32px; }
  .hero h1 { font-size: 42px; }
  nav.site-nav a { margin-left: 14px; }
}
