/* ═══════════════════════════════════════════════════════════════════
   TALENT TOKEN — DESIGN SYSTEM & SHOWROOM PRESENTATION STYLES
   Estética: Fintech Dark Minimalista / High-End Interactive Pitch
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── Paleta de Colores ── */
  --bg-deep: #06090e;
  --bg-surface: #0b111a;
  --bg-card: rgba(15, 23, 38, 0.75);
  --bg-card-hover: rgba(22, 33, 54, 0.85);
  --bg-elevated: #141d2e;

  /* ── Acentos Funcionales ── */
  --brand-orange: #f26522;
  --brand-orange-light: #ff7a38;
  --brand-orange-glow: rgba(242, 101, 34, 0.25);
  
  --emerald-solution: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.2);
  --emerald-subtle: rgba(16, 185, 129, 0.08);

  --coral-fear: #f43f5e;
  --coral-light: #fb7185;
  --coral-glow: rgba(244, 63, 94, 0.2);
  --coral-subtle: rgba(244, 63, 94, 0.08);

  --blue-tech: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.2);

  /* ── Textos y Contrastes ── */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-inverse: #06090e;

  /* ── Bordes y Líneas ── */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-fear: rgba(244, 63, 94, 0.35);
  --border-solution: rgba(16, 185, 129, 0.35);
  --border-brand: rgba(242, 101, 34, 0.4);

  /* ── Tipografía ── */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ── Espaciado & Contenedor ── */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* ── Sombras & Glassmorphism ── */
  --glass-blur: 16px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  /* ── Transiciones ── */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* ── Fondo sutil de luz ambiental ── */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow::before {
  content: '';
  position: absolute;
  top: -10vw;
  left: 20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.07) 0%, transparent 65%);
  filter: blur(80px);
}

.ambient-glow::after {
  content: '';
  position: absolute;
  top: 40vh;
  right: 15%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 65%);
  filter: blur(90px);
}

/* ── Barra de Progreso de Scroll Superior ── */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--emerald-solution));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ── Barra de Navegación Sticky Minimalista ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  background: rgba(6, 9, 14, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--brand-orange), #b83f06);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 0 15px var(--brand-orange-glow);
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-tag {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.navbar__link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--duration-fast);
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--text-main);
}

.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-orange);
  border-radius: var(--radius-pill);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-demo {
  background: linear-gradient(135deg, var(--brand-orange), #d94e0e);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--brand-orange-glow);
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}

.btn-nav-demo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

/* ── Layout General ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ── Tipografía y Utilidades ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--emerald-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-solution);
  box-shadow: 0 0 10px var(--emerald-solution);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.text-gradient-orange {
  background: linear-gradient(135deg, #ffffff 30%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #ffffff 30%, var(--emerald-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-kicker--coral { color: var(--coral-fear); }
.section-kicker--emerald { color: var(--emerald-solution); }
.section-kicker--orange { color: var(--brand-orange); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Hero Section ── */
.hero {
  min-height: 90vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero__content {
  max-width: 920px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero__subtitle strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), #d44d0c);
  color: #ffffff;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px var(--brand-orange-glow);
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 101, 34, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--duration-fast);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ── Hero Metrics Strip ── */
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.metric-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: left;
  transition: transform var(--duration-fast), border-color var(--duration-fast);
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
}

.metric-card__value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.metric-card__value.emerald { color: var(--emerald-solution); }
.metric-card__value.orange { color: var(--brand-orange); }
.metric-card__value.coral { color: var(--coral-fear); }

.metric-card__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN 1: MIEDOS VS SOLUCIONES (MATRIZ INTERACTIVA)
   ═══════════════════════════════════════════════════════════════════ */
.fears-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0c121c 100%);
}

.comparison-toggle-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 6px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--duration-fast);
}

.toggle-btn.active {
  background: var(--bg-elevated);
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toggle-btn--fear.active {
  color: var(--coral-light);
  border: 1px solid var(--border-fear);
}

.toggle-btn--solution.active {
  color: var(--emerald-light);
  border: 1px solid var(--border-solution);
}

.toggle-btn--split.active {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(244, 63, 94, 0.2), rgba(16, 185, 129, 0.2));
  border: 1px solid var(--border-medium);
}

.fears-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.fear-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.fear-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* Estado: Bloque de Dolor */
.fear-card__pain {
  padding: 24px;
  background: rgba(244, 63, 94, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--duration-normal);
}

.fear-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fear-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--coral-subtle);
  color: var(--coral-light);
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.fear-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}

.fear-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.fear-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Estado: Bloque de Solución */
.fear-card__solution {
  padding: 24px;
  background: rgba(16, 185, 129, 0.04);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--duration-normal);
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--emerald-subtle);
  color: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 10px;
}

.solution-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.solution-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 16px;
}

.solution-bullets {
  list-style: none;
  margin-bottom: 18px;
}

.solution-bullets li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.solution-bullets li::before {
  content: '✓';
  color: var(--emerald-solution);
  font-weight: 800;
  flex-shrink: 0;
}

.solution-cta-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration-fast);
}

.solution-cta-link:hover {
  gap: 10px;
  color: #ffffff;
}

/* Modos de vista del toggle */
.fears-mode-fear-only .fear-card__solution { display: none; }
.fears-mode-solution-only .fear-card__pain { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN 2: EL VIAJE DEL CLIENTE 360° (INTERACTIVE TIMELINE)
   ═══════════════════════════════════════════════════════════════════ */
.journey-section {
  background: #080d15;
}

.journey-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  position: relative;
}

