/* ==========================================================================
   Fortune Ways — hoja de estilos principal
   Dirección visual: «terminal de verificación». Negro con fondo turquesa,
   neón aqua para la acción, magenta para la jerarquía. Todo dato medido
   va en monoespaciada; el resplandor se reserva para lo que importa.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens de diseño
   -------------------------------------------------------------------------- */
:root {
  /* Superficies: negro con sesgo turquesa, nunca azul índigo */
  --void: #050a0c;
  --void-deep: #020708;
  --surface: #0a1417;
  --surface-hi: #101e22;

  /* Tinta */
  --text: #e8fbf8;
  --muted: #8aa7ac;
  --dim: #6b848c;

  /* Neón de acción */
  --aqua: #00f0b5;
  --aqua-soft: #6bffd8;
  --aqua-ink: #02120d;

  /* Neón de jerarquía */
  --magenta: #ff2e88;
  --magenta-soft: #ff7ab8;

  /* Filetes */
  --line: rgba(0, 240, 181, 0.16);
  --line-mag: rgba(255, 46, 136, 0.32);
  --line-soft: rgba(232, 251, 248, 0.07);

  /* Resplandor */
  --glow-aqua: 0 0 22px rgba(0, 240, 181, 0.35);
  --glow-mag: 0 0 22px rgba(255, 46, 136, 0.32);

  /* Geometría */
  --radius: 3px;
  --radius-sm: 2px;
  --header-h: 68px;
  --container: 1100px;
  --container-text: 860px;

  /* Tipografía */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--void);
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Toda la rotulación del sitio comparte este ritmo monoespaciado. */
.label {
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------------------
   3. Barra de edad
   -------------------------------------------------------------------------- */
.age-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  background: var(--void-deep);
  border-bottom: 1px solid var(--line-mag);
  text-align: center;
}

.age-bar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 20px;
  border: 1px solid var(--magenta);
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px rgba(255, 46, 136, 0.28);
}

