:root {
  --black:    #0a0a0a;
  --black-2:  #111111;
  --black-3:  #161616;
  --black-4:  #1e1e1e;
  --orange:   #ff5500;
  --orange-2: #ff7733;
  --orange-3: #cc4400;
  --white:    #ffffff;
  --text:     #f3f3f3;
  --muted:    #9a9a9a;
  --line:     rgba(255,255,255,.1);
  --line-2:   rgba(255,255,255,.16);
  --card:     var(--black-3);
  --card-2:   var(--black-4);
  --ai: #ff9a3d;
  --ae: #9a8cff;
  --ps: #31a8f2;
  --bl: #7ee787;
  --ok: #46e0a0;

  --sans: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(.16,1,.3,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  background: var(--black);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--sans); letter-spacing: -.02em; line-height: 1.05; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- Nav ---- */
.nav {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0;
}
.nav .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav .logo img { height: 22px; width: auto; filter: invert(0); }
.nav .logo .word { font-family: var(--sans); font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--white); }
.nav .logo .word span { color: var(--orange); }
.nav .links { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav .links a { color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 600; }
.nav .links a:hover { color: var(--text); }
.nav .cta {
  border: 1px solid var(--orange); border-radius: 9px;
  background: var(--orange); color: var(--white) !important;
  padding: 9px 18px; font-weight: 700 !important; font-size: 13px !important;
}
.nav .cta:hover { background: var(--orange-2); }
.nav .cta.donate {
  border-color: var(--line-2); background: transparent; color: var(--text) !important;
}
.nav .cta.donate:hover { border-color: var(--white); }

/* ---- Demo interactiva del hero: el arte fluye de tus apps a After Effects ---- */
.app-stack-wrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.bridge-demo { position: relative; width: 100%; max-width: 360px; }

/* Destino: composición de After Effects */
.bd-stage {
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 60%), var(--black-2);
  border: 1px solid var(--line-2); border-radius: 18px; padding: 14px 14px 16px;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.7); position: relative; z-index: 2;
}
.bd-stage-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.bd-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ae); box-shadow: 0 0 0 3px rgba(154,140,255,.2); animation: bd-pulse 1.8s ease-in-out infinite; }
@keyframes bd-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.bd-stage-title { font-family: var(--sans); font-weight: 700; font-size: 14px; }
.bd-stage-status { margin-left: auto; font-size: 10.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.bd-layers { display: flex; flex-direction: column; gap: 7px; min-height: 132px; justify-content: flex-end; }
.bd-empty { color: var(--muted); font-size: 12px; text-align: center; margin: auto; opacity: .7; }

.bd-layer {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 9px;
  background: var(--card-2); border: 1px solid var(--line); border-left: 3px solid var(--c);
  transform-origin: left center; animation: bd-land .5s var(--ease-out) both;
}
@keyframes bd-land { from { opacity: 0; transform: translateY(-8px) scale(.96); } to { opacity: 1; transform: none; } }
.bd-layer.leaving { animation: bd-leave .35s var(--ease-out) both; }
@keyframes bd-leave { to { opacity: 0; transform: translateX(14px); } }
.bd-layer .bd-l-badge { width: 20px; height: 20px; border-radius: 5px; background: var(--c); color: #08080a; font-weight: 800; font-size: 9.5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bd-layer .bd-l-name { font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bd-layer .bd-l-kind { margin-left: auto; font-size: 9.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; flex-shrink: 0; }
.bd-layer.updated .bd-l-kind { color: var(--ok); }

/* Fuentes clicables */
.bd-sources { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.bd-src {
  --c: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 11px 6px;
  background: var(--black-3); border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  font: inherit; color: var(--text); transition: border-color .2s, transform .12s, box-shadow .25s;
}
.bd-src[data-app="ai"] { --c: var(--ai); }
.bd-src[data-app="ps"] { --c: var(--ps); }
.bd-src[data-app="bl"] { --c: var(--bl); }
.bd-src:hover { transform: translateY(-2px); border-color: var(--c); }
.bd-src.firing { border-color: var(--c); box-shadow: 0 0 0 1px var(--c), 0 12px 26px -10px var(--c); }
.bd-badge { width: 30px; height: 30px; border-radius: 8px; background: var(--c); color: #08080a; font-family: var(--sans); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.bd-name { font-size: 11px; font-weight: 600; color: var(--muted); }
.bd-src:hover .bd-name, .bd-src.firing .bd-name { color: var(--text); }
.bd-hint { text-align: center; font-size: 11px; color: var(--muted); margin: 12px 0 0; opacity: .8; }

/* Paquete que viaja de la fuente al escenario */
.bd-token {
  position: absolute; z-index: 5; width: 22px; height: 22px; border-radius: 6px;
  background: var(--c); box-shadow: 0 0 0 4px color-mix(in srgb, var(--c) 25%, transparent), 0 8px 18px -4px var(--c);
  pointer-events: none; transition: transform .52s var(--ease-out), opacity .52s ease; will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .bd-dot, .bd-layer, .bd-token { animation: none !important; transition: none !important; }
}

/* ---- Live badge ---- */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--muted);
  margin-bottom: 18px;
}
.live-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,85,0,.18); }
.live-badge b { color: var(--text); }

