/* =========================================================
   01. HOME · TOKENS
========================================================= */

:root {
  --poga-home-shell: min(1240px, calc(100vw - 56px));
  --poga-home-section-space: 108px;

  --poga-home-text: #2f2735;
  --poga-home-text-soft: rgba(47, 39, 53, 0.76);
  --poga-home-text-faint: rgba(47, 39, 53, 0.54);
  --poga-home-heading: #2f203a;

  --poga-home-purple: #7b4eff;
  --poga-home-purple-strong: #9505e3;
  --poga-home-yellow: #f4cb41;
  --poga-home-yellow-strong: #d8a91a;

  --poga-home-surface: rgba(255, 255, 255, 0.34);
  --poga-home-surface-strong: rgba(255, 255, 255, 0.52);
  --poga-home-surface-muted: rgba(255, 255, 255, 0.22);
  --poga-home-border: rgba(123, 78, 255, 0.10);
  --poga-home-border-strong: rgba(123, 78, 255, 0.16);

  --poga-home-shadow-soft: 0 10px 22px rgba(60, 32, 90, 0.05);
  --poga-home-shadow-card: 0 18px 36px rgba(60, 32, 90, 0.08);
  --poga-home-shadow-hover: 0 24px 40px rgba(60, 32, 90, 0.12);

  --poga-home-radius-xl: 32px;
  --poga-home-radius-lg: 24px;
  --poga-home-radius-md: 18px;
  --poga-home-radius-sm: 12px;

  --poga-home-transition: 0.24s ease;
}

/* =========================================================
   02. CONTEXTO GENERAL
========================================================= */

body.home .site,
body.page-template-front-page .site,
body.home .content-wrap,
body.home .site-content,
body.home .content-area,
body.home .entry-content-wrap,
body.home .site-main,
body.home .site-main.poga-home,
body.page-template-front-page .content-wrap,
body.page-template-front-page .site-content,
body.page-template-front-page .content-area,
body.page-template-front-page .entry-content-wrap,
body.page-template-front-page .site-main {
  background: transparent !important;
}

.poga-home,
.poga-home-v4 {
  position: relative;
  overflow: clip;
  color: var(--poga-home-text);
  background: transparent !important;
}

.poga-home-v4::before,
.poga-home-v4::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(88px);
}

.poga-home-v4::before {
  top: 0;
  left: -180px;
  width: 420px;
  height: 820px;
  background: rgba(194, 161, 255, 0.22);
}

.poga-home-v4::after {
  top: 10%;
  right: -180px;
  width: 460px;
  height: 840px;
  background: rgba(203, 241, 255, 0.5);
}

.poga-home__shell,
.poga-home-v4__shell {
  position: relative;
  z-index: 1;
  width: var(--poga-home-shell);
  margin: 0 auto;
}

.poga-home-v4 img {
  display: block;
  max-width: 100%;
  height: auto;
}

.poga-home-v4 a,
.poga-home-v4 a:hover {
  text-decoration: none;
}

.poga-home__hero,
.poga-home__system,
.poga-home__selection,
.poga-home__creators,
.poga-home__routes,
.poga-home__closing,
.poga-home-v4__hero {
  position: relative;
  padding: var(--poga-home-section-space) 0;
}

.poga-home__hero,
.poga-home-v4__hero {
  padding-top: 34px;
  padding-bottom: 48px;
  background: transparent;
  --poga-scene-progress: 0;
}

.poga-home__hero .poga-home__shell,
.poga-home-v4__hero .poga-home-v4__shell {
  background: transparent;
}

/* =========================================================
   03. KICKER / CABECERAS
========================================================= */

.poga-home__kicker,
.poga-home-v4__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(244, 203, 65, 0.18);
  color: #a88110;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.poga-home__section-head,
.poga-home-v4__section-head {
  max-width: 860px;
  margin-bottom: 38px;
}

.poga-home__section-head--compact {
  max-width: 720px;
}

.poga-home__section-title,
.poga-home-v4__section-title {
  margin: 18px 0 16px;
  color: var(--poga-home-heading);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.poga-home__section-text,
.poga-home-v4__section-text {
  margin: 0;
  max-width: 760px;
  color: var(--poga-home-text-soft);
  font-size: 1.04rem;
  line-height: 1.76;
}

/* =========================================================
   04. BOTONES
========================================================= */

.poga-home__btn,
.poga-home-v4__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform var(--poga-home-transition),
    box-shadow var(--poga-home-transition),
    background var(--poga-home-transition),
    border-color var(--poga-home-transition),
    color var(--poga-home-transition);
}

.poga-home__btn:hover,
.poga-home-v4__btn:hover {
  transform: translateY(-2px);
}

.poga-home__btn--primary,
.poga-home-v4__btn--primary {
  background: var(--poga-home-yellow);
  color: #2d232f;
  box-shadow: 0 10px 22px rgba(244, 203, 65, 0.24);
}

.poga-home__btn--primary:hover,
.poga-home-v4__btn--primary:hover {
  color: #2d232f;
  background: #f7d458;
}

.poga-home__btn--ghost,
.poga-home-v4__btn--ghost {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(123, 78, 255, 0.12);
  color: #5d3ef0;
  box-shadow: var(--poga-home-shadow-soft);
}

.poga-home__btn--ghost:hover,
.poga-home-v4__btn--ghost:hover {
  color: #5d3ef0;
  border-color: rgba(123, 78, 255, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

/* =========================================================
   05. HERO
========================================================= */

.poga-home__hero-layout,
.poga-home-v4__hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 150px);
  background: transparent;
}

.poga-home__hero-copy,
.poga-home-v4__hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  background: transparent;
}

.poga-home__title,
.poga-home-v4__title {
  margin: 18px 0 20px;
  color: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  background: transparent;
}

.poga-home__title-line,
.poga-home-v4__title .poga-home__title-line {
  display: inline-block;
  transition:
    color var(--poga-home-transition),
    text-shadow var(--poga-home-transition),
    filter var(--poga-home-transition);
}

.poga-home__title-line--muted,
.poga-home-v4__title .poga-home__title-line--muted {
  color: rgba(103, 89, 129, 0.62);
  text-shadow:
    0 0 0.01em rgba(53, 42, 74, 0.08),
    0 6px 14px rgba(109, 92, 137, 0.035);
  filter: none;
  margin-left: 0.12em;
}

