/* Ruta Oscura — pre-landing (diseño v3 de Claude Design) */

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background: #0d0d10;
}

a { color: #f2b544; text-decoration: none; }
a:hover { color: #ffd27a; }

/* ---------- Animaciones ---------- */

@keyframes billFloat {
  0%   { transform: translateY(0) translateX(0) rotate(var(--r0)); opacity: 0; }
  8%   { opacity: var(--op); }
  50%  { transform: translateY(-55vh) translateX(var(--sway)) rotate(var(--r1)); }
  92%  { opacity: var(--op); }
  100% { transform: translateY(-115vh) translateX(0) rotate(var(--r2)); opacity: 0; }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 26px rgba(242, 181, 68, 0.3); transform: scale(1); }
  50%      { box-shadow: 0 6px 38px rgba(242, 181, 68, 0.55); transform: scale(1.025); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(76, 217, 100, 0.5); }
  50%      { opacity: 0.6; box-shadow: 0 0 0 6px rgba(76, 217, 100, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .bill, .cta, .badge-dot { animation: none !important; }
}

/* ---------- Layout ---------- */

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background: radial-gradient(ellipse 120% 60% at 50% 0%, #1c1710 0%, #0d0d10 60%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* ---------- Billetes flotando (fondo) ---------- */

.bills {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bill {
  position: absolute;
  top: 105%;
  opacity: 0;
  animation-name: billFloat;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.bill-inner {
  width: 100%;
  height: 100%;
  border: 1.5px solid #f2b544;
  border-radius: 5px;
  background: rgba(242, 181, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #f2b544;
}

.bill-amt { font-weight: 800; letter-spacing: 1px; }

/* ---------- Contenido ---------- */

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 430px;
  padding: 44px 24px 0;
}

h1 {
  margin: 0;
  color: #f2b544;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  text-wrap: balance;
}

.hint {
  margin: 12px 0 0;
  color: #d8d8dc;
  font-size: 17px;
  line-height: 1.45;
}

.hint strong { color: #f2b544; font-weight: 700; }

.menu-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  vertical-align: middle;
  margin: 0 2px;
}

.menu-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8d8dc;
  display: inline-block;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  width: 100%;
  max-width: 360px;
  background: #f2b544;
  color: #131313;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 18px 32px;
  border-radius: 32px;
  box-shadow: 0 6px 26px rgba(242, 181, 68, 0.3);
  animation: ctaPulse 2.2s ease-in-out infinite;
}

.cta:hover { color: #131313; }
.cta:active { transform: scale(0.98); }

.cta svg { margin-right: 10px; flex-shrink: 0; }

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cd964;
  display: inline-block;
  animation: dotPulse 1.6s ease-in-out infinite;
}

.badge-text {
  color: #f2b544;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.tagline {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-wrap: balance;
}

.tagline span { color: #f2b544; }

.keywords {
  margin: 8px 0 0;
  color: #b9b9be;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 0 24px 18px;
  color: #8e8e93;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-align: center;
}

/* ---------- Mascota ---------- */

.mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  flex: 1;
  min-height: 440px;
  margin-top: 18px;
}

.mascot picture,
.mascot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
