/* ==========================================================================
   Fulbito — landing page
   Paleta y tipografía tomadas del design system de la app (Flutter):
   primary #16A34A · accent #FBBF24 · scaffold #0F172A · card #1E293B · Manrope
   ========================================================================== */

/* Manrope (variable, self-hosted) — SIL Open Font License 1.1.
   Ver assets/fonts/OFL.txt. Se sirve desde el propio dominio para no depender
   de Google Fonts ni filtrar la IP de los visitantes. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --green:        #16A34A;
  --green-bright: #22C55E;
  --green-dark:   #128040;
  --amber:        #FBBF24;
  --navy:         #0A1628;
  --navy-green:   #082011;
  --bg:           #0F172A;
  --card:         #1E293B;

  --text:         #F1F5F9;
  --text-soft:    #C3CEDD;
  --text-muted:   #8FA0B5;
  --line:         rgba(255, 255, 255, .10);
  --line-strong:  rgba(255, 255, 255, .18);

  --wrap:         1180px;
  --radius:       18px;
  --radius-lg:    26px;

  --shadow-sm:    0 2px 10px rgba(0, 0, 0, .25);
  --shadow-md:    0 18px 40px rgba(0, 0, 0, .38);
  --shadow-lg:    0 40px 90px rgba(0, 0, 0, .55);

  --ease:         cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------- reset ---------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -.022em; font-weight: 800; }
p { margin: 0; }
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 8px;
  transform: translate(-50%, -200%);
  z-index: 100;
  background: var(--green); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 700; text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}
.wrap-narrow { max-width: 820px; }

/* ------------------------------ botones --------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 12px 28px rgba(22, 163, 74, .34);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(22, 163, 74, .44); }
.btn-primary:active { transform: translateY(0); }
.btn-primary[disabled] { opacity: .6; cursor: progress; transform: none; }

.btn-sm { padding: 10px 20px; font-size: .95rem; }

/* ------------------------------- header --------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(10, 22, 40, .92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-mark { border-radius: 12px; }
.brand-name { font-size: 1.3rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  color: var(--text-soft);
  transition: color .18s var(--ease);
}
.nav a:hover { color: #fff; }
.nav .btn { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------- hero --------------------------------- */

.hero {
  position: relative;
  padding: clamp(52px, 8vw, 96px) 0 clamp(48px, 7vw, 84px);
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(22, 163, 74, .20), transparent 62%),
    radial-gradient(90% 70% at 8% 12%, rgba(30, 58, 138, .28), transparent 60%),
    linear-gradient(168deg, var(--navy) 0%, var(--bg) 46%, var(--navy-green) 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: auto -20% -55% 30%;
  height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 163, 74, .30), transparent 66%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, .38);
  border-radius: 999px;
  background: rgba(22, 163, 74, .12);
  color: #A7F3C4;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.pill-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .65); }
  70%  { box-shadow: 0 0 0 11px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.05rem);
  margin-bottom: 20px;
}
.hl {
  background: linear-gradient(100deg, var(--green-bright) 8%, var(--amber) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 42ch;
  font-size: clamp(1.03rem, 1.6vw, 1.17rem);
  color: var(--text-soft);
  margin-bottom: 30px;
}

/* ------------------------------ waitlist -------------------------------- */

.waitlist { max-width: 520px; }

.waitlist-row {
  display: flex;
  gap: 10px;
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(15, 23, 42, .66);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.waitlist-row:focus-within {
  border-color: rgba(34, 197, 94, .6);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .16);
}
.waitlist-row input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 8px 12px 20px;
  border: 0;
  background: transparent;
  font-size: 1rem;
}
.waitlist-row input::placeholder { color: var(--text-muted); }
.waitlist-row input:focus { outline: none; }

.waitlist-note {
  margin-top: 12px;
  padding-left: 4px;
  font-size: .85rem;
  color: var(--text-muted);
}