.poga-home__title-line--accent,
.poga-home-v4__title .poga-home__title-line--accent {
  --poga-title-x: 50%;
  --poga-title-y: 50%;
  --poga-title-intensity: 0;
  color: transparent;
  background-image:
    radial-gradient(
      circle 168px at var(--poga-title-x) var(--poga-title-y),
      rgba(255, 189, 80, calc(var(--poga-title-intensity) * 0.96)) 0%,
      rgba(255, 189, 80, calc(var(--poga-title-intensity) * 0.88)) 20%,
      rgba(255, 189, 80, calc(var(--poga-title-intensity) * 0.54)) 38%,
      rgba(255, 189, 80, 0) 56%
    ),
    linear-gradient(180deg, rgba(123, 78, 255, 0.96) 0%, rgba(113, 72, 239, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 0.012em rgba(59, 46, 82, 0.16),
    0 -0.012em 0 rgba(255, 255, 255, 0.2),
    0 0.018em 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(123, 78, 255, 0.08);
  will-change: background-position, filter;
  transition:
    text-shadow .32s ease,
    filter .24s ease,
    opacity .24s ease;
}

.poga-home__title-accent-row,
.poga-home-v4__title .poga-home__title-accent-row {
  display: block;
  padding-inline: 0.08em 0.08em;
}

.poga-home__title-accent-row--one,
.poga-home-v4__title .poga-home__title-accent-row--one {
  margin-left: -0.03em;
}

.poga-home__title-accent-row--two,
.poga-home-v4__title .poga-home__title-accent-row--two {
  margin-left: -0.11em;
}

.poga-home__title-line--accent.is-cursor-active,
.poga-home-v4__title .poga-home__title-line--accent.is-cursor-active {
  text-shadow:
    0 0 0.012em rgba(59, 46, 82, 0.18),
    0 -0.013em 0 rgba(255, 255, 255, 0.22),
    0 0.018em 0 rgba(255, 255, 255, 0.14),
    0 10px 24px rgba(123, 78, 255, 0.09);
  filter:
    saturate(1.06)
    brightness(1.02)
    drop-shadow(0 8px 18px rgba(123, 78, 255, 0.1));
}

.poga-home__title:hover .poga-home__title-line--accent:not(.is-cursor-active),
.poga-home-v4__title:hover .poga-home__title-line--accent:not(.is-cursor-active) {
  text-shadow: 0 10px 24px rgba(123, 78, 255, 0.08);
}

@media (max-width: 900px) {
  .poga-home__title-accent-row--one,
  .poga-home-v4__title .poga-home__title-accent-row--one {
    margin-left: -0.08em;
  }

  .poga-home__title-accent-row--two,
  .poga-home-v4__title .poga-home__title-accent-row--two {
    margin-left: 0.09em;
  }
}

@media (max-width: 640px) {
  .poga-home__title-accent-row--one,
  .poga-home-v4__title .poga-home__title-accent-row--one {
    margin-left: -0.06em;
  }

  .poga-home__title-accent-row--two,
  .poga-home-v4__title .poga-home__title-accent-row--two {
    margin-left: 0.06em;
  }
}

.poga-home__lead,
.poga-home-v4__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(47, 39, 53, 0.6);
  font-size: 1.08rem;
  line-height: 1.82;
}

.poga-home__actions,
.poga-home-v4__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.poga-home__signals,
.poga-home-v4__signals {
  position: relative;
  margin: 62px 0 0;
  padding: 4px 0 0;
  min-height: 56px;
  background: transparent;
  isolation: isolate;
}

.poga-home__signals-list,
.poga-home-v4__signals-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 10px;
  width: 100%;
  padding: 0 4px;
}

.poga-home__signal-chip,
.poga-home-v4__signals .poga-home__signal-chip {
  --poga-value-reveal: 0;
  --poga-value-float-x: 0px;
  --poga-value-float-y: 0px;
  --poga-value-delay: 0ms;
  --poga-value-state-delay: 0ms;
  --poga-value-accent: rgba(123, 78, 255, 0.18);
  --poga-value-accent-strong: rgba(123, 78, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 16px 12px;
  border: 1px solid rgba(123, 78, 255, 0.135);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 50% 50%,
      color-mix(in srgb, var(--poga-value-accent) 88%, rgba(255, 255, 255, 1)) 0%,
      color-mix(in srgb, var(--poga-value-accent) 60%, rgba(255, 255, 255, 1)) 21%,
      color-mix(in srgb, var(--poga-value-accent) 24%, rgba(255, 255, 255, 1)) 40%,
      rgba(255, 255, 255, 1) 66%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 255, 255, 0.96));
  backdrop-filter: blur(14px);
  box-shadow:
    0 10px 22px rgba(67, 43, 94, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 0 0 1px color-mix(in srgb, var(--poga-value-accent) 30%, rgba(255, 255, 255, 0));
  color: rgba(47, 39, 53, 0.74);
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  width: auto;
  position: relative;
  opacity: calc(var(--poga-value-reveal) * 0.98);
  transform:
    translate3d(
      calc((1 - var(--poga-value-reveal)) * -20px + var(--poga-value-float-x)),
      calc((1 - var(--poga-value-reveal)) * 34px + var(--poga-value-float-y)),
      0
    )
    scale(calc(0.82 + (var(--poga-value-reveal) * 0.18)));
  filter:
    blur(calc((1 - var(--poga-value-reveal)) * 5px))
    saturate(calc(0.88 + (var(--poga-value-reveal) * 0.22)));
  transition:
    opacity .52s ease var(--poga-value-state-delay),
    transform .82s cubic-bezier(.18, .88, .22, 1) var(--poga-value-state-delay),
    border-color .34s ease,
    box-shadow .42s ease,
    background .52s ease,
    filter .64s ease var(--poga-value-state-delay);
}

.poga-home__signal-chip span,
.poga-home-v4__signals .poga-home__signal-chip span {
  display: inline-block;
  max-width: none;
}

.poga-home__signal-chip--1,
.poga-home-v4__signals .poga-home__signal-chip--1 {
  --poga-value-accent: rgba(129, 88, 244, 0.24);
  --poga-value-accent-strong: rgba(123, 78, 255, 0.42);
}

.poga-home__signal-chip--2,
.poga-home-v4__signals .poga-home__signal-chip--2 {
  --poga-value-accent: rgba(232, 196, 88, 0.24);
  --poga-value-accent-strong: rgba(186, 142, 31, 0.42);
}

.poga-home__signal-chip--3,
.poga-home-v4__signals .poga-home__signal-chip--3 {
  --poga-value-accent: rgba(96, 180, 196, 0.24);
  --poga-value-accent-strong: rgba(84, 148, 162, 0.42);
}

.poga-home__signal-chip--4,
.poga-home-v4__signals .poga-home__signal-chip--4 {
  --poga-value-accent: rgba(178, 114, 194, 0.24);
  --poga-value-accent-strong: rgba(129, 74, 161, 0.42);
}

.poga-home__signal-chip--5,
.poga-home-v4__signals .poga-home__signal-chip--5 {
  --poga-value-accent: rgba(228, 142, 151, 0.25);
  --poga-value-accent-strong: rgba(182, 112, 68, 0.40);
}

.poga-home__signal-chip--6,
.poga-home-v4__signals .poga-home__signal-chip--6 {
  --poga-value-accent: rgba(117, 166, 118, 0.24);
  --poga-value-accent-strong: rgba(82, 129, 86, 0.4);
}

.poga-home__signal-chip--7,
.poga-home-v4__signals .poga-home__signal-chip--7 {
  --poga-value-accent: rgba(126, 135, 198, 0.24);
  --poga-value-accent-strong: rgba(96, 102, 154, 0.42);
}

body.home [data-poga-scene-state="transitioning"] .poga-home__signal-chip,
body.home [data-poga-scene-state="post"] .poga-home__signal-chip,
body.page-template-front-page [data-poga-scene-state="transitioning"] .poga-home__signal-chip,
body.page-template-front-page [data-poga-scene-state="post"] .poga-home__signal-chip {
  border-color: rgba(123, 78, 255, 0.15);
}

body.home [data-poga-values-state="entering"] .poga-home__signal-chip,
body.home [data-poga-values-state="post"] .poga-home__signal-chip,
body.page-template-front-page [data-poga-values-state="entering"] .poga-home__signal-chip,
body.page-template-front-page [data-poga-values-state="post"] .poga-home__signal-chip {
  --poga-value-reveal: 1;
  --poga-value-state-delay: var(--poga-value-delay);
}

body.home [data-poga-scene-state="post"] .poga-home__signal-chip,
body.page-template-front-page [data-poga-scene-state="post"] .poga-home__signal-chip {
  background:
    radial-gradient(
      circle at 50% 50%,
      color-mix(in srgb, var(--poga-value-accent) 94%, rgba(255, 255, 255, 1)) 0%,
      color-mix(in srgb, var(--poga-value-accent) 64%, rgba(255, 255, 255, 1)) 23%,
      color-mix(in srgb, var(--poga-value-accent) 26%, rgba(255, 255, 255, 1)) 42%,
      rgba(255, 255, 255, 1) 68%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.97));
  box-shadow:
    0 14px 30px rgba(67, 43, 94, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px color-mix(in srgb, var(--poga-value-accent) 34%, rgba(255, 255, 255, 0));
}

/* =========================================================
   06. HERO · BLOQUE DESCUBRIR
========================================================= */

