@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-logo {
    width: clamp(180px, 28vw, 240px);
  }

  .hero-art-ring {
    width: min(380px, 100%);
  }

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

@media (max-width: 768px) {
  :root {
    --section-py: 80px;
    --container-w: min(1400px, calc(100% - 32px));
  }

  .navbar-links,
  .navbar-actions {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    position: relative;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }

  .hero-art {
    order: 0;
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .hero-art-ring,
  .hero-art-glow,
  .hero-dot {
    display: none;
  }

  .hero-logo {
    width: clamp(180px, 50vw, 220px);
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    margin-bottom: 24px;
    order: 0;
  }

  .hero-title {
    margin-top: 220px;
    order: 1;
  }

  .hero-subtitle {
    order: 2;
  }

  .hero-desc {
    order: 3;
  }

  .hero-buttons {
    justify-content: center;
    order: 4;
  }

  .hero-features {
    justify-content: center;
    order: 5;
  }

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

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

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

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

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

  .stat-card {
    padding: 24px;
  }

  .feature-card,
  .pricing-card {
    padding: 24px;
  }

  .command-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