.waitlist-status {
  margin-top: 10px;
  padding-left: 4px;
  font-size: .92rem;
  font-weight: 600;
  min-height: 1.4em;
}
.waitlist-status.is-ok    { color: #6EE7A0; }
.waitlist-status.is-error { color: #FCA5A5; }

/* ------------------------------- stores --------------------------------- */

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 20px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  color: var(--text-soft);
}
.store-badge svg { width: 25px; height: 25px; flex: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.store-badge strong { font-size: 1.02rem; color: var(--text); }

/* --------------------------- mockup del teléfono ------------------------ */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  position: relative;
  width: min(320px, 82vw);
  padding: 12px;
  border-radius: 46px;
  background: linear-gradient(160deg, #33415A, #131C2E 55%, #0B1220);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .07) inset;
  transform: rotate(-2.6deg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-2.6deg) translateY(0); }
  50%      { transform: rotate(-2.6deg) translateY(-14px); }
}

.phone-screen {
  position: relative;
  padding: 30px 16px 20px;
  border-radius: 36px;
  background: linear-gradient(175deg, #101C31, #0C1524 60%, #0A1A12);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 20px;
  border-radius: 0 0 14px 14px;
  background: #0B1220;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.app-top img { border-radius: 9px; }
.app-hi  { font-weight: 800; font-size: .95rem; line-height: 1.25; }
.app-sub { font-size: .74rem; color: var(--text-muted); line-height: 1.25; }

.app-card {
  padding: 14px;
  margin-bottom: 11px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(30, 41, 59, .82);
}
.app-card-hero {
  border-color: rgba(34, 197, 94, .32);
  background: linear-gradient(150deg, rgba(22, 163, 74, .20), rgba(30, 41, 59, .9));
}
.app-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.chip {
  padding: 3px 11px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.chip-green { background: rgba(34, 197, 94, .22); color: #86EFAC; }
.app-time { font-size: .8rem; font-weight: 700; color: var(--amber); }
.app-title { font-weight: 800; font-size: .95rem; }
.app-meta  { font-size: .74rem; color: var(--text-muted); margin-top: 2px; }

.avatars { display: flex; margin: 12px 0; }
.av {
  display: grid;
  place-items: center;
  width: 29px; height: 29px;
  margin-right: -8px;
  border: 2px solid #101C31;
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 800;
  color: #06210F;
}
.av-1 { background: #22C55E; }
.av-2 { background: #FBBF24; }
.av-3 { background: #60A5FA; }
.av-4 { background: #F472B6; }
.av-more { background: rgba(255, 255, 255, .14); color: var(--text-soft); }

.app-btn {
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.app-card-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.teams { display: grid; gap: 9px; }
.team {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
}
.team-dot { width: 9px; height: 9px; border-radius: 50%; }
.team-a { background: var(--green-bright); }
.team-b { background: var(--amber); }
.team-name  { font-size: .82rem; font-weight: 700; }
.team-line  { font-size: .64rem; color: var(--text-muted); letter-spacing: .03em; }
.team-score { font-size: 1.05rem; font-weight: 800; }

.balance {
  height: 5px;
  margin: 12px 0 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.balance-fill {
  display: block;
  width: 96%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-bright), var(--amber));
}
.app-card-foot { font-size: .68rem; color: var(--text-muted); }

.float-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(15, 23, 42, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  animation: float 7s ease-in-out infinite;
}
.float-card strong { font-size: 1.28rem; font-weight: 800; line-height: 1.1; }
.float-card span   { font-size: .72rem; color: var(--text-muted); }
.float-goals { top: 11%; left: -2%; animation-delay: -1.6s; }
.float-goals strong { color: var(--green-bright); }
.float-rank  { bottom: 13%; right: -2%; animation-delay: -3.4s; }
.float-rank strong  { color: var(--amber); }

/* -------------------------------- chips --------------------------------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: clamp(38px, 6vw, 62px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.chips li {
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-soft);
}
.chips .chips-sep {
  padding: 0 4px;
  border: 0;
  background: none;
  color: var(--text-muted);
}

/* ------------------------------ secciones -------------------------------- */

.section { padding: clamp(64px, 9vw, 118px) 0; }
.section-alt {
  background:
    radial-gradient(70% 90% at 100% 0%, rgba(22, 163, 74, .10), transparent 60%),
    #0C1524;
  border-block: 1px solid var(--line);
}

.section-head { max-width: 700px; margin-bottom: clamp(38px, 6vw, 62px); }
.eyebrow {
  margin-bottom: 14px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.section-head h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
.section-lede {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--text-soft);
}

/* ------------------------------ funciones -------------------------------- */

.features { display: grid; gap: clamp(46px, 7vw, 86px); }

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 4.5vw, 58px);
}
.feature-flip .feature-media { order: 2; }

.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(22, 163, 74, .26), rgba(10, 22, 40, .5));
  mix-blend-mode: multiply;
}
.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .6s var(--ease);
}
.feature:hover .feature-media img { transform: scale(1.05); }

.feature-num {
  display: block;
  margin-bottom: 12px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--amber);
}
.feature-body h3 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin-bottom: 14px; }
.feature-body > p { color: var(--text-soft); margin-bottom: 20px; }

.ticks { display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 32px;
  font-size: .97rem;
  color: var(--text-soft);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .34em;
  width: 19px; height: 19px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px 12px no-repeat,
    var(--green);
}

.quote {
  max-width: 760px;
  margin: clamp(46px, 7vw, 82px) auto 0;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(251, 191, 36, .3);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(251, 191, 36, .12), rgba(30, 41, 59, .35));
  text-align: center;
}
.quote p {
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.015em;
}
.quote::before { content: "🔥"; display: block; font-size: 1.6rem; margin-bottom: 12px; }

/* ----------------------------- cómo funciona ----------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 34px 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(30, 41, 59, .78), rgba(15, 23, 42, .5));
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.step:hover { transform: translateY(-5px); border-color: rgba(34, 197, 94, .42); }
.step-num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  box-shadow: 0 10px 22px rgba(22, 163, 74, .3);
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p  { color: var(--text-soft); font-size: .97rem; }

/* --------------------------------- CTA ----------------------------------- */

/* El aire lo aportan las secciones vecinas: así el bloque no queda flotando */
.cta-section { padding-block: 0; }
.cta {
  position: relative;
  padding: clamp(42px, 7vw, 78px) clamp(24px, 5vw, 62px);
  border: 1px solid rgba(34, 197, 94, .26);
  border-radius: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(22, 163, 74, .26), transparent 65%),
    linear-gradient(160deg, #10233A, #0B1524 60%, #08210F);
  box-shadow: var(--shadow-md);
  text-align: center;
  overflow: hidden;
}
.cta-logo { margin: 0 auto 22px; border-radius: 20px; }
.cta h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta > p {
  max-width: 54ch;
  margin: 0 auto;
  color: var(--text-soft);
}
.waitlist-lg { margin: 30px auto 0; }
.waitlist-lg .waitlist-note,
.waitlist-lg .waitlist-status { text-align: center; padding-left: 0; }

/* --------------------------------- FAQ ----------------------------------- */

.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, .5);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.faq details[open] {
  border-color: rgba(34, 197, 94, .34);
  background: rgba(30, 41, 59, .8);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  border-right: 2.4px solid var(--green-bright);
  border-bottom: 2.4px solid var(--green-bright);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq details p {
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: .99rem;
}
.faq a { color: var(--green-bright); }

/* -------------------------------- footer --------------------------------- */

.site-footer {
  padding: clamp(46px, 6vw, 66px) 0 34px;
  border-top: 1px solid var(--line);
  background: #0A1220;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
}
.footer-brand p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: .95rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.footer-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-soft);
}
.footer-nav a:hover { color: var(--green-bright); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  color: var(--text-muted);
}

