/* ═══════════════════════════════════════════════════════════
   Remode — components.css
   All component styles, ordered by HTML section
   ═══════════════════════════════════════════════════════════ */


/* ─── 1. HERO SECTION ──────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

/* Video background container */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

/* Poster (LCP image) */
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.02) contrast(1.02);
}

/* Video (upgrades poster after first paint) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 600ms ease;
  z-index: 1;
}

.hero-video.is-ready {
  opacity: 1;
}

/* Subtle shoe focus cue */
.hero-focus-cue {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(640px, 66vw);
  height: min(300px, 30vw);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at center,
    rgba(167, 110, 255, 0.22) 0%,
    rgba(167, 110, 255, 0.10) 35%,
    rgba(167, 110, 255, 0.00) 72%
  );
  filter: blur(2px);
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-focus-cue.is-on { opacity: 1; }
.hero-focus-cue.is-pulsing {
  animation: heroCuePulse 1.8s ease-in-out infinite;
}

@keyframes heroCuePulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50%      { transform: translateX(-50%) scale(1.02); opacity: 1; }
}

/* Video loading spinner */
.video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.video-loading.active {
  opacity: 1;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-loading.loaded {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--purple-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Dark gradient overlay for text readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 15%,
    rgba(0, 0, 0, 0.7)  25%,
    rgba(0, 0, 0, 0.5)  35%,
    rgba(0, 0, 0, 0.2)  45%,
    rgba(0, 0, 0, 0.0)  55%
  );
  z-index: 2;
  pointer-events: none;
}

/* Vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.1) 80%,
    rgba(0, 0, 0, 0.2) 95%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Gradient overlay element */
.gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10, 8, 20, 0.65) 0%,
      rgba(10, 8, 20, 0.4) 20%,
      rgba(10, 8, 20, 0.0) 55%),
    linear-gradient(to bottom,
      rgba(10, 8, 20, 0.05) 0%,
      rgba(10, 8, 20, 0.1) 50%,
      rgba(10, 8, 20, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero content positioning */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
}

.hero-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 60px;
}

.hero-text-section {
  text-align: left;
  max-width: 660px;
  padding-left: 64px;
}

/* Hero typography */
.hero-headline,
.hero-subheadline {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.6s ease-out forwards;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
  max-width: 650px;
  animation-delay: 0.1s;
}

/* Hero CTA buttons */
.hero-beta-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.beta-primary-btn,
.beta-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.beta-primary-btn {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.25);
  border: none;
}

.beta-primary-btn:hover {
  box-shadow: 0 6px 20px rgba(180, 75, 255, 0.35);
  color: white;
}

.beta-secondary-btn {
  background: rgba(10, 10, 12, 0.18);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.beta-secondary-btn:hover {
  transform: translateY(-1px);
  background: rgba(10, 10, 12, 0.24);
  border-color: rgba(255, 255, 255, 0.36);
}

/* Hero micro-elements */
.hero-behavior-line {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

.hero-microproof {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-waitlist-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.waitlist-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  animation: scrollPulse 2.5s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

.hero-scroll-indicator::before {
  content: '';
  width: 24px;
  height: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(-45deg);
  margin-bottom: -8px;
}

.hero-scroll-indicator::after {
  content: '';
  width: 24px;
  height: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
}


/* ─── 2. BRAND TICKER SECTION ──────────────────────────── */

.brand-ticker-section {
  padding-top: 68px;
}

.brand-intro {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px;
}

.hero-brands-inline {
  margin-top: 0;
  text-align: left;
}

.hero-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  min-height: 32px;
}

@keyframes brandFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 0.75; transform: translateY(0); }
}

.brand-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.68;
  transition: opacity 0.3s ease;
  animation: brandFadeIn 0.8s ease-out forwards;
}

.brand-logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Per-brand optical adjustments */
.brand-logo[alt="Zara"]    { height: 20px; }
.brand-logo[alt="Nike"]    { height: 26px; }
.brand-logo[alt="H&M"]     { height: 26px; }
.brand-logo[alt="Dior"]    { height: 22px; }
.brand-logo[alt="Zalando"] { height: 24px; }

/* Farfetch: slightly smaller + quieter to avoid dominance */
img[alt="Farfetch"],
img[src*="farfetch"] {
  opacity: 0.58;
  transform: scale(0.92);
  transform-origin: center;
}

/* White PNG logos don't need the invert filter */
.brand-logo[src*="farfetch-white"],
.brand-logo[src*="uniqlo-logo"] {
  filter: none;
}

.trust-anchor {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.50);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}


/* ─── 3. PROOF STACK SECTION ───────────────────────────── */