/* ---- Hero de dos columnas ---- */
.hero-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  padding: 54px 0 20px;
}
.hero-split .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em;
  border: 1px solid var(--line); border-radius: 20px; padding: 5px 14px;
  margin-bottom: 22px;
}
.hero-split h1 { font-size: clamp(38px, 4.6vw, 58px); font-weight: 700; margin: 0 0 18px; }
.hero-split h1 .hl { color: var(--orange); }
.hero-split p.sub { font-size: 16.5px; color: var(--muted); max-width: 460px; margin: 0 0 30px; }
.hero-split .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Centrado (páginas internas) */
.hero { padding: 56px 0 48px; text-align: center; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em;
  border: 1px solid var(--line); border-radius: 20px; padding: 5px 14px;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(32px, 4vw, 46px); font-weight: 700; margin: 0 0 14px; max-width: 760px; margin-left: auto; margin-right: auto; }
.hero h1 .hl { color: var(--orange); }
.hero p.sub { font-size: 16px; color: var(--muted); max-width: 580px; margin: 0 auto 28px; }
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: 12px; padding: 14px 26px;
  font-size: 15px; font-weight: 700; color: #fff; cursor: pointer; text-decoration: none;
  background: var(--orange);
  box-shadow: 0 10px 26px -8px rgba(255,85,0,.55);
  transition: background .2s ease, transform .08s ease;
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 24px;
  background: rgba(255,255,255,.02); color: var(--text); text-decoration: none;
  font-size: 15px; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-donate {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-2); border-radius: 12px; padding: 14px 26px;
  font-size: 15px; font-weight: 700; color: var(--text); cursor: pointer; text-decoration: none;
  background: var(--card); transition: border-color .2s;
}
.btn-donate:hover { border-color: var(--orange); }

/* ---- Pills / badges de apps ---- */
.pill {
  display: inline-flex; align-items: center;
  font-weight: 800; font-size: 11px; letter-spacing: .02em;
  padding: 3px 9px; border-radius: 7px; line-height: 1.5;
}
.pill.ai { background: rgba(255,154,61,.14); color: var(--ai); border: 1px solid rgba(255,154,61,.35); }
.pill.ae { background: rgba(154,140,255,.14); color: var(--ae); border: 1px solid rgba(154,140,255,.4); }
.pill.bl { background: rgba(126,231,135,.14); color: var(--bl); border: 1px solid rgba(126,231,135,.35); }
.pill.ps { background: rgba(49,168,242,.16); color: var(--ps); border: 1px solid rgba(49,168,242,.4); }

