/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Marca Bib Up */
  --blue:        #0F32FA;   /* azul eléctrico de marca */
  --blue-soft:   #3D5BFF;
  --blue-deep:   #0A21A8;
  --navy:        #070D22;   /* fondo principal */
  --navy-2:      #0A1230;   /* fondo alterno */
  --navy-card:   #0D163C;
  --cream:       #F2EFC4;   /* crema de marca */
  --gold:        #E39509;   /* dorado Bib Coin */
  --gold-soft:   #F2B33D;

  --text:        rgba(240, 241, 233, 0.82);
  --text-mute:   rgba(240, 241, 233, 0.55);
  --line:        rgba(242, 239, 196, 0.13);

  --display: "Clash Display", "Clash Grotesk", "Satoshi", system-ui, sans-serif;
  --sans:    "Satoshi", "Inter", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 20px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--cream);
  text-wrap: balance;
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 500;
}
em { font-style: normal; }
h1 em, h2 em { color: var(--blue-soft); }
::selection { background: var(--blue); color: var(--cream); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--navy);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container-narrow { max-width: 620px; }

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out),
              background .3s var(--ease-soft), border-color .3s var(--ease-soft);
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-soft) 100%);
  color: #FDFCEF;
  box-shadow: 0 10px 32px rgba(15, 50, 250, 0.38);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 50, 250, 0.5);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(242, 239, 196, 0.04);
}
.btn-ghost:hover {
  border-color: rgba(242, 239, 196, 0.4);
  transform: translateY(-3px);
}
.btn-sm { padding: .65rem 1.3rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-check { width: 22px; display: none; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background .4s var(--ease-soft), border-color .4s var(--ease-soft),
              backdrop-filter .4s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 13, 34, 0.82);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(14px)) {
  .nav.is-scrolled {
    background: rgba(7, 13, 34, 0.6);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
  }
}
.nav-inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.nav-logo img { width: 108px; height: auto; }
.nav-links {
  display: none;
  gap: 2.1rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
}
.nav-links a { position: relative; padding-block: .25rem; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 9rem 1.25rem 7rem;
  isolation: isolate;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(620px circle at var(--mx, 68%) var(--my, 30%),
      rgba(15, 50, 250, 0.55) 0%, transparent 55%),
    radial-gradient(900px circle at calc(var(--mx, 68%) + 14%) calc(var(--my, 30%) + 22%),
      rgba(10, 33, 168, 0.5) 0%, transparent 60%),
    radial-gradient(540px circle at calc(var(--mx, 68%) - 28%) calc(var(--my, 30%) + 36%),
      rgba(227, 149, 9, 0.12) 0%, transparent 60%),
    var(--navy);
  filter: blur(48px) saturate(135%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 880px;
  text-align: center;
}
.hero .kicker { margin-bottom: 1.6rem; }
.hero-title {
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  font-weight: 600;
  margin-bottom: 1.6rem;
  max-width: 18ch;
  margin-inline: auto;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 1.1rem;
}
.hero-support {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--gold-soft);
  margin-bottom: 2.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.hero-micro {
  font-size: .85rem;
  color: var(--text-mute);
  max-width: 46ch;
  margin-inline: auto;
}
.hero-coin {
  position: absolute;
  z-index: -1;
  width: clamp(130px, 16vw, 250px);
  right: clamp(-30px, 4vw, 90px);
  bottom: 6%;
  opacity: .9;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  animation: coinFloat 7s ease-in-out infinite;
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-22px) rotate(3deg); }
}
/* En pantallas estrechas la moneda se aparta del texto */
@media (max-width: 959px) {
  .hero-coin {
    width: 110px;
    right: -26px;
    bottom: 1.5%;
    opacity: .5;
  }
}

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 1.05rem;
  overflow: hidden;
  background: var(--navy-2);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marqueeMove 38s linear infinite;
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .06em;
  color: var(--text-mute);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

/* =============================================================
   8. Sections (shared)
   ============================================================= */
.section {
  padding-block: clamp(5rem, 10vw, 8.5rem);
  position: relative;
}
.section-alt { background: var(--navy-2); }
.section-head { max-width: 680px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 600;
}
.section-sub {
  margin-top: 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text);
}

/* Icono común */
.icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(15, 50, 250, 0.16);
  border: 1px solid rgba(61, 91, 255, 0.35);
  color: var(--blue-soft);
  margin-bottom: 1.3rem;
}
.icon svg { width: 26px; height: 26px; }

/* =============================================================
   9. Problema
   ============================================================= */
.prob-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.prob-card {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform .55s var(--ease-out), border-color .4s var(--ease-soft),
              box-shadow .55s var(--ease-out);
}
.prob-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 91, 255, 0.45);
  box-shadow: 0 24px 48px rgba(3, 6, 20, 0.55);
}
.prob-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}
.prob-card p { font-size: .95rem; color: var(--text-mute); }
.prob-note {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--cream);
  max-width: 32ch;
}
.prob-note em { color: var(--gold-soft); }

