/* ============================================================
   SOCIAL TRAIL TEAM 2027 — styles
   ============================================================ */

:root {
  --bg: #080808;
  --bg-soft: #0e0e0e;
  --ink: #f5f5f5;
  --dim: #9c9c9c;
  --accent: #ffb743;
  --accent-2: #ff8a2d;
  --accent-dim: rgba(255, 183, 67, 0.12);
  --grad: linear-gradient(120deg, #ffd484, #ffb743 45%, #ff8a2d);
  --line: rgba(245, 245, 245, 0.1);
  --font-display: "Outfit", sans-serif;
  --font-body: "Outfit", sans-serif;
  --font-mono: "Outfit", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }
.accent { color: var(--accent); }

@media (pointer: fine) {
  body:not(.legal-page) { cursor: none; }
  body:not(.legal-page) a, body:not(.legal-page) button,
  body:not(.legal-page) summary, body:not(.legal-page) input { cursor: none; }
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  position: relative; z-index: 2;
}
.preloader__brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
}
.preloader__counter {
  font-family: var(--font-mono);
  font-size: 0.9rem; color: var(--dim);
  font-variant-numeric: tabular-nums;
}
.preloader__curtain {
  position: absolute; inset: 0;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
}
.preloader--closing .preloader__inner {
  animation: preFadeOut 0.4s var(--ease-out) forwards;
}
.preloader--closing .preloader__curtain {
  animation: curtainWipe 0.9s var(--ease-in-out) 0.25s forwards;
}
.preloader--done { display: none; }
@keyframes preFadeOut { to { opacity: 0; transform: translateY(-20px); } }
@keyframes curtainWipe {
  0%   { transform: scaleY(0); transform-origin: bottom; }
  45%  { transform: scaleY(1); transform-origin: bottom; }
  55%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ============ CURSOR ============ */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 150;
  pointer-events: none; border-radius: 50%;
  display: none;
}
@media (pointer: fine) { .cursor, .cursor-ring { display: block; } }
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 183, 67, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.cursor-ring--hover {
  width: 64px; height: 64px;
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: -50%; z-index: 100;
  pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.6s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
  transition: transform 0.45s var(--ease-out), background 0.3s, backdrop-filter 0.3s;
}
.header--scrolled {
  background: rgba(7, 8, 7, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header--hidden { transform: translateY(-110%); }
.header__logo {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.04em;
}
.header__nav { display: flex; gap: 2rem; }
.header__nav a {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.header__nav a:hover { color: var(--ink); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) { .header__nav { display: none; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  /* text-align de respaldo: Safari iOS no siempre centra el contenido flex de un <button> */
  text-align: center;
  line-height: 1;
  font-family: var(--font-mono); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--ink); border-radius: 999px;
  padding: 0.95rem 2rem; font-size: 0.9rem;
  position: relative; overflow: hidden;
  transition: color 0.35s var(--ease-out), border-color 0.35s, transform 0.2s;
  background: transparent; color: var(--ink);
  will-change: transform;
}
.btn span {
  position: relative; z-index: 1;
  display: block; width: 100%; text-align: center;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%); border-radius: 50% 50% 0 0;
  transition: transform 0.5s var(--ease-out), border-radius 0.5s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); border-radius: 0; }
.btn:hover { color: var(--bg); border-color: var(--accent); }
.btn--primary { background: var(--grad); color: var(--bg); border-color: transparent; }
.btn--primary::before { background: var(--ink); }
.btn--primary:hover { color: var(--bg); }
.btn--ghost { border-color: var(--line); color: var(--dim); }
.btn--small { padding: 0.6rem 1.3rem; font-size: 0.78rem; }
.btn--big { padding: 1.3rem 3rem; font-size: 1.05rem; }

/* ============ PESOS OUTFIT ============ */
/* Archivo Black era negra por defecto; con Outfit el peso se declara aquí */
.preloader__brand, .header__logo, .hero__title, .hero__year,
.marquee__track span, .shirt__q3d, .card__num, .card h3,
.never__title, .timeline__item h3, .countdown__num, .countdown__sep,
.join__title, .join__success h3, .section-title, .final__title,
.footer__logo, .legal__title, .legal h2 {
  font-weight: 800;
}
.section-label, .hero__kicker, .hero__scroll, .header__nav a,
.timeline__date, .countdown__unit, .countdown__label, .countdown__note,
.preloader__counter, .legal__updated {
  font-weight: 500;
}

/* ============ SECTION BASICS ============ */
section { position: relative; }
/* palabras destacadas de los títulos: texto con degradado */
.section-title .accent, .never__title .accent,
.join__title .accent, .final__title .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-label {
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.05; text-transform: uppercase;
  margin-bottom: 3rem;
}

/* Reveal-on-scroll primitives */
[data-anim] { opacity: 0; }
[data-anim="fade"] { transform: translateY(40px); }
[data-anim="slide"] { transform: translateY(70px) rotate(1.5deg); }
[data-anim].is-in {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 7rem 1.5rem 5rem;
}
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__contours {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.35;
}
.hero__contours path {
  fill: none; stroke: rgba(255, 183, 67, 0.16); stroke-width: 1.2;
  stroke-dasharray: 6 10;
  animation: contourDrift 40s linear infinite;
}
.hero__contours path:nth-child(2) { animation-duration: 55s; animation-direction: reverse; }
.hero__contours path:nth-child(3) { animation-duration: 48s; }
.hero__contours path:nth-child(4) { animation-duration: 62s; animation-direction: reverse; }
.hero__contours path:nth-child(5) { animation-duration: 44s; }
@keyframes contourDrift { to { stroke-dashoffset: -640; } }

.hero__content { position: relative; z-index: 2; max-width: 1000px; }
.hero__kicker {
  font-family: var(--font-mono); font-size: 0.85rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.1rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 183, 67, 0.6); }
  50% { box-shadow: 0 0 0 9px rgba(255, 183, 67, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 12vw, 9.5rem);
  line-height: 0.95; text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero__line { display: block; overflow: hidden; }
.hero__line--accent { color: var(--accent); }
/* split chars */
.char {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  animation: charUp 0.9s var(--ease-out) forwards;
  animation-delay: var(--cd, 0s);
}
@keyframes charUp { to { transform: translateY(0) rotate(0); } }

.hero__year {
  position: absolute; inset: 0; z-index: -1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(10rem, 34vw, 26rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 244, 239, 0.07);
  pointer-events: none; user-select: none;
  animation: yearFloat 9s ease-in-out infinite;
}
@keyframes yearFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

.hero__sub {
  margin: 2.2rem auto 0; max-width: 520px;
  color: var(--dim); font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero__sub em { color: var(--ink); font-style: normal; border-bottom: 2px solid var(--accent); }
.hero__cta {
  margin-top: 2.6rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim);
}
.hero__scroll-line {
  width: 1px; height: 56px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 40%; background: var(--accent);
  animation: scrollHint 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-110%); }
  100% { transform: translateY(280%); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.1rem 0; overflow: hidden;
  background: var(--bg-soft);
}
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}
.marquee__track span:nth-child(odd) {
  color: transparent; -webkit-text-stroke: 1px var(--dim);
}
.marquee__track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ============ MANIFIESTO ============ */
.manifesto {
  padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 8vw, 10rem);
  max-width: 1200px; margin: 0 auto;
}
.manifesto__text {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.45;
}
.manifesto__text .w {
  color: rgba(242, 244, 239, 0.16);
  transition: color 0.35s ease;
}
.manifesto__text .w.lit { color: var(--ink); }
.manifesto__text .w.lit--accent { color: var(--accent); }

