:root {
  --ink: #111413;
  --paper: #f7f7f4;
  --muted: #606865;
  --line: #d7dad8;
  --acid: #a9bff1;
  --orange: #f06445;
  --blue: #eef1ff;
  --mono: "IBM Plex Mono", monospace;
  --sans: "Instrument Sans", sans-serif;
  --body: "Source Sans 3", sans-serif;
}

body {
  font-family: var(--body);
  letter-spacing: 0;
}

.brand-lockup,
.parent-brand {
  display: flex;
  align-items: center;
}

.brand-lockup {
  min-width: 0;
  gap: 12px;
}

.parent-brand {
  gap: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.parent-brand img {
  display: block;
  width: 28px;
  height: 28px;
}

.brand-separator {
  width: 1px;
  height: 24px;
  background: var(--line);
}

.brand {
  font-family: var(--sans);
  letter-spacing: 0;
}

.nav {
  height: 82px;
}

.nav nav {
  gap: 24px;
  margin-right: 28px;
  margin-left: auto;
}

.nav-cta,
.button {
  border-radius: 3px;
}

.hero h1,
.intro h2,
.feature h3,
.product-principle h2,
.download h2,
.hud-card p {
  letter-spacing: 0;
}

.hero-orbit {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--blue);
}

.hero-orbit::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(41, 70, 200, 0.18);
  content: "";
}

.orbit-ring {
  display: none;
}

.hud-card {
  box-shadow: 18px 22px 48px rgba(41, 70, 200, 0.17);
  transform: rotate(-2deg);
}

.hud-live,
.waveform span {
  color: var(--acid);
  background: var(--acid);
}

.orbit-label {
  z-index: 2;
}

.feature {
  border-radius: 4px;
}

.feature-large {
  background: var(--blue);
}

.feature-dark {
  background: var(--ink);
}

.feature-accent {
  background: #f8ded8;
}

.product-principle {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 150px 0;
}

.product-principle h2 {
  max-width: 850px;
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  line-height: 1;
}

.product-principle h2 em {
  color: var(--orange);
}

.product-principle > div > p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.download-panel {
  background: var(--orange);
}

.footer {
  min-height: 82px;
}

.footer > a {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .parent-brand span {
    display: none;
  }

  .hud-card {
    width: min(310px, calc(100% - 34px));
  }

  .product-principle {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 100px 0;
  }

  .feature-accent {
    min-height: 390px;
    padding-bottom: 104px;
  }

  .feature-accent .app-pills {
    bottom: 28px;
  }

  .footer > a {
    width: 100%;
  }
}
