/* ============================================================
   LEYENDA — Landing promocional
   Los tokens y los componentes vienen de css/styles.css. No se importa
   ese archivo porque el shell de la app no scrollea (position: fixed +
   overflow: hidden) y una landing sí tiene que scrollear.
   ============================================================ */

:root {
  /* --- Copiado de css/styles.css (misma identidad, mismos valores) --- */
  --color-bg: #07111f;
  --color-surface: #101c2e;
  --color-surface-light: #182840;
  --color-primary: #32d583;
  --color-primary-hover: #28b970;
  --color-accent: #f4c542;
  --color-danger: #f04438;
  --color-info: #38bdf8;
  --color-text: #f8fafc;
  --color-text-secondary: #a9b4c5;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-control-border: rgba(255, 255, 255, 0.26);
  --color-primary-soft: rgba(50, 213, 131, 0.12);
  --color-accent-soft: rgba(244, 197, 66, 0.12);
  --color-info-soft: rgba(56, 189, 248, 0.12);
  --color-control-text: #041a10;
  --color-accent-text: #2d2101;
  --color-white: #ffffff;
  --color-black-shadow: rgba(0, 0, 0, 0.28);

  --bg: var(--color-bg);
  --bg-soft: #0b1728;
  --card: var(--color-surface);
  --card-2: var(--color-surface-light);
  --border: var(--color-border);
  --control-border: var(--color-control-border);
  --text: var(--color-text);
  --text-dim: var(--color-text-secondary);
  --text-faint: #8492a8;
  --accent: var(--color-primary);
  --accent-dark: var(--color-primary-hover);
  --accent-soft: var(--color-primary-soft);
  --gold: var(--color-accent);
  --gold-soft: var(--color-accent-soft);
  --red: var(--color-danger);
  --blue: var(--color-info);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --control-height: 48px;
  --control-height-lg: 54px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 8px 24px var(--color-black-shadow);
  --ease-out: cubic-bezier(0.2, 0.7, 0.25, 1);

  /* --- Sólo de la landing --- */
  --wrap: 1120px;
  --section-gap: clamp(64px, 9vw, 116px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px; line-height: 1.5;
  /* El radial verde arriba y el degradado vertical son la firma visual del juego */
  background-image:
    radial-gradient(ellipse 80% 45% at 50% -20%, var(--color-primary-soft), transparent),
    linear-gradient(180deg, var(--color-bg), #081525 70%, var(--color-bg));
  background-attachment: fixed;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: 8px; z-index: 100;
  transform: translate(-50%, -160%);
  padding: 10px 18px; border-radius: 999px;
  background: var(--accent); color: var(--color-control-text); font-weight: 700;
}
.skip-link:focus { transform: translate(-50%, 0); text-decoration: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding-block: var(--section-gap); }
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 54px); text-align: center; }

.kicker {
  color: var(--accent); font-weight: 600; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.kicker.gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.7rem, 4.2vw, 2.5rem); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.01em; text-wrap: balance;
}
.lead { color: var(--text-dim); font-size: 1.05rem; line-height: 1.6; margin-top: 14px; }

/* ---------- Botones (de css/styles.css) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 600; border: none; cursor: pointer;
  min-height: var(--control-height); border-radius: 999px; padding: 12px 24px; font-size: 1rem;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  -webkit-user-select: none; user-select: none;
}
.btn:hover { text-decoration: none; }
.btn { white-space: nowrap; }        /* nunca partir la etiqueta en dos líneas */
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: var(--color-primary); color: var(--color-control-text);
  box-shadow: 0 4px 14px rgba(50, 213, 131, 0.22);
}
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--control-border); }
.btn-ghost:hover { color: var(--text); border-color: var(--accent); }
.btn-lg { min-height: var(--control-height-lg); padding: 14px 32px; font-size: 1.05rem; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-card);
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(40px, 7vw, 72px); padding-bottom: clamp(28px, 5vw, 48px); }
.hero-grid {
  display: grid; gap: clamp(28px, 5vw, 56px); align-items: center;
  justify-items: center; text-align: center;
}
.hero-emblem {
  width: min(280px, 62vw); height: auto;
  image-rendering: pixelated;                 /* el escudo es pixel art */
  animation: bounce 2.2s ease infinite;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

.hero-title {
  font-size: clamp(3rem, 12vw, 5.5rem); font-weight: 800; letter-spacing: 0.12em; line-height: 1;
  background: linear-gradient(135deg, #f4f4f5 30%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px rgba(34, 197, 94, 0.22));
}
.hero-tagline {
  color: var(--accent); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 14px;
}
.hero-desc {
  color: var(--text-dim); font-size: clamp(1.05rem, 2.4vw, 1.3rem); line-height: 1.55;
  margin-top: 16px; max-width: 30ch; margin-inline: auto;
}
.hero-desc b { color: var(--text); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px;
}
.hero-badges span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--gold-soft); border: 1px solid rgba(250, 204, 21, 0.4);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; text-align: left; justify-items: start; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; justify-self: center; }
  .hero-emblem { width: min(400px, 38vw); }
  .hero-desc, .hero-actions, .hero-badges { margin-inline: 0; justify-content: flex-start; }
}

