:root {
  --black: #080808;
  --white: #f6f6f2;
  --accent: #9edfff;
  --gray: #a3a3a0;
  --line: rgba(246, 246, 242, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  color: var(--white);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  color: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.wordmark span { color: var(--accent); font-size: 0.45em; vertical-align: top; margin-left: 3px; }
nav { display: flex; align-items: center; gap: 2.4rem; }
nav a { color: inherit; font-size: .76rem; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; }
.navContact { padding: 11px 16px; color: var(--black); background: var(--accent); }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 126px 3vw 4.2vh;
  color: var(--white);
  background: var(--black);
}
.heroGrid {
  position: absolute;
  inset: 84px 0 0;
  background-image:
    linear-gradient(to right, transparent calc(25% - 1px), var(--line) 25%, transparent calc(25% + 1px)),
    linear-gradient(to right, transparent calc(50% - 1px), var(--line) 50%, transparent calc(50% + 1px)),
    linear-gradient(to right, transparent calc(75% - 1px), var(--line) 75%, transparent calc(75% + 1px));
  pointer-events: none;
}
.heroMeta {
  position: absolute;
  top: 112px;
  left: 3vw;
  right: 3vw;
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.heroTitle { position: relative; z-index: 2; }
.heroTitle p {
  margin: 0 0 1vh .45vw;
  color: var(--accent);
  font-size: clamp(.72rem, .85vw, .95rem);
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 75vw;
  font-size: clamp(5rem, 13.2vw, 12rem);
  line-height: .74;
  letter-spacing: .065em;
  font-weight: 800;
}
h1 em { color: var(--accent); font-style: normal; }
.deviceMark {
  position: absolute;
  z-index: 1;
  right: 7vw;
  top: 50%;
  width: clamp(270px, 30vw, 480px);
  aspect-ratio: 1;
  transform: translateY(-47%);
}
.orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.orbitOne { inset: 0; }
.orbitTwo { inset: 17%; border-style: dashed; animation: rotate 28s linear infinite; }
.globe {
  position: absolute;
  inset: 25%;
  overflow: hidden;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 80px rgba(158,223,255,.16), inset 0 0 46px rgba(158,223,255,.05);
}
.globeLine { position: absolute; border: 1px solid rgba(158,223,255,.68); border-radius: 50%; }
.longitude { top: -1px; bottom: -1px; }
.longitudeWide { left: 24%; right: 24%; }
.longitudeNarrow { left: 40%; right: 40%; }
.latitude { left: -1px; right: -1px; }
.latitudeWide { top: 24%; bottom: 24%; }
.latitudeNarrow { top: 40%; bottom: 40%; }
.globeMeridian, .globeEquator { position: absolute; display: block; background: rgba(158,223,255,.58); }
.globeMeridian { top: 0; bottom: 0; left: 50%; width: 1px; }
.globeEquator { top: 50%; left: 0; right: 0; height: 1px; }
.axis { position: absolute; display: block; background: var(--line); }
.axisX { top: 50%; left: -8%; width: 116%; height: 1px; }
.axisY { left: 50%; top: -8%; width: 1px; height: 116%; }
.scrollCue {
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 4.2vh;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}
.scrollCue span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); }
@keyframes rotate { to { transform: rotate(360deg); } }

.statement {
  display: grid;
  grid-template-columns: 25% 75%;
  min-height: 78vh;
  padding: 10vw 3vw;
  border-bottom: 1px solid #c6c6c1;
}
.sectionLabel {
  margin: 0;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.statement h2 {
  max-width: 900px;
  margin: -1.2vw 0 8vw;
  font-size: clamp(3rem, 7.2vw, 7.2rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}
.statementCopy {
  max-width: 650px;
  margin: 0 4vw 0 auto;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.5;
}

.focus { padding: 8vw 3vw 10vw; background: var(--white); }
.focusHeader { display: grid; grid-template-columns: 25% 75%; padding-bottom: 7vw; }
.focusHeader > p:last-child { margin: 0; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.05em; }
.focusList { border-top: 1px solid var(--black); }
.focusRow {
  display: grid;
  grid-template-columns: 8% 34% 1fr auto;
  align-items: center;
  min-height: 170px;
  gap: 2vw;
  border-bottom: 1px solid #b9b9b4;
}
.focusRow > span:first-child { color: #72726e; font-size: .72rem; }
.focusRow h3 { margin: 0; font-size: clamp(1.6rem, 2.4vw, 2.5rem); font-weight: 500; letter-spacing: -.04em; }
.focusRow p { max-width: 520px; margin: 0; color: #484845; font-size: 1rem; line-height: 1.55; }
.rowArrow { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--black); border-radius: 50%; transition: .2s ease; }
.focusRow:hover .rowArrow { color: var(--black); background: var(--accent); transform: rotate(45deg); }

.contact {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7vw 3vw 4vw;
  color: var(--white);
  background: var(--black);
}
.contact .sectionLabel { color: var(--accent); }
.contact h2 {
  margin: 7vw 0 9vw;
  font-size: clamp(4rem, 10.4vw, 10rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.075em;
}
.contact h2 strong { font-weight: 800; }
.contact > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 2.3rem);
  text-decoration: none;
  transition: color .2s ease;
}
.contact > a:hover { color: var(--accent); }
.contact > a span { color: var(--accent); }

footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 3vw;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}
footer p { margin: 0; color: var(--gray); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
footer p:last-child { text-align: right; }

@media (max-width: 760px) {
  .topbar { height: 70px; padding: 0 20px; }
  nav { gap: 1rem; }
  nav a:not(.navContact) { display: none; }
  .hero { min-height: 800px; padding: 120px 20px 40px; }
  .heroGrid { inset: 70px 0 0; }
  .heroMeta { top: 94px; left: 20px; right: 20px; }
  .heroMeta span:last-child { display: none; }
  .deviceMark { width: 72vw; right: -8vw; top: 39%; }
  .heroTitle { margin-bottom: 92px; }
  h1 { max-width: 100%; font-size: clamp(4.4rem, 22vw, 7.5rem); line-height: .78; }
  .scrollCue { right: 20px; bottom: 28px; }
  .statement { grid-template-columns: 1fr; gap: 70px; min-height: auto; padding: 90px 20px; }
  .statement h2 { margin: 0 0 70px; }
  .statementCopy { margin: 0; }
  .focus { padding: 80px 20px; }
  .focusHeader { grid-template-columns: 1fr; gap: 45px; padding-bottom: 60px; }
  .focusRow { grid-template-columns: 34px 1fr auto; min-height: auto; padding: 30px 0; }
  .focusRow p { grid-column: 2 / 4; }
  .contact { min-height: 700px; padding: 70px 20px 30px; }
  .contact h2 { margin: 80px 0 auto; }
  .contact > a { font-size: 1.06rem; }
  footer { grid-template-columns: 1fr auto; padding: 30px 20px; gap: 25px; }
  footer p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbitTwo { animation: none; }
}
