/* ==========================================================================
   ALBA PLAY — sistema visual "Amanecer Neón"
   Los colores están muestreados del ícono de la app (Shared/AlbaColors.swift):
   arcos de luz magenta → violeta → azul → cyan sobre cielo índigo, con el sol
   ámbar-coral asomando en el horizonte.
   La estructura (nav, wrap, secciones, formularios, legales) es la misma de
   albadigital.com.mx y digitaldawnstudios.com: una casa, tres amaneceres.
   ========================================================================== */

:root {
  /* Cielo */
  --void-0: #05020f;        /* lo más profundo */
  --void:   #07031c;        /* fondo de la app */
  --void-2: #120b2e;        /* superficies */
  --void-3: #1d1240;        /* tarjetas elevadas */
  --line:   #2e2058;        /* bordes */

  /* Arcos de luz */
  --cyan:    #22f5fb;       /* arco interior · acción principal */
  --aqua:    #7cfbff;
  --ice:     #bffeff;
  --blue:    #3e48e5;
  --violet:  #be3ffb;
  --magenta: #ff1a90;

  /* Sol del amanecer (premium) */
  --sun:   #ffa45e;
  --coral: #fd6563;
  --rose:  #f55ba9;

  --text:     #eaf3ff;
  --text-mid: #a7b8d8;
  --text-dim: #6f7ea6;

  --font-display: 'Jost', 'Century Gothic', 'Futura', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'New York', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  --section-y: clamp(5rem, 10vw, 8.5rem);
  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 400; }
p { font-size: clamp(1rem, 1.15vw, 1.0625rem); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem; display: block;
}
.section-head { max-width: 68ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { color: var(--text); }
.section-head p { margin-top: 1.25rem; color: var(--text-mid); font-size: 1.0625rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--text-mid); max-width: 60ch; }