/* ---------- Banda de cifras ---------- */
.stats { padding-block: clamp(28px, 5vw, 44px); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stat-cell {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 10px; text-align: center;
}
.stat-cell .stat-val { font-size: clamp(1.45rem, 4vw, 2rem); font-weight: 800; color: var(--accent); }
.stat-cell .stat-val.gold { color: var(--gold); }
.stat-cell .stat-name {
  font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 4px;
}
@media (min-width: 720px) { .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

/* ---------- Pasos: cómo se juega ---------- */
.steps { display: grid; gap: clamp(56px, 8vw, 96px); }
.step {
  display: grid; gap: clamp(24px, 4vw, 48px); align-items: center;
  grid-template-columns: 1fr; justify-items: center; text-align: center;
}
.step-copy { max-width: 46ch; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; margin-bottom: 14px;
  background: var(--accent-soft); border: 1px solid rgba(50, 213, 131, 0.4);
  color: var(--accent); font-weight: 800; font-size: 1rem;
}
.step-title { font-size: clamp(1.35rem, 3.4vw, 1.9rem); font-weight: 800; line-height: 1.2; text-wrap: balance; }
.step-text { color: var(--text-dim); margin-top: 12px; line-height: 1.65; }
.step-list { list-style: none; margin-top: 16px; display: grid; gap: 8px; text-align: left; }
.step-list li { display: flex; gap: 10px; color: var(--text-dim); font-size: 0.95rem; line-height: 1.5; }
.step-list i { color: var(--accent); margin-top: 4px; }

@media (min-width: 860px) {
  .step { grid-template-columns: 1fr 1fr; text-align: left; justify-items: start; }
  .step-art { justify-self: center; }
  .step:nth-child(even) .step-copy { order: 2; }
  .step:nth-child(even) .step-art { order: 1; }
}

/* ---------- Marco de teléfono ---------- */
.phone {
  position: relative; width: min(320px, 84vw); flex-shrink: 0;
  padding: 12px 10px 16px;
  border-radius: 34px;
  background: linear-gradient(160deg, #1d2b40, #0d1626);
  border: 1px solid var(--control-border);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone::before {
  content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 62px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.16);
}
.phone-screen {
  border-radius: 24px; padding: 14px 12px; min-height: 380px;
  background:
    radial-gradient(ellipse 80% 45% at 50% -20%, var(--color-primary-soft), transparent),
    linear-gradient(180deg, var(--color-bg), #081525 70%, var(--color-bg));
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ============================================================
   Mockups de pantalla: clases copiadas de css/styles.css para que
   se vean como el juego de verdad. Viven dentro de .phone-screen.
   ============================================================ */
/* El texto de la app va alineado a la izquierda aunque el paso esté centrado */
.phone-screen { font-size: 0.94rem; text-align: left; }
.phone-screen .screen-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; text-align: center; }
.phone-screen .field-label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.02em; margin-bottom: 8px;
}
.phone-screen .fake-input {
  background: var(--bg-soft); border: 1px solid var(--control-border);
  border-radius: var(--radius-sm); padding: 11px 14px; text-align: center; margin-bottom: 16px;
}
.phone-screen .pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.phone-screen .pill {
  padding: 8px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--control-border); color: var(--text-dim);
}
.phone-screen .pill.active {
  background: var(--accent); border-color: var(--accent);
  color: var(--color-control-text); font-weight: 700;
}
.phone-screen .trait-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--blue);
  background: var(--color-info-soft); border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 999px; padding: 2px 9px;
}