/* ============ SHIRT (PINNED) ============ */
.shirt { height: 340vh; }
.shirt__sticky {
  position: sticky; top: 0; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #111111 0%, var(--bg) 62%);
}
.shirt__label {
  position: absolute; top: 6rem; margin: 0;
  /* misma posición que el label del manifiesto: contenedor de 1200px centrado + su padding */
  left: calc(max((100% - 1200px) / 2, 0px) + clamp(1.5rem, 8vw, 10rem));
}

.shirt__spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 320px at var(--mx, 50%) var(--my, 45%),
              rgba(255, 183, 67, 0.07), transparent 70%);
}

.shirt__stage { position: relative; width: min(60vh, 80vw); }

/* --- escena 3D volumétrica --- */
.shirt__scene {
  position: relative; width: 100%; aspect-ratio: 400 / 440;
  perspective: 1200px;
}
.shirt__rotor {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.shirt__layer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: var(--o, 1);
  will-change: transform;
  overflow: visible;
}
.shirt__layer path {
  fill: none; stroke: var(--accent); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.55;
}
.shirt__layer--front path {
  stroke: var(--ink); stroke-width: 2.5; opacity: 1;
  filter: drop-shadow(0 0 14px rgba(255, 183, 67, 0.35));
}
.shirt__aura {
  position: absolute; inset: -18%;
  background: radial-gradient(circle at 50% 45%, rgba(255, 183, 67, 0.16), transparent 62%);
  opacity: 0; transition: opacity 0.6s;
  pointer-events: none;
}
.shirt--reveal .shirt__aura { opacity: 1; }

