:root {
  --bg: #0d0d0d;
  --panel: #151515;
  --panel-soft: #1b1b1b;
  --text: #f4f1ea;
  --muted: #b8b2a8;
  --line: rgba(255,255,255,0.12);
  --gold: #d9a441;
  --blue: #6eb7ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(217,164,65,0.18), transparent 30rem),
    radial-gradient(circle at 80% 20%, rgba(110,183,255,0.12), transparent 28rem),
    linear-gradient(180deg, #090909 0%, var(--bg) 55%, #050505 100%);
  color: var(--text);
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 36px;
}

.hero {
  min-height: 64vh;
  display: grid;
  align-content: center;
  padding: 48px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h1 span {
  color: var(--gold);
}

.tagline {
  margin: 28px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #17120a;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(217,164,65,0.24);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
}

.card h2,
.story h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.card p,
.story p,
footer p {
  color: var(--muted);
  line-height: 1.7;
}

.story {
  margin-top: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.035);
}

.story p {
  max-width: 840px;
}

footer {
  padding: 48px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}

@media (max-width: 800px) {
  .page {
    width: min(100% - 28px, 1120px);
    padding-top: 36px;
  }

  .hero {
    min-height: 58vh;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .story {
    padding: 24px;
  }
}
