/* SvelteSoft static fallback (Phoenix /live down) */
:root {
  --bg: oklch(0.16 0.02 255);
  --text: oklch(0.94 0.01 250);
  --muted: oklch(0.94 0.01 250 / 0.72);
  --primary: oklch(0.72 0.12 195);
  --primary-ink: oklch(0.16 0.03 220);
  --secondary: oklch(0.68 0.16 300);
  --border: oklch(0.94 0.01 250 / 0.12);
  --font-display: "Fraunces", Palatino, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 44rem;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0; min-height: 100vh; font-family: var(--font-sans); color: var(--text);
  background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, oklch(0.45 0.12 195 / 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, oklch(0.42 0.14 300 / 0.18), transparent 50%),
    var(--bg);
}
a { color: var(--primary); }
.shell { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.kicker {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin: 0 0 0.5rem;
}
.lead { font-size: 1.1rem; line-height: 1.65; color: var(--muted); max-width: 38rem; }
.nav {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4rem; }
.brand {
  display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; color: inherit;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
}
.brand img { width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; object-fit: contain; }
.brand-plain { color: var(--text); font-family: var(--font-display); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.7rem 1.25rem; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 150ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, oklch(0.72 0.12 195), oklch(0.62 0.14 220));
  color: var(--primary-ink); box-shadow: 0 8px 28px oklch(0.50 0.12 200 / 0.28);
}
.btn-ghost {
  background: color-mix(in oklch, var(--text) 5%, transparent);
  border-color: var(--border); color: var(--text);
}
.hero { padding-block: clamp(3.5rem, 10vw, 6rem) clamp(3rem, 8vw, 5rem); }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem); margin: 0.75rem 0 1.25rem;
  background: linear-gradient(120deg, var(--text), color-mix(in oklch, var(--primary) 80%, var(--text)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.footer { border-top: 1px solid var(--border); padding-block: 2.5rem 3rem; color: var(--muted); font-size: 0.9rem; }
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--primary); }
.link-col { display: grid; gap: 0.35rem; }
.mono { font-family: var(--font-mono); font-size: 0.85rem; }
.legal { margin-top: 2rem; opacity: 0.6; font-size: 0.85rem; }
html.await-live body { visibility: hidden; }
.banner {
  display: none; background: color-mix(in oklch, var(--secondary) 18%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--secondary) 28%, transparent);
  text-align: center; padding: 0.65rem 1rem; font-size: 0.9rem;
}
.page { padding-block: clamp(3rem, 8vw, 5rem); }
.dl-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: 0.95rem; }
.dl-table th, .dl-table td {
  text-align: left; padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.dl-table th {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; opacity: 0.7;
}
.badge {
  display: inline-flex; border-radius: 9999px; padding: 0.2rem 0.65rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em;
  text-transform: uppercase; border: 1px solid var(--border);
}
