/* ==========================================================================
   GIS (Genuine Intelligent System) — 100vh Full-Screen Presentation Architecture
   ========================================================================== */

:root {
  --launch-lime: #d9ff63;
  --launch-lime-glow: rgba(217, 255, 99, 0.28);
  --launch-green: #97e873;
  --launch-ink: #101513;
  --launch-dark-card: #151b18;
  --launch-paper: #f4f1ea;
  --launch-paper-card: #ffffff;
  --launch-muted: #777d76;
  --launch-border-light: rgba(16, 21, 19, 0.12);
  --launch-border-dark: rgba(255, 255, 255, 0.12);
  --launch-critical: #ff7968;
  --launch-warning: #ffcb66;
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Global Full-Screen Rules */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--launch-paper);
  color: var(--launch-ink);
  font-family: var(--font-body);
  margin: 0;
  overflow-x: hidden;
}

/* Header Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(4vw, 24px);
  background: rgba(16, 21, 19, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.nav-scrolled {
  background: rgba(12, 16, 14, 0.97) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.brand-experience-tag {
  font: 700 0.8rem var(--font-display);
  color: var(--launch-lime) !important;
  letter-spacing: -0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.22s ease;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.header-cta {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-button {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 101;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .menu-button {
    display: flex;
  }
  .desktop-nav {
    display: none;
  }
  .desktop-nav.open {
    display: flex !important;
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 12px;
    background: rgba(16, 21, 19, 0.98);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(217, 255, 99, 0.25);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6);
    z-index: 99;
  }
  .desktop-nav.open a {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 255, 99, 0.09), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}

/* ==========================================================================
   100vh FULL-SCREEN SECTION SYSTEM
   ========================================================================== */
.fs-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(75px, 9vh, 100px) max(5vw, 24px) clamp(30px, 4vh, 50px);
  box-sizing: border-box;
  position: relative;
}

.section-dark {
  background: var(--launch-ink);
  color: #ffffff;
}

/* SECTION HEADINGS */
.fs-head {
  max-width: 860px;
  margin-bottom: clamp(20px, 3vh, 36px);
}

.fs-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.fs-head h2 {
  font: 700 clamp(2.1rem, 3.8vw, 3.6rem) / 1.05 var(--font-display);
  letter-spacing: -0.04em;
  margin: 10px 0 12px;
}

.fs-head p {
  color: var(--launch-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.55;
  margin: 0;
}

.section-dark .fs-head p {
  color: rgba(255, 255, 255, 0.65);
}

/* PANTALLA 1: HERO V4 */
.hero-fs {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: max(4vw, 32px);
  align-items: center;
  background: #101513;
  color: #ffffff;
  overflow: hidden;
}

.hero-fs h1 {
  font: 700 clamp(2.8rem, 4.8vw, 5.2rem) / 0.98 var(--font-display);
  letter-spacing: -0.05em;
  margin: 14px 0 18px;
  color: #ffffff;
}

.hero-fs h1 em {
  font-style: normal;
  color: var(--launch-lime);
  display: block;
}

.hero-fs .hero-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.text-link {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  font: 600 0.9rem var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.22s ease, background 0.22s ease;
}

.text-link:hover {
  color: var(--launch-lime);
  background: rgba(255, 255, 255, 0.06);
}

.value-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.value-strip div {
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px 14px;
  border-radius: 14px;
}

.value-strip b {
  color: #ffffff;
  font: 700 0.88rem var(--font-display);
}

.value-strip span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.54);
}

.value-strip i {
  color: var(--launch-lime);
  font-style: normal;
  font-weight: 700;
}