/* Header de partida + barra de carrera */
.phone-screen .game-header {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 9px 11px; margin-bottom: 10px;
  box-shadow: 0 5px 14px var(--color-black-shadow);
}
.phone-screen .gh-ovr {
  width: 42px; height: 42px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent); border-radius: 12px; background: var(--accent-soft);
  color: var(--accent); font-size: 1.2rem; font-weight: 800; line-height: 1;
}
.phone-screen .gh-player { flex: 1; min-width: 0; text-align: center; }
.phone-screen .gh-name { font-weight: 700; font-size: 0.92rem; line-height: 1.25; }
.phone-screen .gh-sub {
  font-size: 0.78rem; color: var(--text-dim);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.phone-screen .gh-sub img { width: 16px; height: 16px; object-fit: contain; }
.phone-screen .career-progress {
  height: 5px; background: var(--card); border-radius: 999px; overflow: hidden; margin-bottom: 14px;
}
.phone-screen .career-progress-bar {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* Tarjeta de evento */
.phone-screen .event-card {
  --event-color: var(--gold); --event-soft: rgba(250, 204, 21, 0.08); --event-border: rgba(250, 204, 21, 0.35);
  position: relative;
  background: linear-gradient(145deg, var(--event-soft), transparent 38%), var(--card);
  border: 1px solid var(--event-border);
  border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow-card);
}
.phone-screen .event-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  border-radius: var(--radius) var(--radius) 0 0; background: var(--event-color);
}
.phone-screen .event-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px;
}
.phone-screen .event-category, .phone-screen .event-kind {
  font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
}
.phone-screen .event-category {
  display: inline-flex; align-items: center; gap: 6px; color: var(--event-color);
}
.phone-screen .event-kind { color: var(--text-faint); }
.phone-screen .event-title { font-size: 0.98rem; font-weight: 700; line-height: 1.35; margin-bottom: 7px; }
.phone-screen .event-text { color: var(--text-dim); font-size: 0.84rem; line-height: 1.5; margin-bottom: 13px; }
.phone-screen .event-option {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; text-align: left;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 13px; margin-bottom: 8px;
}
.phone-screen .event-option-copy { flex: 1; min-width: 0; }
.phone-screen .event-option strong { display: block; font-size: 0.88rem; font-weight: 700; line-height: 1.3; }
.phone-screen .event-option small {
  display: block; color: var(--text-faint); font-weight: 400; font-size: 0.76rem;
  line-height: 1.35; margin-top: 3px;
}
.phone-screen .event-option-type {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px;
  color: var(--event-color); background: var(--event-soft);
  border: 1px solid var(--event-border); border-radius: 999px;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
}

/* Palmarés */
.phone-screen .section-h {
  font-size: 0.74rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase;
  letter-spacing: 0.09em; margin: 4px 0 8px;
}
.phone-screen .trophy-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 2px; border-bottom: 1px solid var(--border); font-size: 0.85rem;
}
.phone-screen .trophy-row:last-child { border-bottom: none; }
.phone-screen .trophy-row .trophy-name { display: inline-flex; align-items: center; gap: 9px; min-width: 0; }
.phone-screen .trophy-row .trophy-ico { height: 28px; width: 28px; object-fit: contain; flex-shrink: 0; }
.phone-screen .trophy-row .trophy-count { font-weight: 800; color: var(--gold); }

/* Resumen final */
.phone-screen .summary-hero { text-align: center; padding: 10px 4px 4px; }
.phone-screen .legacy-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); background: var(--gold-soft);
  border: 1px solid rgba(250, 204, 21, 0.4); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 10px;
}
.phone-screen .summary-hero h3 { font-size: 1.5rem; font-weight: 800; }
.phone-screen .summary-sub { color: var(--text-dim); font-size: 0.8rem; margin-top: 6px; line-height: 1.5; }
.phone-screen .mock-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; }
.phone-screen .mock-stat-grid .stat-cell { padding: 11px 6px; }
.phone-screen .mock-stat-grid .stat-val { font-size: 1.2rem; }
.phone-screen .mock-stat-grid .stat-name { font-size: 0.6rem; }
.phone-screen .timeline { position: relative; padding-left: 20px; text-align: left; }
.phone-screen .timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--border);
}
.phone-screen .timeline-item { position: relative; padding: 0 0 14px 12px; }
.phone-screen .timeline-item::before {
  content: ""; position: absolute; left: -20px; top: 5px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.phone-screen .timeline-item .t-club { font-weight: 700; font-size: 0.88rem; }
.phone-screen .timeline-item .t-years { font-size: 0.7rem; color: var(--text-faint); }

.mock-note {
  margin-top: 12px; text-align: center; color: var(--text-faint);
  font-size: 0.76rem; font-style: italic;
}

/* ---------- Grid de features ---------- */
.feature-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature {
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.18s var(--ease-out), border-color 0.18s ease;
}
.feature:hover { transform: translateY(-3px); border-color: rgba(50, 213, 131, 0.35); }
.feature-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); border: 1px solid rgba(50, 213, 131, 0.3);
  color: var(--accent); font-size: 1.1rem;
}
.feature.gold .feature-ico {
  background: var(--gold-soft); border-color: rgba(250, 204, 21, 0.35); color: var(--gold);
}
.feature.blue .feature-ico {
  background: var(--color-info-soft); border-color: rgba(56, 189, 248, 0.35); color: var(--blue);
}
.feature h3 { font-size: 1.08rem; font-weight: 700; }
.feature p { color: var(--text-dim); font-size: 0.93rem; line-height: 1.6; }

