/* NEXT coming-soon landing — dark, misma familia visual que la app */

:root,
[data-theme="dark"] {
  --bg: #08080c;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f7;
  --text-soft: #a0a0ad;
  --accent: #a855f7;
  --accent-rgb: 168, 85, 247;
  --accent-2: #d946ef;
  --accent-glow: #c084fc;
  --accent-gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
  --nav-bg: rgba(8, 8, 12, 0.6);
  --panel: linear-gradient(180deg, #12101a, #0c0b12);
  --card-veil: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
  --orb-opacity: 0.55;
  --grain-opacity: 0.04;
  --num-hi: #ffffff;
  --radius: 20px;
  --radius-pill: 999px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", var(--font-body);
  /* Variables nuevas para simplificar el botón de tema luego */
  --icon-sun: none;
  --icon-moon: block;
}

[data-theme="light"] {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-hover: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --text: #1d1d1f;
  --text-soft: #6e6e73;
  --accent: #7c3aed;
  --accent-2: #c026d3;
  --accent-glow: #9333ea;
  --nav-bg: rgba(251, 251, 253, 0.72);
  --panel: linear-gradient(180deg, #ffffff, #f4f2fb);
  --card-veil: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
  --orb-opacity: 0.28;
  --grain-opacity: 0.02;
  --num-hi: #1d1d1f;
  --icon-sun: block;
  --icon-moon: none;
  color-scheme: light;
}

[data-theme="light"] .feature,
[data-theme="light"] .perk,
[data-theme="light"] .road,
[data-theme="light"] .faq-item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

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

body {
  position: relative;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

/* ---------- Fondos y Texturas ---------- */
.bg-glows {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: var(--orb-opacity);
  will-change: transform;
  transition: opacity 0.4s ease;
}

.orb-1 {
  top: -180px;
  left: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 70%);
  animation: float1 18s ease-in-out infinite;
}

.orb-2 {
  top: 200px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.4), transparent 70%);
  animation: float2 22s ease-in-out infinite;
}

.orb-3 {
  bottom: -220px;
  left: 30%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
  animation: float1 26s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, 60px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-50px, 40px);
  }
}

/* ---------- Accesibilidad ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- Interfaz Global (Scroll, Floating CTA, Nav) ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  pointer-events: none;

  & span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-glow));
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.6);
  }
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-pill);
  background: var(--accent-gradient);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.5);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition: all 0.3s ease;

  &.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  &:hover {
    transform: scale(1.05);
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);

  & .nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  & .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: var(--accent-gradient);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.5);
  align-self: center;

  & svg {
    width: 12px;
    height: 12px;
    fill: #fff;
  }
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;

  & .brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--text);
  }

  & .brand-sub {
    font-size: 12px;
    color: var(--text-soft);
  }
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  transition: all 0.2s ease;

  &:hover {
    border-color: var(--accent);
    transform: scale(1.05);
  }

  & svg {
    width: 17px;
    height: 17px;
  }

  /* Aquí usamos las variables definidas en el Paso 1 para evitar líneas extra */
  & .icon-sun {
    display: var(--icon-sun);
  }

  & .icon-moon {
    display: var(--icon-moon);
  }
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-gradient);
  text-decoration: none;
  padding: 9px 20px;
  text-align: center;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  box-shadow: 0 0 0 rgba(var(--accent-rgb), 0);

  &:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.45);
  }
}

/* ---------- Enlace "Vender" de NEXT en la cabecera del manifiesto ---------- */
.next-sell-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 8px 2px;
  white-space: nowrap;
}

.next-sell-link:hover {
  color: var(--accent);
}

/* El salto de "Forma parte / del cambio" solo se activa en móvil (ver media query). */
.nav-cta-br {
  display: none;
}

/* ---------- Cabecera del manifiesto en móvil ----------
   Logo más pequeño, más aire entre las acciones y la CTA a dos líneas
   (más compacta). Solo afecta al manifiesto; la app funcional no se toca. */
@media (max-width: 640px) {
  .nav .nav-inner {
    padding: 12px 16px;
    gap: 12px;
  }

  .nav .brand-logo {
    height: 32px;
    width: auto;
  }

  .nav .nav-actions {
    gap: 22px;
  }

  .nav-cta {
    padding: 8px 16px;
    line-height: 1.2;
  }

  .nav-cta-br {
    display: inline;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 130px 24px 10px;
  text-align: center;

  & .hero-title {
    font-size: clamp(2.9rem, 8.5vw, 5.8rem);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  & .hero-sub {
    margin: 28px auto 0;
    max-width: 640px;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--text-soft);
  }
}

.hero-kicker,
.section-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-glow);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), 0.08);
  margin-bottom: 30px;
}

