﻿:root {
  --bg: #000000;
  --bg-elev: #0a0a0c;
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.78);
  --ink-mute: rgba(255, 255, 255, 0.55);
  --purple: #8b5cf6;
  --purple-2: #a78bfa;
  --magenta: #e879f9;
  --teal: #2dd4bf;
  --orange: #fb923c;
  --line: rgba(255, 255, 255, 0.12);
  --font: "Inter", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 2.5rem, var(--max));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* ========== Top nav ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex: 0 0 auto;
}

.brand-logo {
  height: 42px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
}

@media (max-width: 560px) {
  .brand-logo { height: 34px; }
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-center a:hover { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.lang-toggle,
.site-footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-toggle .js-lang,
.site-footer-lang .js-lang {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  padding: 0.15rem 0.1rem;
  transition: color 0.2s ease;
}

.lang-toggle .js-lang:hover,
.site-footer-lang .js-lang:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lang-toggle .js-lang.is-active,
.site-footer-lang .js-lang.is-active {
  color: #fff;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.lang-toggle b { color: #fff; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.btn-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 30% auto auto;
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}

.hero-copy {
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(167, 139, 250, 0.55);
  border-radius: 999px;
  color: var(--purple-2);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.05s forwards;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-2);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.9);
}

.hero h1 {
  margin: 0 0 1.75rem;
  font-size: clamp(1.7rem, 3.6vw, 3.35rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
  font-weight: 800;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.15s forwards;
}

.hero h1 .line,
.hero h1 .grad {
  display: block;
}

.hero h1 .grad {
  margin-top: 0.1em;
  background: linear-gradient(100deg, #c084fc 0%, #f472b6 28%, #fb923c 55%, #a3e635 78%, #2dd4bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.25s forwards;
}

.hero-quote {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  padding: 0.15rem 0 0.15rem 1.05rem;
  border-left: 3px solid rgba(167, 139, 250, 0.9);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.32s forwards;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  margin-top: 0.25rem;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.4s forwards;
}

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #f5c542;
  letter-spacing: 1px;
  font-size: 1.05rem;
  margin-right: 0.15rem;
}

.rating-score {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.rating-sep {
  color: rgba(255, 255, 255, 0.45);
}

.rating-meta {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 168px;
  min-height: 52px;
  padding: 0.55rem 1.05rem 0.55rem 0.9rem;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: #111;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.store-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.store-btn svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.store-btn small {
  display: block;
  font-size: 0.66rem;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.15;
  font-weight: 500;
}

.store-btn strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #111;
}

.cta-link {
  display: inline-block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  transition: color 0.2s var(--ease);
}

.cta-link:hover {
  color: #fff;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  opacity: 0;
  animation: rise 1s var(--ease) 0.25s forwards;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.8rem;
  width: min(340px, 100%);
  align-items: stretch;
  justify-items: stretch;
}

.glow {
  display: none;
}

.phone {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 19.2;
  border-radius: 28px;
  padding: 7px;
  background: linear-gradient(160deg, #3f3f46, #18181b 40%, #09090b);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.55);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55)),
    var(--screen-image, linear-gradient(160deg, #4c1d95, #1e1b4b 55%, #111827));
  background-size: cover;
  background-position: center;
}

.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #000;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  max-width: 68px;
  height: 12px;
  border-radius: 999px;
  background: #09090b;
  z-index: 3;
}

.phone-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 0.85rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85) 45%);
  z-index: 3;
  pointer-events: none;
}

.phone-ui .tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.85);
  font-size: 0.65rem;
  font-weight: 700;
}

.phone-ui h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

/* ========== Sections ========== */
.section {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--purple-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 800;
}

.section-lead {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* Pioneers KPIs */
.section-pioneers {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  border-top: 0;
  text-align: center;
}

.pioneers-label {
  margin: 0 0 2.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem 1rem;
  align-items: start;
}

.kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.kpi-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2rem;
}

.kpi-icon svg {
  width: 100%;
  height: 100%;
}