.poga-home__hero-discover,
.poga-home-v4__hero-discover {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.poga-home__hero-discover-box,
.poga-home-v4__hero-discover-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 22px 18px;
  background: transparent;
  border: 0;
  border-radius: 28px;
  box-shadow:
    0 5px 5px rgba(76, 58, 95, 0.08),
    0 0 5px rgba(123, 78, 255, 0.12);
  overflow: visible;
}

.poga-home__hero-discover-box::before,
.poga-home-v4__hero-discover-box::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 28% 58%, rgba(123, 78, 255, 0.18), transparent 48%),
    radial-gradient(circle at 76% 18%, rgba(244, 203, 65, 0.12), transparent 34%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.poga-home__hero-discover-box::after,
.poga-home-v4__hero-discover-box::after {
  content: "";
  position: absolute;
  inset: 10px 8px auto;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.24), transparent 68%);
  opacity: 0.62;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.poga-home__hero-discover-kicker,
.poga-home__hero-discover-title,
.poga-home__hero-discover-text,
.poga-home__discover-btn,
.poga-home-v4__hero-discover-kicker,
.poga-home-v4__hero-discover-title,
.poga-home-v4__hero-discover-text,
.poga-home-v4__discover-btn {
  position: relative;
  z-index: 1;
}

.poga-home__hero-discover-kicker,
.poga-home-v4__hero-discover-kicker {
  margin-bottom: 14px;
  color: rgba(123, 78, 255, 0.7);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poga-home__hero-discover-title,
.poga-home-v4__hero-discover-title {
  margin: 0 0 14px;
  color: var(--poga-home-heading);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.poga-home__hero-discover-text,
.poga-home-v4__hero-discover-text {
  margin: 0 0 22px;
  color: rgba(47, 39, 53, 0.62);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 360px;
}

.poga-home__hero-discover-text br,
.poga-home-v4__hero-discover-text br {
  display: block;
  content: "";
}

.poga-home__discover-btn,
.poga-home-v4__discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b4eff 0%, #9558ff 100%);
  color: #fff;
  box-shadow:
    0 18px 34px rgba(123, 78, 255, 0.26),
    0 0 24px rgba(123, 78, 255, 0.18);
  transition:
    transform var(--poga-home-transition),
    box-shadow var(--poga-home-transition),
    background var(--poga-home-transition),
    filter var(--poga-home-transition),
    opacity .34s ease;
  opacity: max(0.02, calc(1 - (var(--poga-scene-progress) * 1.42)));
  transform: scale(calc(1 - (var(--poga-scene-progress) * 0.12)));
  filter:
    saturate(calc(1 - (var(--poga-scene-progress) * 0.14)))
    blur(calc(var(--poga-scene-progress) * 1.8px));
}

.poga-home__discover-btn:hover,
.poga-home-v4__discover-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #8a54ff 0%, #f4cb41 150%);
  box-shadow:
    0 22px 40px rgba(123, 78, 255, 0.3),
    0 0 28px rgba(244, 203, 65, 0.16);
  filter: saturate(1.04);
}

.poga-home__discover-btn-icon,
.poga-home-v4__discover-btn-icon,
.poga-home__discover-ghost-icon,
.poga-home-v4__discover-ghost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.98rem;
  line-height: 1;
}

.poga-home__discover-btn-text,
.poga-home-v4__discover-btn-text {
  font-size: 0.96rem;
  line-height: 1;
  font-weight: 700;
}

body.home [data-poga-scene-state="transitioning"] .poga-home__discover-btn,
body.home [data-poga-scene-state="post"] .poga-home__discover-btn,
body.page-template-front-page [data-poga-scene-state="transitioning"] .poga-home__discover-btn,
body.page-template-front-page [data-poga-scene-state="post"] .poga-home__discover-btn {
  pointer-events: none;
}

body.home [data-poga-discover-returned="true"] .poga-home__discover-btn,
body.page-template-front-page [data-poga-discover-returned="true"] .poga-home__discover-btn {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  pointer-events: auto !important;
}

/* =========================================================
   06.B HERO · TRANSICIÓN HACIA FAB
========================================================= */

.poga-home__discover-ghost,
.poga-home-v4__discover-ghost {
  position: fixed;
  top: 0;
  left: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #9d74ff 0%, #7b4eff 56%, #6232f1 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 38px rgba(123, 78, 255, 0.34),
    0 0 26px rgba(123, 78, 255, 0.22);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.82);
  pointer-events: none;
  z-index: 9998;
  transition:
    opacity .16s ease,
    transform .16s ease,
    background .16s ease,
    box-shadow .16s ease;
}

.poga-home__discover-ghost.is-active,
.poga-home-v4__discover-ghost.is-active {
  opacity: 1;
}

body.home [data-poga-scene-state="pre"] .poga-home__discover-ghost,
body.page-template-front-page [data-poga-scene-state="pre"] .poga-home__discover-ghost {
  opacity: 0;
}

/* =========================================================
   08. SELECTION
========================================================= */

.poga-home__selection {
  padding-top: 40px;
  padding-bottom: 84px;
}

.poga-home__selection-scene {
  position: relative;
  min-height: clamp(404px, 47vw, 560px);
  margin-top: 14px;
  isolation: isolate;
  --poga-selection-band-angle: 15deg;
  --poga-selection-band-air: clamp(10px, 1.8vw, 18px);
  --poga-selection-shift-x: 0px;
  --poga-selection-shift-y: 0px;
  --poga-selection-progress: 0;
  overflow: visible;
}

.poga-home__selection-line {
  position: absolute;
  left: 50%;
  width: 200vw;
  height: 1.5px;
  /* Lineas diagonales de referencia conservadas intencionalmente en CSS; permanecen en layout pero ocultas en frontend para futura reactivacion si hiciera falta. */
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
}

.poga-home__selection-line--upper {
  top: -7%;
  transform: translateX(-30%) rotate(15deg);
}

.poga-home__selection-line--lower {
  top: 45%;
  transform: translateX(-30%) rotate(15deg);
}

.poga-home__selection-heading,
.poga-home__selection-intro,
.poga-home__selection-note {
  position: absolute;
  margin: 0;
  z-index: 2;
}

.poga-home__selection-heading {
  top: 20px;
  left: 41%;
  width: max-content;
  max-width: none;
  line-height: 1.2;
  letter-spacing: -0.04em;
  transform-origin: left top;
}

.poga-home__selection-heading-line {
  display: block;
}

.poga-home__selection-heading-line--accent {
  display: block;
  margin-top: -0.08em;
  margin-left: 0.3em;
  color: transparent;
  background-image:
    linear-gradient(180deg, rgba(123, 78, 255, 0.94) 0%, rgba(98, 50, 241, 0.92) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 22px rgba(123, 78, 255, 0.08);
}

.poga-home__selection-carousel {
  position: absolute;
  top: calc(26% + 72px);
  left: 50%;
  width: 108dvw;
  max-width: 108dvw;
  height: 54%;
  margin-left: -54dvw;
  z-index: 2;
  pointer-events: none;
}

.poga-home__selection-carousel-shell {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(var(--poga-selection-band-angle));
  transform-origin: center center;
}

.poga-home__selection-carousel-shell::before {
  content: none;
}

.poga-home__selection-carousel-shell::after {
  content: none;
}

.poga-home__selection-carousel-viewport {
  position: absolute;
  inset: 2px 0 18px;
  overflow: hidden;
  pointer-events: auto;
  cursor: grab;
  outline: none;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  touch-action: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.92) 3%, #000 8%, #000 92%, rgba(0, 0, 0, 0.92) 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.92) 3%, #000 8%, #000 92%, rgba(0, 0, 0, 0.92) 97%, transparent 100%);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.poga-home__selection-carousel-viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(123, 78, 255, 0.18);
}

.poga-home__selection-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.poga-home__selection-carousel-track {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 42vw);
  height: calc(100% + 22vw);
  transform: translate3d(-50%, -50%, 0) rotate(calc(var(--poga-selection-band-angle) * -1));
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.poga-home__selection-carousel[data-poga-selection-static="true"] .poga-home__selection-carousel-viewport {
  cursor: default;
}