.section-kicker {
  margin-bottom: 16px;
  display: block;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 0 0 rgba(192, 132, 252, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(192, 132, 252, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(192, 132, 252, 0);
  }
}

.accent {
  background: linear-gradient(100deg, var(--accent), var(--accent-2) 45%, var(--accent-glow) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* ---------- Formulario ---------- */
.hero-form {
  margin-top: 42px;

  & form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  & input[type="email"] {
    font: inherit;
    font-size: 16px;
    width: min(360px, 100%);
    padding: 15px 22px;
    outline: none;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--text);
    transition: all 0.2s ease;

    &::placeholder {
      color: #6c6c78;
    }

    &:focus {
      border-color: var(--accent);
      background: var(--surface-hover);
      box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.18);
    }
  }
}

.hero-form button,
.confirm-home {
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  padding: 15px 32px;
  background: var(--accent-gradient);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px rgba(var(--accent-rgb), 0.35);
  transition: all 0.2s ease;

  &:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.55);
  }

  &:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
    box-shadow: none;
  }
}

.form-note {
  margin-top: 15px;
  font-size: 13px;
  color: var(--text-soft);
}

.form-note.success {
  color: #4ade80;
  font-weight: 500;
}

.form-note.error {
  color: #f87171;
  font-weight: 500;
}

.consent {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--text-soft);
  opacity: 0.85;
}

.consent a {
  color: var(--accent-glow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Secciones Centrales ---------- */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-lead {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--text-soft);
  font-size: 17px;
}

.section-lead strong,
.cats-foot strong {
  color: var(--text);
  font-weight: 600;
}

/* Narrativa (Por qué ahora) */
.why-now {
  padding: 30px 24px;
}

.why-statement {
  max-width: fit-content;
  margin: 16px auto 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.35;

  & strong {
    background: linear-gradient(100deg, var(--accent), var(--accent-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }
}

/* Contenedores Grid */
.perks {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  text-align: left;
}

.cat-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: left;
}

/* Base compartida de tarjetas (Perks, Features, Roadmap) */
.perk,
.feature,
.road {
  position: relative;
  padding: 30px 26px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.28s ease;

  & h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  & p {
    font-size: 15px;
    color: var(--text-soft);
    position: relative;
    z-index: 1;
  }

  &:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  }
}

/* Modificadores específicos de Perks, Features y Road */
.perk {
  & h3 {
    font-size: 19px;
    margin-bottom: 9px;
  }

  & p {
    font-size: 14.5px;
  }

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0.85;
  }
}

.perk-icon,
.feature-icon {
  display: inline-block;
  font-size: 26px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.perk-icon {
  font-size: 28px;
}

.feature {
  padding: 32px 28px;

  &:hover {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.28s ease;
    z-index: 0;
    background: radial-gradient(400px circle at 50% -20%, rgba(var(--accent-rgb), 0.16), transparent 70%);
  }

  &:hover::before {
    opacity: 1;
  }

  & h3 {
    position: relative;
    z-index: 1;
  }
}

.road p {
  font-size: 14.5px;
}

/* Tarjetas de categoría a color (Pokémon, Retro, etc.) */
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 369px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--g), #16161d;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.3s ease;
  text-align: left;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--card-veil);
  }

  & .cat-photo {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
  }

  &::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -60%;
    width: 10%;
    height: 160%;
    background: linear-gradient(200deg, transparent 10%, rgba(255, 255, 255, 0.65) 68%, rgba(255, 255, 255, 0.65) 72%, transparent 100%);
    transform: rotate(25deg);
    filter: blur(10px);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
  }

  &:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);

    & .cat-photo {
      transform: scale(1.12);
    }

    &::before {
      animation: catShineSweep 1.8s ease forwards;
    }
  }

  & .cat-emoji {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
  }

  & .cat-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.01em;
  }
}

.cats-foot {
  margin-top: 34px;
  font-size: 16px;
  color: var(--text-soft);
}

/* Base común de paneles (recuperando paddings y bordes) */
.tc-panel,
.seller-panel,
.final-card,
.confirm-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  padding: 60px 44px;
  overflow: hidden;
}

/* Márgenes y anchos de los textos internos */
.tc-title,
.seller-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.tc-copy,
.seller-copy {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 17px;
}

.tc-copy strong,
.seller-copy strong {
  color: var(--text);
  font-weight: 600;
}

.tc-section {
  padding: 40px 24px;
}

.tc-panel {
  padding: clamp(32px, 8vw, 60px) clamp(20px, 6vw, 44px);
  background-image: radial-gradient(700px circle at 15% 0%, rgba(var(--accent-rgb), 0.22), transparent 60%), radial-gradient(700px circle at 90% 100%, rgba(14, 165, 233, 0.16), transparent 55%), var(--panel);
}