.kpi-icon--purple { color: #a78bfa; }
.kpi-icon--green { color: #4ade80; }
.kpi-icon--orange { color: #fb923c; }
.kpi-icon--pink { color: #f472b6; }
.kpi-icon--violet { color: #c084fc; }

.kpi strong {
  display: block;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.kpi span:last-child {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Formato：仅标题区居中；4 卡片保持原宽左对齐布局 */
.section-formato {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(5rem, 9vw, 7rem);
  border-top: 0;
  overflow: hidden;
}

.section-formato::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8%;
  transform: translateX(-50%);
  width: min(760px, 90vw);
  height: 300px;
  background: radial-gradient(ellipse at center top, rgba(192, 132, 252, 0.2), transparent 70%);
  pointer-events: none;
}

.formato-head {
  position: relative;
  max-width: 48rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.formato-tag {
  display: block;
  margin: 0 0 0.85rem;
  color: #e879f9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-formato h2,
h2.formato-title {
  margin: 0 0 1.15rem;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.formato-text {
  margin: 0 auto;
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  text-align: center;
}

.formato-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  width: 100%;
  margin: 0;
}

.formato-card {
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.formato-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.formato-ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.02);
}

.formato-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}

.formato-ico--purple { color: #a78bfa; }
.formato-ico--teal { color: #2dd4bf; }
.formato-ico--orange { color: #fb923c; }
.formato-ico--green { color: #4ade80; }

.formato-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.formato-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.65;
}

.series-section .series-head {
  margin-bottom: 1.75rem;
  text-align: left;
}

.series-eyebrow {
  margin: 0 0 0.55rem;
  color: #ff4db8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.series-title {
  margin: 0;
  display: grid;
  gap: 0.1rem;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.series-title-main { color: #fff; }
.series-title-sub { color: rgba(255, 255, 255, 0.42); }

.series-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem 1.25rem;
  align-items: start;
}

.series-card {
  min-width: 0;
}

.series-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2155, #0b0b12);
  transition: transform 0.35s var(--ease);
}

.series-card:hover .series-poster {
  transform: translateY(-4px);
}

.series-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.series-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 0.4rem;
  background: #7c3aed;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.series-caption {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.series-more {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.series-more-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  transition: color 0.2s var(--ease);
}

.series-more-link:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .series-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 0.85rem 0.75rem;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .series-card {
    scroll-snap-align: unset;
    min-width: 0;
  }

  .series-caption {
    font-size: 0.82rem;
    margin-top: 0.55rem;
  }

  .series-badge {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.62rem;
    padding: 0.22rem 0.45rem;
  }

  .series-more {
    margin-top: 1.35rem;
  }
}

.howto-head {
  text-align: center;
  margin-bottom: 0.25rem;
}

.howto-eyebrow {
  margin: 0 0 0.7rem;
  color: #ff4db8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.howto-title {
  margin: 0 auto;
  max-width: none;
  color: #fff;
  font-size: clamp(2.85rem, 7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.howto-lead {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.02rem;
  line-height: 1.55;
}

.howto-steps {
  margin-top: 3rem;
  display: grid;
  gap: 2.25rem;
}

.howto-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.howto-feature--reverse .howto-feature-copy {
  justify-self: end;
  padding-left: 0;
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.howto-feature--teal .howto-big-num { color: #2dd4bf; }
.howto-feature--teal .howto-ico {
  color: #2dd4bf;
  border-color: rgba(45, 212, 191, 0.4);
}
.howto-feature--teal .howto-glow {
  background: radial-gradient(circle at 50% 45%, rgba(45, 212, 191, 0.35), transparent 68%);
}

.howto-feature--orange .howto-big-num { color: #fb923c; }
.howto-feature--orange .howto-ico {
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.45);
}
.howto-feature--orange .howto-glow {
  background: radial-gradient(circle at 50% 45%, rgba(251, 146, 60, 0.32), transparent 68%);
}

.howto-feature--lime .howto-big-num { color: #a3e635; }
.howto-feature--lime .howto-ico {
  color: #a3e635;
  border-color: rgba(163, 230, 53, 0.45);
}
.howto-feature--lime .howto-glow {
  background: radial-gradient(circle at 50% 45%, rgba(163, 230, 53, 0.28), transparent 68%);
}

.howto-feature--violet .howto-big-num { color: #c084fc; }
.howto-feature--violet .howto-ico {
  color: #c084fc;
  border-color: rgba(192, 132, 252, 0.45);
}
.howto-feature--violet .howto-glow {
  background: radial-gradient(circle at 50% 45%, rgba(168, 85, 247, 0.4), transparent 68%);
}

.howto-feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 100%;
  min-height: 420px;
}

.howto-glow {
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(circle at 50% 45%, rgba(168, 85, 247, 0.45), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.howto-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 248px);
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a32, #0d0d12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.55);
}

.howto-phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.2;
}

.howto-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.howto-feature-copy {
  text-align: left;
  justify-self: start;
  width: 100%;
  max-width: 28rem;
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
}

.howto-feature-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.howto-big-num {
  color: #d946ef;
  font-size: clamp(4.5rem, 9vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.howto-ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: #e879f9;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 121, 249, 0.35);
}

.howto-ico svg {
  width: 1.25rem;
  height: 1.25rem;
}

.howto-feature-copy h3 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.howto-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
}

.howto-list {
  display: grid;
  gap: 0.85rem;
}

.howto-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.howto-row-num {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  background: #a78bfa;
}

.howto-row h3 {
  margin: 0 0 0.22rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
}

.howto-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .howto-feature {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
    gap: 1.5rem;
  }

  .howto-feature--reverse .howto-feature-visual {
    order: -1;
  }

  .howto-feature-visual {
    min-height: 0;
    width: 100%;
    justify-self: center;
  }

  .howto-feature-copy,
  .howto-feature--reverse .howto-feature-copy {
    text-align: left;
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
  }

  .howto-feature-top {
    justify-content: flex-start;
  }

  .howto-big-num {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .howto-feature-copy h3 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .howto-feature-copy p {
    font-size: 0.95rem;
  }

  .howto-phone {
    width: min(100%, 210px);
  }
}

.cta-band {
  margin-top: 3.5rem;
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.6rem, 4vw, 3.25rem);
  border-radius: 22px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background:
    radial-gradient(420px 200px at 8% 0%, rgba(124, 58, 237, 0.35), transparent 55%),
    radial-gradient(520px 240px at 92% 0%, rgba(168, 85, 247, 0.32), transparent 58%),
    linear-gradient(160deg, #12081c 0%, #07070a 55%, #050508 100%);
  text-align: left;
}

.cta-band-inner {
  max-width: 34rem;
}

.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
  line-height: 1.55;
}

.cta-band .store-row {
  margin-top: 1.35rem;
}

.cta-band .cta-link {
  margin-top: 1.15rem;
}

.section-hecho {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-top: 0;
  background:
    radial-gradient(520px 280px at 18% 88%, rgba(236, 72, 153, 0.12), transparent 60%),
    radial-gradient(520px 280px at 82% 88%, rgba(45, 212, 191, 0.1), transparent 60%);
}

.hecho {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.hecho-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fb923c, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2.hecho-title {
  margin: 0 auto;
  display: grid;
  gap: 0.15rem;
  justify-items: center;
  font-size: clamp(1.55rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hecho-line1,
.hecho-line2 {
  display: block;
  white-space: nowrap;
}

.hecho-line1 {
  background: linear-gradient(90deg, #fdba74, #f9a8d4 55%, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hecho-line2 {
  background: linear-gradient(90deg, #c084fc, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hecho-sub {
  margin: 1.25rem 0 0;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
}

.hecho-body {
  margin: 1.1rem auto 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hecho-stats {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hecho-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hecho-stats span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .hecho-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    text-align: center;
  }

  .hecho-stats strong {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .hecho-stats span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }
}

.award-card {
  position: relative;
  overflow: hidden;
  margin: 2.6rem auto 0;
  width: 100%;
  max-width: 56rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  text-align: left;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(105deg,
      rgba(88, 28, 48, 0.95) 0%,
      rgba(52, 28, 58, 0.92) 38%,
      rgba(22, 48, 52, 0.94) 72%,
      rgba(16, 56, 52, 0.96) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 14px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.award-card.reveal,
.award-card.reveal.is-in {
  opacity: 1;
  transform: none;
}

.award-card > * {
  position: relative;
  z-index: 1;
}

.section-platform {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-top: 0;
  background: #000;
}

.platform-head {
  text-align: center;
  margin-bottom: 2.4rem;
}

.platform-eyebrow {
  margin: 0 0 0.7rem;
  color: #2dd4bf;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2.platform-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.platform-card {
  position: relative;
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.platform-card > * {
  position: relative;
  z-index: 1;
}

.platform-ico {
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  color: #ddd6fe;
  background: #3b1764;
  border: 0;
}

.platform-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}

.platform-card h3 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.platform-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.section-tech {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-top: 0;
  background: #050507;
}

.tech-gridbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
  opacity: 0.85;
}

.tech-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tech-copy {
  text-align: left;
  max-width: 34rem;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.55);
  background: rgba(13, 148, 136, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.tech-badge svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #2dd4bf;
}

.tech-copy h2,
h2.tech-title {
  margin: 0;
  display: grid;
  gap: 0.08em;
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.tech-title span {
  display: block;
  white-space: nowrap;
}

.tech-copy p {
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 32rem;
}

.tech-list {
  display: grid;
  gap: 0.9rem;
}

.tech-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  background: #0c0c10;
  text-align: left;
}

.tech-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  color: #2dd4bf;
  background: rgba(13, 148, 136, 0.16);
  border: 1px solid rgba(45, 212, 191, 0.28);
}

.tech-ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

.tech-card h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.tech-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .tech-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-copy {
    max-width: none;
  }
}

.section-creators {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 0;
  background: #000;
}

.creators-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.creators-copy {
  text-align: left;
  min-width: 0;
  flex: 1 1 auto;
  max-width: none;
}

.creators-eyebrow {
  margin: 0 0 0.75rem;
  color: #e879f9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2.creators-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
}

.creators-lead {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36rem;
}

.creators-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  background: #d946ef;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}

.creators-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .creators-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .creators-copy {
    text-align: center;
  }

  .creators-lead {
    margin-left: auto;
    margin-right: auto;
  }

  h2.creators-title {
    white-space: normal;
  }
}

.section-team {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-top: 0;
  background: #000;
}

.team-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.team-eyebrow {
  margin: 0 0 0.7rem;
  color: #fb923c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2.team-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.team-list {
  display: grid;
  gap: clamp(3.5rem, 7vw, 5.5rem);
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.team-feature--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.team-photo-glow {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.55), rgba(236, 72, 153, 0.2) 45%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.team-feature--teal .team-photo-glow {
  background: radial-gradient(circle at 50% 45%, rgba(217, 70, 239, 0.45), rgba(45, 212, 191, 0.22) 48%, transparent 72%);
}

.team-feature--gold .team-photo-glow {
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.5), rgba(180, 83, 9, 0.2) 48%, transparent 72%);
}

.team-feature--lime .team-photo-glow {
  background: radial-gradient(circle at 50% 50%, rgba(132, 204, 22, 0.45), rgba(34, 197, 94, 0.18) 48%, transparent 72%);
}

.team-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  display: block;
  background: #e5e5e5;
}

.team-bio {
  text-align: left;
}

.team-bio h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.team-role {
  margin: 0.55rem 0 0;
  color: #e879f9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-feature--teal .team-role { color: #2dd4bf; }
.team-feature--gold .team-role { color: #f59e0b; }
.team-feature--lime .team-role { color: #84cc16; }
.team-feature--magenta .team-role { color: #e879f9; }

.team-text {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 36rem;
}

@media (max-width: 820px) {
  .team-feature,
  .team-feature--reverse {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
  }

  .team-feature--reverse .team-photo {
    order: -1;
  }

  .team-photo {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-bio {
    text-align: left;
  }

  .team-role {
    white-space: normal;
  }

  .team-text {
    margin-left: 0;
    margin-right: 0;
  }
}

.section-faq {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-top: 0;
  background: #000;
}

.faq-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.faq-eyebrow {
  margin: 0 0 0.75rem;
  color: #c084fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2.faq-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.faq-lead {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36rem;
}

.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.15rem;
  cursor: pointer;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%);
}

.faq-plus::before {
  width: 0.7rem;
  height: 1.5px;
}

.faq-plus::after {
  width: 1.5px;
  height: 0.7rem;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-answer {
  padding: 0 2.2rem 1.25rem 0.15rem;
}

.faq-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.65;
}

.award-ico {
  width: 3.15rem;
  height: 3.15rem;
  min-width: 3.15rem;
  min-height: 3.15rem;
  border-radius: 0.75rem;
  display: grid !important;
  place-items: center;
  flex: 0 0 auto;
  color: #fbbf24;
  background: transparent !important;
  border: 1.5px solid rgba(251, 191, 36, 0.85);
  box-shadow: none;
}

.award-ico svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  color: #fbbf24;
  stroke: currentColor;
}

.award-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.award-head {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.65rem;
}

.award-label {
  color: #fbbf24;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.award-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.award-desc {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 720px) {
  .award-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1.45rem 1.2rem 1.5rem;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.14);
    background:
      radial-gradient(120% 90% at 50% 115%, rgba(168, 85, 247, 0.28) 0%, transparent 55%),
      rgba(22, 18, 28, 0.92) !important;
  }

  .award-ico {
    width: 3.1rem !important;
    height: 3.1rem !important;
    min-width: 3.1rem !important;
    min-height: 3.1rem !important;
    border-radius: 0.72rem !important;
    margin: 0 auto 0.15rem;
    background: transparent !important;
    border-color: rgba(251, 191, 36, 0.9);
  }

  .award-ico svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .award-copy {
    width: 100%;
    text-align: center;
  }

  .award-head {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    white-space: normal;
  }

  .award-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .award-title {
    font-size: 1.28rem;
  }

  .award-desc {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.55;
    -webkit-line-clamp: 5;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
  }
}

.site-footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.88rem;
}

.site-footer-lang {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .nav-center { display: none; }

  .container {
    width: min(100% - 2rem, var(--max));
  }

  .hero {
    padding: 1.6rem 0 2.5rem;
  }

  .hero::before {
    inset: -5% auto auto 50%;
    transform: translateX(-50%);
    width: 140vw;
    height: 70vw;
    max-width: none;
    max-height: none;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.42), rgba(236, 72, 153, 0.12) 42%, transparent 68%);
    opacity: 1;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-copy {
    max-width: none;
    order: 1;
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    order: 2;
    min-height: 0;
    margin: 0.35rem auto 0;
    width: 100%;
  }

  .phone-grid {
    width: min(300px, 88vw);
    gap: 0.55rem 0.6rem;
  }

  .phone {
    border-radius: 22px;
    padding: 5px;
  }

  .phone-screen {
    border-radius: 18px;
  }

  .badge {
    margin: 0 auto 1.35rem;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.2;
    margin: 0 auto 1.2rem;
    letter-spacing: -0.035em;
    text-align: center;
  }

  .hero h1 .line,
  .hero h1 .grad {
    white-space: normal;
  }

  .hero h1 .grad {
    background: linear-gradient(95deg, #e879f9 0%, #fb7185 32%, #fb923c 68%, #facc15 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-lead {
    margin: 0 auto 1.15rem;
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
  }

  .hero-quote {
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 32rem;
    padding: 0.1rem 0 0.1rem 0.95rem;
    border-left: 3px solid rgba(167, 139, 250, 0.95);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: left;
  }

  .cta-block {
    width: 100%;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.15rem;
  }

  .rating-row {
    justify-content: center;
    gap: 0.28rem 0.35rem;
    font-size: 0.82rem;
  }

  .stars {
    font-size: 0.88rem;
    letter-spacing: 0;
  }

  .rating-score {
    font-size: 0.88rem;
  }

  .rating-meta {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
  }

  .store-row {
    width: 100%;
    max-width: 22rem;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .store-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    min-height: 42px;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem;
    border-radius: 10px;
  }

  .store-btn svg {
    width: 18px;
    height: 18px;
  }

  .store-btn strong {
    font-size: 0.78rem;
  }

  .store-btn small {
    font-size: 0.52rem;
  }

  .cta-link {
    align-self: center;
    margin-top: 0;
    font-size: 0.86rem;
    text-align: center;
  }

  .kpi-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem 1rem; }

  .formato-head {
    margin-bottom: 1.75rem;
  }

  h2.formato-title {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
    margin-bottom: 0.9rem;
  }

  .formato-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .formato-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .formato-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.85rem;
    row-gap: 0.28rem;
    align-items: start;
    padding: 1rem 1rem 1.05rem;
    border-radius: 14px;
    background: #141418;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .formato-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.05rem;
  }

  .formato-card__title {
    display: contents;
  }

  .formato-ico {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.55rem;
    margin-top: 0.1rem;
  }

  .formato-ico svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .formato-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
  }

  .formato-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
  }

  .section {
    padding: 3.25rem 0;
  }

  .howto-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

@media (max-width: 560px) {
  .btn-pill span { display: none; }
  .btn-pill::after { content: "Sé el primero"; }
  .kpi-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pioneers-label { margin-bottom: 2rem; letter-spacing: 0.08em; }
  .formato-head { margin-bottom: 2rem; }

  .topbar-inner {
    min-height: 58px;
  }

  .brand-logo {
    height: 32px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  }

  .store-btn {
    min-height: 40px;
  }

  .store-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* ========== Lead modal ========== */
.lead-modal[hidden] { display: none !important; }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 2.1rem 1.6rem 1.7rem;
  border-radius: 18px;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
  animation: rise 0.35s var(--ease);
}

.lead-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:hover { color: #fff; }

.lead-modal__dialog h2 {
  margin: 0 0 0.75rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lead-modal__desc {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 0.75rem;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #121216;
  color: #fff;
  font: inherit;
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.lead-form input:focus {
  border-color: rgba(217, 70, 239, 0.7);
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.18);
}

.lead-form__submit {
  width: 100%;
  min-height: 48px;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #d946ef, #a855f7);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}

.lead-form__submit:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.lead-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.lead-form__msg {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: #f87171;
}

.lead-modal__success p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ========== Download prompt modal ========== */
.dl-modal[hidden] { display: none !important; }

.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.dl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.dl-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  padding: 2rem 1.55rem 1.45rem;
  border-radius: 20px;
  background: #1c1c1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
  animation: rise 0.35s var(--ease);
}

.dl-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.dl-modal__close:hover { color: #fff; }

.dl-modal__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0.15rem 0 1.25rem;
}

.dl-modal__logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 0.45rem;
}

.dl-modal__name {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.dl-modal__name sup {
  font-size: 0.55em;
  margin-left: 0.1em;
  font-weight: 600;
  vertical-align: super;
}

.dl-modal__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 4.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.dl-modal__sub {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.98rem;
  line-height: 1.4;
}

.dl-modal__stores {
  display: grid;
  gap: 0.65rem;
  margin: 1.55rem 0 1.1rem;
}

.dl-modal__store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.15rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-align: left;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.dl-modal__store:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
  color: #111;
}

.dl-modal__store svg {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
}

.dl-modal__store span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.dl-modal__store small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.7;
}

.dl-modal__store strong {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dl-modal__dismiss {
  display: inline-flex;
  margin: 0 auto;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.35rem 0.6rem;
}

.dl-modal__dismiss:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 720px) {
  .dl-modal__dialog {
    width: min(100%, 340px);
    padding: 1.85rem 1.3rem 1.3rem;
  }

  body.is-ios .dl-modal__store--android { order: 2; }
  body.is-android .dl-modal__store--ios { order: 2; }
}

/* ========== Floating Download Bar ========== */
.floating-dl-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.55);
  padding: 0.6rem 0;
  transform: translateY(100%);
  animation: floatBarIn 0.5s var(--ease) 0.8s forwards;
}

@keyframes floatBarIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.floating-dl-inner {
  width: min(100% - 2rem, var(--max));
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.floating-dl-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.floating-dl-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.floating-dl-icon--placeholder {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.floating-dl-icon--placeholder svg {
  width: 22px;
  height: 22px;
}

.floating-dl-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.floating-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
  text-decoration: none;
}

.floating-dl-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.12);
  color: #fff;
}

.floating-dl-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 多个下载项时的分隔 */
.floating-dl-item + .floating-dl-item {
  padding-left: 0.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
  .floating-dl-bar {
    padding: 0.5rem 0;
  }

  .floating-dl-inner {
    width: 100%;
    padding: 0 0.75rem;
    gap: 0.4rem;
  }

  .floating-dl-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .floating-dl-name {
    font-size: 0.82rem;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .floating-dl-btn {
    min-height: 32px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  .floating-dl-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* 底部有悬浮栏时给 footer 加间距 */
body:has(.floating-dl-bar) .site-footer {
  padding-bottom: 5.5rem;
}

@media (max-width: 640px) {
  body:has(.floating-dl-bar) .site-footer {
    padding-bottom: 4.5rem;
  }
}