/* ------------------------------- reveal ---------------------------------- */

/* Solo se ocultan si hay JS para volver a mostrarlas (clase .js en <html>) */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------ responsive ------------------------------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy  { text-align: center; }
  .lede, .waitlist { margin-inline: auto; }
  .pill, .stores { justify-content: center; }
  .waitlist-note, .waitlist-status { text-align: center; padding-left: 0; }
  .hero-visual { margin-top: 18px; }

  .feature { grid-template-columns: 1fr; }
  .feature-flip .feature-media { order: 0; }

  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 22px 22px;
    background: rgba(10, 22, 40, .98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 4px; font-size: 1.05rem; }
  .nav .btn { margin-top: 10px; justify-content: center; }

  body { font-size: 16px; }

  .waitlist-row {
    flex-direction: column;
    padding: 12px;
    border-radius: 22px;
  }
  .waitlist-row input { padding: 10px 14px; text-align: center; }
  .waitlist-row .btn { width: 100%; }

  .float-goals { top: 4%; left: -6px; }
  .float-rank  { bottom: 6%; right: -6px; }
  .float-card  { padding: 10px 14px; }
}

@media (max-width: 420px) {
  .stores { flex-direction: column; }
  .store-badge { justify-content: center; }
}

/* ------------------------- preferencias del sistema ---------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .hero-visual, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
}
