/* Responsive — MusNote design system */

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 14ch;
  }

  .hero-visual {
    order: -1;
  }

  .tools-strip {
    grid-template-columns: 1fr;
  }

  .helper-band {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .nav-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s var(--mn-ease);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .pathway-item {
    grid-template-columns: 3rem 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual::after,
  .brand-mark,
  .hero-title,
  .hero-description,
  .hero-actions,
  .hero-visual {
    animation: none !important;
  }
}