.tc-lockup {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(8px, 3vw, 14px);
  max-width: 100%;
  margin-bottom: 26px;

  & .tc-next,
  & .tc-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
  }

  & .tc-next {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);

    & .brand-mark {
      width: 24px;
      height: 24px;
    }
  }

  & .tc-arrow {
    color: var(--accent-glow);
    font-size: 20px;
  }

  & .tc-name {
    background: linear-gradient(100deg, var(--accent-glow), #7dd3fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.tc-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;

  & .tc-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  & .tc-num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--num-hi), var(--accent-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  & .tc-label {
    font-size: 13.5px;
    color: var(--text-soft);
  }
}

/* Roadmap */
.roadmap {
  list-style: none;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: left;
}

/* Estado inicial oculto para la animación en cascada */
.roadmap .road {
  opacity: 0;
  transform: translateY(24px);
}

.road-num {
  color: var(--accent-glow);
  font-weight: bold;
}

/* Estado visible (se añade con JS) */
.roadmap .road.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* Sobrescribimos el transition para que la aparición sea suave (0.6s) */
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

/* Panel de Vendedores */
.seller-panel {
  text-align: center;
  background-image: radial-gradient(680px circle at 12% 0%, rgba(245, 158, 11, 0.18), transparent 58%), radial-gradient(680px circle at 92% 100%, rgba(var(--accent-rgb), 0.2), transparent 55%), var(--panel);
}

.seller-reasons {
  margin: 40px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: left;

  & .s-reason {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  & .s-reason strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
  }

  & .s-reason span {
    font-size: 14px;
    color: var(--text-soft);
  }
}

.seller-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f59e0b, var(--accent-2));
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
  transition: all 0.2s ease;

  &:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 36px rgba(245, 158, 11, 0.5);

    & span {
      transform: translateX(3px);
    }
  }

  & span {
    transition: transform 0.2s ease;
  }
}

.seller-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-soft);

  &.muted {
    color: var(--accent-glow);
  }
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease;

  &[open] {
    border-color: var(--border-strong);

    summary::after {
      transform: rotate(45deg);
    }
  }

  & summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    &::-webkit-details-marker {
      display: none;
    }

    &::after {
      content: "+";
      font-size: 22px;
      font-weight: 400;
      color: var(--accent-glow);
      transition: transform 0.25s ease;
      line-height: 1;
    }
  }

  & p {
    padding: 0 24px 22px;
    margin-top: -4px;
    color: var(--text-soft);
    font-size: 15px;
  }
}

/* Final CTA & Footer */
.final-cta {
  padding-bottom: 120px;
}

.final-card {
  max-width: 720px;
  margin: 0 auto;
  background-image: radial-gradient(600px circle at 50% 0%, rgba(var(--accent-rgb), 0.18), transparent 70%), var(--surface);
}

.final-sub {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;

  & .footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-soft);
  }

  & a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s ease;

    &:hover {
      color: var(--accent-glow);
    }
  }
}

/* ---------- Animación Intersección ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;

  &.visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orb,
  .accent,
  .pulse-dot {
    animation: none;
  }
}

/* ---------- Página Confirmación ---------- */
.confirm-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.confirm-card {
  width: 100%;
  max-width: 460px;
  text-align: center;
  background-image: radial-gradient(500px circle at 50% 0%, rgba(var(--accent-rgb), 0.18), transparent 70%), var(--panel);
}

.confirm-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;

  & .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;

    & svg {
      width: 18px;
      height: 18px;
    }
  }
}

.confirm-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;

  &.confirm-icon-success {
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.4);

    &::after {
      content: "";
      width: 22px;
      height: 12px;
      border-left: 3px solid #4ade80;
      border-bottom: 3px solid #4ade80;
      transform: translateY(-2px) rotate(-45deg);
    }
  }

  &.confirm-icon-error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.4);

    &::after {
      content: "!";
      font-family: var(--font-display);
      font-size: 34px;
      font-weight: 700;
      color: #f87171;
      line-height: 1;
    }
  }
}

.confirm-home {
  display: inline-block;
  margin-top: 28px;
  text-decoration: none;
}

.confirm-brand {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- Elementos Flotantes (Carta V-Astro) ---------- */
.desktop-only {
  display: none;
}

@media (min-width: 720px) {
  .desktop-only {
    display: inline;
  }
}

.floating-card {
  position: relative;
  width: clamp(170px, 45vw, 250px);
  aspect-ratio: 5 / 7;
  margin: 50px auto 0;
  cursor: pointer;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: floatCard 4.5s ease-in-out infinite;
  transition: box-shadow 0.25s ease;

  &:hover {
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.4), 0 0 32px var(--accent-glow);
  }

  & .floating-card-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    mix-blend-mode: overlay;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.9), var(--accent-2) 35%, transparent 65%);
  }

  &.is-hovering .floating-card-shine {
    opacity: 1;
  }

  & .floating-card-art {
    position: absolute;
    inset: 0;
    z-index: 1;

    & img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes catShineSweep {
  0% {
    left: -60%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 160%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-card {
    animation: none;
  }
}

/* ---------- Tamaños para Iconos Personalizados (Imágenes) ---------- */
.perk-icon img,
.feature-icon img,
.s-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain; /* Evita que la imagen se deforme */
  display: block;
}

/* Los iconos de las categorías sobre las fotos necesitan ser un poco más pequeños */
.cat-emoji img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}