.shirt__q3d {
  position: absolute; left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 24vh, 11rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0; pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(255, 183, 67, 0.4));
}
.shirt--reveal .shirt__q3d {
  animation: questionPop 0.7s var(--ease-out) forwards,
             questionPulse 2.4s ease-in-out 0.7s infinite;
}
@keyframes questionPop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4) rotate(-12deg); }
  70% { opacity: 1; transform: translate(-50%, -50%) scale(1.15) rotate(3deg); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
}
@keyframes questionPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 183, 67, 0.45)); }
  50% { filter: drop-shadow(0 0 32px rgba(255, 183, 67, 0.95)); }
}

.shirt__floaters { position: absolute; inset: -12%; pointer-events: none; }
.shirt__floaters span {
  position: absolute;
  font-family: var(--font-display);
  color: rgba(255, 183, 67, 0.35);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  animation: floaty 5s ease-in-out infinite;
}
.shirt--reveal .shirt__floaters span { opacity: 1; transform: translateY(0); }
.shirt__floaters span:nth-child(1) { top: 6%;  left: -4%;  font-size: 2.2rem; animation-delay: 0.2s; }
.shirt__floaters span:nth-child(2) { top: 16%; right: -6%; font-size: 1.4rem; animation-delay: 1.1s; }
.shirt__floaters span:nth-child(3) { top: 44%; left: -12%; font-size: 1.8rem; animation-delay: 0.6s; }
.shirt__floaters span:nth-child(4) { top: 58%; right: -10%;font-size: 2.6rem; animation-delay: 1.6s; }
.shirt__floaters span:nth-child(5) { bottom: 8%; left: 2%; font-size: 1.3rem; animation-delay: 0.9s; }
.shirt__floaters span:nth-child(6) { bottom: 2%; right: 6%; font-size: 1.9rem; animation-delay: 2.1s; }
.shirt__floaters span:nth-child(7) { top: -4%; left: 38%;  font-size: 1.5rem; animation-delay: 1.4s; }
.shirt__floaters span:nth-child(8) { bottom: -6%; left: 55%; font-size: 2.1rem; animation-delay: 0.4s; }
@keyframes floaty {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -16px; rotate: 6deg; }
}

