:root {
  --bg: oklch(0.16 0.01 255);
  --bg-elevated: oklch(0.2 0.012 255);
  --text: oklch(0.93 0.01 250);
  --text-muted: oklch(0.74 0.012 252);
  --line: oklch(0.33 0.012 252);
  --accent: oklch(0.76 0.1 210);
  --accent-strong: oklch(0.68 0.12 210);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #10151b;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

body {
  background: var(--bg);
  line-height: 1.5;
}

.wrap {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in oklab, var(--line), transparent 35%);
  backdrop-filter: blur(6px);
  background: color-mix(in oklab, var(--bg), transparent 26%);
}

.topbar .wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.link:hover {
  color: var(--text);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.8) contrast(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--bg), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(6rem, 12vh, 10rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
  max-width: 70ch;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  max-width: 20ch;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

p {
  margin: 0;
  max-width: 70ch;
  color: var(--text-muted);
}

.lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.cta {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.66rem 1.1rem;
  border-radius: 8px;
  background: var(--accent);
  color: oklch(0.2 0.03 250);
  font-weight: 600;
  text-decoration: none;
}

.cta:hover {
  background: var(--accent-strong);
}

.section {
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vh, 6rem) 0;
}

.section.alt {
  background: var(--bg-elevated);
}

.list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.list li + li {
  margin-top: 0.4rem;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid article p {
  color: var(--text-muted);
}

@media (max-width: 920px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-content {
    padding-top: 6.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