@media (min-width: 720px) {
  .prob-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   10. Solución (features)
   ============================================================= */
.feat-grid {
  display: grid;
  gap: 1.2rem;
}
.feat-card {
  background: rgba(7, 13, 34, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform .55s var(--ease-out), border-color .4s var(--ease-soft),
              background .4s var(--ease-soft);
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 179, 61, 0.4);
  background: rgba(13, 22, 60, 0.8);
}
.feat-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.feat-card p { font-size: .93rem; color: var(--text-mute); }
.feat-card-coin img {
  width: 56px; height: 56px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 8px 18px rgba(227, 149, 9, 0.35));
}

@media (min-width: 720px)  { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .feat-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   11. Cómo funciona (steps)
   ============================================================= */
.steps {
  display: grid;
  gap: 0;
  max-width: 760px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding-block: 2.1rem;
  position: relative;
}
.step + .step { border-top: 1px solid var(--line); }
.step-num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(61, 91, 255, 0.85);
  flex-shrink: 0;
  min-width: 2.2em;
}
.step-body h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: .4rem;
}
.step-body p { color: var(--text-mute); max-width: 44ch; }

/* =============================================================
   12. Historias / Vitrina (medallero CSS)
   ============================================================= */
.historias-grid {
  display: grid;
  gap: 3.4rem;
  align-items: center;
}
.historias-lines {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.9rem;
}
.historias-lines li {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
}
.historias-lines li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.historias-close {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--gold-soft);
}

.vitrina {
  background: linear-gradient(160deg, var(--navy-card) 0%, #0A102C 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 40px 90px rgba(2, 4, 16, 0.6);
}
.vitrina-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .3rem .4rem 1.2rem;
  font-family: var(--display);
  color: var(--cream);
  font-size: 1rem;
}
.vitrina-head img { width: 22px; }
.vitrina-count {
  margin-left: auto;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(227, 149, 9, 0.12);
  border: 1px solid rgba(227, 149, 9, 0.3);
  padding: .25rem .7rem;
  border-radius: 999px;
}
.vitrina-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.v-item {
  background: rgba(7, 13, 34, 0.65);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1rem 1rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: .3rem;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease-soft);
}
.v-item:hover {
  transform: translateY(-5px) rotate(-1deg);
  border-color: rgba(242, 179, 61, 0.45);
}
.v-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: .55rem;
}
.v-meta { font-size: .72rem; color: var(--text-mute); }