.shirt__captions {
  position: absolute; bottom: 9vh; left: 0; right: 0;
  text-align: center; height: 3.5rem;
}
.shirt__caption {
  position: absolute; inset: 0;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  color: var(--dim);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.shirt__caption strong { color: var(--ink); }
.shirt__caption.is-active { opacity: 1; transform: translateY(0); }
.shirt__caption:last-child strong { color: var(--accent); }

.shirt__progress {
  position: absolute; right: clamp(1.2rem, 4vw, 3rem); top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 120px; background: var(--line); border-radius: 2px;
}
.shirt__progress-bar {
  width: 100%; height: 0%; background: var(--accent); border-radius: 2px;
}

/* ============ MINI JOIN ============ */
.minijoin {
  padding: 3.2rem 1.5rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.minijoin__inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem 2.2rem; flex-wrap: wrap; text-align: center;
}
.minijoin__text { color: var(--dim); max-width: 340px; font-size: 1.02rem; }
.minijoin__text strong { color: var(--ink); }
.minijoin__form {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.minijoin__form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.minijoin__form input {
  background: none; border: none; outline: none;
  color: var(--ink); font-family: var(--font-body); font-size: 1rem;
  min-width: 190px; flex: 1;
}
.minijoin__form input::placeholder { color: rgba(156, 156, 156, 0.6); }
.minijoin__error { width: 100%; color: #ff7d6b; font-size: 0.88rem; }
.minijoin__done {
  width: 100%; color: var(--accent); font-weight: 600;
  animation: successIn 0.6s var(--ease-out);
}
@media (max-width: 560px) {
  .minijoin__form { width: 100%; flex-direction: column; border-radius: 22px; padding: 0.9rem; }
  .minijoin__form input { width: 100%; text-align: center; padding: 0.5rem 0; }
  .minijoin__form .btn { width: 100%; }
}

/* ============ CTA FLOTANTE (móvil) ============ */
.float-cta {
  position: fixed; left: 50%; bottom: 1rem; z-index: 95;
  display: none; align-items: center; justify-content: center;
  text-align: center; line-height: 1;
  transform: translate(-50%, 160%);
  background: var(--grad); color: var(--bg);
  font-family: var(--font-mono); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; padding: 1rem 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 183, 67, 0.25);
  transition: transform 0.5s var(--ease-out);
}
.float-cta span { display: block; width: 100%; text-align: center; }
.float-cta.is-on { transform: translate(-50%, 0); }
@media (max-width: 760px) { .float-cta { display: inline-flex; } }
.is-subscribed .float-cta { display: none; }

/* ============ SECRETS ============ */
.secrets {
  padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 1300px; margin: 0 auto;
}
.secrets__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .secrets__grid { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line); border-radius: 20px;
  padding: 2.2rem; background: var(--bg-soft);
  transform-style: preserve-3d; will-change: transform;
  transition: border-color 0.3s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 220px at var(--cx, 50%) var(--cy, 50%),
              rgba(255, 183, 67, 0.08), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { border-color: rgba(255, 183, 67, 0.4); }
.card:hover::after { opacity: 1; }
.card__num {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--accent); display: block; margin-bottom: 1.4rem;
}
.card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  text-transform: uppercase; line-height: 1.25; margin-bottom: 0.9rem;
}
.card p { color: var(--dim); font-size: 0.98rem; }

/* ============ NEVER ============ */
.never {
  padding: clamp(7rem, 18vh, 12rem) 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 45% at 50% 55%, rgba(255, 183, 67, 0.06), transparent),
    var(--bg);
}
.never__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 6rem);
  line-height: 1.02; text-transform: uppercase;
}
.never__title span { display: block; }
.never__title em { font-style: normal; }
.never__sub {
  margin: 2.5rem auto 0; max-width: 560px;
  color: var(--dim); font-size: clamp(1rem, 2vw, 1.2rem);
}

/* ============ TIMELINE ============ */
.timeline {
  padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 1000px; margin: 0 auto;
}
.timeline__track { position: relative; padding-left: 2.4rem; }
.timeline__line {
  position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line); border-radius: 2px;
}
.timeline__line-fill {
  width: 100%; height: 0%;
  background: linear-gradient(to bottom, #ffd484, var(--accent) 50%, var(--accent-2));
  border-radius: 2px;
}
.timeline__item { position: relative; padding-bottom: 3.5rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: -2.4rem; top: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--dim); background: var(--bg);
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.timeline__item.is-in .timeline__dot {
  border-color: var(--accent); background: var(--accent-dim);
  box-shadow: 0 0 16px rgba(255, 183, 67, 0.45);
}
.timeline__date {
  font-family: var(--font-mono); font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.timeline__item h3 {
  font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-transform: uppercase; margin: 0.5rem 0 0.7rem;
}
.timeline__item p { color: var(--dim); max-width: 620px; }

/* ============ COUNTDOWN ============ */
.countdown {
  padding: clamp(5rem, 12vh, 8rem) 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.countdown__label {
  font-family: var(--font-mono); letter-spacing: 0.25em;
  text-transform: uppercase; font-size: 0.85rem; color: var(--dim);
  margin-bottom: 2rem;
}
.countdown__grid {
  display: flex; align-items: baseline; justify-content: center;
  gap: clamp(0.6rem, 2.5vw, 1.8rem);
}
.countdown__cell { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.countdown__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.countdown__unit {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim);
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 4rem); color: var(--accent);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.15; } }
.countdown__note {
  margin-top: 2rem; color: var(--dim);
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.1em;
}

/* ============ JOIN ============ */
.join { padding: clamp(6rem, 15vh, 11rem) 1.5rem; }
.join__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.join__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.1; text-transform: uppercase; margin-bottom: 1.4rem;
}
.join__sub { color: var(--dim); max-width: 560px; margin: 0 auto 2.6rem; }
.join__field {
  display: flex; gap: 0.8rem;
  background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.join__field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.join__field input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  color: var(--ink); font-family: var(--font-body); font-size: 1.05rem;
}
.join__field input::placeholder { color: rgba(154, 160, 148, 0.6); }
@media (max-width: 560px) {
  .join__field { flex-direction: column; border-radius: 24px; padding: 1rem; }
  .join__field input { padding: 0.6rem 0.4rem; text-align: center; }
  .join__field .btn { width: 100%; justify-content: center; }
}
.join__error { color: #ff7d6b; font-size: 0.9rem; margin-top: 0.9rem; }
.join__form.is-hidden { display: none; }
.join__success { animation: successIn 0.7s var(--ease-out); }
.join__success[hidden] { display: none; }
@keyframes successIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.join__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad); color: var(--bg);
  font-size: 2rem; font-weight: 700; margin-bottom: 1.2rem;
  animation: checkPop 0.55s var(--ease-out) 0.15s backwards;
}
@keyframes checkPop {
  from { transform: scale(0); }
  60% { transform: scale(1.2); }
  to { transform: scale(1); }
}
.join__success h3 {
  font-family: var(--font-display); font-size: 1.7rem;
  text-transform: uppercase; margin-bottom: 0.7rem;
}
.join__success p { color: var(--dim); max-width: 480px; margin: 0 auto; }
.join__privacy {
  margin-top: 2rem; font-size: 0.78rem; color: rgba(154, 160, 148, 0.65);
}