/* HERO PRODUCT MOCKUP */
.product-v4 {
  background: rgba(21, 27, 24, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(217, 255, 99, 0.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
}

.product-topbar {
  height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  background: rgba(16, 21, 19, 0.6);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.product-topbar div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-brief {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(217, 255, 99, 0.12), transparent 80%);
}

.ai-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--launch-lime);
  color: var(--launch-ink);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ai-brief small {
  color: var(--launch-lime);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.ai-brief h3 {
  margin: 4px 0 4px;
  font: 700 1.2rem var(--font-display);
  color: #ffffff;
}

.ai-brief p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.45;
}

.decision-stack {
  padding: 12px 18px 6px;
  display: grid;
  gap: 8px;
}

.decision-card {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.decision-card > span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-size: 0.72rem;
  color: #ffffff;
}

.decision-card.critical > span {
  background: var(--launch-critical);
  color: #101513;
}

.decision-card.positive > span {
  background: var(--launch-lime);
  color: #101513;
}

.decision-card div b {
  font: 700 0.85rem var(--font-display);
  color: #ffffff;
  display: block;
}

.decision-card div small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.decision-card button {
  border: 1px solid rgba(217, 255, 99, 0.35);
  background: transparent;
  color: var(--launch-lime);
  border-radius: 999px;
  padding: 6px 12px;
  font: 700 0.7rem var(--font-display);
  cursor: pointer;
}

.portfolio-pulse {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 16px 18px;
  background: rgba(16, 21, 19, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-pulse strong {
  font: 800 1.2rem var(--font-display);
  color: var(--launch-lime);
}

.portfolio-pulse span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* PANTALLA 2: EL PROBLEMA */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--launch-border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.problem-card small {
  font: 800 0.7rem var(--font-display);
  color: #c94a38;
  letter-spacing: 0.12em;
}

.problem-card h3 {
  font: 700 1.35rem var(--font-display);
  margin: 12px 0 10px;
}

.problem-card p {
  color: var(--launch-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* PANTALLA 3: QUÉ ES GIS */
.clarity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.clarity-card {
  padding: 28px;
  border: 1px solid var(--launch-border-light);
  border-radius: 22px;
  background: var(--launch-paper-card);
  display: flex;
  flex-direction: column;
}

.clarity-card.featured {
  background: var(--launch-ink);
  color: #ffffff;
  border-color: var(--launch-ink);
}

.clarity-card small {
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--launch-muted);
  font-size: 0.7rem;
}

.clarity-card.featured small {
  color: var(--launch-lime);
}

.clarity-card h3 {
  font: 700 1.45rem var(--font-display);
  margin: 14px 0 10px;
}

.clarity-card p {
  color: var(--launch-muted);
  line-height: 1.55;
  font-size: 0.92rem;
  margin: 0;
}

.clarity-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.source-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.source-cloud span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f3ef;
  font-size: 0.72rem;
  font-weight: 600;
}

.brain-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  align-items: center;
}

.brain-flow span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

.brain-flow b {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: var(--launch-lime);
  color: var(--launch-ink);
  text-align: center;
  font: 800 0.9rem var(--font-display);
  margin-top: 8px;
}

.output-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.output-list span {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3f5f2;
  font-size: 0.82rem;
  font-weight: 600;
}

/* PANTALLA 4: EL TRABAJO QUE CONTRATAS */
.job-fs {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.job-board {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.job-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
}

.job-row span {
  font-size: 0.72rem;
  color: var(--launch-lime);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.job-row b {
  font: 600 1.1rem var(--font-display);
  line-height: 1.4;
  color: #ffffff;
}

/* PANTALLA 5: CÓMO FUNCIONA */
.how-timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid #dfe3dd;
}

.how-step {
  display: grid;
  grid-template-columns: 60px 1.2fr 0.8fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #dfe3dd;
  align-items: center;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--launch-ink);
  color: var(--launch-lime);
  font: 800 1rem var(--font-display);
}

.how-step small {
  color: var(--launch-muted);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.how-step h3 {
  font: 700 1.3rem var(--font-display);
  margin: 4px 0;
}

.how-step p {
  color: var(--launch-muted);
  line-height: 1.5;
  font-size: 0.88rem;
  margin: 0;
}

.step-result {
  padding: 14px 18px;
  border-radius: 12px;
  background: #f0f3ef;
  border: 1px solid #e2e6e0;
  display: grid;
  gap: 4px;
}

.step-result b {
  font-size: 0.68rem;
  color: #4c5a52;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.step-result span {
  font-size: 0.85rem;
  color: var(--launch-ink);
  font-weight: 500;
}

/* PANTALLA 6: VALOR ÚNICO */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.outcome-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}

.outcome-badge {
  display: inline-block;
  font: 800 0.7rem var(--font-display);
  color: var(--launch-lime);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.outcome-card h3 {
  font: 700 1.45rem / 1.25 var(--font-display);
  margin: 0 0 12px;
  color: #ffffff;
}

.outcome-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  font-size: 0.9rem;
  margin: 0;
}

.unique-value {
  margin-top: 24px;
  padding: 24px 32px;
  border-radius: 20px;
  background: var(--launch-lime);
  color: var(--launch-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.unique-value small {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.unique-value h3 {
  font: 700 1.45rem var(--font-display);
  margin: 4px 0 0;
  color: var(--launch-ink);
}

.uv-steps {
  display: flex;
  gap: 8px;
  align-items: center;
}

.uv-steps span,
.uv-steps b {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 21, 19, 0.1);
  font: 700 0.78rem var(--font-display);
  color: var(--launch-ink);
}

/* PANTALLA 7: MATRIZ COMPARATIVA ESTILO MONDAY.COM */
.comp-tabs-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  background: rgba(16, 21, 19, 0.04);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(16, 21, 19, 0.08);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.comp-tab {
  background: transparent;
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  font: 700 0.84rem var(--font-display);
  color: #555d56;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.comp-tab:hover {
  color: var(--launch-ink);
  background: rgba(16, 21, 19, 0.06);
}

.comp-tab.active {
  background: var(--launch-ink);
  color: var(--launch-lime);
  box-shadow: 0 4px 14px rgba(16, 21, 19, 0.2);
}

/* Tarjeta de Comparación Directa 1-a-1 (Versus Card) */
.versus-card-container {
  background: #ffffff;
  border: 1px solid rgba(16, 21, 19, 0.12);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.versus-card-container.switching {
  opacity: 0.5;
  transform: translateY(4px);
}

.versus-card-header {
  text-align: center;
  margin-bottom: 28px;
}

.versus-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #266b41;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.versus-title {
  font: 700 clamp(1.5rem, 2.2vw, 2.1rem) var(--font-display);
  color: var(--launch-ink);
  margin: 0;
  letter-spacing: -0.03em;
}

.versus-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.versus-col {
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.versus-col.hero-versus {
  background: linear-gradient(145deg, #101513 0%, #17211d 100%);
  color: #ffffff;
  border: 1.5px solid rgba(196, 255, 82, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18), inset 0 0 20px rgba(196, 255, 82, 0.05);
}

.versus-col.competitor-versus {
  background: #f8f9f6;
  border: 1px solid rgba(16, 21, 19, 0.1);
  color: var(--launch-ink);
}

.versus-col-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--launch-lime);
  margin-bottom: 12px;
}

.versus-col-badge.competitor-tag {
  color: #5d6661;
  background: rgba(16, 21, 19, 0.06);
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}

.versus-col h4 {
  font: 700 1.15rem var(--font-display);
  margin: 0 0 18px;
  line-height: 1.35;
}

.hero-versus h4 {
  color: #ffffff;
}

.competitor-versus h4 {
  color: var(--launch-ink);
}

.versus-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.versus-points li {
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-versus .versus-points li {
  color: rgba(255, 255, 255, 0.88);
}

.competitor-versus .versus-points li {
  color: #555d56;
}

.versus-points .check-icon {
  color: var(--launch-lime);
  font-weight: 800;
  flex-shrink: 0;
}

.versus-points .cross-icon {
  color: #d98e0c;
  font-weight: 700;
  flex-shrink: 0;
}

/* Título entre tarjeta y matriz */
.matrix-section-title {
  text-align: center;
  margin: 42px 0 20px;
}

.matrix-section-title span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #266b41;
}

.matrix-section-title p {
  font-size: 0.95rem;
  color: var(--launch-muted);
  margin: 4px 0 0;
}

/* Resalte Dinámico en Matriz Comparativa */
.highlight-target {
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.highlight-target.active-highlight {
  background-color: rgba(196, 255, 82, 0.12) !important;
  color: var(--launch-ink) !important;
  font-weight: 700;
  border-left: 1.5px solid rgba(196, 255, 82, 0.5) !important;
  border-right: 1.5px solid rgba(196, 255, 82, 0.5) !important;
}

@media (max-width: 900px) {
  .versus-grid {
    grid-template-columns: 1fr;
  }
  .versus-card-container {
    padding: 24px 20px;
  }
}

/* PANTALLA 7: MATRIZ COMPARATIVA */
.matrix-container-outer {
  position: relative;
  width: 100%;
}

.matrix-scroll-hint {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d6661;
  margin-bottom: 12px;
  padding: 0 4px;
}

@media (max-width: 1100px) {
  .matrix-scroll-hint {
    display: flex;
  }
}

.matrix-wrap {
  overflow-x: auto;
  border: 1px solid rgba(16, 21, 19, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  position: relative;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.comparison-matrix {
  width: 100%;
  min-width: 1000px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-matrix th,
.comparison-matrix td {
  padding: 18px 18px;
  border-right: 1px solid #e8e9e4;
  border-bottom: 1px solid #e8e9e4;
  text-align: left;
  font-size: 0.85rem;
  vertical-align: middle;
}

.comparison-matrix th:last-child,
.comparison-matrix td:last-child {
  border-right: 0;
}

.comparison-matrix tbody tr:last-child td {
  border-bottom: 0;
}

/* Columna de características sticky */
.comparison-matrix th.feature-column,
.comparison-matrix td.feature-column {
  position: sticky;
  left: 0;
  z-index: 10;
  background: #ffffff;
  box-shadow: 4px 0 14px rgba(0, 0, 0, 0.03);
}

.comparison-matrix thead th.feature-column {
  background: #f6f7f3;
  z-index: 15;
}

.comparison-matrix tbody tr:hover td.feature-column {
  background: #f8f9f7;
}

.comparison-matrix feature-column b {
  display: block;
  font: 700 0.88rem var(--font-display);
  color: var(--launch-ink);
  margin-bottom: 2px;
}

.comparison-matrix feature-column span {
  display: block;
  font-size: 0.74rem;
  color: var(--launch-muted);
  line-height: 1.35;
}

.comparison-matrix thead th {
  background: #f6f7f3;
  font: 700 0.75rem var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555d56;
}

/* Columna Hero: GIS */
.comparison-matrix .launchos-column {
  background: linear-gradient(180deg, #101513 0%, #151b18 100%) !important;
  color: #ffffff !important;
  position: relative;
  z-index: 2;
  border-left: 2px solid rgba(196, 255, 82, 0.45) !important;
  border-right: 2px solid rgba(196, 255, 82, 0.45) !important;
  box-shadow: inset 0 0 20px rgba(196, 255, 82, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-matrix thead .launchos-column {
  background: #0d1210 !important;
  border-top: 3px solid var(--launch-lime) !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

.comparison-matrix tbody tr:last-child .launchos-column {
  border-bottom: 3px solid var(--launch-lime) !important;
}

.launchos-column-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--launch-lime);
  font-weight: 800;
  margin-bottom: 6px;
  background: rgba(196, 255, 82, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(196, 255, 82, 0.25);
}

.tag-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--launch-lime);
  box-shadow: 0 0 8px var(--launch-lime);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}

.hero-brand {
  font: 800 1.3rem var(--font-display);
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Indicadores y badges de estado */
.matrix-status {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  font: 600 0.73rem var(--font-display) !important;
  line-height: 1.3;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  cursor: default;
}

.matrix-status .status-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.matrix-status:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.matrix-status.strong {
  background: rgba(38, 107, 65, 0.12);
  color: #1a5633;
  border: 1px solid rgba(38, 107, 65, 0.2);
}

.matrix-status.partial {
  background: rgba(217, 142, 12, 0.1);
  color: #8c5800;
  border: 1px solid rgba(217, 142, 12, 0.2);
}

.matrix-status.weak {
  background: rgba(16, 21, 19, 0.04);
  color: #6d7570;
  border: 1px solid rgba(16, 21, 19, 0.08);
}

.launchos-column .matrix-status.strong {
  background: var(--launch-lime) !important;
  color: var(--launch-ink) !important;
  border-color: var(--launch-lime) !important;
  font-weight: 800 !important;
  box-shadow: 0 0 16px rgba(196, 255, 82, 0.35);
}

.launchos-column .matrix-status.strong:hover {
  box-shadow: 0 0 24px rgba(196, 255, 82, 0.6);
  transform: translateY(-2px) scale(1.04);
}

/* Interacción al pasar el mouse por filas */
.comparison-matrix tbody tr {
  transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-matrix tbody tr:hover td {
  background-color: rgba(16, 21, 19, 0.025);
}

.comparison-matrix tbody tr:hover .launchos-column {
  background: linear-gradient(180deg, #18201c 0%, #1c2621 100%) !important;
  box-shadow: inset 0 0 24px rgba(196, 255, 82, 0.12);
}

/* TAKEAWAYS BAJO LA MATRIZ */
.comparison-takeaways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.takeaway-card {
  padding: 24px 26px;
  border: 1px solid rgba(16, 21, 19, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.025);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.takeaway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 255, 82, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 20px rgba(196, 255, 82, 0.15);
}

.takeaway-card small {
  font: 800 0.68rem var(--font-display);
  color: #266b41;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.takeaway-card h4 {
  font: 700 1.1rem var(--font-display);
  margin: 10px 0 6px;
  color: var(--launch-ink);
}

.takeaway-card p {
  color: var(--launch-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* PANTALLA 8: PLAN PILOTO */
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pilot-grid article {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(16, 21, 19, 0.08);
}

.pilot-grid b {
  font-size: 0.7rem;
  color: #4c5a52;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.pilot-grid h3 {
  font: 700 1.25rem var(--font-display);
  margin: 12px 0 8px;
}

.pilot-grid p {
  color: var(--launch-muted);
  line-height: 1.5;
  font-size: 0.88rem;
  margin: 0;
}

/* PANTALLA 9: PRECIOS E INVERSIÓN */
.billing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: -10px 0 24px;
}

.billing-switcher span {
  font: 700 0.88rem var(--font-display);
  color: var(--launch-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.billing-switcher span.active {
  color: var(--launch-ink);
}

.billing-toggle-btn {
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: var(--launch-ink);
  border: 0;
  position: relative;
  cursor: pointer;
  padding: 3px;
  transition: background 0.25s ease;
}

.billing-toggle-btn i {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--launch-lime);
  transition: transform 0.25s ease;
}

.billing-toggle-btn.annual i {
  transform: translateX(22px);
}

.discount-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 86, 0.15);
  color: #266b41;
  font: 800 0.7rem var(--font-display);
  letter-spacing: 0.05em;
}

.pricing-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--launch-border-light);
  border-radius: 20px;
  background: #ffffff;
}

.pricing-card.featured {
  background: var(--launch-ink);
  color: #ffffff;
  border-color: var(--launch-lime);
}

.recommended-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--launch-lime);
  color: var(--launch-ink);
  font: 800 0.65rem var(--font-display);
}

.pricing-card small {
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--launch-muted);
  font-size: 0.68rem;
}

.pricing-card.featured small {
  color: var(--launch-lime);
}

.pricing-card h3 {
  font: 700 1.5rem var(--font-display);
  margin: 10px 0 8px;
}

.price-big {
  font: 800 clamp(2.2rem, 3.2vw, 3.6rem) / 1 var(--font-display);
  margin: 10px 0 14px;
}

.price-big small {
  font-size: 0.8rem;
  color: var(--launch-muted);
}

.pricing-card p {
  color: var(--launch-muted);
  line-height: 1.5;
  font-size: 0.88rem;
  margin: 0 0 18px;
}

.pricing-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
  flex: 1;
}

.pricing-card li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card li:before {
  content: '✓';
  color: var(--launch-lime);
  font-weight: 800;
}

/* CALCULATOR COMPACT */
.calculator-enhanced {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(16, 21, 19, 0.14);
  border-radius: 20px;
  background: #ffffff;
  margin-top: 24px;
}

.calc-box-tag {
  font: 800 0.68rem var(--font-display);
  color: #3b8256;
  letter-spacing: 0.12em;
}

.calc-box-title {
  font: 700 1.4rem var(--font-display);
  margin: 4px 0 4px;
  color: var(--launch-ink);
}

.calc-box-subtitle {
  color: var(--launch-muted);
  font-size: 0.85rem;
  margin: 0 0 14px;
}

.employee-count-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0;
}

.employee-count-row strong {
  font: 800 3rem / 1 var(--font-display);
  color: var(--launch-ink);
}

#userRange {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(16, 21, 19, 0.1);
  outline: none;
  cursor: pointer;
}

#userRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--launch-ink);
  border: 3px solid var(--launch-lime);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--launch-muted);
  font-size: 0.7rem;
  margin-top: 6px;
}

.calc-output-launch {
  background: var(--launch-ink);
  color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-output-launch small {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.68rem;
}

.calc-output-launch strong {
  font: 800 2.6rem / 1 var(--font-display);
  color: var(--launch-lime);
  display: block;
  margin: 8px 0 4px;
}

.tier-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 4px;
}

.tier-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--launch-lime);
}