.proof-stack {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8f8fa 0%, #ffffff 100%);
  position: relative;
}

.proof-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

.proof-stack .container {
  text-align: center;
}

.proof-section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: #0b0b0f;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.proof-section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 16px;
}

.proof-section-sub:last-of-type { margin-bottom: 48px; }
.proof-section-sub strong { color: #0b0b0f; font-weight: 600; }
.proof-pain { margin-top: 20px; }

.proof-sigh {
  margin-top: 24px;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.50);
  font-size: 16px;
}

.proof-bridge {
  margin-top: 0;
  color: rgba(0, 0, 0, 0.75);
}

/* Proof questions list */
.proof-questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 20px auto 24px;
  max-width: 280px;
}

.proof-question {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.72);
  text-align: center;
  margin: 0;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.proof-question:last-child { border-bottom: none; }

/* Proof grid (3 cards) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
  text-align: left;
}

.proof-item {
  border-radius: 20px;
  padding: 28px 24px 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.proof-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.proof-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.proof-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0b0b0f;
  margin-bottom: 8px;
  line-height: 1.3;
}

.proof-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}

.proof-micro {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 10px;
  font-style: italic;
}

.proof-note {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.proof-note-prominent {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.06), rgba(235, 72, 153, 0.04));
  border: 1px solid rgba(147, 51, 234, 0.10);
  border-radius: 999px;
  padding: 10px 24px;
  display: inline-block;
  margin-top: 36px;
}


/* ─── 4. EMOTIONAL BRIDGE ──────────────────────────────── */

.emotional-bridge {
  padding: 48px 20px 32px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.emotional-bridge p {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: rgba(0, 0, 0, 0.72);
  margin: 0;
  letter-spacing: -0.01em;
}


/* ─── 5. HOW IT WORKS SECTION ──────────────────────────── */

.how-works {
  background: linear-gradient(180deg,
    rgba(255, 250, 244, 0.72) 0%,
    rgba(251, 243, 252, 0.52) 55%,
    rgba(250, 246, 255, 0.6) 100%
  );
  padding: clamp(88px, 10vw, 116px) 0 92px;
  text-align: center;
}

/* Subtle grain texture */
.how-works::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
}

.how-works .how-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.1vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.how-works .how-sub {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.45;
  color: var(--text-gray);
  font-weight: 400;
}

/* 3-column card layout */
.how-flow {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  padding: 0 20px;
}

.how-step {
  flex: 1;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 22px;
  border: 1px solid rgba(180, 75, 255, 0.12);
  background: linear-gradient(135deg,
    rgba(255, 248, 252, 0.72) 0%,
    rgba(250, 242, 255, 0.72) 100%
  );
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
  padding: 44px 24px 34px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease-out;
}

/* Mockup badge (Snap / Find / Compare) */
.mockup-badge {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Mockup image wrapper */
.how-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 20px;
}

.how-mockup-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transform: none;
  filter: drop-shadow(0 8px 20px rgba(31, 41, 55, 0.12));
  box-shadow: none;
  background: none;
  aspect-ratio: auto;
  overflow: visible;
}

/* Step labels */
.how-step .step-label {
  margin-top: auto;
  padding-top: 8px;
}

.how-works .step-number {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3e8ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.how-works .step-title {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 12px;
  color: var(--text-dark);
  min-height: 2.36em;
}

.how-works .step-desc {
  font-weight: 500;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}


/* ─── 6. MOBILE CTA REMINDER ──────────────────────────── */

.mobile-cta-reminder {
  display: none;
  text-align: center;
  padding: 24px 20px;
}

.mobile-cta-reminder p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
  letter-spacing: 0.01em;
}


/* ─── 7. CONFIDENCE SECTION ────────────────────────────── */

.confidence-section {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
}

.confidence-section::before {
  content: '';
  display: block;
  height: 1px;
  max-width: 1240px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.confidence-section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: #0b0b0f;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.confidence-section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.confidence-card {
  border-radius: 20px;
  padding: 28px 24px 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.confidence-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.confidence-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Exact Match — Green */
.confidence-badge.exact {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.15);
}
.confidence-card.confidence-exact { border-color: rgba(22, 163, 74, 0.12); }
.confidence-card.confidence-exact:hover { box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12); }

/* Best Visual Match — Amber */
.confidence-badge.visual {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border: 1px solid rgba(217, 119, 6, 0.15);
}
.confidence-card.confidence-visual { border-color: rgba(217, 119, 6, 0.12); }
.confidence-card.confidence-visual:hover { box-shadow: 0 8px 24px rgba(217, 119, 6, 0.12); }