.age-bar__text {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  line-height: 1.55;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   4. Encabezado
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(5, 10, 12, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 1px 0 rgba(0, 240, 181, 0.35), 0 8px 30px rgba(0, 0, 0, 0.6);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo {
  width: auto;
  height: 46px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.header__link {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.header__link:hover {
  color: var(--aqua);
  border-bottom-color: var(--aqua);
  text-shadow: var(--glow-aqua);
}

.header__link[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--magenta);
}

.header__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 26px;
  border: 1px solid var(--magenta);
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(255, 46, 136, 0.25);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header__age:hover {
  background: var(--magenta);
  color: var(--void);
  box-shadow: 0 0 22px rgba(255, 46, 136, 0.55);
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header__burger:hover {
  border-color: var(--aqua);
  box-shadow: 0 0 16px rgba(0, 240, 181, 0.22);
}

.header__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--aqua);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.header__burger span + span {
  margin-top: 4px;
}

.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.header__mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  display: none;
  flex-direction: column;
  background: var(--void-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
}

.header__mobile-nav.is-open {
  display: flex;
}

.header__mobile-link {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.header__mobile-link:last-child {
  border-bottom: 0;
}

.header__mobile-link:hover {
  background: var(--surface);
  color: var(--aqua);
}

/* --------------------------------------------------------------------------
   5. Portada
   -------------------------------------------------------------------------- */
.main {
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--line);
  /* Retícula de neón tenue + dos focos: magenta arriba, aqua abajo. */
  background-color: var(--void);
  background-image:
    radial-gradient(ellipse 80% 55% at 78% -20%, rgba(255, 46, 136, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 70% 60% at 12% 118%, rgba(0, 240, 181, 0.14) 0%, transparent 60%),
    linear-gradient(to right, rgba(0, 240, 181, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 181, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 34px 34px, 34px 34px;
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Franja de protocolo: qué se midió, cuándo y con qué alcance. */
.protocol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 30px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--aqua);
  transform-origin: left center;
  animation: fw-draw 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.protocol__item strong {
  color: var(--text);
  font-weight: 500;
}

.hero__title {
  max-width: 19ch;
  margin: 30px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.4vw, 3.5rem);
  font-stretch: 118%;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 0.98;
  text-transform: uppercase;
  animation: fw-rise 0.6s ease 0.1s both;
}

.hero__mark {
  color: var(--aqua);
  text-shadow: 0 0 32px rgba(0, 240, 181, 0.5), 0 0 8px rgba(0, 240, 181, 0.3);
}

.hero__tagline {
  max-width: 52ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  line-height: 1.68;
  animation: fw-rise 0.6s ease 0.18s both;
}

.hero__criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  animation: fw-rise 0.6s ease 0.26s both;
}

.hero__criterion {
  padding: 6px 11px;
  border: 1px solid var(--line);
  color: var(--dim);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hero__criterion:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  box-shadow: 0 0 18px rgba(0, 240, 181, 0.18);
}

/* --------------------------------------------------------------------------
   6. Divulgación de afiliados
   -------------------------------------------------------------------------- */
.disclosure {
  padding: 10px 20px;
  background: var(--void-deep);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.disclosure__text {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.disclosure__link {
  color: var(--magenta-soft);
  border-bottom: 1px solid var(--line-mag);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.disclosure__link:hover {
  color: var(--magenta);
  text-shadow: var(--glow-mag);
}

/* --------------------------------------------------------------------------
   7. Ranking — cada plataforma es un legajo
   -------------------------------------------------------------------------- */
.offers {
  padding: 40px 0 56px;
}

.offers__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.offers__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.offers__head-title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-stretch: 112%;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offers__head-meta {
  color: var(--dim);
}

.offers__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer {
  animation: fw-rise 0.55s ease both;
}

.offer:nth-child(2) {
  animation-delay: 0.09s;
}

.offer:nth-child(3) {
  animation-delay: 0.18s;
}

.offer__flag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--magenta);
  color: var(--void);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.45);
}

.offer__card {
  display: grid;
  grid-template-columns: 92px 196px 1fr 212px;
  grid-template-areas: "spine logo body cta";
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.offer__card:hover {
  background: var(--surface-hi);
  border-color: var(--line);
  box-shadow: 0 0 30px rgba(0, 240, 181, 0.1);
}

.offer__card--lead {
  border-color: var(--line-mag);
  box-shadow: 0 0 34px rgba(255, 46, 136, 0.12);
}

.offer__card--lead:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 44px rgba(255, 46, 136, 0.22);
}

/* Lomo: el puesto y el puntaje, lo único que ordena la lista. */
.offer__spine {
  grid-area: spine;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 20px 8px;
  border-right: 1px solid var(--line-soft);
  border-left: 5px solid var(--dim);
}

.offer__card--lead .offer__spine {
  border-left-color: var(--magenta);
  border-right-color: var(--line-mag);
  box-shadow: inset 6px 0 24px rgba(255, 46, 136, 0.16);
}

.offer__rank {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.offer__card--lead .offer__rank {
  color: var(--magenta);
  text-shadow: var(--glow-mag);
}

.offer__score {
  margin-top: 10px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
}

.offer__card--lead .offer__score {
  color: var(--aqua);
  text-shadow: var(--glow-aqua);
}

.offer__score-label {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer__logo-wrap {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  border-right: 1px solid var(--line-soft);
}

.offer__logo {
  width: 100%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.offer__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 22px 26px;
}

.offer__name {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-stretch: 112%;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.offer__description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Ficha técnica: etiqueta, guía punteada, valor medido. */
.spec {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.spec__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.spec__row dt {
  flex-shrink: 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec__leader {
  flex: 1 1 auto;
  min-width: 14px;
  border-bottom: 1px dotted rgba(0, 240, 181, 0.22);
  transform: translateY(-3px);
}

.spec__row dd {
  flex-shrink: 0;
  color: var(--aqua);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: right;
}

.offer__action {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  padding: 22px 20px;
  border-left: 1px solid var(--line-soft);
}

.offer__card--lead .offer__action {
  border-left-color: var(--line-mag);
}

.offer__cta {
  display: block;
  padding: 13px 16px;
  border: 1px solid var(--aqua);
  border-radius: var(--radius-sm);
  background: var(--aqua);
  color: var(--aqua-ink);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(0, 240, 181, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.12s ease;
}

.offer__cta:hover {
  background: var(--aqua-soft);
  border-color: var(--aqua-soft);
  box-shadow: 0 0 34px rgba(0, 240, 181, 0.6);
  transform: translateY(-1px);
}

.offer__cta--ghost {
  background: transparent;
  color: var(--aqua);
  box-shadow: none;
}

.offer__cta--ghost:hover {
  background: rgba(0, 240, 181, 0.12);
  color: var(--aqua-soft);
  box-shadow: 0 0 22px rgba(0, 240, 181, 0.25);
}

.offer__tc {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.offers__note {
  max-width: 68ch;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 0.8rem;
  line-height: 1.7;
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. Páginas de contenido
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  /* El relleno lateral centra el contenido sin necesidad de un envoltorio y
     alinea el título con el texto del artículo que va debajo. */
  padding: 52px max(20px, calc((100% - var(--container-text)) / 2 + 20px)) 40px;
  border-bottom: 1px solid var(--line);
  background-color: var(--void);
  background-image:
    radial-gradient(ellipse 80% 55% at 80% -25%, rgba(255, 46, 136, 0.13) 0%, transparent 62%),
    radial-gradient(ellipse 60% 60% at 8% 120%, rgba(0, 240, 181, 0.1) 0%, transparent 60%),
    linear-gradient(to right, rgba(0, 240, 181, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 181, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 34px 34px, 34px 34px;
}

.page-hero__eyebrow {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--aqua);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero__title {
  max-width: 20ch;
  margin: 20px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.6vw, 2.9rem);
  font-stretch: 116%;
  font-weight: 800;
  letter-spacing: -0.008em;
  line-height: 1.03;
  text-transform: uppercase;
}

.page-hero__text {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.article {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.article__updated {
  margin-bottom: 26px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article__block {
  padding: 26px 0 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--line-soft);
}

.article__block h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-stretch: 112%;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.article__block h3 {
  margin: 24px 0 8px;
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article__block p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

.article__block p:last-child {
  margin-bottom: 0;
}

.article__block a {
  color: var(--aqua);
  border-bottom: 1px solid rgba(0, 240, 181, 0.4);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.article__block a:hover {
  color: var(--aqua-soft);
  text-shadow: var(--glow-aqua);
}

.article__block strong {
  color: var(--text);
  font-weight: 600;
}

.article__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}

.article__list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.article__list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--magenta);
  box-shadow: 0 0 8px rgba(255, 46, 136, 0.6);
}

.article__list--check li::before {
  top: 0.5em;
  left: 1px;
  width: 9px;
  height: 5px;
  border: 1.5px solid var(--aqua);
  border-top: 0;
  border-right: 0;
  background: none;
  box-shadow: none;
  transform: rotate(-45deg);
}

.callout {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-top: 22px;
  background: var(--surface);
  border-left: 3px solid var(--magenta);
  box-shadow: inset 6px 0 26px rgba(255, 46, 136, 0.12);
}

.callout__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--magenta);
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
}

.callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.article__footnote {
  margin-top: 16px;
  color: var(--dim);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. Formulario
   -------------------------------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form__label {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--dim);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--aqua);
  background: var(--surface-hi);
  box-shadow: 0 0 20px rgba(0, 240, 181, 0.18);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__select {
  appearance: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.form__select option {
  background: var(--surface);
  color: var(--text);
}

.form__error {
  display: none;
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.form__row.has-error .form__error {
  display: block;
}

.form__row.has-error .form__input,
.form__row.has-error .form__textarea {
  border-color: var(--magenta);
  box-shadow: 0 0 18px rgba(255, 46, 136, 0.2);
}

.form__submit {
  align-self: flex-start;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  background: var(--aqua);
  color: var(--aqua-ink);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0, 240, 181, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.form__submit:hover {
  background: var(--aqua-soft);
  box-shadow: 0 0 34px rgba(0, 240, 181, 0.55);
  transform: translateY(-1px);
}

.form__status {
  display: none;
  padding: 14px 16px;
  border-left: 3px solid var(--aqua);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.form__status.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   10. Página 404
   -------------------------------------------------------------------------- */
.not-found {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 20px;
}

.not-found__code {
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-stretch: 122%;
  font-weight: 900;
  line-height: 0.85;
  -webkit-text-stroke: 2px var(--magenta);
  filter: drop-shadow(0 0 22px rgba(255, 46, 136, 0.45));
}

.not-found__title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-stretch: 114%;
  font-weight: 800;
  text-transform: uppercase;
}

.not-found__text {
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.not-found__btn {
  margin-top: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  background: var(--aqua);
  color: var(--aqua-ink);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0, 240, 181, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.not-found__btn:hover {
  background: var(--aqua-soft);
  box-shadow: 0 0 34px rgba(0, 240, 181, 0.55);
}

/* --------------------------------------------------------------------------
   11. Pie de página
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--void-deep);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 20px 32px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.footer__link {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer__link:hover {
  color: var(--aqua);
  text-shadow: var(--glow-aqua);
}

.footer__notice {
  padding: 24px;
  background: var(--surface);
  border-left: 3px solid var(--magenta);
  box-shadow: inset 8px 0 30px rgba(255, 46, 136, 0.1);
}

.footer__notice-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 26px;
  border: 1px solid var(--magenta);
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  box-shadow: 0 0 14px rgba(255, 46, 136, 0.3);
}

.footer__notice-title {
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__notice-text {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.footer__support-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.footer__regulator-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer__regulator-link:hover {
  opacity: 1;
}

.footer__regulator-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.footer__helper-link {
  margin-left: auto;
  border-bottom: 1px solid rgba(0, 240, 181, 0.4);
  color: var(--aqua);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer__helper-link:hover {
  color: var(--aqua-soft);
  text-shadow: var(--glow-aqua);
}

.footer__legal-title {
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__legal-block {
  margin-bottom: 22px;
}

.footer__legal-block:last-child {
  margin-bottom: 0;
}

.footer__legal-subtitle {
  margin-bottom: 8px;
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__legal-text {
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.78;
}

.footer__legal-link,
.footer__legal-links a {
  border-bottom: 1px solid rgba(0, 240, 181, 0.35);
  color: var(--aqua);
  transition: color 0.2s ease;
}

.footer__legal-link:hover,
.footer__legal-links a:hover {
  color: var(--aqua-soft);
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 12px;
}

.footer__legal-links li {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.footer__copy {
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   12. Aviso de cookies
   -------------------------------------------------------------------------- */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 24px;
  padding: 20px max(20px, calc((100% - var(--container)) / 2));
  background: var(--void-deep);
  border-top: 1px solid var(--aqua);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.7), 0 -1px 24px rgba(0, 240, 181, 0.2);
}

.cookie.is-visible {
  display: flex;
}

.cookie__title {
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie__text {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.62;
}

.cookie__text a {
  border-bottom: 1px solid rgba(0, 240, 181, 0.4);
  color: var(--aqua);
}

.cookie__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  margin-left: auto;
}

.cookie__btn {
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cookie__btn--accept {
  background: var(--aqua);
  color: var(--aqua-ink);
  box-shadow: 0 0 22px rgba(0, 240, 181, 0.35);
}

.cookie__btn--accept:hover {
  background: var(--aqua-soft);
  box-shadow: 0 0 32px rgba(0, 240, 181, 0.55);
}

.cookie__btn--decline {
  border: 1px solid var(--line-soft);
  color: var(--muted);
}

.cookie__btn--decline:hover {
  border-color: var(--muted);
  color: var(--text);
}

/* --------------------------------------------------------------------------
   13. Verificación de edad — la puerta de entrada del sitio
   -------------------------------------------------------------------------- */
body.is-locked {
  overflow: hidden;
}

.age-gate,
.denied {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* Misma retícula de neón de la portada: la puerta pertenece al mismo sistema. */
  background-color: rgba(2, 7, 8, 0.96);
  background-image:
    radial-gradient(ellipse 80% 55% at 78% -10%, rgba(255, 46, 136, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 70% 60% at 12% 112%, rgba(0, 240, 181, 0.14) 0%, transparent 60%),
    linear-gradient(to right, rgba(0, 240, 181, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 181, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 34px 34px, 34px 34px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.age-gate {
  z-index: 100;
}

.denied {
  z-index: 110;
}

.age-gate[hidden],
.denied[hidden] {
  display: none;
}

.age-gate__card,
.denied__card {
  width: 100%;
  max-width: 470px;
  padding: 28px 30px 26px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--aqua);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75), 0 0 44px rgba(0, 240, 181, 0.08);
  animation: fw-rise 0.45s ease both;
}

.denied__card {
  border-top-color: var(--magenta);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75), 0 0 44px rgba(255, 46, 136, 0.08);
}

.age-gate__head,
.denied__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.age-gate__proto {
  color: var(--aqua);
}

.denied__proto {
  color: var(--magenta-soft);
}

.age-gate__badge,
.denied__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 28px;
  border: 1px solid var(--magenta);
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 0 16px rgba(255, 46, 136, 0.3);
}

.age-gate__title,
.denied__title {
  margin-bottom: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-stretch: 112%;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-transform: uppercase;
}

.age-gate__text,
.denied__text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.68;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 24px;
}

.age-gate__btn,
.denied__btn {
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.age-gate__btn--yes {
  background: var(--aqua);
  color: var(--aqua-ink);
  box-shadow: 0 0 22px rgba(0, 240, 181, 0.35);
}

.age-gate__btn--yes:hover {
  background: var(--aqua-soft);
  box-shadow: 0 0 32px rgba(0, 240, 181, 0.55);
}

.age-gate__btn--no,
.denied__btn {
  border: 1px solid var(--line-soft);
  color: var(--muted);
}

.age-gate__btn--no:hover,
.denied__btn:hover {
  border-color: var(--muted);
  color: var(--text);
}

.denied__btn {
  margin-top: 24px;
}

.age-gate__foot,
.denied__foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  line-height: 1.7;
  text-transform: uppercase;
}

.age-gate__foot a,
.denied__foot a {
  color: var(--magenta-soft);
  border-bottom: 1px solid var(--line-mag);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.age-gate__foot a:hover,
.denied__foot a:hover {
  color: var(--magenta);
  text-shadow: var(--glow-mag);
}

/* --------------------------------------------------------------------------
   14. Movimiento — una sola secuencia de entrada, nada permanente
   -------------------------------------------------------------------------- */
.reveal {
  animation: fw-rise 0.55s ease both;
}

@keyframes fw-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fw-draw {
  from {
    opacity: 0;
    transform: scaleX(0.35);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* --------------------------------------------------------------------------
   15. Adaptación
   -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .offer__card {
    grid-template-columns: 84px 172px 1fr;
    grid-template-areas:
      "spine logo body"
      "cta   cta  cta";
  }

  .offer__action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .offer__card--lead .offer__action {
    border-top-color: var(--line-mag);
    border-left-color: transparent;
  }

  .offer__cta {
    order: 2;
    min-width: 210px;
  }

  .offer__tc {
    order: 1;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    order: 2;
  }

  .header__age {
    order: 0;
  }

  .header__logo-link {
    flex: 1;
    order: 1;
    justify-content: center;
  }

  .header__inner {
    gap: 12px;
  }

  .offer__card {
    grid-template-columns: 76px 1fr;
    grid-template-areas:
      "spine logo"
      "body  body"
      "cta   cta";
  }

  .offer__logo-wrap {
    justify-content: flex-start;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .offer__logo {
    max-width: 190px;
    max-height: 58px;
  }

  .offer__spine {
    border-bottom: 1px solid var(--line-soft);
  }

  .offer__body {
    padding: 20px;
  }

  .footer__helper-link {
    width: 100%;
    margin-left: 0;
  }

  .cookie {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie__actions {
    margin-left: 0;
  }

  .cookie__btn {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .age-bar__text {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .age-gate__card,
  .denied__card {
    padding: 24px 20px 22px;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 38px 0 34px;
  }

  .protocol {
    gap: 6px 18px;
    font-size: 0.62rem;
  }

  .offers__head {
    flex-direction: column;
    gap: 6px;
  }

  .offer__action {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .offer__cta {
    order: 1;
    min-width: 0;
  }

  .offer__tc {
    order: 2;
    text-align: center;
  }

  .spec__row {
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .spec__leader {
    display: none;
  }

  .spec__row dd {
    text-align: left;
  }

  .footer__support-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .offer,
  .protocol,
  .hero__title,
  .hero__tagline,
  .hero__criteria,
  .age-gate__card,
  .denied__card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
