:root {
  color-scheme: dark;
  --bg: #111418;
  --panel: #1a2027;
  --text: #f5f1e8;
  --muted: #b7c0ca;
  --line: #34404c;
  --gold: #e1b866;
  --green: #79b788;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #12161c 0%, #20262d 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  min-height: 54vh;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.actions a {
  color: #111418;
  background: var(--gold);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 6px;
}

.actions a + a {
  background: var(--green);
}

.panel {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

article {
  min-height: 150px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
}

strong {
  color: var(--text);
  overflow-wrap: anywhere;
}