/* Similar Style — Blue */
.confidence-badge.similar {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.confidence-card.confidence-similar { border-color: rgba(59, 130, 246, 0.12); }
.confidence-card.confidence-similar:hover { box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12); }

.confidence-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.62);
}

.confidence-micro {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 10px;
  font-style: italic;
}

.confidence-note {
  font-size: 14px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 40px auto 0;
  max-width: 480px;
}


/* ─── 8. EDITORIAL QUOTES SECTION ──────────────────────── */

.editorial-quote-section {
  background: #FAFAFA;
  text-align: center;
  padding: 100px 0;
}

.quotes-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  margin-bottom: 28px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.quote-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.quote-card-featured {
  border-color: rgba(147, 51, 234, 0.12);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.03), rgba(235, 72, 153, 0.02));
}

.quote-text-sm {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  line-height: 1.5;
  color: #111;
  margin-bottom: 24px;
}

.quotes-grid .quote-author {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-primary);
  font-weight: 600;
}


/* ─── 9. FAQ + BOTTOM CTA ─────────────────────────────── */

.faq {
  padding: 90px 0 80px;
  background: #fff;
}

.faq-header {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.faq-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.faq-sub {
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: rgba(0, 0, 0, 0.55);
  opacity: 0.35;
}

.faq-item[open] summary::after { content: '\2013'; }

.faq-item p {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta {
  margin-top: 30px;
}

.bottom-cta-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.10), rgba(235, 72, 153, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.bottom-cta-title {
  font-weight: 800;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.88);
}

.bottom-cta-sub {
  margin: 8px 0 14px;
  color: rgba(0, 0, 0, 0.62);
}

.bottom-cta-platform {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 16px;
  font-weight: 500;
}


/* ─── 10. PREMIUM FOOTER ──────────────────────────────── */

.premium-footer {
  background: #050505;
  color: #FFFFFF;
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: start;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 24px;
  color: #FFF;
  font-weight: 500;
}

.footer-tagline {
  color: #888;
  font-size: 16px;
  max-width: 360px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 32px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 16px; }

.footer-links a {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--purple-primary);
  opacity: 1;
}

.footer-bottom-row {
  border-top: 1px solid #1A1A1A;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #444;
  font-size: 12px;
}


/* ─── 11. WAITLIST MODAL ──────────────────────────────── */

.waitlist-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.waitlist-modal.is-open,
.waitlist-modal:target {
  display: block;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.waitlist-dialog {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  margin: 7vh auto;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.965);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.28),
    0 10px 28px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.waitlist-dialog::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(157, 95, 222, 0.08), transparent 46%),
    radial-gradient(circle at 86% 16%, rgba(235, 72, 153, 0.05), transparent 52%);
  pointer-events: none;
}

.waitlist-content {
  position: relative;
  padding: 28px 28px 22px;
}

.waitlist-close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.78);
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.waitlist-close::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 0;
}

.waitlist-close-icon {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.waitlist-close:focus-visible {
  outline: 2px solid rgba(147, 51, 234, 0.55);
  outline-offset: 2px;
}

@media (hover: hover) {
  .waitlist-close:hover::after { background: rgba(255, 255, 255, 0.90); }
}

.waitlist-kicker {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
}

.waitlist-title {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: #0b0b0f;
  margin: 0 0 10px;
}

.waitlist-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.68);
  margin: 0 0 18px;
  max-width: 34ch;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-field {
  display: grid;
  gap: 7px;
}

.waitlist-field > span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.62);
}

.waitlist-field input,
.waitlist-field select {
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
}

.waitlist-field input:focus,
.waitlist-field select:focus {
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 0 0 6px rgba(147, 51, 234, 0.10);
}

.waitlist-submit {
  width: 100%;
  justify-content: center;
}

.waitlist-submit.beta-primary-btn {
  height: 56px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 40px rgba(147, 51, 234, 0.26);
}

.waitlist-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: rgba(255, 255, 255, 1);
  border-radius: 999px;
  margin-left: 10px;
  animation: waitlistSpin 0.8s linear infinite;
}

.waitlist-modal.is-loading .waitlist-submit-spinner {
  display: inline-block;
}

@keyframes waitlistSpin {
  to { transform: rotate(360deg); }
}

.waitlist-fineprint {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.52);
  margin-top: 4px;
}

.waitlist-error {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.18);
  color: rgba(0, 0, 0, 0.75);
  font-size: 13px;
}

.waitlist-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}


/* ─── 12. UTILITY CLASSES ─────────────────────────────── */

/* Scroll-triggered fade-in (applied by JS) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Typography global */
h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}