/* ---------- Vitrina de trofeos ----------
   Rejilla en todos los anchos: en celular un scroll horizontal esconde
   la mitad de los premios, que es justo lo que la sección quiere mostrar. */
.trophy-rail {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px; padding: 4px 0;
}
.trophy-item {
  text-align: center; padding: 14px 6px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform 0.18s var(--ease-out), border-color 0.18s ease;
}
.trophy-item:hover { transform: translateY(-3px); border-color: rgba(250, 204, 21, 0.4); }
.trophy-item img {
  width: 56px; height: 56px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(244, 197, 66, 0.28));
}
.trophy-item span {
  display: block; margin-top: 10px; font-size: 0.76rem; font-weight: 600;
  color: var(--text-dim); line-height: 1.35;
}
@media (max-width: 400px) {
  .trophy-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 620px) {
  .trophy-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .trophy-item { padding: 18px 10px; }
}
@media (min-width: 900px) {
  .trophy-rail { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* ---------- Marquesinas ---------- */
.world { overflow: hidden; }
.marquee {
  overflow: hidden; padding-block: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee + .marquee { margin-top: 6px; }
.marquee-track { display: flex; width: max-content; gap: 18px; animation: marquee 46s linear infinite; }
.marquee-rev .marquee-track { animation-direction: reverse; animation-duration: 58s; }
.marquee-track img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.marquee-flags .marquee-track img { border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }   /* -9px = la mitad del gap */
}

/* ---------- CTA final ---------- */
.cta { text-align: center; }
.cta-box {
  padding: clamp(32px, 6vw, 60px) 24px;
  background: linear-gradient(160deg, rgba(50, 213, 131, 0.12), transparent 55%), var(--card);
  border: 1px solid rgba(50, 213, 131, 0.3);
  border-radius: 28px; box-shadow: var(--shadow-card);
}
.cta-box h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; line-height: 1.2; text-wrap: balance; }
.cta-box .lead { max-width: 46ch; margin-inline: auto; }
.cta-box .btn { margin-top: 26px; }
.cta-foot { margin-top: 16px; color: var(--text-faint); font-size: 0.875rem; }

/* ---------- Footer ---------- */
.foot {
  border-top: 1px solid var(--border); padding-block: 36px 44px;
  color: var(--text-faint); font-size: 0.85rem; line-height: 1.7;
}
.foot { text-align: center; }
.foot-brand {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--text); font-weight: 700;
}
.foot-brand img { width: 40px; height: 40px; image-rendering: pixelated; }
.foot-credits { max-width: 62ch; margin-inline: auto; }
.foot-credit-list {
  list-style: none; margin: 8px auto 0; display: grid; gap: 7px; max-width: 76ch;
}
.foot-credit-list b { color: var(--text-dim); font-weight: 700; }

/* ---------- Reveal al scrollear ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(10px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* Sólo se esconde si el script corrió: sin JS la página se ve completa */
.js .reveal { opacity: 0; }
.js .reveal.in { animation: riseIn 0.5s var(--ease-out) both; }

/* ============================================================
   Celular: el ritmo vertical de escritorio deja la página en casi
   10.000 px a 320 px de ancho. Acá se aprieta el aire, no el contenido.
   ============================================================ */
@media (max-width: 560px) {
  :root { --section-gap: 52px; }
  .wrap { padding: 0 16px; }
  .hero { padding-top: 28px; padding-bottom: 20px; }
  .hero-grid { gap: 24px; }
  .hero-emblem { width: min(220px, 62vw); }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-badges { margin-bottom: 14px; }
  .section-head { margin-bottom: 28px; }
  .steps { gap: 44px; }
  .step { gap: 22px; }
  .lead { font-size: 1rem; }
  .step-text, .feature p { font-size: 0.92rem; }
  .cta-box { padding: 30px 18px; border-radius: 22px; }
  .cta-box h2 { font-size: 1.45rem; }
  .cta-box .btn { margin-top: 20px; }
  .foot { padding-block: 28px 34px; }
}

/* Pantallas muy angostas (iPhone SE y similares) */
@media (max-width: 360px) {
  .btn-lg { padding: 13px 20px; font-size: 1rem; }
  .hero-title { font-size: 2.7rem; letter-spacing: 0.1em; }
  .phone { width: 88vw; padding: 10px 8px 14px; }
  .phone-screen { padding: 12px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-emblem { animation: none; }
  .marquee-track { animation: none; }
  .js .reveal { opacity: 1; }
  .js .reveal.in { animation: none; }
  .feature:hover, .trophy-item:hover { transform: none; }
}
