:root {
  color-scheme: light;
  --paper: #f5f1e8;
  --ink: #101010;
  --muted: #5e625c;
  --lime: #b8ff37;
  --blue: #1a73ff;
  --red: #ff4b3e;
  --black: #070707;
  --line: rgba(16, 16, 16, 0.16);
  --white: #fffdf6;
  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;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 241, 232, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.wordmark,
.nav-bar nav,
.actions,
.button {
  display: flex;
  align-items: center;
}

.wordmark {
  gap: 12px;
  font-weight: 950;
  text-decoration: none;
}

.mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--lime);
  background: var(--black);
  border-radius: 50%;
  font-size: 0.72rem;
}

.nav-bar nav {
  gap: 6px;
}

.nav-bar nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(16, 16, 16, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 84px 84px;
}

.hero::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(760px, 70vw);
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--paper) 0%, rgba(245, 241, 232, 0.96) 72%, transparent 100%);
}

.runway {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.track {
  position: absolute;
  left: 0;
  width: 120%;
  height: 92px;
  border-block: 2px solid var(--black);
  transform: rotate(-8deg) translateX(-8%);
}

.track::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 52px,
    rgba(16, 16, 16, 0.16) 52px,
    rgba(16, 16, 16, 0.16) 64px
  );
}

.track-one {
  top: 20%;
  background: var(--lime);
}

.track-two {
  top: 48%;
  background: #fffdf6;
}

.track-three {
  top: 76%;
  background: var(--blue);
}

.launch-line {
  position: absolute;
  top: 0;
  right: 19%;
  width: 12px;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--black);
}

.deploy-card {
  position: absolute;
  z-index: 1;
  width: clamp(170px, 18vw, 250px);
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(16, 16, 16, 0.18);
  animation: drift 7s ease-in-out infinite alternate;
}

.deploy-card span,
.eyebrow,
.proof-strip span,
.menu-card span,
.process span {
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deploy-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 0.95;
}

.card-a {
  top: 13%;
  left: 9%;
}

.card-b {
  top: 34%;
  right: 9%;
  background: var(--lime);
  color: var(--ink);
}

.card-c {
  bottom: 22%;
  left: 13%;
  background: var(--blue);
}

.card-d {
  right: 13%;
  bottom: 8%;
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 94px) 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(4.2rem, 10.5vw, 10rem);
  line-height: 0.78;
  letter-spacing: 0;
}

.claim {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4.2vw, 4.4rem);
  font-weight: 950;
  line-height: 0.92;
}

.lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: #33352f;
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.45;
}

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

.button {
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--black);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--black);
}

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

.secondary {
  background: var(--white);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--black);
  background: var(--black);
  gap: 2px;
}

.proof-strip div {
  min-height: 158px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.proof-strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.86;
}

.proof-strip span {
  color: var(--muted);
}

.menu,
.codex-section {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.menu-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.menu-card {
  min-height: 320px;
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(16, 16, 16, 0.16);
}

.menu-card:nth-child(2) {
  background: var(--lime);
}

.menu-card:nth-child(3) {
  background: #dff0ff;
}

.menu-card:nth-child(4) {
  background: #ffe1df;
}

.menu-card span {
  display: inline-block;
  margin-bottom: 80px;
  color: var(--muted);
}

.menu-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  line-height: 1;
}

.menu-card p,
.process p {
  color: #3c4039;
  line-height: 1.55;
}

.codex-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(30px, 6vw, 92px);
  padding-top: 0;
}

.process {
  display: grid;
  gap: 12px;
}

.process-card {
  padding: 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
}

.process-card span {
  color: var(--lime);
}

.process-card p {
  margin: 10px 0 0;
  color: #d6ddd2;
}

.footer {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: var(--lime);
  border-top: 2px solid var(--black);
}

.footer h2 {
  max-width: 960px;
  margin-bottom: 28px;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(14px, -12px, 0) rotate(1deg);
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 300px;
  }

  .deploy-card {
    width: 168px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .codex-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero::after {
    width: 100%;
    background: linear-gradient(180deg, rgba(245, 241, 232, 0.92) 0%, rgba(245, 241, 232, 0.98) 58%, transparent 100%);
  }

  .nav-bar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-bar nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav-bar nav a {
    padding-inline: 0;
  }

  .hero-content {
    padding-top: 360px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.45rem, 17vw, 4.8rem);
    line-height: 0.82;
  }

  .claim {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .track {
    height: 76px;
  }

  .card-a {
    top: 28px;
    left: 18px;
  }

  .card-b {
    top: 112px;
    right: 18px;
  }

  .card-c {
    top: 198px;
    bottom: auto;
    left: 18px;
  }

  .card-d {
    top: 282px;
    right: 18px;
    bottom: auto;
  }

  .proof-strip,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 0;
  }

  .menu-card {
    min-height: 230px;
  }

  .menu-card span {
    margin-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
