:root {
  color-scheme: dark;
  --bg: #071014;
  --panel: #0d1b21;
  --text: #f4fbff;
  --muted: #a9bac3;
  --accent: #ff8a1f;
  --accent-dark: #d86d0b;
  --line: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(255,138,31,.18), transparent 28%), var(--bg);
  color: var(--text);
}
a { color: inherit; }
.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}
.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(32px, 7vw, 84px);
  background: linear-gradient(135deg, rgba(13,27,33,.94), rgba(7,16,20,.76));
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .94;
  letter-spacing: -.06em;
}
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.55;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--accent);
  color: #160b02;
  font-weight: 800;
  text-decoration: none;
}
.button:hover { background: var(--accent-dark); }
.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13,27,33,.82);
}
h2 { margin: 0 0 10px; font-size: 21px; }
.cards p { margin: 0; color: var(--muted); line-height: 1.55; }
@media (max-width: 760px) {
  .site-shell { padding: 28px 0; }
  .hero { border-radius: 20px; }
  .cards { grid-template-columns: 1fr; }
}
