:root {
  --bg: #0f120f;
  --ink: #f2f0e8;
  --muted: #a7aa9c;
  --line: rgba(242, 240, 232, 0.14);
  --leaf: #b9e3a3;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-weight: 360;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 480px at 0% -10%, rgba(185, 227, 163, 0.1), transparent 60%),
    var(--bg);
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

p {
  margin: 0;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px max(24px, calc((100vw - 960px) / 2));
  background: rgba(15, 18, 15, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.name {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.top nav {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.top nav a {
  text-decoration: none;
}

.top nav a:hover {
  color: var(--ink);
}

main,
footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 120px 0 88px;
}

.kicker {
  color: var(--leaf);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  max-width: 14ch;
}

.lede {
  margin-top: 24px;
  max-width: 58ch;
  font-size: 1.18rem;
  color: var(--muted);
}

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

.button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: #0f120f;
  font-weight: 480;
  text-decoration: none;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.ghost:hover {
  border-color: var(--leaf);
}

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

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.section > p {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.split article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(242, 240, 232, 0.03);
}

.split h3 {
  font-size: 1.3rem;
}

.split p {
  margin-top: 10px;
  color: var(--muted);
}

.more {
  display: inline-block;
  margin-top: 22px;
  color: var(--leaf);
}

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

.timeline {
  gap: 24px;
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
}

.timeline span {
  color: var(--leaf);
  font-weight: 480;
}

.timeline h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 580;
  letter-spacing: 0;
}

.timeline p {
  margin-top: 4px;
  color: var(--muted);
}

.games .button {
  margin-top: 24px;
}

.contact {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

footer {
  padding-top: 32px;
  padding-bottom: 48px;
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

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

  .hero {
    padding: 80px 0 64px;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