.poga-home__selection-carousel[data-poga-selection-static="true"] .poga-home__selection-carousel-track {
  width: calc(100% - 12vw);
  height: calc(100% + 10vw);
}

.poga-home__selection-product {
  --poga-selection-card-x: 0px;
  --poga-selection-card-y: 0px;
  --poga-selection-card-hover-lift: 0px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: clamp(214px, 18vw, 276px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  will-change: transform;
  transition:
    filter .28s ease,
    opacity .28s ease;
  transform:
    translate3d(
      var(--poga-selection-card-x),
      calc(var(--poga-selection-card-y) + var(--poga-selection-card-hover-lift)),
      0
    );
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.poga-home__selection-product:hover,
.poga-home__selection-product:focus-visible {
  --poga-selection-card-hover-lift: -5px;
  filter: saturate(1.03);
}

.poga-home__selection-product-media {
  position: relative;
  display: block;
  aspect-ratio: 5 / 6.4;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.62), rgba(242, 236, 255, 0.4)),
    rgba(248, 244, 251, 0.74);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.poga-home__selection-product-media::after {
  content: "";
  position: absolute;
  inset: auto 8% -10px;
  height: 24px;
  border-radius: 999px;
  background: rgba(63, 45, 87, 0.12);
  filter: blur(10px);
  opacity: 0.46;
}

.poga-home__selection-product img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition:
    transform .42s ease,
    filter .42s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.poga-home__selection-product:hover img,
.poga-home__selection-product:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.02);
}

.poga-home__selection-intro {
  top: -7%;
  left: 23%;
  width: max-content;
  max-width: none;
  color: rgba(47, 39, 53, 0.8);
  font-size: 0.96rem;
  line-height: 1.48;
  transform: rotate(0deg);
  transform-origin: left top;
}

.poga-home__selection-intro-line {
  display: block;
}

.poga-home__selection-intro-line--offset {
  margin-top: 0.12em;
  margin-left: 0.7em;
  color: rgba(47, 39, 53, 0.66);
}

