:root {
  color-scheme: dark;
  --bg: #0b0d12;
  --surface: #151923;
  --surface-hover: #1c2230;
  --text: #f4f7fb;
  --muted: #aab3c4;
  --accent: #f6821f;
  --accent-soft: rgba(246, 130, 31, 0.14);
  --line: rgba(255, 255, 255, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(246, 130, 31, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0;
}

.brand {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--text);
}

main,
footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  max-width: 820px;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.release-line .eyebrow {
  margin-bottom: 0;
}

.release-badge {
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(246, 130, 31, 0.45);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffc18b;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  max-width: 680px;
  margin-bottom: 2.25rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

code {
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--surface);
  color: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  min-height: 46px;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #17100a;
}

.secondary {
  background: transparent;
  color: var(--text);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.status {
  min-height: 1.6rem;
  margin-top: 1rem;
  color: var(--muted);
}

.section {
  padding: 7rem 0;
  border-top: 1px solid var(--line);
}

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

.card {
  min-height: 240px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  transition: 180ms ease;
}

.card:hover {
  background: var(--surface-hover);
  transform: translateY(-4px);
}

.card.current {
  border-color: rgba(246, 130, 31, 0.5);
  background: var(--accent-soft);
}

.step {
  display: block;
  margin-bottom: 3rem;
  color: var(--accent);
  font-family: ui-monospace, monospace;
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
}

.card p,
.pipeline li span,
footer {
  color: var(--muted);
}

.pipeline ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline li {
  display: grid;
  grid-template-columns: minmax(90px, 0.35fr) 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 65vh;
  }

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

  .section {
    padding: 4.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
