:root {
  --bg: #0a0a0a;
  --panel: #0d0d0d;
  --text: #f4f1e8;
  --muted: #9d9d98;
  --acid: #c9ff3d;
  --line: rgba(244, 241, 232, 0.14);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button, a {
  font: inherit;
}

button {
  color: inherit;
}

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

.site {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255,255,255,.08) .6px, transparent .6px);
  background-size: 5px 5px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.wordmark span {
  color: var(--acid);
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b6b6b1;
  cursor: pointer;
  transition: color .2s ease;
}

.desktop-nav button:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease, color .2s ease;
}

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

.button-primary {
  background: var(--acid);
  color: #050505;
}

.button-primary:hover {
  opacity: .88;
}

.button-outline {
  border-color: rgba(255,255,255,.22);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

main {
  position: relative;
  z-index: 10;
}

.hero {
  position: relative;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 56px) clamp(70px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
}

.hero-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 310px;
  height: 310px;
  right: -65px;
  top: 55px;
}

.orbit-two {
  width: 180px;
  height: 180px;
  right: 70px;
  top: 135px;
  border-color: rgba(201,255,61,.38);
}

.eyebrow,
.section-number {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .75rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: .84;
}

.hero h1 {
  max-width: 1150px;
  margin-top: 34px;
  font-size: clamp(4.6rem, 11vw, 10.5rem);
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(244,241,232,.3);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: end;
  gap: 36px;
  margin-top: 52px;
}

.hero-bottom p {
  max-width: 650px;
  margin: 0;
  color: #b6b6b1;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

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

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
  color: #242424;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span {
  padding-right: 38px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border-bottom: 1px solid var(--line);
}

.split-heading,
.split-content {
  padding: clamp(50px, 6vw, 90px) clamp(20px, 4vw, 56px);
}

.split-heading {
  border-right: 1px solid var(--line);
}

.section-number {
  margin: 0 0 24px;
  color: var(--acid);
}

.split-heading h2,
.section-heading-row h2,
.contact-section h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.lead-copy {
  max-width: 800px;
  margin: 0;
  color: #c7c7c0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.stats div {
  padding: 24px;
  background: var(--panel);
}

.stats strong {
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.2rem;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: #8f8f89;
  font-size: .8rem;
}

.content-section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.section-heading-row > span {
  color: #777771;
  font-size: .9rem;
}

.capability-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 70px 1fr 1.15fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list article:last-child {
  border-bottom: 0;
}

.capability-list article > span {
  color: var(--acid);
}

.capability-list h3,
.project-copy h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.capability-list p,
.project-copy p {
  margin: 0;
  color: #999993;
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  border: 1px solid var(--line);
}

.project-offset {
  transform: translateY(48px);
}

.project-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,255,61,.18), transparent 38%),
    linear-gradient(145deg, #181818, #0d0d0d);
}

.project-art::before {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  right: -12%;
  top: -18%;
  border: 1px solid rgba(244,241,232,.22);
  border-radius: 50%;
}

.project-art::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: -24%;
  width: 42%;
  height: 72%;
  border: 1px solid rgba(201,255,61,.44);
  transform: rotate(24deg);
}

.project-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #bdbdb6;
  font-size: .75rem;
}

.project-number {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255,255,255,.1);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 5rem;
}

.project-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 24px;
}

.project-copy p {
  margin-top: 9px;
  font-size: .9rem;
}

.project-arrow {
  color: var(--acid);
  font-size: 1.7rem;
}

.contact-section {
  padding: clamp(95px, 12vw, 170px) clamp(20px, 4vw, 56px);
  text-align: center;
}

.contact-section h2 {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section > p:not(.section-number) {
  max-width: 650px;
  margin: 30px auto 36px;
  color: #a5a59f;
  font-size: 1.15rem;
  line-height: 1.6;
}

footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: #7d7d77;
  font-size: .88rem;
}

footer a {
  color: #d7d7d0;
}

footer a:hover {
  color: var(--acid);
}

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

  .orbit-one,
  .orbit-two {
    display: none;
  }

  .hero-bottom,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .split-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading-row > span {
    display: none;
  }

  .capability-list article {
    grid-template-columns: 45px 1fr;
  }

  .capability-list article p {
    grid-column: 2;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .wordmark {
    font-size: 1rem;
  }

  .button-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: .82rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 21vw, 6.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .project-offset {
    transform: none;
  }

  .capability-list article {
    grid-template-columns: 38px 1fr;
  }
}
