/* ═══════════════════════════════════════════════════════════
   Remode — responsive.css
   5 clean breakpoints (desktop-first)
   ═══════════════════════════════════════════════════════════ */


/* ─── DESKTOP LARGE (>1200px) ──────────────────────────── */
@media (min-width: 1201px) {
  .hero-content {
    padding-left: 60px;
    padding-right: 60px;
  }

  /* Subtle asymmetry on quotes for editorial feel */
  .editorial-quote-section .container {
    transform: translateX(-24px);
  }

  .quote-author {
    font-size: 13px;
    opacity: 0.70;
  }
}


/* ─── MEDIUM DESKTOP (969px – 1200px) ──────────────────── */
@media (max-width: 1200px) {
  .hero-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-headline {
    font-size: 60px;
  }

  .hero-subheadline {
    font-size: 18px;
  }
}


/* ─── TABLET (769px – 968px) ───────────────────────────── */
@media (max-width: 968px) {
  /* Hero: centered layout for tablets */
  .hero-content {
    padding: 40px;
    align-items: center;
    justify-content: center;
  }

  .hero-main {
    max-width: 800px;
    margin: 0 auto;
    flex-direction: column;
  }

  .hero-text-section {
    text-align: center;
    padding: 40px 0;
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(48px, 6vw, 80px);
    text-align: center;
    margin-bottom: 24px;
  }

  .hero-subheadline {
    font-size: clamp(18px, 2vw, 20px);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }

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

  .hero-behavior-line,
  .hero-microproof,
  .hero-waitlist-count {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Hero overlays: full-width for mobile/tablet */
  .hero::before {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.65) 100%
    );
  }

  .hero::after {
    background: radial-gradient(ellipse at center,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.3) 80%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }

  /* Brand logos */
  .hero-brands-row {
    gap: 32px;
  }

  .brand-logo {
    height: 20px;
  }

  /* Grids: stack to single column */
  .proof-grid,
  .confidence-grid,
  .quotes-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .confidence-grid {
    max-width: 440px;
  }

  .quotes-grid {
    gap: 20px;
  }

  .editorial-quote-section {
    padding: 72px 0;
  }

  .quote-card {
    padding: 32px 24px;
  }

  /* Waitlist modal */
  .waitlist-dialog {
    margin: 10vh auto;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}


/* ─── MOBILE (≤768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .hero-content {
    padding: 40px 24px;
  }

  .hero-headline {
    font-size: clamp(44px, 10vw, 56px);
    margin-bottom: 20px;
  }

  .hero-subheadline {
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.4;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-focus-cue {
    bottom: 7%;
    width: min(560px, 92vw);
    height: min(260px, 44vw);
  }

  /* Brand ticker */
  .brand-ticker-section {
    padding-top: 48px;
  }

  .hero-brands-row {
    gap: 24px;
  }

  .brand-logo {
    height: 18px;
  }

  .trust-anchor {
    font-size: 12px;
    padding: 0 20px;
    margin-top: 16px;
  }

  /* Show mobile CTA reminder */
  .mobile-cta-reminder {
    display: block;
  }

  /* Emotional bridge */
  .emotional-bridge {
    padding: 36px 20px 24px;
  }

  /* Footer: tighten on mobile */
  .premium-footer {
    padding: 60px 0 32px;
  }

  .footer-grid {
    margin-bottom: 48px;
  }

  /* Proof stack */
  .proof-stack {
    padding: 60px 0 48px;
  }

  .proof-section-title {
    font-size: 32px;
  }

  .proof-section-sub {
    font-size: 15px;
    padding: 0 20px;
    line-height: 1.7;
  }

  .proof-section-sub br {
    display: none;
  }

  .proof-grid {
    gap: 16px;
  }

  .proof-item {
    padding: 24px 20px 20px;
  }

  .proof-questions {
    max-width: 260px;
  }

  .proof-question {
    font-size: 15px;
    padding: 9px 0;
  }

  /* How it works */
  .how-works {
    padding: 72px 16px 64px;
  }

  .how-works .how-title {
    font-size: 36px;
  }

  .how-works .how-sub {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .how-flow {
    flex-direction: column;
    gap: 18px;
    padding: 0;
  }

  .how-step {
    max-width: 100%;
    padding: 26px 16px 24px;
  }

  .how-works .step-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .how-works .step-title {
    font-size: 24px;
    min-height: 0;
  }

  .how-works .step-desc {
    font-size: 15px;
    margin-top: 14px;
  }

  .how-step .step-label {
    margin-top: 16px;
  }

  .mockup-badge {
    margin-bottom: 12px;
  }

  /* Confidence section */
  .confidence-section {
    padding: 60px 0 52px;
  }

  .confidence-section-title {
    font-size: 28px;
    padding: 0 20px;
  }

  .confidence-section-sub {
    font-size: 15px;
    padding: 0 20px;
    margin-bottom: 36px;
  }

  .confidence-section-sub br {
    display: none;
  }

  .confidence-grid {
    gap: 16px;
    padding: 0 20px;
  }

  .confidence-card {
    padding: 24px 20px 20px;
  }

  .confidence-note {
    font-size: 13px;
    padding: 0 20px;
    margin-top: 32px;
  }

  /* Quotes */
  .quote-text-sm {
    font-size: 18px;
  }

  .quotes-grid {
    padding: 0 20px;
  }

  /* Buttons */
  .beta-primary-btn,
  .beta-secondary-btn {
    font-size: 16px;
    padding: 14px 28px;
  }
}


/* ─── SMALL PHONES (≤480px) ────────────────────────────── */
@media (max-width: 480px) {
  .hero-content {
    padding: 40px 20px;
  }

  .hero-headline {
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1.02;
    margin-bottom: 12px;
  }

  .hero-subheadline {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 28px;
  }

  /* Full dark overlay for readability on small screens */
  .hero::before {
    background: rgba(0, 0, 0, 0.75);
  }

  .brand-logo {
    height: 16px;
  }

  .hero-brands-row {
    gap: 20px;
  }

  /* Waitlist modal */
  .waitlist-dialog {
    margin: 6vh auto;
  }

  .waitlist-content {
    padding: 26px 22px 20px;
  }
}


/* ─── SMALL PHONES (≤375px, any height) ─────────────── */
@media (max-width: 375px) {
  .hero-beta-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .beta-secondary-btn {
    text-align: center;
  }

  .proof-item {
    padding: 20px 16px;
  }

  .quote-text-sm {
    font-size: 16px;
  }
}


/* ─── iPHONE SE / TINY PHONES (≤375px, ≤667px) ────────── */
@media (max-width: 375px) and (max-height: 667px) {
  .hero-content {
    padding-top: 40px;
  }

  .hero-headline {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .hero-subheadline {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .beta-primary-btn,
  .beta-secondary-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .brand-logo {
    height: 14px;
  }

  .hero-brands-row {
    gap: 16px;
  }
}


/* ─── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-indicator {
    animation: none;
    opacity: 0.6;
  }

  .waitlist-dot {
    animation: none;
  }

  .hero-focus-cue {
    display: none;
  }
}
