/* ─── RESPONSIVE SYSTEM ─── */

/* ─── Large Desktop ─── */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}

/* ─── Tablet Landscape ─── */
@media (max-width: 1024px) {
  :root {
    --pad-desktop: var(--pad-tablet);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-orb {
    width: 300px;
    height: 300px;
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .showcase-item:first-child {
    grid-column: span 2;
  }
}

/* ─── Tablet Portrait ─── */
@media (max-width: 768px) {
  :root {
    --pad-desktop: var(--pad-mobile);
  }

  .nav-links {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .worlds-full-grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-item:first-child {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .showcase-item-overlay {
    opacity: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-points {
    gap: 0.75rem;
  }

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

  .page-hero {
    padding: 120px 0 60px;
  }

  .legal-meta {
    flex-direction: column;
    gap: 1rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}

/* ─── Mobile ─── */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-orb {
    width: 240px;
    height: 240px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    padding: 0.9rem 1.8rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .world-card {
    padding: 1.8rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .worlds-categories {
    gap: 0.5rem;
  }
}

/* ─── Print ─── */
@media print {
  .nav, .footer, .hero-bg, .particles-container, .aurora-section-bg {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}