@media (min-width: 961px) {
  .hero__title {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__tech-canvas {
    opacity: 0.35;
  }
}

@media (max-width: 960px) {
  .nav__list {
    display: none;
    position: absolute;
    top: 64px;
    right: 24px;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(10, 15, 28, 0.95);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav__indicator {
    display: none;
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  :root {
    --anchor-offset: 84px;
  }

  main {
    padding-top: 120px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline__item {
    grid-template-columns: 32px 1fr;
  }

  .timeline__dot {
    margin-left: 8px;
  }
}
