/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0c0b12;
  --bg2:       #111019;
  --pink:      #e4207b;
  --purple:    #7b2ff7;
  --pink-lt:   #f04d9b;
  --purple-lt: #9b5fff;
  --grad:      linear-gradient(135deg, var(--pink), var(--purple));
  --grad-text: linear-gradient(135deg, var(--pink-lt), var(--purple-lt));
  --white:     #ffffff;
  --muted:     #7a768f;
  --border:    rgba(255,255,255,0.08);
  --card-bg:   rgba(255,255,255,0.03);
  --radius:    10px;
  --transition: 0.2s ease;
  --nav-bg:          rgba(12,11,18,0.92);
  --nav-bg-scrolled: rgba(12,11,18,0.97);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }
.btn-ghost {
  background: var(--card-bg);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-lt);
  margin-bottom: 14px;
}

h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.05rem; font-weight: 600; }
p.lead { font-size: 1rem; color: var(--muted); max-width: 560px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 30px; height: 30px;
  background: var(--grad);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.logo-img {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .logo-img { height: 32px; max-width: 120px; }
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-left { display: flex; align-items: center; gap: 24px; }
.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.theme-toggle {
  width: 38px; height: 21px;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  width: 13px; height: 13px;
  border-radius: 50%;
  top: 50%; left: 2px;
  transform: translateY(-50%);
  background: var(--muted);
  transition: left 0.25s ease, background 0.25s;
}
.theme-toggle-mobile {
  position: absolute;
  top: 22px;
  left: 24px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--muted); border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
}
.hero-glow { display: none; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 5px; height: 5px;
  background: var(--pink-lt);
  border-radius: 50%;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-badge .dot { animation: pulse 2.5s infinite; }
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  
}
.sub-hero-title {
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span { font-size: 0.78rem; color: var(--muted); }

/* ─── Hero Pot Visualization ─── */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

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

.pot-vis {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pot-ring-wrap {
  position: relative;
  width: 220px;
  height: 220px;
}

.pot-ring {
  width: 220px;
  height: 220px;
  transform: rotate(-90deg);
  display: block;
  filter: drop-shadow(0 0 18px rgba(228,32,123,0.25));
}

#potRingFill {
  stroke-dasharray: 553;
  stroke-dashoffset: 553;
}

.pot-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
}

.pot-eyebrow {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.pot-price {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 2px 0 4px;
}

.pot-fans-row {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.pot-fans-sub {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Floating stat cards */
.pot-card {
  position: absolute;
  background: rgba(18,16,28,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  white-space: nowrap;
}

.pot-card-a {
  bottom: 20px;
  left: 0;
  animation: float 4.5s ease-in-out infinite;
}

.pot-card-b {
  top: 24px;
  right: 0;
  animation: float 4.5s ease-in-out infinite;
  animation-delay: 2.2s;
}

.pc-label {
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pc-val {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 3px;
}

.pc-green { color: #4ade80; }

/* Fan pulse dots */
.fan-pulse {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
}

.fan-p1 { top: 36px; left: 68px; animation: fanPulse 2.6s ease-in-out infinite 0s; }
.fan-p2 { bottom: 64px; right: 46px; animation: fanPulse 2.6s ease-in-out infinite 0.9s; }
.fan-p3 { top: 130px; right: 18px; animation: fanPulse 2.6s ease-in-out infinite 1.8s; }

@keyframes fanPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 0 0 rgba(228,32,123,0.5); }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 0 7px rgba(228,32,123,0); }
}

/* "New fan joining" toast */
.new-fan-toast {
  position: absolute;
  bottom: 68px;
  right: -12px;
  background: rgba(12,11,18,0.95);
  border: 1px solid rgba(228,32,123,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 7px;
  animation: toastPop 3.5s ease-in-out infinite;
  animation-delay: 1s;
}

.nft-arrow { color: #4ade80; }

@keyframes toastPop {
  0%, 15%, 85%, 100% { opacity: 0; transform: translateY(6px); }
  30%, 70% { opacity: 1; transform: translateY(0); }
}

/* ─── CÓMO FUNCIONA ─── */
#how { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p.lead { margin: 14px auto 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step-card {
  background: var(--bg2);
  padding: 32px 28px;
  transition: var(--transition);
}
.step-card:hover { background: rgba(255,255,255,0.03); }
.step-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink-lt);
  margin-bottom: 14px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.step-card::after { display: none; }

/* ─── DEMO DE PRECIOS ─── */
.pricing-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Content mockup */
  gap: 64px;
  align-items: start;
}
.pricing-table-wrap h2 { margin-bottom: 14px; }
.pricing-table-wrap p.lead { margin-bottom: 28px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.price-table td {
  padding: 12px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price-col { font-weight: 600; color: var(--pink-lt); }
.price-table tr.highlight { background: rgba(228,32,123,0.04); }
.price-table tr.highlight td.price-col { color: #4ade80; }
.badge-best {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 0.66rem;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}
.demo-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.demo-widget .content-mockup {
  margin: 0;
  border-radius: var(--radius);
}
.demo-widget h3 { margin-bottom: 24px; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.demo-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.demo-row label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.demo-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--border);
  outline: none;
}
.demo-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: 2px solid var(--pink);
}
.demo-result {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.demo-result .dr-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.demo-result .dr-price {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.demo-result .dr-note { font-size: 0.76rem; color: var(--muted); margin-top: 6px; }
.demo-display { display: flex; gap: 10px; margin-bottom: 18px; }
.demo-display > div {
  flex: 1; background: var(--bg); border-radius: var(--radius); padding: 14px;
  text-align: center; border: 1px solid var(--border);
}
.dd-label { font-size: 0.68rem; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.dd-val { font-size: 1.1rem; font-weight: 700; }
.dd-val.pink { color: var(--pink-lt); }
.dd-val.green { color: #4ade80; }

/* ─── Content mockup ─── */
.content-mockup {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.cm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.cm-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.cm-creator-info { flex: 1; }
.cm-creator-info strong { display: block; font-size: 0.85rem; }
.cm-creator-info span { font-size: 0.7rem; color: var(--muted); }
.cm-badge-live {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 4px;
  padding: 2px 7px;
}
.cm-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.cm-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
  transform: scale(1.04);
}
.lock-logo{
  filter: brightness() !important;
}
.cm-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cm-lock-icon { font-size: 2rem; }
.cm-lock-text { font-size: 0.9rem; font-weight: 700; }
.cm-lock-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.cm-countdown {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 0.72rem;
  padding: 4px 10px;
  color: rgba(255,255,255,0.85);
}
.cm-info { padding: 16px; }
.cm-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.cm-progress-wrap { margin-bottom: 14px; }
.cm-progress-bar {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.cm-progress-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 3px;
  transition: width 1.2s ease;
}
.cm-progress-label { font-size: 0.72rem; color: var(--muted); }
.cm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.cm-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.cm-stat-label { font-size: 0.62rem; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.cm-stat-val { font-size: 0.88rem; font-weight: 700; }
.cm-stat-val.pink { color: var(--pink-lt); }
.cm-savings-banner {
  /* background: rgba(74,222,128,0.07); */
  /* border: 1px solid rgba(74,222,128,0.18); */
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #4ade80;
  margin-bottom: 4px;
  text-align: right;
}
.cm-cta {
  width: 100%;
  padding: 12px;
  background: var(--grad);
  border: none;
  border-radius: var(--radius);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.cm-cta:hover { opacity: 0.88; }

/* light mode overrides for mockup */
body.light .cm-thumbnail img { filter: blur(6px) brightness(0.65); }

/* ─── FUNCIONALIDADES ─── */
.features-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  margin-top: 24px;
}
@media (max-width: 600px) {
  .features-wrap { padding: 32px 20px; }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--bg2);
  padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover { background: rgba(255,255,255,0.03); }
.feature-icon {
  font-size: 18px;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 { margin-bottom: 8px; font-size: 0.95rem; }
.feature-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── ROLES ─── */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.role-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}
.role-card::before { display: none; }
.role-card:hover { border-color: rgba(255,255,255,0.14); }
.role-card .role-emoji { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.role-card h2 { font-size: 1.4rem; margin-bottom: 10px; }
.role-card p { color: var(--muted); margin-bottom: 24px; font-size: 0.9rem; }
.role-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.role-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
}
.role-list li::before {
  content: '—';
  color: var(--pink-lt);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ─── BILLETERA ─── */
#wallet { background: var(--bg2); }
.wallet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wallet-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wallet-top {
  padding: 28px;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.wallet-top::after { display: none; }
.wt-label { font-size: 0.72rem; opacity: 0.75; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.wt-balance { font-size: 2rem; font-weight: 800; }
.wt-sub { font-size: 0.78rem; opacity: 0.65; margin-top: 4px; }
.wallet-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.wallet-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.wr-left { display: flex; align-items: center; gap: 10px; }
.wr-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.wr-label { font-size: 0.8rem; }
.wr-sublabel { font-size: 0.68rem; color: var(--muted); }
.wr-amount { font-weight: 600; font-size: 0.85rem; }
.wr-amount.pos { color: #4ade80; }
.wr-amount.neg { color: var(--muted); }
.wallet-info h2 { margin-bottom: 14px; }
.wallet-info p { color: var(--muted); margin-bottom: 20px; font-size: 0.9rem; }
.wallet-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.wallet-feature:last-of-type { border-bottom: none; }
.wf-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.wallet-feature h4 { font-size: 0.88rem; margin-bottom: 3px; }
.wallet-feature p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ─── REGISTRO / LOGIN ─── */
#auth {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
#auth::before { display: none; }
.auth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.auth-copy { position: relative; z-index: 1; }
.auth-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.auth-copy p { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; max-width: 420px; }
.auth-social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
}
.asp-avatars { display: flex; }
.asp-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--grad);
  margin-left: -6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}
.asp-avatars span:first-child { margin-left: 0; }
.asp-text { font-size: 0.78rem; color: var(--muted); }
.asp-text strong { color: var(--white); }
.auth-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); }
.auth-tab {
  flex: 1;
  padding: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.auth-tab.active { color: var(--white); }
.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.auth-tab:hover:not(.active) { color: rgba(255,255,255,0.6); }
.auth-form-wrap { padding: 28px; }
.auth-form { display: none; flex-direction: column; gap: 14px; }
.auth-form.active { display: flex; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.form-group input, .form-group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
  border-color: rgba(123,47,247,0.5);
}
.form-group input::placeholder { color: rgba(255,255,255,0.15); }
.form-group select option { background: var(--bg2); }
.form-submit {
  width: 100%;
  padding: 12px;
  background: var(--grad);
  border: none;
  border-radius: var(--radius);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.form-submit:hover { opacity: 0.88; }
.form-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.76rem;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.form-switch { text-align: center; font-size: 0.8rem; color: var(--muted); }
.form-switch a { color: var(--pink-lt); text-decoration: none; font-weight: 600; }
.form-switch a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 14px 0 0;
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  max-width: 300px;
}
.toast.show { transform: translateX(0); }
.toast strong { display: block; margin-bottom: 2px; font-size: 0.88rem; }
.toast span { color: var(--muted); font-size: 0.78rem; }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ─── Menú móvil ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,11,18,0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--pink-lt); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: transparent; border: none;
  color: var(--muted); font-size: 1.4rem; cursor: pointer;
}

/* ─── Modo claro ─── */
[data-theme="light"] {
  --bg:              #faf9ff;
  --bg2:             #f0eeff;
  --white:           #0d0b1e;
  --muted:           #6c6882;
  --border:          rgba(0,0,0,0.09);
  --card-bg:         rgba(0,0,0,0.03);
  --pink-lt:         #c51460;
  --purple-lt:       #5e16db;
  --nav-bg:          rgba(250,249,255,0.92);
  --nav-bg-scrolled: rgba(250,249,255,0.98);
}

[data-theme="light"] .theme-toggle {
  background: rgba(228,32,123,0.1);
  border-color: rgba(228,32,123,0.25);
}
[data-theme="light"] .theme-toggle::after {
  left: calc(100% - 15px);
  background: var(--pink);
}

[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); }

[data-theme="light"] .btn-outline:hover { border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .btn-ghost:hover { background: rgba(0,0,0,0.05); }

[data-theme="light"] .step-card:hover,
[data-theme="light"] .feature-card:hover { background: rgba(0,0,0,0.025); }

[data-theme="light"] .role-list li { color: rgba(0,0,0,0.75); }
[data-theme="light"] .role-card:hover { border-color: rgba(0,0,0,0.15); }

[data-theme="light"] .auth-tab:hover:not(.active) { color: rgba(0,0,0,0.5); }
[data-theme="light"] .form-group input::placeholder { color: rgba(0,0,0,0.28); }

[data-theme="light"] .footer-col ul li a { color: rgba(0,0,0,0.45); }
[data-theme="light"] .footer-col ul li a:hover { color: var(--white); }

[data-theme="light"] .pot-card { background: rgba(250,249,255,0.92); }
[data-theme="light"] .new-fan-toast {
  background: rgba(250,249,255,0.96);
  border-color: rgba(228,32,123,0.25);
}

[data-theme="light"] .mobile-nav { background: rgba(250,249,255,0.98); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner, .pricing-demo-inner, .wallet-inner, .auth-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .steps-grid, .features-grid { grid-template-columns: 1fr 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-outline { display: none; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .demo-display { flex-direction: column; }
  .cm-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ─── FAQ Page ─── */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding-top: 96px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(228,32,123,0.13) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 100%, rgba(123,47,247,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .section-label { display: block; margin-bottom: 14px; }
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-content p.lead { font-size: 1rem; color: var(--muted); }

/* Accordion FAQ */
.faq-section { padding: 64px 0 96px; }
.faq-category { margin-bottom: 56px; }
.faq-category-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-lt);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 20px 0;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--pink-lt); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.3s ease, border-color 0.2s, background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  padding-right: 40px;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer a { color: var(--pink-lt); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

[data-theme="light"] .faq-question { color: var(--bg); }
[data-theme="light"] .faq-question:hover { color: var(--pink); }

/* ─── Contact Page ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0 96px;
}
.contact-info-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-info-desc { font-size: 0.95rem; color: var(--muted); margin-bottom: 36px; }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: rgba(228,32,123,0.25); }
.contact-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-card-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}
[data-theme="light"] .contact-card-val { color: var(--bg); }

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form .form-group { margin-bottom: 16px; }
.contact-form .form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.contact-form .form-group textarea { min-height: 120px; }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--pink-lt);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--muted); }

[data-theme="light"] .contact-form .form-group input,
[data-theme="light"] .contact-form .form-group select,
[data-theme="light"] .contact-form .form-group textarea {
  background: rgba(255,255,255,0.6);
  color: var(--bg);
  border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .contact-form .form-group input::placeholder,
[data-theme="light"] .contact-form .form-group textarea::placeholder { color: rgba(0,0,0,0.35); }
[data-theme="light"] .contact-form-wrap { background: rgba(255,255,255,0.55); }

.contact-submit {
  width: 100%;
  padding: 13px 24px;
  background: var(--grad);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition);
  margin-top: 6px;
}
.contact-submit:hover { opacity: 0.88; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-form-wrap { padding: 24px 18px; }
}