.journey-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-fast), border-color var(--duration-fast);
}

.journey-step:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
}

.journey-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(242, 101, 34, 0.15);
  border: 1px solid rgba(242, 101, 34, 0.4);
  color: var(--brand-orange-light);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.journey-step__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.journey-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.journey-step__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 14px;
}

.journey-step__badge {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--emerald-light);
  background: var(--emerald-subtle);
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}

/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN 3: SHOWROOM DE DEMOS EN VIVO (TO HOME ECOSYSTEM)
   ═══════════════════════════════════════════════════════════════════ */
.demos-section {
  background: linear-gradient(180deg, #080d15 0%, var(--bg-deep) 100%);
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--duration-fast);
}

.demo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 101, 34, 0.4);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6);
}

.demo-card:hover::before {
  background: linear-gradient(90deg, var(--brand-orange), var(--emerald-solution));
}

.demo-card__top {
  margin-bottom: 20px;
}

.demo-card__badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.demo-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--emerald-light);
}

.demo-card__type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.demo-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.demo-card__features {
  list-style: none;
  margin-bottom: 20px;
}

.demo-card__features li {
  font-size: 0.82rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.demo-card__features li span {
  color: var(--brand-orange);
}

.demo-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-demo-primary {
  flex: 1;
  background: var(--brand-orange);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--duration-fast);
}

.btn-demo-primary:hover {
  background: var(--brand-orange-light);
  transform: translateY(-1px);
}

.btn-demo-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--duration-fast);
}

.btn-demo-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN 4: CALCULADORA DE RECUPERACIÓN DE MARGEN
   ═══════════════════════════════════════════════════════════════════ */
.calculator-section {
  background: var(--bg-deep);
}

.calculator-box {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  box-shadow: var(--shadow-lift);
}

.calculator-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.control-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.control-value {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-orange-light);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #1e293b;
  border-radius: var(--radius-pill);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-orange);
  cursor: pointer;
  box-shadow: 0 0 12px var(--brand-orange-glow);
  transition: transform var(--duration-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calculator-results {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(242, 101, 34, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-item {
  margin-bottom: 24px;
}

.result-item:last-child {
  margin-bottom: 0;
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.result-number--loss {
  color: var(--coral-light);
}

.result-number--profit {
  color: var(--emerald-light);
}

.result-subtitle {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN 5: POR QUÉ TALENT TOKEN (COMPARATIVA & GARANTÍA)
   ═══════════════════════════════════════════════════════════════════ */
.reasons-section {
  background: #090e17;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(16, 185, 129, 0.06);
  border-left: 1px solid rgba(16, 185, 129, 0.2);
  border-right: 1px solid rgba(16, 185, 129, 0.2);
  color: #ffffff;
  font-weight: 600;
}

.comparison-table tr:first-child th.highlight {
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.comparison-table tr:last-child td.highlight {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ── Garantía Box ── */
.guarantee-box {
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(242, 101, 34, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.guarantee-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.guarantee-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER & FLOATING PRESENTATION BAR
   ═══════════════════════════════════════════════════════════════════ */
.presentation-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 38, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 850;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all var(--duration-fast);
}

.p-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.p-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.p-btn--active {
  background: var(--brand-orange);
  color: #ffffff;
}

.footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 100px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── Scroll Reveal Animaciones ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .calculator-box {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    display: none;
  }
  .fears-grid,
  .demos-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 110px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .presentation-bar {
    width: 90%;
    overflow-x: auto;
    justify-content: flex-start;
  }
}

/* ── Teléfonos (≤560px) ──
   La página desbordaba 16px en un iPhone de 375px: el navbar (brand 205 +
   acciones 118 + padding 48 = 391), la barra de toggle y la barra flotante
   de presentación no caben en fila. Se corrige el ancho, no se esconde el
   desborde con overflow hidden. */
@media (max-width: 560px) {
  .navbar__container {
    padding: 12px 14px;
    gap: 10px;
  }
  .navbar__brand {
    font-size: 0.95rem;
    gap: 8px;
    min-width: 0;
  }
  .navbar__brand span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .navbar__actions .btn-primary,
  .navbar__actions .btn-outline {
    padding: 9px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  /* Los 3 botones de comparación bajan de línea en vez de estirar la página */
  .comparison-toggle-bar {
    flex-wrap: wrap;
    border-radius: var(--radius-lg, 16px);
  }
  .toggle-btn {
    flex: 1 1 auto;
    min-width: 46%;
    justify-content: center;
  }

  /* La barra de presentación scrollea sola en vez de arrastrar el cuerpo */
  .presentation-bar {
    width: calc(100% - 24px);
    max-width: none;
    bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .presentation-bar::-webkit-scrollbar {
    display: none;
  }
  .p-btn {
    flex: 0 0 auto;
    padding: 10px 12px;
  }

  /* Objetivos táctiles: mínimo 44px de alto (guía de iOS y Android) */
  .btn-primary,
  .btn-outline,
  .demo-card__link {
    min-height: 44px;
    align-items: center;
  }

  /* Ninguna tabla ni bloque ancho debe empujar el cuerpo */
  .container {
    padding: 0 16px;
  }
}
