:root {
  color-scheme: light;
  --ink: #171312;
  --paper: #fffaf2;
  --muted: #665b54;
  --coral: #ff5a3d;
  --teal: #00a89f;
  --yellow: #ffd166;
  --violet: #6f4cff;
  --line: rgba(23, 19, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fffaf2;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 250, 242, 0.8);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.12);
}

.nav {
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 64px) 72px;
  background: #1d1518;
  color: #fffaf2;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(29, 21, 24, 0.92) 0%, rgba(29, 21, 24, 0.72) 46%, rgba(29, 21, 24, 0.3) 100%),
    linear-gradient(180deg, rgba(29, 21, 24, 0.1) 70%, rgba(29, 21, 24, 0.94) 100%);
  pointer-events: none;
}

#arcade-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--yellow);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.7rem, 9vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 250, 242, 0.46);
  color: #fffaf2;
}

.button:hover {
  transform: translateY(-1px);
}

.status-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(44px, 7vw, 86px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.section-kicker {
  color: var(--coral);
}

h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.status-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 168, 159, 0.12);
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    padding-top: 16px;
  }

  .nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 106px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(29, 21, 24, 0.94), rgba(29, 21, 24, 0.56)),
      linear-gradient(180deg, rgba(29, 21, 24, 0.08) 70%, rgba(29, 21, 24, 0.94) 100%);
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .status-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand span:last-child {
    display: none;
  }

  .button {
    width: 100%;
  }
}