/* Texto con degradado: los tres arcos, de fuera hacia dentro */
.grad {
  background: linear-gradient(100deg, var(--magenta), var(--violet) 45%, var(--blue) 68%, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-sun {
  background: linear-gradient(100deg, var(--sun), var(--coral) 55%, var(--rose));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 3, 28, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding-block: 0.7rem;
  border-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { width: 38px; height: 38px; border-radius: 10px; filter: drop-shadow(0 0 10px rgba(34, 245, 251, .5)); }
.brand span {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0.12em; color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { font-size: 0.9rem; color: var(--text-mid); transition: color .25s ease, text-shadow .25s ease; }
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 12px rgba(34, 245, 251, .6); }
.lang, .kicker-back {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em;
  border: 1px solid var(--line); border-radius: 100px; padding: 0.35rem 0.8rem;
  color: var(--text-mid); transition: all .25s ease;
}
.lang:hover, .kicker-back:hover { border-color: var(--cyan); color: var(--aqua); box-shadow: 0 0 16px -4px rgba(34, 245, 251, .65); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); margin: 5px 0; transition: .3s; }

/* ==========================================================================
   HERO — el ícono de la app, a tamaño de portada
   ========================================================================== */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding-block: 8rem 5rem; overflow: hidden; position: relative;
  background:
    radial-gradient(90% 60% at 50% 96%, rgba(34, 245, 251, .16) 0%, transparent 62%),
    radial-gradient(120% 85% at 50% 4%, #1a0d3e 0%, var(--void) 62%);
}
.hero .wrap { position: relative; z-index: 3; }

/* El amanecer del ícono, dibujado en SVG al costado del texto.
   El contenedor mide lo mismo que el SVG, así la línea de horizonte cae
   exactamente sobre la base de los arcos (y = 400 de 470 → 14.89% del alto). */
.hero-dawn {
  position: absolute; right: -4%; bottom: 1.5%;
  width: min(660px, 52vw); z-index: 1; pointer-events: none;
}
.aurora {
  --aurora-op: 1;
  display: block; width: 100%; height: auto;
  opacity: 0; animation: dawnrise 2.2s var(--ease) .15s forwards;
}
@keyframes dawnrise {
  from { opacity: 0; transform: translateY(46px); }
  to   { opacity: var(--aurora-op); transform: none; }
}
@media (max-width: 1180px) { .aurora { --aurora-op: .62; } }
/* la línea de horizonte sobre la que descansa todo */
.horizon-line {
  position: absolute; left: -100vw; right: -100vw; bottom: 14.89%;
  height: 2px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(34, 245, 251, .3) 22%, var(--cyan) 62%, var(--ice) 80%, var(--cyan) 94%, transparent);
  box-shadow: 0 0 26px 2px rgba(34, 245, 251, .3);
  opacity: 0; animation: fadein 1.6s var(--ease) .5s forwards;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.hero-copy { max-width: 45rem; position: relative; }
.hero-store { margin-bottom: 1.5rem; }
.hero .kicker {
  font-family: var(--font-display); font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1.5rem; text-shadow: 0 0 20px rgba(34, 245, 251, .5);
}
.hero h1 { margin-bottom: 1.5rem; color: var(--text); }
.hero .lede { color: var(--text-mid); margin-bottom: 2.25rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-note { margin-top: 1.6rem; font-size: 0.88rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.5rem; }
.hero-note svg { flex: 0 0 auto; color: var(--cyan); }

/* Botones */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.95rem 1.8rem; border-radius: 100px; border: 1px solid transparent; cursor: pointer;
  transition: all .3s var(--ease);
}
/* la acción primaria de la app es el cyan */
.btn-primary { background: linear-gradient(135deg, var(--aqua), var(--cyan)); color: #05020f; font-weight: 600; box-shadow: 0 0 26px -6px rgba(34, 245, 251, .8); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px -4px rgba(124, 251, 255, .9); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 24px -8px rgba(34, 245, 251, .7); }
/* el sol = premium */
.btn-sun { background: linear-gradient(135deg, #ffc27a, var(--sun) 40%, var(--coral) 75%, var(--rose)); color: #170a04; font-weight: 600; box-shadow: 0 0 26px -8px rgba(253, 101, 99, .85); }
.btn-sun:hover { transform: translateY(-2px); box-shadow: 0 0 38px -6px rgba(245, 91, 169, .9); }

/* Sello "próximamente" */
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 100px; white-space: nowrap;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.badge-free { background: rgba(34, 245, 251, .12); color: var(--cyan); }
.badge-premium { background: rgba(255, 164, 94, .14); color: var(--sun); }
.badge-soon { background: rgba(190, 63, 251, .14); color: #d189ff; }
.badge-dev { background: rgba(255, 26, 144, .12); color: #ff6fc7; }

/* Sello de App Store (estado: próximamente) */
.store-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1.4rem 0.7rem 1.1rem; border-radius: 14px;
  border: 1px solid var(--line); background: var(--void-2);
  transition: all .3s var(--ease);
}
.store-badge svg { flex: 0 0 auto; color: var(--text); }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge .sb-small { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.store-badge .sb-big { font-family: var(--font-display); font-size: 1.02rem; color: var(--text); }
.store-badge:hover { border-color: var(--cyan); box-shadow: 0 0 26px -10px rgba(34, 245, 251, .8); }
.store-badge.is-static { cursor: default; }
.store-badge.is-static:hover { border-color: var(--line); box-shadow: none; }

/* ==========================================================================
   MANIFIESTO
   ========================================================================== */
.manifesto-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.manifesto {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem); line-height: 1.32; letter-spacing: -0.01em; max-width: 20ch;
  color: var(--text);
}
.manifesto .grad { font-weight: 400; }
.manifesto-grid p { color: var(--text-mid); }
@media (max-width: 820px) { .manifesto-grid { grid-template-columns: 1fr; } .manifesto { max-width: none; } }

/* ==========================================================================
   CONTENIDO — Alba News + Premium
   ========================================================================== */
.showcase { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.showcase.flip .showcase-media { order: -1; }
@media (max-width: 900px) { .showcase, .showcase.flip { grid-template-columns: 1fr; } .showcase.flip .showcase-media { order: 0; } }

.content-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2rem, 4vw, 3rem); }
.ccard {
  position: relative; overflow: hidden;
  background: var(--void-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.ccard::before {
  content: ""; position: absolute; inset: 0; opacity: .1; pointer-events: none;
  background: radial-gradient(80% 120% at 100% 0%, var(--accent, var(--cyan)), transparent 62%);
  transition: opacity .45s ease;
}
.ccard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent, var(--cyan)) 55%, transparent); box-shadow: 0 30px 70px -50px var(--accent, var(--cyan)); }
.ccard:hover::before { opacity: .22; }
.ccard > * { position: relative; z-index: 2; }
.ccard h3 { color: var(--text); margin: 0.9rem 0 0.5rem; }
.ccard p { color: var(--text-mid); font-size: 0.98rem; }
.ccard .genre { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent, var(--cyan)); display: block; margin-bottom: 0.9rem; }
.ccard-art { width: 100%; height: auto; aspect-ratio: 1; border-radius: var(--radius); object-fit: cover; margin-bottom: 1.1rem; border: 1px solid var(--line); }

/* ==========================================================================
   FUNCIONES (rejilla de íconos)
   ========================================================================== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.feature {
  background: var(--void-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.feature:hover { border-color: color-mix(in srgb, var(--cyan) 45%, transparent); transform: translateY(-3px); }
.feature-icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(34, 245, 251, .1); border: 1px solid rgba(34, 245, 251, .22);
  color: var(--cyan); margin-bottom: 1rem;
}
.feature-icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.08rem; color: var(--text); margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.feature p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; }
.feature.soon .feature-icon { background: rgba(190, 63, 251, .1); border-color: rgba(190, 63, 251, .25); color: #d189ff; }

/* ==========================================================================
   MAQUETA DE IPHONE — la pantalla "Hoy" de la app
   ========================================================================== */
.phone-stage { position: relative; display: grid; place-items: center; padding-block: 1rem; }
.phone-stage::before {
  content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 63, 251, .28), transparent 66%);
  filter: blur(30px); z-index: 0;
}
.phone {
  position: relative; z-index: 2;
  width: min(300px, 78vw); aspect-ratio: 9 / 19.5;
  border-radius: 44px; padding: 11px;
  background: linear-gradient(160deg, #33265e, #140c30 45%, #2a1c50);
  box-shadow: 0 40px 90px -50px rgba(34, 245, 251, .5), 0 0 0 1px rgba(234, 243, 255, .08) inset;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background:
    radial-gradient(90% 46% at 50% 104%, rgba(34, 245, 251, .16), transparent 60%),
    radial-gradient(80% 40% at 50% -6%, rgba(190, 63, 251, .22), transparent 60%),
    linear-gradient(180deg, #07031c, #0a0523 55%, #0e0730);
  display: flex; flex-direction: column;
  font-size: 10px;
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 20px; border-radius: 100px; background: #05020f; z-index: 5;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.ph-body { padding: 38px 14px 0; flex: 1; display: flex; flex-direction: column; gap: 11px; }
.ph-eyebrow { font-size: 7.5px; letter-spacing: 0.14em; color: var(--cyan); font-weight: 700; }
.ph-greet { font-family: var(--font-serif); font-size: 19px; color: var(--text); line-height: 1.1; }
.ph-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ph-head img { width: 26px; height: 26px; border-radius: 7px; }
.ph-hero {
  border-radius: 15px; padding: 12px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #07031c, #180b3a 32%, #2e1055 58%, #5a1668 82%, #1a4e7a);
  border: 1px solid rgba(234, 243, 255, .14);
  min-height: 130px; display: flex; flex-direction: column; justify-content: space-between;
}
.ph-hero .ph-arc {
  position: absolute; left: 50%; bottom: -34%; width: 150%; transform: translateX(-50%); opacity: .85;
}
.ph-hero > * { position: relative; z-index: 2; }
.ph-tag { font-size: 7px; letter-spacing: 0.12em; color: var(--cyan); font-weight: 700; text-shadow: 0 0 8px rgba(34, 245, 251, .7); }
.ph-title { font-family: var(--font-serif); font-size: 13px; color: #fff; line-height: 1.22; margin-top: 5px; }
.ph-meta { font-size: 7.5px; color: rgba(255, 255, 255, .75); margin-top: 3px; }
.ph-row { display: flex; align-items: center; gap: 7px; margin-top: 10px; }
.ph-play {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, var(--aqua), var(--cyan)); color: #05020f;
  font-size: 8px; font-weight: 800; padding: 5px 10px; border-radius: 100px;
  box-shadow: 0 0 12px rgba(34, 245, 251, .55);
}
.ph-dl { margin-left: auto; color: rgba(255, 255, 255, .7); font-size: 10px; }
.ph-section { font-family: var(--font-serif); font-size: 11px; color: var(--text); display: flex; align-items: center; gap: 6px; }
.ph-section::before { content: ""; width: 14px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan)); box-shadow: 0 0 6px rgba(34, 245, 251, .6); }
.ph-cards { display: flex; gap: 8px; }
.ph-cards figure { width: 60px; flex: 0 0 auto; }
.ph-cards img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.ph-cards figcaption { font-size: 7px; color: var(--text-mid); margin-top: 4px; line-height: 1.25; }
.ph-bar { display: block; height: 2px; border-radius: 2px; background: rgba(234, 243, 255, .18); margin-top: 4px; overflow: hidden; }
.ph-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--aqua), var(--cyan)); box-shadow: 0 0 5px rgba(34, 245, 251, .8); }
.ph-mini {
  margin-top: auto; display: flex; align-items: center; gap: 7px;
  background: rgba(29, 18, 64, .92); border: 1px solid rgba(34, 245, 251, .16);
  border-radius: 12px; padding: 6px 8px;
  backdrop-filter: blur(8px);
}
.ph-mini .art { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }
.ph-mini .t { font-size: 7.5px; color: var(--text); line-height: 1.2; }
.ph-mini .s { font-size: 6.5px; color: var(--text-dim); }
.ph-mini .ico { margin-left: auto; color: var(--cyan); font-size: 11px; }
.ph-tabs {
  display: flex; justify-content: space-around; padding: 7px 0 12px;
  border-top: 1px solid rgba(234, 243, 255, .08); margin-top: 8px;
  font-size: 6.5px; color: var(--text-dim);
}
.ph-tabs span.on { color: var(--cyan); }
.ph-tabs i { display: block; font-style: normal; font-size: 11px; margin-bottom: 1px; text-align: center; }