/* ============ FAQ ============ */
.faq {
  padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 860px; margin: 0 auto;
}
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0.2rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
  transition: color 0.25s, padding-left 0.3s var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); padding-left: 0.7rem; }
.faq__icon {
  flex: none; position: relative; width: 18px; height: 18px;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent);
  transition: transform 0.35s var(--ease-out);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__item[open] .faq__icon::before { transform: rotate(180deg); }
.faq__body {
  overflow: hidden;
}
.faq__body p {
  color: var(--dim); padding: 0 2.5rem 1.7rem 0.2rem;
  max-width: 700px;
}
.faq__body a { color: var(--accent); border-bottom: 1px solid currentColor; }
.faq__item[open] .faq__body p { animation: faqIn 0.45s var(--ease-out); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* ============ FINAL ============ */
.final {
  padding: clamp(8rem, 20vh, 14rem) 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 50% at 50% 100%, rgba(255, 183, 67, 0.08), transparent),
    var(--bg);
}
.final__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 6.5rem);
  line-height: 1.02; text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 1.5rem; text-align: center;
}
.footer__logo {
  font-family: var(--font-display); font-size: 1.6rem;
  display: block; margin-bottom: 1rem;
}
.footer p { color: var(--dim); font-size: 0.95rem; }
.footer__small { margin-top: 0.8rem; font-size: 0.78rem; opacity: 0.6; }

/* ============ LEGAL (privacidad.html) ============ */
.legal {
  max-width: 780px; margin: 0 auto;
  padding: clamp(8rem, 16vh, 11rem) 1.5rem 5rem;
}
.legal__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 0.8rem;
}
.legal__updated {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--dim); margin-bottom: 2.5rem;
}
.legal__notice {
  border: 1px solid rgba(255, 183, 67, 0.45);
  background: var(--accent-dim);
  border-radius: 14px; padding: 1.2rem 1.5rem;
  font-size: 0.95rem; margin-bottom: 3rem;
}
.legal section { margin-bottom: 2.8rem; }
.legal h2 {
  font-family: var(--font-display); font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 1rem; color: var(--ink);
}
.legal p, .legal li { color: var(--dim); }
.legal p + p { margin-top: 0.8rem; }
.legal ul { padding-left: 1.3rem; margin: 0.8rem 0; }
.legal li { margin-bottom: 0.45rem; }
.legal strong { color: var(--ink); }
.legal a { color: var(--accent); border-bottom: 1px solid currentColor; }
.footer__small a { color: inherit; text-decoration: underline; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .shirt { height: auto; }
  .shirt__sticky { position: relative; height: auto; padding: 6rem 1.5rem; }
  .shirt__caption { position: relative; opacity: 1; transform: none; }
  [data-anim] { opacity: 1; transform: none; }
  .char { transform: none; }
  .manifesto__text .w { color: var(--ink); }
}
