:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0b0d;
  color: #f6f4ee;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(142, 87, 255, 0.18), transparent 35rem),
    #0b0b0d;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 128px) 0 48px;
}

.hero {
  max-width: 760px;
  margin-bottom: clamp(56px, 9vw, 104px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #a78bfa;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.intro {
  max-width: 560px;
  margin: 32px 0 0;
  color: #aaa8a2;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.projects {
  border-top: 1px solid #2d2d32;
}

.project {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 142px;
  padding: 24px 12px;
  border-bottom: 1px solid #2d2d32;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, padding 180ms ease;
}

.project:hover,
.project:focus-visible {
  padding-right: 24px;
  padding-left: 24px;
  background: #141417;
  outline: none;
}

.number {
  align-self: start;
  padding-top: 9px;
  color: #706e74;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  letter-spacing: -0.045em;
}

.project p {
  margin: 0;
  color: #8d8b91;
}

.arrow {
  font-size: 2rem;
  transition: transform 180ms ease;
}

.project:hover .arrow,
.project:focus-visible .arrow {
  transform: translate(4px, -4px);
}

.project-comics:hover { background: #15130d; }
.project-voice:hover { background: #101519; }
.project-spine:hover { background: #151018; }

@media (max-width: 600px) {
  main {
    width: min(100% - 28px, 1120px);
    padding-top: 72px;
  }

  .project {
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    min-height: 124px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .project:hover,
  .project:focus-visible {
    padding-right: 10px;
    padding-left: 10px;
  }
}
