/* ═══════════════════════════════════════════════════════════════
   BUILGENT — Waitlist Black Friday (extends Midnight Aurora)
   Solo overrides específicos para el flujo waitlist.
   ═══════════════════════════════════════════════════════════════ */

/* Eyebrow Black Friday (cálido sobre fondo aurora) */
.eyebrow-bf {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.10);
  color: #fff;
}
.eyebrow-bf .dot {
  background: var(--coral-warm);
  box-shadow: 0 0 14px var(--coral-warm);
}

/* Hero title accent: el número grande gradiente cyan→coral→magenta */
.hero-title-accent {
  background: linear-gradient(135deg, var(--coral-warm) 0%, var(--magenta) 50%, var(--cyan-elec) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}

/* ─── COUNTDOWN ──────────────────────────────────────── */
.bf-countdown {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 28px 0 8px;
  padding: 18px 22px;
  background: rgba(13, 27, 42, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(6, 182, 212, 0.32);
  border-radius: var(--radius-lg);
  box-shadow:
    0 12px 40px -14px rgba(6, 182, 212, 0.4),
    0 6px 20px -8px rgba(236, 72, 153, 0.25);
}
.bfc-block {
  display: flex; flex-direction: column; align-items: center;
  min-width: 56px;
}
.bfc-num {
  font-family: var(--font-display);
  font-size: 40px; line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, var(--cyan-soft) 60%, var(--magenta) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.bfc-lbl {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel-300); margin-top: 4px;
}
.bfc-sep {
  font-family: var(--font-display);
  font-size: 32px; color: var(--steel-400);
  margin-top: -10px;
  animation: bfc-blink 1s ease-in-out infinite;
}
@keyframes bfc-blink { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.9; } }

@media (max-width: 720px) {
  .bf-countdown { padding: 14px 16px; gap: 4px; }
  .bfc-block { min-width: 44px; }
  .bfc-num { font-size: 30px; }
  .bfc-sep { font-size: 24px; margin-top: -8px; }
  .bfc-lbl { font-size: 9px; }
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 880px; margin: 0 auto; padding: 0 20px;
}
@media (min-width: 1024px) { .faq-grid { padding: 0 32px; } }

.faq-item {
  padding: 18px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
}
.faq-item[open] {
  border-color: rgba(6, 182, 212, 0.35);
  background: linear-gradient(180deg, rgba(6,182,212,0.06), rgba(255,255,255,0.02));
}
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-size: 18px;
  color: #fff; padding-right: 32px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 22px;
  color: var(--cyan-elec); transition: transform 0.25s var(--ease-out);
}
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(180deg); color: var(--magenta); }
.faq-item p {
  font-size: 15px; color: var(--steel-200); line-height: 1.55;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--hair);
}

/* ─── PAGE-SPECIFIC TWEAKS ────────────────────────────── */
.waitlist-page .hero-intro.hero-video-mode .hero-content { min-height: 96vh; }
@media (max-width: 720px) {
  .waitlist-page .hero-intro.hero-video-mode .hero-content { min-height: 86vh; }
}

/* Más espacio entre title y countdown en hero */
.waitlist-page .hero-title { max-width: 16ch; }
.waitlist-page .hero-sub { max-width: 50ch; }

/* CTA section sin section-photo arriba (la del home no aplica aquí) */
.waitlist-page .cta-section { padding-top: 80px; }
@media (min-width: 1024px) { .waitlist-page .cta-section { padding-top: 128px; } }
