:root {
  color-scheme: dark;
  --bg: #100f1a;
  --surface: #1a1826;
  --panel: #252134;
  --orange: #f97316;
  --cyan: #22d3ee;
  --violet: #a78bfa;
  --text: #fff7ed;
  --muted: #c7bfb5;
  --border: #51445f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; }
nav, main, footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.links { display: flex; gap: 16px; color: var(--muted); font-size: 14px; }
.hero { min-height: 86vh; border-bottom: 1px solid var(--border); }
.hero-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding: 42px 0 72px;
}
.eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: 0; font-size: 13px; font-weight: 800; }
h1 { margin: 0; font-size: clamp(52px, 9vw, 112px); line-height: 0.92; }
h2 { font-size: clamp(30px, 5vw, 48px); margin: 0 0 22px; }
h3 { margin: 10px 0 8px; }
.lede { max-width: 650px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--orange);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}
.button.secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.hero-art, .split img { width: 100%; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); }
.band { padding: 72px 0; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
article { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 18px; }
article span { color: var(--cyan); font-weight: 900; }
article p, .split p, footer { color: var(--muted); line-height: 1.55; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0; border-top: 1px solid var(--border); }
.legal main { max-width: 760px; padding: 56px 0; }
.legal h1 { font-size: 48px; margin: 28px 0; }
.legal p { color: var(--muted); line-height: 1.7; font-size: 18px; }
@media (max-width: 780px) {
  .hero-grid, .split, .grid { grid-template-columns: 1fr; }
  .links { gap: 10px; font-size: 13px; }
  footer { flex-direction: column; }
}
