/* home — pantalla Inicio (v3). Dueño: agente HOME. Solo clases .home-* */


.home { display: flex; flex-direction: column; gap: 16px; padding: 12px 0 32px; }
.home-ico { display: inline-flex; align-items: center; justify-content: center; line-height: 0; flex: none; }
.home-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9;
}

.home-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.home-grid > * { min-width: 0; }

/* --- Reto de amigo ------------------------------------------------------------ */
.home-challenge {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr; gap: 12px 14px; align-items: center;
  padding: 18px; border-radius: var(--radius-xl, 24px);
  background: var(--grad-gold, linear-gradient(135deg, #FFD36E, #FFB547 50%, #FF8A4C));
  color: #2A1600;
  box-shadow: var(--glow-gold, 0 12px 40px -12px rgba(255, 181, 71, 0.7));
}
.home-challenge::after {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.55), transparent); pointer-events: none;
}
.home-challenge-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.4); color: #6B3A00; }
.home-challenge-text { margin: 4px 0 0; font-size: 18px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; }
.home-challenge-cta { grid-column: 1 / -1; position: relative; z-index: 1; }

/* --- Cabecera del jugador ------------------------------------------------------ */
.home-player {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px 12px;
  grid-template-areas: "av meta streak" "xp xp xp";
  padding: 12px; border-radius: var(--radius-xl, 24px);
}
.home-player > .home-player-avatar { grid-area: av; }
.home-player > .home-player-meta { grid-area: meta; }
.home-player > .home-streak { grid-area: streak; }
.home-player > .home-xp { grid-area: xp; }
.home-player:not(:has(> .home-xp)) { grid-template-areas: "av meta streak"; }
.home-player-avatar {
  position: relative; width: 68px; height: 68px; display: grid; place-items: center; flex: none;
  border-radius: 50%; text-decoration: none;
}
.home-player-avatar > * { grid-area: 1 / 1; }
.home-player-avatar .avatar { width: 52px !important; height: 52px !important; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 2px var(--bg, #07071A); }
.home-player-avatar--plain { background: var(--grad-brand, linear-gradient(135deg, #7C5CFF, #C155FF 50%, #FF5E8A)); padding: 3px; }
.home-player-meta { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.home-player-name {
  font-family: var(--font-display, inherit); font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.home-player-rank { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 6px; }
.home-player-tier { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.home-player-tier[data-tier="gold"], .home-player-tier[data-tier="platinum"] { color: var(--brand-4, #FFB547); }
.home-player-tier[data-tier="diamond"], .home-player-tier[data-tier="master"] { color: var(--brand-2, #C155FF); }
.home-xpbar {
  position: relative; flex: 1; height: 8px; border-radius: var(--radius-pill, 999px); overflow: hidden;
  background: var(--surface-2, rgba(127, 127, 160, 0.18));
}
.home-xp { display: flex; align-items: center; gap: 10px; min-width: 0; }
.home-xpbar-fill {
  position: absolute; inset: 0 auto 0 0; border-radius: inherit;
  background: var(--grad-brand, linear-gradient(90deg, #7C5CFF, #C155FF, #FF5E8A));
  animation: home-grow 1.1s var(--ease-out-expo, ease-out) both 0.2s;
  transform-origin: left center;
}
.home-xpbar-text { flex: none; font-size: 12px; font-weight: 700; color: var(--ink-2); }
@keyframes home-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.home-streak {
  display: grid; justify-items: center; align-content: center; gap: 0; min-width: 64px; min-height: 64px; padding: 6px 4px;
  border-radius: 18px; text-decoration: none; color: var(--ink-2);
  background: var(--surface-2, rgba(127, 127, 160, 0.14));
}
.home-streak-flame { color: var(--ink-3, #888); }
.home-streak-num { font-size: 22px; font-weight: 900; line-height: 1; color: var(--ink); }
.home-streak-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; text-align: center; max-width: 58px; line-height: 1.15; }
.home-streak[data-active="true"] { background: var(--grad-warm, linear-gradient(135deg, #FFB547, #FF5E8A)); color: #fff; box-shadow: 0 10px 28px -12px rgba(255, 94, 138, 0.8); }
.home-streak[data-active="true"] .home-streak-num,
.home-streak[data-active="true"] .home-streak-flame { color: #fff; }
.home-streak[data-active="true"] .home-streak-flame { animation: home-flicker 1.6s ease-in-out infinite; transform-origin: 50% 90%; }
.home-streak[data-risk="true"] { outline: 2px dashed rgba(255, 255, 255, 0.7); outline-offset: -4px; }
@keyframes home-flicker {
  0%, 100% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.08, 0.95) rotate(-3deg); }
  60% { transform: scale(0.96, 1.07) rotate(2deg); }
}

/* --- Héroe ------------------------------------------------------------------------------ */
.home-hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; align-items: center;
  padding: 24px 20px; border-radius: var(--radius-2xl, 32px); color: #fff;
}
.home-hero-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.home-hero-title {
  margin: 0; font-family: var(--font-display, inherit);
  font-size: clamp(36px, 10vw, 60px); line-height: 0.98; font-weight: 900; letter-spacing: -0.035em;
  text-wrap: balance;
}
.home-hero-sub { margin: 0; font-size: 16px; line-height: 1.4; opacity: 0.92; max-width: 34ch; }
.home-hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.home-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  flex: 1 1 220px; min-height: 54px;
  background: #fff; color: var(--brand-1, #5B3DF5); font-size: 17px; font-weight: 800;
  border: 0; border-radius: var(--radius-pill, 999px);
  box-shadow: 0 14px 34px -12px rgba(20, 0, 60, 0.55);
}
.home-cta:hover { filter: brightness(1.03); }
.home-cta:active { transform: scale(0.97); }
/* Crece como el principal: en fila comparten el ancho y, si baja de línea, ocupa la fila entera
   (antes quedaba una píldora corta alineada a la izquierda: asimétrico) */
.home-cta-2 { flex: 1 1 160px; justify-content: center; min-height: 54px; color: #fff; border-radius: var(--radius-pill, 999px); padding-inline: 20px; }

.home-hero-fig { position: relative; z-index: 0; order: -1; justify-self: center; width: min(40vw, 150px); aspect-ratio: 1; margin: -8px 0 -4px; }
.home-fig { width: 100%; height: 100%; overflow: visible; }
.home-fig-orbit { fill: none; stroke: rgba(255, 255, 255, 0.28); stroke-width: 1.5; stroke-dasharray: 3 7; transform-box: fill-box; transform-origin: center; animation: home-spin 24s linear infinite; }
.home-fig-shape { fill: rgba(255, 255, 255, 0.08); stroke: #fff; stroke-width: 3.5; }
.home-fig-tick { stroke: rgba(255, 255, 255, 0.55); stroke-width: 2; stroke-linecap: round; }
.home-fig-center { fill: rgba(255, 255, 255, 0.9); }
.home-fig-hit { fill: none; stroke: var(--brand-4, #FFB547); stroke-width: 3; opacity: 0; transform-box: fill-box; transform-origin: center; animation: home-hit 5s var(--ease-out-expo, ease-out) infinite; }
.home-fig-dot { animation: home-seek 5s cubic-bezier(0.45, 0, 0.2, 1) infinite; }
.home-fig-dot-core { fill: var(--brand-4, #FFB547); filter: drop-shadow(0 0 6px rgba(255, 181, 71, 0.9)); }
.home-fig-dot-halo { fill: rgba(255, 213, 128, 0.25); }
.home-fig-score { fill: #fff; font-size: 17px; font-weight: 900; letter-spacing: -0.02em; opacity: 0; animation: home-score 5s ease-out infinite; font-variant-numeric: tabular-nums; }

@keyframes home-spin { to { transform: rotate(360deg); } }
@keyframes home-seek {
  0% { transform: translate(-46px, -34px); opacity: 0; }
  6% { opacity: 1; }
  20% { transform: translate(36px, -18px); }
  34% { transform: translate(-22px, 30px); }
  46% { transform: translate(12px, -9px); }
  56% { transform: translate(-4px, 3px); }
  62%, 88% { transform: translate(0, 0); opacity: 1; }
  96%, 100% { transform: translate(0, 0); opacity: 0; }
}
@keyframes home-hit {
  0%, 61% { opacity: 0; transform: scale(0.4); }
  63% { opacity: 1; transform: scale(0.8); }
  80% { opacity: 0; transform: scale(3.2); }
  100% { opacity: 0; transform: scale(3.2); }
}
@keyframes home-score {
  0%, 62% { opacity: 0; transform: translateY(6px); }
  68%, 88% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(-4px); }
}

/* --- Reto de hoy -------------------------------------------------------------------------- */
.home-daily { display: flex; flex-direction: column; gap: 14px; padding: 18px; border-radius: var(--radius-xl, 24px); }
/* Título a todo el ancho y la píldora de estado en la fila de la fecha: en 360 px «Reto de hoy»
   ya no parte en dos líneas, y la tarjeta queda igual en todas las anchuras. */
.home-daily-head {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; column-gap: 12px; row-gap: 2px; align-items: center;
  grid-template-areas: "badge title title" "badge date chip";
}
.home-daily-head .icon-badge { grid-area: badge; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.home-daily-titles { display: contents; }
.home-daily-title { grid-area: title; margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.home-daily-date { grid-area: date; font-size: 13px; color: var(--ink-2); text-transform: capitalize; }
.home-daily-head > .chip { grid-area: chip; justify-self: end; min-height: 26px; }
.home-daily-tests { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.home-daily-test {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px;
  border-radius: 16px; background: var(--surface-2, rgba(127, 127, 160, 0.12)); color: var(--brand-1, #7C5CFF);
}
.home-daily-test-name { font-size: 12px; font-weight: 600; color: var(--ink-2); text-align: center; line-height: 1.2; }
.home-daily-pending { margin: 0; font-size: 15px; color: var(--ink-2); }
.home-daily-score-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2); }
.home-daily-score-row { display: flex; align-items: baseline; gap: 4px; }
.home-daily-score-num {
  font-size: 44px; font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  background: var(--grad-gold, linear-gradient(135deg, #FFD36E, #FF8A4C)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.home-daily-score-max { font-size: 16px; font-weight: 700; color: var(--ink-3, var(--ink-2)); }
.home-daily-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.home-daily-count { display: flex; flex-direction: column; }
.home-daily-count-label { font-size: 12px; color: var(--ink-2); }
.home-count { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.home-daily-cta { min-height: 48px; padding-inline: 22px; border-radius: var(--radius-pill, 999px); flex: 1 1 auto; max-width: 260px; }
.home-daily[data-state="pending"] { box-shadow: 0 0 0 1px rgba(255, 181, 71, 0.35), 0 18px 50px -24px rgba(255, 181, 71, 0.6); }

/* --- Carrusel de pruebas ------------------------------------------------------------------- */
.home-tests .section-title h2, .home-progress .section-title h2, .home-achievements .section-title h2, .home-how .section-title h2 { margin: 0; }
.home-tests .section-title { padding: 0 2px; }
/* Cabecera del carrusel: flechas (solo ratón) + "Ver todo" con flecha */
.home-tests-nav { display: flex; align-items: center; gap: 8px; }
.home-arrow {
  display: none; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%; place-items: center; cursor: pointer;
  color: var(--ink); background: var(--glass-strong); box-shadow: var(--shadow-1), inset 0 0 0 1px var(--glass-border);
  transition: transform var(--dur-fast, 150ms) var(--ease-out-expo, ease-out), opacity var(--dur-fast, 150ms);
}
.home-arrow .icon { width: 18px; height: 18px; }
.home-arrow:hover:not(:disabled) { transform: scale(1.08); }
.home-arrow:active:not(:disabled) { transform: scale(0.94); }
.home-arrow:disabled { opacity: 0.35; cursor: default; }
@media (hover: hover) and (pointer: fine) { .home-arrow { display: inline-grid; } }
.home-seeall {
  display: inline-flex; align-items: center; gap: 2px; min-height: 44px; padding: 0 4px 0 10px; border-radius: 999px;
  font-size: 15px; font-weight: 700; color: var(--accent-text); text-decoration: none;
  transition: gap var(--dur-fast, 150ms) var(--ease-out-expo, ease-out), background-color var(--dur-fast, 150ms);
}
.home-seeall .icon { width: 18px; height: 18px; }
.home-seeall:hover { gap: 6px; background: var(--accent-soft); }
.home-scroller { gap: 12px; padding: 6px 2px 14px; scroll-padding-inline: 2px; }
/* Carrusel dentro de los márgenes de la página, con difuminado en el lado donde queda contenido */
.home-scroller {
  --fade-l: 0px; --fade-r: 0px;
  margin-inline: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent 100%);
}
.home-scroller[data-fade-start="true"] { --fade-l: 48px; }
.home-scroller[data-fade-end="true"] { --fade-r: 48px; }
.home-test {
  flex: 0 0 148px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 14px; min-height: 164px; border-radius: 22px; text-align: left; cursor: pointer; font: inherit; color: var(--ink);
  transition: transform var(--dur-fast, 150ms) var(--ease-out-expo, ease-out), box-shadow var(--dur, 300ms);
}
.home-test:hover { transform: translateY(-3px); }
.home-test:active { transform: scale(0.97); }
.home-test:focus-visible { outline: 3px solid var(--brand-1, #7C5CFF); outline-offset: 2px; }
.home-test-icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; color: #fff; }
.home-test-name { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; }
.home-test-best { margin-top: auto; font-size: 12px; font-weight: 700; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.home-test-best[data-has="true"] { color: var(--gold-text, #8F5A00); }

/* --- Progreso ------------------------------------------------------------------------------ */
.home-progress, .home-achievements, .home-how { padding: 18px; border-radius: var(--radius-xl, 24px); display: flex; flex-direction: column; gap: 14px; }
.home-kpis { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.home-kpi {
  position: relative; display: flex; flex-direction: column; gap: 2px; padding: 12px 14px;
  border-radius: 18px; background: var(--surface-2, rgba(127, 127, 160, 0.12));
}
.home-kpi .kpi-value { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.home-kpi .kpi-label { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.home-kpi-ico { position: absolute; top: 10px; right: 12px; color: var(--brand-2, #C155FF); opacity: 0.85; }
.home-kpi:first-child .home-kpi-ico { color: var(--brand-4, #FFB547); }
.home-levels-bar { height: 8px; }

/* --- Logros ---------------------------------------------------------------------------------- */
.home-ach-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.home-ach { display: flex; align-items: center; gap: 12px; }
.home-ach .icon-badge { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; flex: none; color: #fff; }
.home-ach-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.home-ach-name { font-weight: 800; font-size: 15px; }
.home-ach-desc { font-size: 13px; color: var(--ink-2); }
.home-ach-bar { height: 6px; margin-top: 6px; }
.home-ach-count { font-size: 12px; font-weight: 700; color: var(--ink-2); }

/* --- Cómo funciona ----------------------------------------------------------------------------- */
.home-how-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
.home-how-step { position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; }
.home-how-step .icon-badge { grid-row: 1 / 3; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.home-how-n { position: absolute; left: 32px; top: -4px; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 900; background: var(--ink); color: var(--bg); }
.home-how-title { font-weight: 800; font-size: 15px; }
.home-how-text { font-size: 13px; color: var(--ink-2); line-height: 1.35; }

.home .ad-slot { margin-top: 4px; }

/* Títulos de sección en móvil: a 22 px «Entrena una prueba» / «Cómo funciona» partían en dos líneas
   junto a su enlace. Enlaces y chips con zona táctil ≥ 44 px en pantallas táctiles. */
@media (max-width: 479px) {
  .home .section-title > :first-child { font-size: 20px; }
}
@media (pointer: coarse) {
  .home .section-title .btn-small { min-height: 44px; }
  .home-coins, .home-new { position: relative; }
  .home-coins::after, .home-new::after { content: ""; position: absolute; inset: -8px -3px; }
}

/* --- Escritorio -------------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .home-player { grid-template-areas: "av meta streak" "av xp streak"; row-gap: 6px; padding: 12px 14px; column-gap: 14px; }
  .home-player > .home-xp { max-width: 360px; }
  .home-player:not(:has(> .home-xp)) { grid-template-areas: "av meta streak"; }
  .home-challenge { grid-template-columns: auto 1fr auto; }
  .home-challenge-cta { grid-column: auto; width: auto; padding-inline: 24px; }
  .home-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-how-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-how-step { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 6px; }
  .home-how-step .icon-badge { grid-row: auto; }
  .home-hero { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); padding: 32px; }
  .home-hero-fig { order: 0; width: 100%; max-width: 280px; margin: 0; }
}

@media (min-width: 1024px) {
  .home { padding: 20px 24px 40px; gap: 20px; }
  .home-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px;
    grid-template-areas:
      "player player player player player player player player player player player player"
      "hero hero hero hero hero hero hero hero daily daily daily daily"
      "tests tests tests tests tests tests tests tests tests tests tests tests"
      "prog prog prog prog prog prog prog ach ach ach ach ach"
      "how how how how how how how how how how how how";
  }
  .home-grid--no-ach { grid-template-areas:
      "player player player player player player player player player player player player"
      "hero hero hero hero hero hero hero hero daily daily daily daily"
      "tests tests tests tests tests tests tests tests tests tests tests tests"
      "prog prog prog prog prog prog prog how how how how how"; }
  .home-grid--no-ach .home-how-steps { grid-template-columns: minmax(0, 1fr); }
  .home-grid--no-ach .home-how-step { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .home-grid--no-ach .home-how-step .icon-badge { grid-row: 1 / 3; }
  .home-player { grid-area: player; }
  .home-hero { grid-area: hero; min-height: 340px; padding: 40px; }
  .home-daily { grid-area: daily; justify-content: space-between; }
  .home-daily-foot { margin-top: 0; }
  .home-tests { grid-area: tests; }
  .home-progress { grid-area: prog; }
  .home-achievements { grid-area: ach; }
  .home-how { grid-area: how; }
  .home-hero-title { font-size: 68px; }
  .home-hero-sub { font-size: 18px; }
  .home-hero-fig { max-width: 320px; }
  .home-test { flex-basis: 168px; min-height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-fig-orbit, .home-fig-hit, .home-fig-score, .home-streak-flame, .home-xpbar-fill { animation: none !important; }
  .home-fig-dot { animation: none; transform: none; }
  .home-fig-score { opacity: 1; }
  .home-test, .home-test:hover { transition: none; transform: none; }
}

/* --- Ojito del jugador en la cabecera (integración v3) ---------------------------- */
.home-player-avatar--ojito { overflow: visible; }
.home-player-ojito {
  display: grid; place-items: center; width: 62px; height: 62px; transform: translateY(-5px);
  pointer-events: none; transition: transform 0.35s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.home-player-ojito .ojito, .home-player-ojito svg { width: 62px; height: 62px; display: block; }
.home-player-avatar--ojito:hover .home-player-ojito,
.home-player-avatar--ojito:focus-visible .home-player-ojito { transform: translateY(-9px) scale(1.04); }
.home-player-avatar--ojito:active .home-player-ojito { transform: translateY(-3px) scale(0.96); }
.home-new-dot {
  position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-3, #FF5E8A); box-shadow: 0 0 0 3px var(--bg, #07071A), 0 0 12px var(--brand-3, #FF5E8A);
  animation: home-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes home-dot-pulse { 50% { transform: scale(1.18); } }
.home-coins, .home-new { text-decoration: none; min-height: 28px; }
.home-coins .home-lens { color: var(--brand-4, #FFB547); }
.home-coins .num { font-weight: 800; }
.home-new { align-self: flex-start; }
@media (prefers-reduced-motion: reduce) {
  .home-new-dot { animation: none; }
  .home-player-ojito { transition: none; }
}