.phone-caption { margin-top: 1.5rem; font-size: 0.82rem; color: var(--text-dim); text-align: center; max-width: 34ch; margin-inline: auto; }

/* Carrusel de capturas reales (sustituye a la maqueta cuando existan) */
.shots {
  position: relative; z-index: 2; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); background: var(--void-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.shots-track { display: flex; gap: 0; height: 100%; width: max-content; animation: shots-scroll 30s linear infinite; will-change: transform; }
.shots:hover .shots-track, .shots:focus-within .shots-track { animation-play-state: paused; }
.shots img { height: 100%; width: auto; flex: 0 0 auto; object-fit: cover; display: block; }
@keyframes shots-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .shots-track { animation: none; } .shots { overflow-x: auto; } }

/* ==========================================================================
   PRECIOS
   ========================================================================== */
.pricing {
  background: var(--void-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.25rem); position: relative; overflow: hidden;
}
.pricing::before {
  content: ""; position: absolute; inset: auto -10% -60% -10%; height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 164, 94, .18), transparent 62%);
  pointer-events: none;
}
.pricing > * { position: relative; z-index: 2; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; margin-top: 2rem; }
.plan {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem;
  background: var(--void-3); transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { border-color: rgba(255, 164, 94, .5); box-shadow: 0 0 30px -14px rgba(253, 101, 99, .8); }
.plan.featured { border-color: rgba(255, 164, 94, .45); box-shadow: 0 0 40px -22px rgba(253, 101, 99, .9); }
.plan-name { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mid); }
.plan-price { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 300; line-height: 1.05; margin-top: 0.6rem; }
.plan-price small { font-size: 0.9rem; color: var(--text-mid); font-family: var(--font-body); margin-left: 0.35rem; }
.plan-period { font-size: 0.9rem; color: var(--text-mid); margin-top: 0.15rem; }
.plan .badge { margin-top: 0.9rem; }
.plan-list { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.55rem; }
.plan-list li { font-size: 0.92rem; color: var(--text-mid); display: flex; gap: 0.55rem; align-items: flex-start; }
.plan-list li::before { content: "›"; color: var(--cyan); flex: 0 0 auto; }
.pricing-note { font-size: 0.85rem; color: var(--text-dim); margin-top: 1.75rem; max-width: 62ch; }
.free-note {
  margin-top: 1.5rem; padding: 1rem 1.25rem; border-radius: var(--radius);
  border-left: 3px solid var(--cyan); background: rgba(34, 245, 251, .07);
  font-size: 0.95rem; color: var(--text);
}