.poga-home__selection-note {
  top: 91%;
  left: 8%;
  width: 420px;
  color: rgba(47, 39, 53, 0.64);
  font-size: 1.12rem;
  line-height: 1.52;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.poga-home__selection-note-line {
  display: block;
}

.poga-home__selection-note-line--echo {
  margin-top: 0.08em;
  color: rgba(47, 39, 53, 0.72);
}

.poga-home__selection-note-word {
  color: rgba(47, 39, 53, 0.62);
  transition:
    color .54s ease,
    text-shadow .54s ease,
    opacity .54s ease;
}

.poga-home__selection-note-word.is-active {
  color: #ff3392;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 51, 146, 0.1);
  opacity: 1;
  animation: poga-selection-word-double-pulse 1.2s ease-out;
}

@keyframes poga-selection-word-double-pulse {
  0%,
  100% {
    color: rgba(47, 39, 53, 0.62);
    text-shadow: none;
  }

  16% {
    color: #ff3392;
    font-weight: 700;
    text-shadow: 0 0 7px rgba(255, 51, 146, 0.08);
  }

  32% {
    color: rgba(47, 39, 53, 0.68);
    font-weight: 400;
    text-shadow: none;
  }

  52% {
    color: #ff3392;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 51, 146, 0.1);
  }

  70% {
    color: rgba(47, 39, 53, 0.7);
    font-weight: 400;
    text-shadow: none;
  }

  85% {
    color: rgba(47, 39, 53, 0.62);
    font-weight: 400;
    text-shadow: none;
  }
}

/* =========================================================
   09. CREATORS
========================================================= */

.poga-home__creators {
  padding-top: 104px;
  padding-bottom: 84px;
  overflow: clip;
}

.poga-home__creators-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.poga-home__creators-intro {
  position: relative;
  padding-top: 0;
  justify-self: end;
  max-width: 30rem;
}

.poga-home__creators-head .poga-home__section-title {
  margin: 0 0 1.35rem;
  max-width: 8.4ch;
  font-size: clamp(2.7rem, 4.3vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.poga-home__creators-head .poga-home__section-text {
  max-width: 30rem;
  color: rgba(47, 39, 53, 0.7);
  font-size: 0.99rem;
  line-height: 1.68;
}

.poga-home__creators .poga-home__creators-intro:focus {
  outline: none;
}

.poga-home__creators .poga-home__creators-intro:focus-visible .poga-home__creators-head {
  outline: 1px solid rgba(123, 78, 255, 0.22);
  outline-offset: 12px;
  border-radius: 18px;
}

.poga-home__creators .poga-home__creators-ink {
  --poga-creators-ink-base: #3c2b43;
  --poga-creators-ink-peak: #523647;
  display: inline-block;
  color: var(--poga-creators-ink-base);
  cursor: default;
  text-decoration: none;
  transform: scale(1);
  transform-origin: center bottom;
  transition:
    color .48s ease-in-out,
    transform .48s ease-in-out;
  will-change: color, transform;
}

.poga-home__creators .poga-home__creators-read-emphasis {
  font-weight: 650;
}

.poga-home__creators .poga-home__creators-ink::before,
.poga-home__creators .poga-home__creators-ink::after {
  content: none;
  display: none;
}

.poga-home__creators .poga-home__creators-ink--title {
  --poga-creators-ink-base: #1f1724;
  --poga-creators-ink-peak: #1f1724;
  --poga-creators-ink-glow-peak:
    0 0 0.18em rgba(149, 5, 227, 0.33),
    0 0 0.42em rgba(149, 5, 227, 0.16),
    0 0 0.82em rgba(149, 5, 227, 0.09);
  --poga-creators-ink-scale: 1.04;
  text-shadow: none;
  transition:
    color .48s ease-in-out,
    text-shadow .48s ease-in-out,
    transform .48s ease-in-out;
  will-change: color, text-shadow, transform;
}

.poga-home__creators .poga-home__creators-ink--body {
  --poga-creators-ink-base: #4a3a4f;
  --poga-creators-ink-peak: #55414f;
  transform: none;
  transition: color .48s ease-in-out;
  will-change: color;
}

@supports (color: color-mix(in srgb, #000 50%, #fff 50%)) {
  .poga-home__creators .poga-home__creators-ink {
    --poga-creators-ink-base: color-mix(in srgb, currentColor 94%, #51364f 6%);
    --poga-creators-ink-peak: color-mix(in srgb, currentColor 76%, #5b334b 24%);
  }

  .poga-home__creators .poga-home__creators-ink--title {
    --poga-creators-ink-base: color-mix(in srgb, #1f1724 98%, #9505e3 2%);
    --poga-creators-ink-peak: color-mix(in srgb, #1f1724 98%, #9505e3 2%);
  }

  .poga-home__creators .poga-home__creators-ink--body {
    --poga-creators-ink-base: color-mix(in srgb, currentColor 97%, #51364f 3%);
    --poga-creators-ink-peak: color-mix(in srgb, currentColor 88%, #5b334b 12%);
  }
}

.poga-home__creators .poga-home__creators-intro.is-ink-playing .poga-home__creators-ink--title {
  animation: poga-home-creators-title-ink-breathe 3s ease-in-out both;
}

.poga-home__creators .poga-home__creators-intro.is-ink-playing .poga-home__creators-ink--body {
  animation: poga-home-creators-body-ink-breathe 3s ease-in-out both;
}

.poga-home__creators .poga-home__section-title .poga-home__creators-ink:nth-of-type(1) {
  animation-delay: 0s;
}

.poga-home__creators .poga-home__section-title .poga-home__creators-ink:nth-of-type(2) {
  animation-delay: .12s;
}

.poga-home__creators .poga-home__section-text .poga-home__creators-ink:nth-of-type(1) {
  animation-delay: .24s;
}

.poga-home__creators .poga-home__section-text .poga-home__creators-ink:nth-of-type(2) {
  animation-delay: .36s;
}

@keyframes poga-home-creators-title-ink-breathe {
  0%,
  100% {
    color: var(--poga-creators-ink-base);
    text-shadow: none;
    transform: scale(1);
  }

  46% {
    color: var(--poga-creators-ink-peak);
    text-shadow: var(--poga-creators-ink-glow-peak);
    transform: scale(var(--poga-creators-ink-scale));
  }
}

@keyframes poga-home-creators-body-ink-breathe {
  0%,
  100% {
    color: var(--poga-creators-ink-base);
  }

  46% {
    color: var(--poga-creators-ink-peak);
  }
}

.poga-home__creators-editorial {
  position: relative;
  min-width: 0;
  width: min(100%, 620px);
  justify-self: start;
}

.poga-home__creators-book {
  position: relative;
  isolation: isolate;
  min-height: clamp(350px, 38vw, 456px);
  background: transparent;
  border-radius: 20px;
  box-shadow:
    0 18px 34px rgba(58, 36, 82, 0.075),
    0 2px 8px rgba(58, 36, 82, 0.035),
    0 0 0 1px rgba(75, 50, 86, 0.045);
  transform: rotate(-1.65deg);
  transition: transform .32s ease;
  --poga-creator-enter-x: 3px;
  --poga-creator-leave-x: -3px;
  --poga-creator-media-enter-x: 0px;
  --poga-creator-media-leave-x: 0px;
  --poga-creator-spread-leave-x: 0px;
  --poga-creator-enter-scale: 1.006;
  --poga-creator-leave-scale: 0.992;
}

.poga-home__creators-editorial:hover .poga-home__creators-book,
.poga-home__creators-editorial:focus-within .poga-home__creators-book {
  transform: rotate(-1.05deg) translateY(-1px);
}

.poga-home__creators-book.is-backward {
  --poga-creator-enter-x: -3px;
  --poga-creator-leave-x: 3px;
  --poga-creator-media-enter-x: 0px;
  --poga-creator-media-leave-x: 0px;
  --poga-creator-spread-leave-x: 0px;
}

.poga-home__creators-book::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-4%, -1%, 0);
  background:
    linear-gradient(116deg, transparent 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 252, 245, 0.16) 45%, rgba(255, 255, 255, 0.28) 51%, rgba(226, 214, 255, 0.07) 57%, transparent 69%),
    linear-gradient(90deg, transparent 0%, transparent 47%, rgba(74, 48, 90, 0.028) 50%, rgba(255, 255, 255, 0.1) 53%, transparent 61%);
  transition:
    opacity .74s cubic-bezier(.22, .61, .36, 1),
    transform .74s cubic-bezier(.22, .61, .36, 1);
}

.poga-home__creators-book.is-changing::after {
  opacity: 0.28;
  transform: translate3d(4%, 1%, 0);
}

.poga-home__creators-book-glow {
  position: absolute;
  inset: auto 15% -12px 15%;
  height: 30px;
  border-radius: 999px;
  background: rgba(70, 44, 98, 0.048);
  filter: blur(18px);
  z-index: -2;
  pointer-events: none;
}

.poga-home__creators-book-spine {
  display: block;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 47%;
  width: 26px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(58, 36, 82, 0.035) 38%,
    rgba(58, 36, 82, 0.055) 48%,
    rgba(255, 255, 255, 0.14) 56%,
    transparent 100%
  );
  filter: blur(7px);
  opacity: 0.72;
  z-index: 4;
  pointer-events: none;
}

.poga-home__creator-spread {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(var(--poga-creator-enter-scale));
  transition:
    opacity .74s cubic-bezier(.22, .61, .36, 1),
    transform .74s cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
  z-index: 1;
}

.poga-home__creator-spread.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  z-index: 3;
}

.poga-home__creator-spread.is-prev,
.poga-home__creator-spread.is-next {
  opacity: 0.04;
  pointer-events: none;
  z-index: 2;
}

.poga-home__creator-spread.is-prev {
  transform: translate3d(-3px, -2px, 0) scale(0.992);
}

.poga-home__creator-spread.is-next {
  transform: translate3d(3px, 2px, 0) scale(0.994);
}

.poga-home__creator-spread.is-leaving {
  opacity: 0;
  transform: translate3d(var(--poga-creator-spread-leave-x), 0, 0) scale(var(--poga-creator-leave-scale));
  z-index: 2;
}

.poga-home__creator-spread.is-entering {
  z-index: 3;
}

.poga-home__creator-spread-link {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  height: 100%;
  color: inherit;
  gap: 0;
}

.poga-home__creator-page {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}

.poga-home__creator-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.poga-home__creator-page::after {
  content: none;
}

.poga-home__creator-page--text::before {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(251, 245, 238, 0.99));
  box-shadow:
    0 12px 24px rgba(58, 36, 82, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  border-radius: 20px 4px 4px 20px;
}

.poga-home__creator-page--media::before {
  background: linear-gradient(180deg, rgba(238, 233, 245, 0.97), rgba(232, 227, 241, 0.97));
  box-shadow:
    0 12px 24px rgba(58, 36, 82, 0.045);
  border-radius: 4px 20px 20px 4px;
}

.poga-home__creator-page-inner,
.poga-home__creator-media {
  position: relative;
  z-index: 1;
  height: 100%;
}

.poga-home__creator-page--text {
  display: flex;
  align-items: stretch;
  padding: clamp(24px, 3.2vw, 36px);
}

.poga-home__creator-page-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(13px, 1.6vw, 18px);
}

.poga-home__creator-overline {
  color: rgba(92, 71, 112, 0.62);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poga-home__creator-name {
  margin: 0;
  color: #2f203a;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 3.9vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.poga-home__creator-phrase {
  position: relative;
  max-width: min(25ch, 100%);
  margin: clamp(4px, 0.8vw, 8px) 0 0;
  padding-top: clamp(12px, 1.4vw, 16px);
  color: rgba(47, 39, 53, 0.8);
  font-size: clamp(0.96rem, 1.18vw, 1.08rem);
  line-height: 1.5;
  text-wrap: balance;
}

.poga-home__creator-phrase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: rgba(92, 71, 112, 0.24);
}

.poga-home__creator-page--media {
  padding: 0;
}

.poga-home__creator-media {
  width: 100%;
  overflow: hidden;
  border-radius: 4px 20px 20px 4px;
  background: transparent;
}

.poga-home__creator-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform .5s ease,
    filter .5s ease;
}

.poga-home__creator-spread.is-entering .poga-home__creator-page-inner {
  animation: poga-home-creator-text-enter .74s cubic-bezier(.22, .61, .36, 1) both;
}

.poga-home__creator-spread.is-leaving .poga-home__creator-page-inner {
  animation: poga-home-creator-text-leave .74s cubic-bezier(.22, .61, .36, 1) both;
}

.poga-home__creator-spread.is-entering .poga-home__creator-media {
  animation: poga-home-creator-media-enter .74s cubic-bezier(.22, .61, .36, 1) both;
}

.poga-home__creator-spread.is-leaving .poga-home__creator-media {
  animation: poga-home-creator-media-leave .74s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes poga-home-creator-text-enter {
  0% {
    opacity: 0;
    transform: translate3d(var(--poga-creator-enter-x), 3px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes poga-home-creator-text-leave {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--poga-creator-leave-x), -3px, 0);
  }
}

@keyframes poga-home-creator-media-enter {
  0% {
    opacity: 0;
    transform: translate3d(var(--poga-creator-media-enter-x), 0, 0) scale(var(--poga-creator-enter-scale));
    filter: saturate(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: saturate(1);
  }
}

@keyframes poga-home-creator-media-leave {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--poga-creator-media-leave-x), 0, 0) scale(var(--poga-creator-leave-scale));
  }
}

.poga-home__creator-spread.is-active .poga-home__creator-spread-link:hover .poga-home__creator-media img,
.poga-home__creator-spread.is-active .poga-home__creator-spread-link:focus-visible .poga-home__creator-media img {
  transform: scale(1.02);
  filter: saturate(1.03);
}

.poga-home__creator-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: rgba(47, 39, 53, 0.54);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

/* =========================================================
   10. ROUTES
========================================================= */

.poga-home__route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.poga-home__routes-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.poga-home__routes-head .poga-home__kicker {
  margin: 0;
}

.poga-home__routes-head .poga-home__section-title {
  max-width: 720px;
}

.poga-home__routes-head .poga-home__section-text {
  max-width: 690px;
}

.poga-home__route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 316px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(123, 78, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    0 16px 34px rgba(60, 32, 90, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  color: var(--poga-home-text);
  transition:
    transform var(--poga-home-transition),
    box-shadow var(--poga-home-transition),
    border-color var(--poga-home-transition),
    background var(--poga-home-transition);
}

.poga-home__route-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(244, 203, 65, 0.72);
  box-shadow: 0 0 0 6px rgba(244, 203, 65, 0.08);
  transition:
    transform var(--poga-home-transition),
    background var(--poga-home-transition),
    box-shadow var(--poga-home-transition);
}

.poga-home__route-card:hover,
.poga-home__route-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(123, 78, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    0 22px 40px rgba(60, 32, 90, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.poga-home__route-card:hover::after,
.poga-home__route-card:focus-visible::after {
  transform: translate3d(-3px, -3px, 0);
  background: rgba(123, 78, 255, 0.52);
  box-shadow: 0 0 0 7px rgba(123, 78, 255, 0.07);
}

.poga-home__route-card:focus-visible {
  outline: 2px solid rgba(123, 78, 255, 0.42);
  outline-offset: 4px;
}

.poga-home__route-card--creator {
  border-color: rgba(123, 78, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 243, 255, 0.58)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    0 18px 36px rgba(90, 48, 138, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.poga-home__route-card--creator::after {
  background: rgba(123, 78, 255, 0.66);
  box-shadow: 0 0 0 7px rgba(123, 78, 255, 0.08);
}

.poga-home__route-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.poga-home__route-number {
  flex: 0 0 auto;
  color: rgba(47, 39, 53, 0.44);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.poga-home__route-mark {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 78, 255, 0.24), rgba(123, 78, 255, 0));
  transform-origin: left center;
  transition:
    transform var(--poga-home-transition),
    background var(--poga-home-transition);
}

.poga-home__route-card:hover .poga-home__route-mark,
.poga-home__route-card:focus-visible .poga-home__route-mark {
  transform: scaleX(1.08);
  background: linear-gradient(90deg, rgba(244, 203, 65, 0.78), rgba(123, 78, 255, 0));
}

.poga-home__route-card--creator .poga-home__route-mark {
  background: linear-gradient(90deg, rgba(123, 78, 255, 0.48), rgba(123, 78, 255, 0));
}

.poga-home__route-label {
  align-self: flex-start;
  margin: -16px 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(123, 78, 255, 0.16);
  border-radius: 999px;
  background: rgba(123, 78, 255, 0.07);
  color: rgba(94, 58, 190, 0.78);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.poga-home__route-body {
  display: grid;
  gap: 14px;
}

.poga-home__route-title {
  margin: 0;
  color: #32213d;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.poga-home__route-text {
  display: block;
  margin: 0;
  color: var(--poga-home-text-soft);
  font-size: 0.97rem;
  line-height: 1.72;
}

.poga-home__route-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: rgba(83, 55, 171, 0.88);
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.poga-home__route-cta span {
  transform: translateY(-1px);
  transition: transform var(--poga-home-transition);
}

.poga-home__route-card:hover .poga-home__route-cta span,
.poga-home__route-card:focus-visible .poga-home__route-cta span {
  transform: translate3d(4px, -1px, 0);
}

.poga-home__routes-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(123, 78, 255, 0.09);
  color: var(--poga-home-text-faint);
  font-size: 0.9rem;
  line-height: 1.45;
}

.poga-home__routes-context-text {
  margin-right: 2px;
}

.poga-home__routes-context-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(47, 39, 53, 0.68);
  font-weight: 700;
}

.poga-home__routes-context-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: rgba(123, 78, 255, 0.22);
  transform: scaleX(0.72);
  transform-origin: left center;
  transition:
    transform var(--poga-home-transition),
    background var(--poga-home-transition);
}

.poga-home__routes-context-link:hover,
.poga-home__routes-context-link:focus-visible {
  color: rgba(83, 55, 171, 0.9);
}

.poga-home__routes-context-link:hover::after,
.poga-home__routes-context-link:focus-visible::after {
  transform: scaleX(1);
  background: rgba(123, 78, 255, 0.46);
}

/* =========================================================
   11. CLOSING
========================================================= */

.poga-home__closing {
  padding-top: 76px;
  padding-bottom: 96px;
}

.poga-home--routes-paused .poga-home__closing {
  padding-top: 40px;
}

.poga-home__closing-text {
  max-width: 840px;
  margin: 0 auto;
  color: rgba(47, 39, 53, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  overflow: visible;
  text-wrap: balance;
}

.poga-home__closing-line {
  display: block;
  overflow: visible;
}

.poga-home__closing .poga-home__closing-emphasis {
  display: inline-block;
  overflow: visible;
  padding-bottom: 0.04em;
  color: rgba(73, 53, 92, 0.82);
  color: color-mix(in srgb, rgba(47, 39, 53, 0.78) 82%, var(--poga-home-purple) 18%);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .poga-home__closing .poga-home__closing-emphasis {
    background-image: linear-gradient(
      100deg,
      currentColor 0%,
      currentColor 41%,
      rgba(123, 78, 255, 0.58) 46%,
      rgba(255, 252, 242, 0.92) 50%,
      rgba(123, 78, 255, 0.5) 54%,
      currentColor 59%,
      currentColor 100%
    );
    background-position: 120% 50%;
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: poga-home-closing-sheen 5s ease-in-out infinite;
  }

  .poga-home__closing .poga-home__closing-emphasis--delayed {
    animation-delay: 2.5s;
  }
}

@keyframes poga-home-closing-sheen {
  0%,
  18% {
    background-position: 120% 50%;
  }

  32%,
  100% {
    background-position: -20% 50%;
  }
}

/* =========================================================
   12. LEGACY DORMANT BLOCKS
   Se mantienen como colchón conservador por si reaparece
   markup antiguo o alguna vista secundaria aún los usa.
========================================================= */

.poga-home-v4__meaning,
.poga-home-v4__principles,
.poga-home-v4__products,
.poga-home-v4__creators,
.poga-home-v4__closing {
  position: relative;
  padding: var(--poga-home-section-space) 0;
}

.poga-home-v4__meaning-grid,
.poga-home-v4__closing-grid {
  display: grid;
  grid-template-columns: 1.38fr 1fr 1fr;
  gap: 18px;
}

.poga-home-v4__info-card {
  padding: 26px;
  border-radius: var(--poga-home-radius-lg);
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(123, 78, 255, 0.08);
  box-shadow: var(--poga-home-shadow-soft);
}

.poga-home-v4__info-card--main {
  grid-row: span 2;
}

.poga-home-v4__info-card h3 {
  margin: 0 0 12px;
  color: #32213d;
  font-size: 1.22rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.poga-home-v4__info-card p {
  margin: 0;
  color: var(--poga-home-text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.poga-home-v4__info-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.poga-home-v4__info-card li {
  position: relative;
  padding-left: 18px;
  color: var(--poga-home-text-soft);
  font-size: 0.95rem;
  line-height: 1.64;
}

.poga-home-v4__info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--poga-home-yellow);
  transform: translateY(-50%);
}

.poga-home-v4__principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.poga-home-v4__principle {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(123, 78, 255, 0.08);
  box-shadow: var(--poga-home-shadow-soft);
}

.poga-home-v4__principle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(244, 203, 65, 0.16);
  color: #a88110;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.poga-home-v4__principle h3 {
  margin: 0 0 8px;
  color: #32213d;
  font-size: 1rem;
  line-height: 1.18;
}

.poga-home-v4__principle p {
  margin: 0;
  color: var(--poga-home-text-soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.poga-home-v4__voronoi-banner {
  position: relative;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(123, 78, 255, 0.08);
  box-shadow: var(--poga-home-shadow-soft);
}

.poga-home-v4__voronoi-banner--products {
  aspect-ratio: 14 / 5;
  min-height: 360px;
}

.poga-home-v4__voronoi-banner--creators {
  aspect-ratio: 14 / 4.3;
  min-height: 320px;
}

.poga-home-v4__voronoi-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.poga-home-v4__voronoi-lines path,
.poga-home-v4__voronoi-lines polygon {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(123, 78, 255, 0.12);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.poga-home-v4__voronoi-node {
  position: absolute;
  display: block;
  overflow: hidden;
  z-index: 2;
  transition:
    transform var(--poga-home-transition),
    filter var(--poga-home-transition);
}

.poga-home-v4__voronoi-node:hover {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.poga-home-v4__voronoi-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.poga-home-v4__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* =========================================================
   13. RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .poga-home__hero-layout,
  .poga-home-v4__hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .poga-home__hero-discover,
  .poga-home-v4__hero-discover {
    min-height: auto;
    justify-content: flex-start;
  }

  .poga-home__hero-discover-box,
  .poga-home-v4__hero-discover-box {
    max-width: 520px;
  }

  .poga-home__creators-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .poga-home__creators-intro {
    padding-top: 0;
    justify-self: start;
    max-width: 42rem;
  }

  .poga-home__creators-head {
    max-width: 760px;
  }

  .poga-home__creators-head .poga-home__section-title,
  .poga-home__creators-head .poga-home__section-text {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .poga-home__selection-scene {
    min-height: clamp(382px, 52vw, 504px);
    --poga-selection-band-angle: 18deg;
  }

  .poga-home__selection-line {
    width: 100%;
  }

  .poga-home__selection-line--upper {
    top: 13%;
    transform: rotate(18.4deg);
  }

  .poga-home__selection-line--lower {
    top: 66%;
    transform: rotate(18deg);
  }

  .poga-home__selection-heading {
    top: 12%;
    left: 54%;
    width: min(41%, 396px);
    font-size: clamp(2.24rem, 5vw, 3.42rem);
    transform: rotate(4.8deg);
  }

  .poga-home__selection-intro {
    top: 5%;
    left: 17%;
    width: min(24%, 230px);
    font-size: 0.9rem;
    transform: rotate(0deg);
  }

  .poga-home__selection-note {
    top: 82%;
    left: 8%;
    width: min(27%, 250px);
    font-size: 0.94rem;
  }

  .poga-home__selection-carousel {
    top: calc(35% + 48px);
    left: 50%;
    width: 108dvw;
    max-width: 108dvw;
    height: 48%;
    margin-left: -54dvw;
  }

  .poga-home__selection-product {
    width: clamp(186px, 24vw, 232px);
  }

  .poga-home__route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poga-home__route-card--creator {
    grid-column: 1 / -1;
  }

  .poga-home-v4__meaning-grid,
  .poga-home-v4__closing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .poga-home-v4__info-card--main {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .poga-home-v4__principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --poga-home-shell: min(100vw - 28px, 100%);
    --poga-home-section-space: 84px;
  }

  .poga-home__section-title,
  .poga-home-v4__section-title {
    font-size: clamp(2.1rem, 8vw, 3.6rem);
  }

  .poga-home__title,
  .poga-home-v4__title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .poga-home__creators {
    padding-top: 88px;
  }

  .poga-home__creators-head .poga-home__section-title {
    max-width: 11ch;
    font-size: clamp(2.5rem, 7vw, 3.8rem);
  }

  .poga-home__creators-book {
    min-height: clamp(330px, 58vw, 428px);
    transform: none;
  }

  .poga-home__creators-editorial:hover .poga-home__creators-book,
  .poga-home__creators-editorial:focus-within .poga-home__creators-book {
    transform: translateY(-1px);
  }

  .poga-home__creator-name {
    font-size: clamp(2.15rem, 5.6vw, 3.2rem);
  }

  .poga-home__creator-phrase {
    max-width: 22ch;
  }
}

@media (max-width: 720px) {
  .poga-home__route-grid,
  .poga-home-v4__meaning-grid,
  .poga-home-v4__closing-grid,
  .poga-home-v4__principles-grid {
    grid-template-columns: 1fr;
  }

  .poga-home__routes-head {
    margin-bottom: 26px;
  }

  .poga-home__route-card {
    min-height: 0;
  }

  .poga-home__route-card--creator {
    grid-column: auto;
  }

  .poga-home__routes-context {
    align-items: flex-start;
    gap: 12px 16px;
  }

  .poga-home__routes-context-text {
    flex-basis: 100%;
  }

  .poga-home__signals,
  .poga-home-v4__signals {
    margin-top: 30px;
    padding-top: 0;
    min-height: 0;
  }

  .poga-home__signals-list,
  .poga-home-v4__signals-list {
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    max-width: 340px;
  }

  .poga-home__signal-chip,
  .poga-home-v4__signals .poga-home__signal-chip {
    font-size: 0.8rem;
    line-height: 1.1;
    padding: 8px 12px 9px;
  }

  .poga-home__creators {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .poga-home__creators-intro {
    margin-bottom: 12px;
    padding-bottom: 2px;
  }

  .poga-home__creators-head .poga-home__section-title {
    margin-bottom: 10px;
    max-width: none;
  }

  .poga-home__creators-head .poga-home__section-text {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.64;
  }

  .poga-home__creators-book {
    min-height: auto;
    transform: none;
  }

  .poga-home__creators-book-spine {
    display: none;
  }

  .poga-home__creator-spread {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .poga-home__creator-spread.is-active {
    display: block;
  }

  .poga-home__creator-spread.is-prev,
  .poga-home__creator-spread.is-next {
    opacity: 0;
    display: none;
    transform: none;
  }

  .poga-home__creator-spread-link {
    grid-template-columns: 1fr;
  }

  .poga-home__creator-page {
    min-height: 0;
  }

  .poga-home__creator-page--text {
    min-height: 184px;
    padding: 22px 20px 34px;
    padding-bottom: 34px;
  }

  .poga-home__creator-page--text::before {
    border-radius: 18px 18px 4px 4px;
  }

  .poga-home__creator-page--media {
    min-height: 220px;
    padding-top: 18px;
  }

  .poga-home__creator-page--media::before {
    border-radius: 4px 4px 20px 20px;
  }

  .poga-home__creator-media {
    min-height: 220px;
    border-radius: 16px 16px 20px 20px;
  }

  .poga-home__selection {
    padding-top: 26px;
    padding-bottom: 74px;
  }

  .poga-home__selection-scene {
    min-height: 470px;
    --poga-selection-band-angle: 14deg;
  }

  .poga-home__selection-line {
    display: none;
  }

  .poga-home__selection-intro {
    top: 2%;
    left: 8%;
    width: min(31%, 170px);
    font-size: 0.8rem;
    line-height: 1.42;
    transform: none;
  }

  .poga-home__selection-intro-line--offset {
    margin-left: 0.42em;
  }

  .poga-home__selection-heading {
    top: 14%;
    left: 48%;
    width: min(46%, 260px);
    font-size: clamp(2rem, 7.4vw, 2.9rem);
    line-height: 0.95;
    transform: rotate(2.5deg);
  }

  .poga-home__selection-heading-line--accent {
    margin-left: 0.14em;
  }

  .poga-home__selection-carousel {
    top: calc(34% + 20px);
    left: 50%;
    width: 110dvw;
    max-width: 110dvw;
    height: 220px;
    margin-left: -55dvw;
  }

  .poga-home__selection-carousel-shell {
    padding: 0;
    transform: rotate(var(--poga-selection-band-angle));
  }

  .poga-home__selection-carousel-shell::before {
    content: "";
    position: absolute;
    inset: 14px -4vw 18px;
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(240, 236, 248, 0.62)),
      rgba(255, 255, 255, 0.32);
    box-shadow:
      0 14px 30px rgba(60, 32, 90, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      inset 0 0 0 1px rgba(123, 78, 255, 0.08);
    pointer-events: none;
  }

  .poga-home__selection-carousel-viewport {
    inset: 12px 0 18px;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    border-radius: 999px;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      rgba(0, 0, 0, 0.94) 4%,
      #000 10%,
      #000 90%,
      rgba(0, 0, 0, 0.94) 96%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      rgba(0, 0, 0, 0.94) 4%,
      #000 10%,
      #000 90%,
      rgba(0, 0, 0, 0.94) 96%,
      transparent 100%
    );
  }

  .poga-home__selection-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .poga-home__selection-carousel-track {
    width: calc(100% + 44vw);
    height: calc(100% + 20vw);
    transform: translate3d(-50%, -50%, 0) rotate(calc(var(--poga-selection-band-angle) * -1));
  }

  .poga-home__selection-product {
    width: clamp(150px, 39vw, 182px);
  }

  .poga-home__selection-product-media {
    border-radius: 16px;
  }

  .poga-home__selection-note {
    padding: 50px;
    top: 87%;
    left: 10%;
    width: min(42%, 220px);
    font-size: 0.88rem;
    line-height: 1.46;
  }

@media (max-width: 640px) {
  .poga-home__hero,
  .poga-home-v4__hero {
    padding-top: 22px;
    padding-bottom: 36px;
  }

  .poga-home__actions,
  .poga-home-v4__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poga-home__btn,
  .poga-home-v4__btn,
  .poga-home__discover-btn,
  .poga-home-v4__discover-btn {
    width: 100%;
    justify-content: center;
  }

  .poga-home__hero-discover-box,
  .poga-home-v4__hero-discover-box {
    padding-right: 0;
  }

  .poga-home__selection-item {
    padding: 14px;
  }

  .poga-home__route-card {
    padding: 20px;
    border-radius: 16px;
  }

  .poga-home__route-topline {
    margin-bottom: 26px;
  }

  .poga-home__route-label {
    margin-top: -10px;
  }

  .poga-home__route-cta {
    padding-top: 22px;
  }

  .poga-home__routes-context {
    flex-direction: column;
    gap: 10px;
  }

  .poga-home__selection-scene {
    min-height: 430px;
    --poga-selection-band-angle: 13deg;
  }

  .poga-home__selection-line {
    display: none;
  }

  .poga-home__selection-intro {
    top: 2%;
    left: 8%;
    width: min(36%, 138px);
    font-size: 0.74rem;
    line-height: 1.38;
    transform: none;
  }

  .poga-home__selection-intro-line--offset {
    margin-left: 0.32em;
  }

  .poga-home__selection-heading {
    top: 15%;
    left: 46%;
    width: min(54%, 218px);
    font-size: clamp(1.82rem, 8.2vw, 2.4rem);
    line-height: 0.96;
    transform: rotate(2deg);
  }

  .poga-home__selection-heading-line--accent {
    margin-left: 0.12em;
  }

  .poga-home__selection-carousel {
    top: calc(35% + 12px);
    left: 50%;
    width: 112dvw;
    max-width: 112dvw;
    height: 196px;
    margin-left: -56dvw;
  }

  .poga-home__selection-carousel-shell {
    transform: rotate(var(--poga-selection-band-angle));
  }

  .poga-home__selection-carousel-shell::before {
    content: "";
    position: absolute;
    inset: 14px -5vw 16px;
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 238, 248, 0.62)),
      rgba(255, 255, 255, 0.28);
    box-shadow:
      0 12px 26px rgba(60, 32, 90, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.76),
      inset 0 0 0 1px rgba(123, 78, 255, 0.08);
    pointer-events: none;
  }

  .poga-home__selection-carousel-viewport {
    inset: 12px 0 16px;
    border-radius: 999px;
  }

  .poga-home__selection-carousel-track {
    width: calc(100% + 48vw);
    height: calc(100% + 18vw);
    transform: translate3d(-50%, -50%, 0) rotate(calc(var(--poga-selection-band-angle) * -1));
  }

  .poga-home__selection-product {
    width: clamp(136px, 43vw, 168px);
    border-radius: 18px;
  }

  .poga-home__selection-product-media {
    border-radius: 14px;
  }

  .poga-home__selection-note {
    padding: 50px;
    top: 84%;
    left: 8%;
    width: min(52%, 190px);
    font-size: 0.84rem;
    line-height: 1.42;
  }
  .poga-home__closing-text {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .poga-home__closing-line {
    display: center;
  }

  .poga-home__creator-page {
    min-height: 0;
  }

  .poga-home__creator-page--text {
    padding: 20px 18px 30px;
  }

  .poga-home__creator-page--text::before {
    border-radius: 16px 16px 4px 4px;
  }

  .poga-home__creator-page--media {
    min-height: 196px;
  }

  .poga-home__creator-page--media::before {
    border-radius: 4px 4px 18px 18px;
  }

  .poga-home__creator-name {
    font-size: clamp(2.05rem, 9vw, 2.9rem);
  }

  .poga-home__creator-phrase {
    max-width: none;
    font-size: 0.94rem;
  }

  .poga-home__creator-media {
    min-height: 196px;
    border-radius: 14px 14px 18px 18px;
  }

  .poga-home-v4__voronoi-banner {
    border-radius: 18px;
  }
}

/* =========================================================
   14. FAB REAL · CONTROL HOME
========================================================= */

body.home .pogalua-fab {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.82) !important;
  transition:
    opacity .22s ease,
    transform .22s ease,
    filter .22s ease !important;
}

body.home.is-home-fab-visible .pogalua-fab {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
}

body.home.is-home-fab-visible .pogalua-fab:hover,
body.page-template-front-page.is-home-fab-visible .pogalua-fab:hover {
  transform: scale(1.08) !important;
}

@media (prefers-reduced-motion: reduce) {
  .poga-home__hero,
  .poga-home-v4__hero {
    --poga-scene-progress: 1;
  }

  .poga-home__signal-chip,
  .poga-home-v4__signals .poga-home__signal-chip,
  .poga-home__discover-btn,
  .poga-home-v4__discover-btn,
  .poga-home__discover-ghost,
  .poga-home-v4__discover-ghost,
  .poga-home__selection-line,
  .poga-home__selection-heading,
  .poga-home__selection-intro,
  .poga-home__selection-note,
  .poga-home__selection-product,
  .poga-home__creators-book::after,
  .poga-home__creator-spread,
  .poga-home__creator-page-inner,
  .poga-home__creator-media,
  .poga-home__creators .poga-home__creators-ink,
  .poga-home__closing .poga-home__closing-emphasis,
  body.home .pogalua-fab {
    transition: none !important;
    animation: none !important;
  }

  .poga-home__creators .poga-home__creators-ink {
    color: #4b3a4f;
    color: color-mix(in srgb, currentColor 88%, #8f557d 12%);
    transform: none;
    will-change: auto;
  }

  .poga-home__closing .poga-home__closing-emphasis {
    color: rgba(73, 53, 92, 0.82);
    color: color-mix(in srgb, rgba(47, 39, 53, 0.78) 82%, var(--poga-home-purple) 18%);
    background-image: none;
    -webkit-text-fill-color: currentColor;
  }

  .poga-home__selection-carousel-viewport {
    overflow: hidden;
    cursor: auto;
  }

  .poga-home__creators-book.is-changing::after {
    opacity: 0;
    transform: none;
  }

  .poga-home__selection-carousel-track {
    transform: translate3d(-50%, -50%, 0) rotate(calc(var(--poga-selection-band-angle) * -1));
  }
}