/* ═══════════════════════════════════════════════
   HERO.CSS — Hero, Countdown, Dólar Blue
   ReaperTech © 2026
═══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,241,53,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

/* ── STATUS TAG ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeUp .8s var(--ease) both;
  background: rgba(200,241,53,.08);
  border: 1px solid rgba(200,241,53,.2);
  padding: 8px 18px;
  border-radius: 40px;
}

.hero-tag .tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── HEADLINE ── */
.hero-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(30px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--cream);
  margin-bottom: 24px;
  animation: fadeUp .8s .1s var(--ease) both;
}

.hero-headline em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* ── SUBHEADLINE ── */
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 300;
  animation: fadeUp .8s .15s var(--ease) both;
}

.hero-sub strong { color: var(--cream); font-weight: 500; }

/* ── DÓLAR BLUE BADGE ── */
.dolar-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 40px;
  padding: 10px 20px;
  margin-bottom: 48px;
  animation: fadeUp .8s .2s var(--ease) both;
}

.dolar-badge-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dim);
}

.dolar-badge-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.12);
}

.dolar-badge-valor {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.01em;
}

.dolar-badge-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: var(--dim);
}

.dolar-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseGlow 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── COUNTDOWN ── */
.countdown-wrap {
  margin-bottom: 64px;
  animation: fadeUp .8s .25s var(--ease) both;
}

.countdown-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.countdown-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--cream);
  min-width: 2ch;
  text-align: center;
  transition: transform .15s var(--ease), color .2s;
}

.countdown-num.flip { color: var(--accent); }

.countdown-num-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown-sep {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 900;
  color: rgba(255,255,255,.1);
  padding-bottom: 32px;
  line-height: 1;
  align-self: flex-end;
}

.launch-date {
  font-size: 12px;
  color: var(--dim);
  margin-top: 20px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .04em;
}

/* ── PREVIEW SECTION ── */
.preview {
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}

.preview h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--cream);
  margin-bottom: 56px;
  max-width: 500px;
  line-height: 1.1;
}

.preview h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.04);
}

/* La última card (CTA) ocupa el ancho completo */
.preview-card:last-child {
  grid-column: 1 / -1;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-align: left !important;
  padding: 28px 36px;
  gap: 24px;
}

.preview-card {
  background: var(--ink);
  padding: 36px 28px;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.preview-card:hover { background: rgba(255,255,255,.02); }

.preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,241,53,.3), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.preview-card:hover::before { opacity: 1; }

.preview-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.preview-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.preview-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(255,255,255,.02);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.marquee-track span::before {
  content: '✦';
  color: var(--accent);
  font-size: 8px;
}

/* ── LARGE SCREENS ── */
@media (min-width: 1400px) {
  .hero { padding: 140px 80px 100px; }
  .preview { padding: 120px 80px; }
  .preview-inner { max-width: 1280px; }
}

/* ── RESPONSIVE TABLET ── */
@media (max-width: 900px) {
  .hero { padding: 100px 24px 64px; }
  .hero-sub { font-size: 15px; }
  .hero-content { max-width: 100%; }
  .countdown { gap: 6px; }
  .countdown-sep { font-size: 28px; }
  .preview { padding: 64px 24px; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 600px) {
  .hero { padding: 88px 16px 56px; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-tag { font-size: 8px; padding: 7px 14px; }
  .dolar-badge { gap: 8px; padding: 8px 14px; flex-wrap: wrap; justify-content: center; }
  .countdown { gap: 4px; }
  .countdown-sep { font-size: 22px; }
  .preview { padding: 48px 16px; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-card { padding: 28px 20px; }
}

/* ── RESPONSIVE SMALL PHONES ── */
@media (max-width: 380px) {
  .hero-tag { font-size: 7px; letter-spacing: .12em; }
  .countdown-num { font-size: 36px; }
  .dolar-badge-valor { font-size: 11px; }
}