/* Medalla CSS */
.medal { position: relative; display: grid; justify-items: center; }
.medal-ribbon {
  width: 34px; height: 30px;
  background: linear-gradient(135deg, var(--blue) 50%, var(--blue-deep) 50%);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 22% 100%);
}
.medal-disc {
  width: 64px; height: 64px;
  margin-top: -8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: #5C3D05;
  background:
    radial-gradient(circle at 32% 28%, #FFE9A8 0%, var(--gold-soft) 38%, var(--gold) 72%, #B57205 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 244, 200, 0.55), 0 10px 22px rgba(227, 149, 9, 0.35);
}
.medal-silver .medal-disc {
  color: #3A4150;
  background: radial-gradient(circle at 32% 28%, #FFFFFF 0%, #D9DEE8 40%, #AEB6C6 75%, #828B9E 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.6), 0 10px 22px rgba(140, 150, 170, 0.3);
}

/* Dorsal CSS */
.bib {
  width: 100%;
  max-width: 130px;
  background: #FBFAF2;
  border-radius: 10px;
  padding: .5rem .4rem .55rem;
  display: grid;
  justify-items: center;
  gap: .1rem;
  box-shadow: 0 10px 24px rgba(2, 4, 16, 0.5);
}
.bib i {
  font-style: normal;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bib-brand { color: var(--blue); }
.bib b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.05;
  color: #11173B;
}
.bib-race { color: #8B8C7E; font-size: .5rem !important; }

/* Bib Coin */
.v-coin img {
  width: 92px;
  filter: drop-shadow(0 12px 22px rgba(227, 149, 9, 0.35));
}

/* Diploma CSS */
.diploma {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border-radius: 8px;
  position: relative;
  padding: 1rem .9rem;
  display: grid;
  align-content: center;
  gap: .45rem;
  box-shadow: 0 10px 24px rgba(2, 4, 16, 0.5);
}
.diploma i {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: rgba(17, 23, 59, 0.35);
}
.diploma i:nth-child(2) { width: 65%; }
.diploma-seal {
  position: absolute;
  right: 10px; bottom: 8px;
  width: 18px !important; height: 18px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold)) !important;
}

/* PB chip */
.pb-chip {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  background: rgba(15, 50, 250, 0.18);
  border: 1px solid rgba(61, 91, 255, 0.45);
  color: var(--cream);
  border-radius: 999px;
  padding: .8rem 1.15rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.pb-chip b {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}
.pb-chip i { font-style: normal; color: var(--gold-soft); }

@media (min-width: 960px) {
  .historias-grid { grid-template-columns: 1fr 1.05fr; gap: 4.5rem; }
  .vitrina { transform: rotate(0.6deg); }
}

/* =============================================================
   13. Prueba social (stats)
   ============================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.stat {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.3rem 1.2rem;
  background: rgba(13, 22, 60, 0.35);
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: .35rem;
}
.stat-num b { font-weight: 600; }
.stat-num-text { color: var(--gold-soft); }
.stat-label {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-mute);
  text-transform: uppercase;
}
@media (min-width: 960px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   14. Lista de espera
   ============================================================= */
.section-waitlist {
  background: var(--navy-2);
  isolation: isolate;
}
.waitlist-glow {
  position: absolute;
  inset: -30% -10%;
  z-index: -1;
  background:
    radial-gradient(46% 38% at 50% 52%, rgba(15, 50, 250, 0.28), transparent 75%),
    radial-gradient(30% 26% at 64% 40%, rgba(227, 149, 9, 0.1), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}
.waitlist-form {
  background: rgba(7, 13, 34, 0.75);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  gap: 1.25rem;
  box-shadow: 0 40px 90px rgba(2, 4, 16, 0.55);
}
.form-row { display: grid; gap: .45rem; }
.form-row label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form-row input {
  font: inherit;
  color: var(--cream);
  background: rgba(242, 239, 196, 0.05);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: .95rem 1.1rem;
  transition: border-color .3s var(--ease-soft), background .3s var(--ease-soft);
}
.form-row input::placeholder { color: rgba(240, 241, 233, 0.32); }
.form-row input:focus {
  outline: none;
  border-color: var(--blue-soft);
  background: rgba(15, 50, 250, 0.08);
}
.form-row select {
  font: inherit;
  color: var(--cream);
  background: rgba(242, 239, 196, 0.05);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: .95rem 2.6rem .95rem 1.1rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1.5 7 7.5 13 1.5' stroke='%23F2B33D' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  cursor: pointer;
  transition: border-color .3s var(--ease-soft), background-color .3s var(--ease-soft);
}
.form-row select:focus {
  outline: none;
  border-color: var(--blue-soft);
  background-color: rgba(15, 50, 250, 0.08);
}
.form-row select:invalid { color: rgba(240, 241, 233, 0.32); }
.form-row select option {
  background: var(--navy-card);
  color: var(--cream);
}

/* Honeypot: fuera de pantalla, invisible para humanos */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--text-mute);
  cursor: pointer;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: .15em;
  accent-color: var(--blue-soft);
  cursor: pointer;
}
.form-consent a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent a:hover { color: var(--cream); }

.form-error {
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  color: #FFB3A6;
  background: rgba(197, 48, 30, 0.14);
  border: 1px solid rgba(197, 48, 30, 0.45);
  border-radius: 13px;
  padding: .9rem 1.1rem;
}
.waitlist-form.is-sending button[type="submit"] {
  opacity: .8;
  pointer-events: none;
}
.form-trust {
  font-size: .82rem;
  color: var(--text-mute);
  text-align: center;
}
.form-success {
  text-align: center;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(227, 149, 9, 0.1);
  border: 1px solid rgba(227, 149, 9, 0.35);
  border-radius: 13px;
  padding: .9rem 1.1rem;
}
.waitlist-form.is-sent .btn-label { display: none; }
.waitlist-form.is-sent .btn-check { display: block; }
.waitlist-form.is-sent button[type="submit"] {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  box-shadow: 0 10px 32px rgba(227, 149, 9, 0.4);
  pointer-events: none;
}

/* =============================================================
   15. CTA final & footer
   ============================================================= */
.final-cta {
  padding-block: clamp(6rem, 12vw, 10rem);
  text-align: center;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(60% 70% at 50% 110%, rgba(15, 50, 250, 0.35), transparent 75%),
    var(--navy);
}
.final-iso {
  width: 56px;
  margin-inline: auto;
  margin-bottom: 1.8rem;
}
.final-cta h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 600;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 1.1rem;
}
.final-cta p {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--gold-soft);
  margin-bottom: 2.4rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding-block: 3.4rem 2.4rem;
  background: #050918;
}
.footer-inner {
  display: grid;
  justify-items: center;
  gap: 1.3rem;
  text-align: center;
}
.footer-inner > img { width: 120px; }
.footer-slogan {
  font-family: var(--display);
  color: var(--cream);
  font-size: 1.05rem;
  max-width: 38ch;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  font-size: .88rem;
  color: var(--text-mute);
}
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: .78rem; color: rgba(240, 241, 233, 0.35); }

/* =============================================================
   16. Reduced motion (solo efectos intrusivos)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-coin { animation: none; }
}