/* ---- Franja "Compatible con" ---- */
.compat-strip { padding: 8px 0 40px; }
.compat-strip .label {
  text-align: center; font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 20px;
}
.compat-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.compat-chip {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 11px; padding: 10px 18px;
  background: rgba(255,255,255,.02); color: var(--muted); font-weight: 700; font-size: 13.5px;
  opacity: .85; transition: opacity .2s, border-color .2s;
}
.compat-chip:hover { opacity: 1; border-color: var(--line-2); }
.compat-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.compat-chip.ai .dot { background: var(--ai); } .compat-chip.ai { color: #ffb374; }
.compat-chip.ae .dot { background: var(--ae); } .compat-chip.ae { color: #b7acff; }
.compat-chip.ps .dot { background: var(--ps); } .compat-chip.ps { color: #67c1f5; }
.compat-chip.bl .dot { background: var(--bl); } .compat-chip.bl { color: #a3eea9; }

/* ---- Stats ---- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 10px 0 0; }
.stat-card { border-radius: 18px; padding: 26px 24px; }
.stat-card .num { font-family: var(--sans); font-size: 34px; font-weight: 700; margin-bottom: 6px; }
.stat-card .lbl { font-size: 13px; opacity: .85; }
.stat-card.hi { background: var(--orange); color: #fff; }
.stat-card.lo { background: var(--card); border: 1px solid var(--line); color: var(--text); }
.stat-card.lo .num { color: var(--white); }
.stat-card.lo .lbl { color: var(--muted); }

/* ---- Secciones ---- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head.left { text-align: left; margin: 0 0 36px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head.left .copy { max-width: 480px; }
.section-head .eyebrow-line {
  font-size: 11.5px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin: 0 0 10px; }
.section-head p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---- Features numeradas + tarjeta flotante ---- */
.features-split { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: center; }
.num-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.num-row {
  display: flex; align-items: center; gap: 20px; padding: 20px 6px;
  border-bottom: 1px solid var(--line); transition: background .2s;
}
.num-row:hover { background: rgba(255,255,255,.02); }
.num-row .n { font-family: var(--sans); font-weight: 700; color: var(--muted); font-size: 13px; width: 26px; flex-shrink: 0; }
.num-row .body h4 { margin: 0 0 4px; font-size: 15.5px; font-weight: 700; }
.num-row .body p { margin: 0; color: var(--muted); font-size: 13px; }
.num-row .go {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--card-2); display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
}
.num-row.hi { background: var(--orange); border-color: transparent; border-radius: 14px; }
.num-row.hi .n, .num-row.hi .body h4, .num-row.hi .body p { color: #fff; }
.num-row.hi .go { background: rgba(255,255,255,.22); color: #fff; }

.sync-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 22px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7);
}
.sync-card .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.sync-card .head b { font-size: 14px; }
.sync-card .head span { font-size: 11px; color: var(--muted); }
.sync-card .bar { height: 6px; border-radius: 4px; background: var(--card-2); overflow: hidden; display: flex; margin-bottom: 18px; }
.sync-card .bar i { display: block; height: 100%; }
.sync-card .bar .a { width: 62%; background: var(--orange); }
.sync-card .bar .b { width: 22%; background: var(--ae); }
.sync-card .bar .c { width: 16%; background: var(--card-2); }
.sync-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.sync-row .ico {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}
.sync-row .ico.ai { background: rgba(255,154,61,.16); color: var(--ai); }
.sync-row .ico.ae { background: rgba(154,140,255,.16); color: var(--ae); }
.sync-row .ico.ps { background: rgba(49,168,242,.18); color: var(--ps); }
.sync-row .txt { flex: 1; font-size: 12.5px; }
.sync-row .txt b { font-weight: 700; }
.sync-row .txt span { display: block; color: var(--muted); font-size: 11px; }
.sync-row .status {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 20px;
}
.sync-row .status.ok { background: rgba(70,224,160,.14); color: var(--ok); }
.sync-row .status.upd { background: rgba(255,85,0,.14); color: var(--orange-2); }

/* ---- Benefits split ---- */
.benefits-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.benefits-split h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin: 0 0 16px; }
.benefits-split p.lead { color: var(--muted); font-size: 15px; margin: 0 0 26px; max-width: 460px; }
.benefit-item { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.benefit-item .ico {
  width: 34px; height: 34px; border-radius: 9px; background: var(--card-2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.benefit-item .txt b { display: block; font-size: 14.5px; margin-bottom: 2px; }
.benefit-item .txt span { color: var(--muted); font-size: 13px; }

/* ---- Grid de producto (hub / catálogo) ---- */
.grid-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card-product {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px; text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .15s;
}
.card-product:hover { border-color: var(--orange); transform: translateY(-3px); }
.card-product.soon { opacity: .55; cursor: default; }
.card-product.soon:hover { transform: none; border-color: var(--line); }
.card-product .badges { display: flex; gap: 6px; flex-wrap: wrap; }
.card-product h3 { margin: 0; font-size: 19px; font-weight: 700; }
.card-product p { margin: 0; color: var(--muted); font-size: 13.5px; flex: 1; }
.card-product .arrow { font-size: 13px; font-weight: 700; color: var(--orange); }
.tag-soon {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); border: 1px solid var(--line-2); border-radius: 20px; padding: 3px 10px;
  width: fit-content;
}
.tag-live {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ok); border: 1px solid rgba(70,224,160,.4); background: rgba(70,224,160,.08);
  border-radius: 20px; padding: 3px 10px; width: fit-content;
}

/* ---- Grid de features (página producto) ---- */
.grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.feature .icn { font-size: 22px; margin-bottom: 12px; display: block; }
.feature h3 { margin: 0 0 8px; font-size: 15.5px; font-weight: 700; }
.feature p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ---- Partners / apps compatibles (bloque negro tipo grid grande) ---- */
.partners-block { background: var(--black-2); border-radius: 28px; padding: 56px 40px; }
.partners-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 40px; }
.partners-head h2 { font-size: clamp(22px, 2.8vw, 28px); font-weight: 700; margin: 0 0 8px; }
.partners-head p { color: var(--muted); font-size: 14.5px; margin: 0; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner-card {
  aspect-ratio: 1/1; border-radius: 18px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
}
.partner-card .ico { font-size: 30px; }
.partner-card.ai { background: linear-gradient(135deg, #ff9a3d, #ff5500); color: #fff; }
.partner-card.ae { background: linear-gradient(135deg, #9a8cff, #6a5cff); color: #fff; }
.partner-card.ps { background: linear-gradient(135deg, #31a8f2, #1f7fd6); color: #fff; }
.partner-card.bl { background: linear-gradient(135deg, #ff8a34, #e2761d); color: #fff; }

/* ---- Testimonio / cita del creador ---- */
.quote-block { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-mark { font-size: 60px; color: var(--orange); font-family: var(--sans); line-height: 1; margin-bottom: 8px; }
.quote-block p.q { font-size: clamp(20px, 2.6vw, 28px); font-weight: 500; margin: 0 0 26px; letter-spacing: -.01em; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote-author .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 14px;
}
.quote-author .who b { display: block; font-size: 14px; }
.quote-author .who span { color: var(--muted); font-size: 12.5px; }

/* ---- Wordmark gigante ---- */
.giant-wordmark {
  text-align: center; overflow: hidden; padding: 20px 0 0;
}
.giant-wordmark .word {
  font-family: var(--sans); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(70px, 16vw, 220px); line-height: .85;
  color: var(--orange);
  text-shadow:
    1px 1px 0 var(--orange-3), 2px 2px 0 var(--orange-3), 3px 3px 0 var(--orange-3),
    4px 4px 0 var(--orange-3), 5px 5px 0 var(--orange-3), 6px 6px 0 var(--orange-3),
    7px 7px 0 var(--orange-3), 8px 8px 12px rgba(0,0,0,.5);
  white-space: nowrap;
}

/* ---- CTA final ---- */
.cta-final { background: var(--orange); border-radius: 28px; padding: 56px 44px; color: #fff; }
.cta-final .row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; }
.cta-final h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; margin: 0 0 12px; }
.cta-final p { margin: 0; opacity: .92; font-size: 15px; max-width: 420px; }
.cta-final .btn-primary { background: #fff; color: var(--orange); box-shadow: none; }
.cta-final .btn-primary:hover { background: #fff2ea; }

.cta-box {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 48px 32px; text-align: center;
}
.cta-box h2 { font-size: 26px; margin: 0 0 12px; font-weight: 700; }
.cta-box p { color: var(--muted); margin: 0 0 26px; font-size: 15px; }

.cta-split {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 44px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; overflow: hidden;
}
.cta-split h2 { font-size: 28px; margin: 0 0 12px; font-weight: 700; }
.cta-split p { color: var(--muted); margin: 0 0 24px; font-size: 15px; }
.cta-split.single { grid-template-columns: 1fr; text-align: center; }
.cta-split.single p { margin-left: auto; margin-right: auto; max-width: 520px; }

/* ---- Donación ---- */
.donate-panel {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center;
}
.donate-panel .copy h2 { font-size: 26px; font-weight: 700; margin: 0 0 12px; }
.donate-panel .copy p { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.donate-tiers { display: flex; flex-direction: column; gap: 10px; }
.donate-tier {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--line-2); border-radius: 12px; padding: 14px 18px;
  background: rgba(255,255,255,.02);
}
.donate-tier .t-name { font-weight: 700; font-size: 13.5px; }
.donate-tier .t-desc { color: var(--muted); font-size: 12px; margin-top: 2px; }
.donate-tier .t-amt { font-weight: 800; font-size: 15px; color: var(--orange-2); white-space: nowrap; }
.donate-note { font-size: 12px; color: var(--muted); margin-top: 16px; }

/* ---- Footer ---- */
footer { padding: 40px 0 48px; }
footer .foot-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer .foot-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
footer .foot-logo img { height: 16px; width: auto; }
footer .foot-logo span { font-weight: 700; font-size: 14px; color: var(--text); }
footer .foot-links { display: flex; gap: 18px; }
footer .foot-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
footer .foot-links a:hover { color: var(--text); }
footer .copy { color: var(--muted); font-size: 12px; margin-top: 18px; }
footer.on-black { background: var(--black); }

/* ---- Página de producto ---- */
.product-hero { padding: 48px 0 40px; }
.product-hero .badges { display: flex; gap: 8px; margin-bottom: 18px; }
.product-hero h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 700; margin: 0 0 14px; }
.product-hero p.sub { font-size: 16px; color: var(--muted); max-width: 620px; margin: 0 0 28px; }

.list-check { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.list-check li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.list-check li::before { content: "✓"; color: var(--orange); font-weight: 800; flex-shrink: 0; }

.steps { counter-reset: step; display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .num {
  counter-increment: step; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--card-2); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: var(--orange);
}
.step .num::before { content: counter(step); }
.step .body h4 { margin: 0 0 4px; font-size: 14.5px; font-weight: 700; }
.step .body p { margin: 0; color: var(--muted); font-size: 13.5px; }

.note-box {
  background: rgba(255,85,0,.08); border: 1px solid rgba(255,85,0,.3);
  border-radius: 12px; padding: 16px 18px; font-size: 13px; color: var(--text);
}
.note-box b { color: var(--orange-2); }

@media (max-width: 900px) {
  .features-split, .benefits-split, .partners-head, .cta-final .row { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero-split p.sub { margin-left: auto; margin-right: auto; }
  .hero-split .actions { justify-content: center; }
  .hero-split .app-stack-wrap { order: -1; }
  .donate-panel { grid-template-columns: 1fr; padding: 28px; }
  .cta-split { grid-template-columns: 1fr; text-align: center; padding: 32px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .nav .links { display: none; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}