/* ==========================================================================
   TRANSPARENCIA DE IA
   ========================================================================== */
.ai { background: radial-gradient(120% 80% at 50% 0%, #1a0d3e, var(--void) 62%); }
.ai-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .ai-grid { grid-template-columns: 1fr; } }
.ai-card {
  background: var(--void-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.ai-card h3 { color: var(--text); margin-bottom: 0.9rem; }
.ai-card p { color: var(--text-mid); }
.ai-card p + p { margin-top: 1rem; }
.ai-points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.ai-points li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; color: var(--text-mid); }
.ai-points svg { flex: 0 0 auto; margin-top: 3px; color: var(--cyan); }
.ai-points strong { color: var(--text); font-weight: 600; }

/* Retrato / firma de la voz */
.voice {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.1rem 1.25rem; border-radius: var(--radius);
  background: var(--void-3); border: 1px solid var(--line);
}
.voice-mark { width: 54px; height: 54px; flex: 0 0 auto; }
.voice-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
.voice-role { font-size: 0.85rem; color: var(--text-dim); }

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact { background: radial-gradient(120% 80% at 50% 120%, #1a0d3e, var(--void) 60%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-grid h2 { color: var(--text); }
.contact-aside ul { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2rem; }
.contact-aside li strong { font-family: var(--font-display); display: block; font-weight: 400; color: var(--text); margin-bottom: 0.2rem; }
.contact-aside li span { font-size: 0.95rem; color: var(--text-mid); }
.contact-aside a { color: var(--cyan); }
.contact-aside a:hover { text-shadow: 0 0 12px rgba(34, 245, 251, .6); }

.form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 0.9rem 1.05rem;
  background: var(--void-2); border: 1px solid var(--line); border-radius: 12px; color: var(--text);
  transition: border-color .25s ease, box-shadow .25s ease; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 20px -6px rgba(34, 245, 251, .65); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field select option { background: var(--void-2); color: var(--text); }
.form .btn-primary { align-self: flex-start; margin-top: 0.4rem; }
.form-note { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }
.form-status { font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: 10px; display: none; }
.form-status.ok { display: block; background: rgba(34, 245, 251, .12); color: var(--cyan); }
.form-status.err { display: block; background: rgba(255, 26, 144, .12); color: #ff6fc7; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER — firmado por ALBA · Digital Dawn Studios
   ========================================================================== */
.footer { background: var(--void-0); color: var(--text-mid); padding-block: 3.5rem 2.5rem; border-top: 1px solid var(--line); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-logo { height: 76px; width: auto; filter: drop-shadow(0 0 18px rgba(34, 245, 251, .3)); }
.footer-tag { font-size: 0.85rem; margin-top: 1rem; max-width: 34ch; }
.footer-tag a { color: var(--cyan); }
.footer-links { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.9rem; font-weight: 500; }
.footer-col a { display: block; font-size: 0.9rem; padding-block: 0.28rem; transition: color .25s ease; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; width: 100%; }

/* ==========================================================================
   Reveal + responsive
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--void-2); padding: 5.5rem 1.5rem 2rem; transform: translateY(-100%);
    transition: transform .45s var(--ease); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .7); border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding-block: 0.95rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links .lang, .nav-links .kicker-back { align-self: flex-start; margin-top: 1rem; }
  .hero { min-height: auto; padding-block: 7.5rem 7rem; }
  .hero-dawn { right: auto; left: 50%; transform: translateX(-50%); width: min(760px, 112vw); bottom: -6%; }
  .aurora { --aurora-op: .30; }
  .footer .wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .aurora, .horizon-line { opacity: 1; transform: translateX(-50%); }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Páginas legales
   ========================================================================== */
.legal-hero {
  padding-block: clamp(7rem, 13vw, 9.5rem) 2.5rem;
  background: radial-gradient(120% 80% at 50% 8%, #1a0d3e 0%, var(--void) 60%);
}
.legal-hero .eyebrow { color: var(--cyan); }
.legal-hero h1 { color: var(--text); margin-bottom: 1rem; }
.legal-hero .updated { color: var(--text-mid); font-size: 0.95rem; }

.legal-toc {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
}
.legal-toc a { font-size: 0.85rem; color: var(--text-mid); }
.legal-toc a:hover { color: var(--cyan); }

.legal { max-width: 74ch; }
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--text); margin-top: 2.75rem; margin-bottom: 1rem; scroll-margin-top: 6rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal p { margin-bottom: 1rem; color: var(--text-mid); line-height: 1.7; }
.legal ul, .legal ol { margin: 0 0 1.25rem 1.3rem; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal li { margin-bottom: 0.5rem; color: var(--text-mid); line-height: 1.6; }
.legal li::marker { color: var(--cyan); }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--cyan); text-decoration: underline; text-decoration-color: rgba(34, 245, 251, .35); text-underline-offset: 2px; }
.legal a:hover { text-decoration-color: var(--cyan); }
.legal .note-box {
  margin: 1.75rem 0; padding: 1.25rem 1.5rem;
  background: var(--void-3); border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.95rem;
}
.legal .note-box p:last-child { margin-bottom: 0; }
.legal-foot { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.75rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--text-mid); }
