/* ══════════════════════════════════════════════
   MOBILE  (< 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --section-padding: 4rem 1.25rem;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-med);
    border-left: 1px solid rgba(236, 226, 208, 0.06);
  }

  .nav-links.is-open {
    right: 0;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .nav-cta {
    margin-top: 1rem;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 1.25rem 3rem;
    gap: 2.5rem;
  }

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

  .hero-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-contract {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-image-placeholder {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-img {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Lore */
  .section-header {
    margin-bottom: 3rem;
  }

  .lore-cards {
    gap: 3rem;
  }

  .lore-card,
  .lore-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
  }

  .lore-card-image {
    order: -1;
  }

  .lore-card-content {
    padding-left: 1.25rem;
  }

  /* Featured */
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.75rem 1rem;
  }

  .token-info {
    gap: 1.5rem;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step {
    padding: 1.5rem;
  }

  .step-number {
    font-size: 2.25rem;
  }

  /* Contract */
  .contract-address {
    font-size: 0.65rem;
  }

  /* Social */
  .social-links {
    gap: 0.75rem;
  }

  .social-btn {
    padding: 0.625rem 1rem;
    font-size: 0.7rem;
  }
}

/* ══════════════════════════════════════════════
   TABLET  (768px - 1023px)
   ══════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --section-padding: 6rem 1.5rem;
  }

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

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

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image-placeholder,
  .hero-img {
    max-width: 400px;
    margin: 0 auto;
  }

  .lore-card,
  .lore-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .lore-card-image {
    order: -1;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════════
   LARGE SCREENS  (1440px+)
   ══════════════════════════════════════════════ */
@media (min-width: 1440px) {
  :root {
    --content-max: 1300px;
  }
}