.tier-indicator b {
  font: 700 0.8rem var(--font-display);
  color: #ffffff;
}

#tierExplanation {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  margin: 0 0 12px;
}

/* PANTALLA 10: FINAL CTA */
.final-cta {
  background: var(--launch-ink);
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  font: 700 clamp(2.2rem, 4vw, 4.2rem) / 1.05 var(--font-display);
  letter-spacing: -0.04em;
  max-width: 850px;
  margin: 14px auto 16px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* FOOTER */
.professional-footer {
  background: #0b0d10 !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px max(5vw, 24px) 24px !important;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo img {
  width: 140px;
}

.footer-logo span {
  font-size: 0.85rem;
  color: #858a93;
}

.footer-column b {
  font: 700 0.8rem var(--font-display);
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.footer-column a {
  font-size: 0.85rem !important;
  color: #888d96 !important;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #686d76;
}

/* LEAD MODAL */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lead-modal.open {
  opacity: 1;
  visibility: visible;
}

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

.lead-card {
  position: relative;
  width: min(600px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #f5f7f3;
  color: var(--launch-ink);
  border-radius: 24px;
  padding: 36px;
}

.lead-close {
  position: absolute;
  right: 18px;
  top: 16px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.lead-card h2 {
  font: 700 2rem / 1.1 var(--font-display);
  margin: 10px 0 8px;
}

.lead-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.lead-card label {
  font-size: 0.76rem;
  font-weight: 700;
  display: grid;
  gap: 4px;
}

.lead-card label:nth-last-of-type(1),
.lead-card label:nth-last-of-type(2) {
  grid-column: 1 / -1;
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  border: 1px solid #d5d8d3;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

/* RESPONSIVE MEDIA QUERIES FOR 100vh */
@media (max-height: 800px) {
  .fs-section {
    padding-top: 72px;
    padding-bottom: 24px;
  }
  .fs-head h2 {
    font-size: 2.2rem;
  }
  .hero-fs h1 {
    font-size: 3rem;
  }
  .product-v4 {
    transform: scale(0.92);
  }
}

@media (max-width: 1050px) {
  .fs-section {
    min-height: auto;
    padding: 80px 24px;
  }
  .hero-fs,
  .job-fs,
  .calculator-enhanced {
    grid-template-columns: 1fr;
  }
  .problem-grid,
  .clarity-grid,
  .outcome-grid,
  .pricing-grid-three,
  .pilot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .problem-grid,
  .clarity-grid,
  .outcome-grid,
  .pricing-grid-three,
  .pilot-grid {
    grid-template-columns: 1fr;
  }
  .how-step {
    grid-template-columns: 44px 1fr;
  }
  .step-result {
    grid-column: 1 / -1;
  }
  .unique-value {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ========================================================================== 
   GIS V5 — category clarity, simplicity and comparison improvements
   ========================================================================== */
.gis-hero { background:
  radial-gradient(circle at 72% 24%, rgba(196,255,82,.12), transparent 31%),
  radial-gradient(circle at 10% 80%, rgba(73,181,143,.08), transparent 28%), #0d1210; }
.gis-hero .hero-copy { max-width: 690px; }
.gis-hero h1 em { max-width: 760px; }
.hero-proofline { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin:20px 0 24px; }
.hero-proofline span { border:1px solid rgba(255,255,255,.11); border-radius:12px; padding:12px; font-size:.76rem; line-height:1.35; color:rgba(255,255,255,.62); background:rgba(255,255,255,.025); }
.hero-proofline b { display:block; color:#fff; font-size:.8rem; margin-bottom:3px; }
.category-line { margin:20px 0 0; font-size:.78rem; color:rgba(255,255,255,.48); }
.category-line b { color:var(--launch-lime); }
.gis-command-card { box-shadow:0 42px 100px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08); }
.simple-dialogue .job-row { grid-template-columns:minmax(120px,.42fr) 1.58fr; }
.simple-dialogue .job-row span { color:var(--launch-lime); }
.gis-matrix { min-width:1380px; }
.gis-matrix th:first-child { min-width:235px; }
.gis-matrix th:not(:first-child) { min-width:150px; }
.matrix-copy { display:block; font-size:.76rem; line-height:1.35; color:#59625e; }
.strong-copy { color:#111; font-weight:700; }
.comparison-note { max-width:1100px; margin:14px auto 0; font-size:.7rem; line-height:1.5; color:#737b77; text-align:center; }
.comparison-matrix .launchos-column { background:linear-gradient(180deg, rgba(209,255,104,.18), rgba(209,255,104,.06)); }
.comparison-matrix tbody tr:hover td { background-color:rgba(16,21,19,.025); }
.comparison-matrix tbody tr:hover .launchos-column { background:rgba(209,255,104,.24); }

@media (max-width: 980px) {
  .hero-proofline { grid-template-columns:1fr; }
  .category-line { max-width:560px; }
}
@media (max-width: 640px) {
  .gis-hero h1 { font-size:clamp(2.55rem,12vw,3.8rem); }
  .hero-proofline { margin:16px 0 20px; }
  .hero-proofline span { padding:10px 12px; }
  .simple-dialogue .job-row { grid-template-columns:1fr; gap:6px; }
}

/* GIS copy & conversion enhancements */
.fit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(16, 21, 19, 0.12);
  border-top: 1px solid rgba(16, 21, 19, 0.1);
  border-bottom: 1px solid rgba(16, 21, 19, 0.1);
}
.fit-strip > div {
  padding: 28px clamp(22px, 4vw, 60px);
  background: #f8f8f4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fit-strip small { font-size: .68rem; letter-spacing: .13em; color: #6d746f; font-weight: 800; }
.fit-strip strong { font: 700 clamp(1rem, 1.5vw, 1.3rem)/1.25 var(--font-display); color: var(--launch-ink); }
.proof-section { background: #f2f4ed; }
.proof-grid, .objection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-grid article, .objection-grid article {
  border: 1px solid rgba(16,21,19,.12);
  border-radius: 20px;
  padding: 26px;
  background: rgba(255,255,255,.72);
}
.proof-grid article span {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--launch-ink); color: #d9ff63; font-weight: 800; margin-bottom: 34px;
}
.proof-grid h3, .objection-grid h3 { font: 700 1.15rem/1.25 var(--font-display); margin: 0 0 10px; }
.proof-grid p, .objection-grid p { margin: 0; color: var(--launch-muted); line-height: 1.55; }
.objection-section .objection-grid article { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.11); }
.objection-section .objection-grid h3 { color: #d9ff63; }
.objection-section .objection-grid p { color: rgba(255,255,255,.72); }
.hero-lead { max-width: 770px; }
.gis-hero h1 { max-width: 940px; }
.problem-card p, .clarity-card p, .outcome-card p, .takeaway-card p { font-size: .98rem; line-height: 1.58; }
@media (max-width: 900px) {
  .fit-strip, .proof-grid, .objection-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .fit-strip, .proof-grid, .objection-grid { grid-template-columns: 1fr; }
  .fit-strip > div { padding: 22px 20px; }
}
