:root {
  --black: #000000;
  --white: #FAFAFA;
  --lime: #84CC16;
  --magenta: #ff0055;
  --dim: rgba(250, 250, 250, 0.18);
  --dim-mid: rgba(250, 250, 250, 0.45);
  --dim-strong: rgba(250, 250, 250, 0.7);
  --border: 2px solid #FAFAFA;
  --border-thin: 1px solid rgba(250, 250, 250, 0.25);
  --font: 'Space Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--lime); color: var(--black); }

/* ============ NAV ============ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--black);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.15s;
}

.nav-brand:hover { color: var(--lime); }

.nav-brand .nav-logo {
  height: 32px;
  width: auto;
  display: block;
}

.nav-brand .dot {
  width: 12px;
  height: 12px;
  background: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.15s, color 0.15s;
}

.nav-link:hover { opacity: 1; color: var(--lime); }

.nav-cta {
  background: var(--lime);
  color: var(--black);
  border: 2px solid var(--lime);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  font-family: var(--font);
}

.nav-cta:hover { background: #a3e635; border-color: #a3e635; color: var(--black); }

/* === BURGER BUTTON === */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  /* área táctil accesible ≥44px (a11y) sin alterar el icono */
  min-width: 44px;
  min-height: 44px;
  z-index: 200;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-name { font-size: 0.72rem; letter-spacing: 0.04em; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Drawer: el .nav-links se convierte en menú desplegable */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--black);
    border-bottom: 2px solid var(--white);
    padding: 8px 20px 20px;
    z-index: 99;
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links .nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.12);
    font-size: 1rem;
    letter-spacing: 0.05em;
    opacity: 1;
  }

  .nav-links .nav-link:last-of-type { border-bottom: none; }
}

/* Drawer CTA — oculto en desktop, visible dentro del drawer en mobile */
.nav-drawer-cta {
  display: none;
}

@media (max-width: 768px) {
  .nav-drawer-cta {
    display: block;
    margin-top: 16px;
    padding: 14px 20px;
    background: var(--lime);
    color: var(--black);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
  }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: var(--border);
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.hero > *:not(.hero-video) {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  border: 2px solid var(--lime);
  padding: 8px 16px;
  margin-bottom: 32px;
  align-self: flex-start;
}

.hero-headline {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 1400px;
}

.hero-headline .glitch {
  display: inline-block;
  color: var(--lime);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.85);
  max-width: 720px;
  border-left: 4px solid var(--lime);
  padding-left: 20px;
  margin-bottom: 48px;
}

.hero-sub b,
.hero-sub strong {
  color: var(--lime);
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--lime);
  color: var(--black);
  border: 2px solid var(--lime);
  padding: 18px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  font-family: var(--font);
}

.cta-primary:hover { background: var(--black); color: var(--lime); }

.cta-ghost {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--white);
  padding: 18px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  font-family: var(--font);
}

.cta-ghost:hover { background: var(--white); color: var(--black); }

@media (max-width: 768px) {
  .hero { padding: 100px 20px 60px; }
}

/* ============ COUNTER BAR ============ */

.counter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--border);
}

.counter-item {
  padding: 48px 40px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.counter-item:last-child { border-right: none; }

.counter-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.counter-number .dim-acc { color: var(--white); }

.counter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-strong);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .counter-bar { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(1), .counter-item:nth-child(2) { border-bottom: var(--border); }
  .counter-item { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .counter-item { padding: 28px 16px; }
}

/* ============ MARQUEE ============ */

.marquee-section {
  padding: 16px 0;
  background: var(--black);
  border-bottom: var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-item {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 48px;
  position: relative;
}

.marquee-item .arrow { color: var(--lime); padding: 0 6px; }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */

section.std {
  padding: 100px 40px;
  border-bottom: var(--border);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.section-label::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--lime);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 1200px;
}

.section-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.85);
  max-width: 820px;
  margin-bottom: 48px;
}

.section-kicker {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 1100px;
  margin-top: 12px;
  margin-bottom: 32px;
  border-left: 3px solid var(--lime);
  padding-left: 20px;
}

@media (max-width: 1024px) { section.std { padding: 80px 24px; } }
@media (max-width: 768px) { section.std { padding: 60px 20px; } }

/* ============ GAP STATS DETAIL ============ */

.gap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: var(--border);
}

.gap-item {
  padding: 40px 0 40px 32px;
  border-right: var(--border);
  border-bottom: var(--border);
}

.gap-item:nth-child(2n) { border-right: none; }

.gap-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.gap-num .dim-acc { color: var(--white); }

.gap-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
}

.gap-source {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim-strong);
}

@media (max-width: 768px) {
  .gap-grid { grid-template-columns: 1fr; }
  .gap-item { border-right: none; padding: 32px 0 32px 20px; }
}

/* ============ ACCENTURE-STYLE CONNECTED SERVICES ============ */

.connected-section {
  padding: 100px 40px 60px;
  border-bottom: var(--border);
}

.connected-running {
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 24px;
}

.connected-running .word {
  position: relative;
  padding-right: 12px;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.connected-running .word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 0;
  background: var(--lime);
  transition: width 0.3s ease;
}

/* Estado por defecto (sin hover en el grupo): el primero (Consultoría) lima, los otros blancos suaves */
.connected-running .word:nth-of-type(1) { color: var(--lime); }
.connected-running .word:nth-of-type(1)::after { width: 100%; }

/* Cuando se pasa el ratón sobre cualquier .word, atenuar SOLO los demás */
.connected-running:has(.word:hover) .word:not(:hover) {
  color: var(--dim);
  opacity: 0.5;
}
.connected-running:has(.word:hover) .word:not(:hover)::after { width: 0; }

/* El que está siendo hovereado se pone lima, sube y subraya */
.connected-running .word:hover {
  color: var(--lime);
  transform: translateY(-2px);
}
.connected-running .word:hover::after { width: 100%; }

/* Pip y separadores: pierden brillo cuando el grupo está siendo hovereado */
.connected-running .pip {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-right: 12px;
  margin-bottom: -10px;
  background: linear-gradient(135deg, var(--lime), rgba(132, 204, 22, 0.3));
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 700;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.connected-running:has(.word:hover) .pip {
  opacity: 0.35;
  background: linear-gradient(135deg, var(--dim-mid), var(--dim));
}

.connected-running .comma {
  color: var(--lime);
  padding-right: 12px;
}

.connected-running .dot { color: var(--lime); }

.connected-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding: 12px 16px;
  background: var(--lime);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.1s, color 0.1s;
}

.connected-link:hover { background: var(--white); }

@media (max-width: 768px) {
  .connected-section { padding: 60px 20px 40px; }
  .connected-running .pip { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ============ STACKED STICKY CARDS — 3 EJES (T&P pattern) ============ */

.axes-stack {
  background: var(--black);
  border-top: var(--border);
}

.axis-card {
  position: sticky;
  background: var(--black);
  border-top: var(--border);
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  max-height: 100vh;
}

.axis-card:nth-child(1) { top: 64px; }
.axis-card:nth-child(2) { top: 124px; }
.axis-card:nth-child(3) { top: 184px; }

.axis-card:last-child {
  min-height: calc(100vh - 184px);
  max-height: none;
}

.axis-card-header {
  height: 60px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 0 40px;
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid rgba(132, 204, 22, 0.35);
}

.axis-card-header .axis-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.18em;
}

.axis-card-header .axis-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.axis-card-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 64px 40px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.axis-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  min-height: 0;
  border: none;
  background: transparent;
  padding: 0;
}

.axis-image::before {
  content: "/ imagen pendiente";
  display: block;
}

.axis-image:has(img) {
  border: none;
  background: transparent;
  padding: 0;
  min-height: 0;
  width: 45%;
  max-height: 80%;
}

.axis-image:has(img)::before {
  content: none;
}

.axis-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}

/* Highlight (lima + negrita + bg verde sutil) en .axis-desc */
.axis-desc b,
.axis-desc strong {
  color: var(--lime);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(132, 204, 22, 0.18) 65%);
  padding: 0 2px;
}

.axis-quote {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--lime);
  border-left: 2px solid var(--lime);
  padding-left: 16px;
  margin-top: 16px;
  font-style: italic;
}

.axis-side ul li .scenario {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
}

/* === Carrusel de escenarios === */
.scenario-carousel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

.axis-side .scenario-carousel {
  flex: 0 0 auto;
}

.scenario-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.axis-side .scenario-track {
  flex: 1;
  min-height: 0;
}

.scenario-track::-webkit-scrollbar { display: none; }

.scenario-track .scenario-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 0 0 12px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.85);
  position: static;
}

.scenario-track .scenario-slide::before {
  content: none !important;
}

.scenario-slide .scenario {
  display: block;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 12px;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.35;
}

.scenario-slide .scenario-body {
  display: block;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.6);
}

.scenario-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
}

.scenario-btn {
  background: transparent;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, color 0.1s;
  flex-shrink: 0;
  align-self: center;
}

.scenario-btn:hover { background: var(--lime); color: var(--black); }

.scenario-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.scenario-btn:disabled:hover {
  background: transparent;
  color: var(--lime);
}

.scenario-counter {
  font-family: var(--font);
  font-size: 0.78rem;
  color: var(--lime);
  letter-spacing: 0.18em;
  font-weight: 700;
  flex: 1;
  text-align: center;
}

.axis-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.15em;
  padding-top: 12px;
}

.axis-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  min-width: 0;
}

.axis-content .scenario-carousel {
  flex: 0 0 auto;
}

.axis-name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.axis-name .dot { color: var(--lime); }

.axis-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
}

.axis-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 32px;
}

/* Carrusel dentro de axis-content (reemplaza la quote) */
.axis-content--wide {
  grid-column: 1 / -1;
}

.scenario-carousel--inline {
  border-left: 2px solid var(--lime);
  padding-left: 24px;
  margin-left: -24px;
}

.scenario-carousel--inline .scenario-track {
  min-height: 120px;
}

.scenario-carousel--inline .scenario {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--lime);
  line-height: 1.35;
  margin-bottom: 12px;
}

.scenario-carousel--inline .scenario-body {
  display: block;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.7);
}

.axis-side {
  border-left: 2px solid var(--lime);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  align-self: start;
}

.axis-side h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: -4px;
}

.axis-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.axis-side ul li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  color: rgba(250, 250, 250, 0.8);
}

.axis-side ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

@media (max-width: 1280px) {
  .axis-card-body { grid-template-columns: 1fr 1fr; gap: 24px; padding: 48px 32px; }
  .axis-image { display: none; }
}

@media (max-width: 1024px) {
  .axis-card-body { grid-template-columns: 1fr; gap: 20px; padding: 48px 24px; }
  .axis-card-header { grid-template-columns: 60px 1fr; gap: 20px; padding: 0 24px; }
  .axis-side { grid-column: 1 / -1; margin-left: 0; }
}

@media (max-width: 768px) {
  .axis-card { position: static; min-height: auto; max-height: none; }
  .axis-card:nth-child(n) { top: auto; }
  .axis-card-header { padding: 0 20px; gap: 16px; grid-template-columns: 50px 1fr; }
  .axis-card-body { grid-template-columns: 1fr; padding: 40px 20px; gap: 16px; }
  .axis-side { margin-left: 0; }
  .scenario-carousel--inline { margin-left: 0; }
}

/* ============ CATÁLOGO 20 PRODUCTOS ============ */

.catalog-section {
  padding: 100px 40px;
  border-bottom: var(--border);
}

.layer-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: var(--border);
}

.layer-label .meta {
  color: var(--dim-strong);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.product-list {
  border-top: 1px solid rgba(250, 250, 250, 0.15);
}

.product-row {
  display: grid;
  grid-template-columns: 80px 1fr 220px 140px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250, 250, 250, 0.15);
  align-items: baseline;
  cursor: default;
  transition: background 0.15s;
}

.product-row:hover { background: rgba(132, 204, 22, 0.04); }

.product-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.12em;
}

.product-main h4 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-main p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.7);
}

.product-meta {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim-strong);
  line-height: 1.5;
}

.product-meta b {
  color: var(--lime);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.product-arrow {
  text-align: right;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.5;
  transition: opacity 0.15s;
}

.product-row:hover .product-arrow { opacity: 1; }

@media (max-width: 1024px) {
  .product-row { grid-template-columns: 60px 1fr 180px; }
  .product-arrow { display: none; }
}

@media (max-width: 768px) {
  .product-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .product-meta { font-size: 0.75rem; }
}

/* ============ LP — BODY COPY FONT SIZE ============ */

.lp-sub,
.lp-step p,
.lp-fit-card p,
.lp-include p,
.lp-change-col li,
.lp-how-lead,
.tray-rebel-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}

/* ============ HIGHLIGHT EN COPY DENSO ============ */

.section-lead b,
.section-lead strong,
.lp-sub b,
.lp-sub strong {
  color: var(--lime);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(132, 204, 22, 0.18) 65%);
  padding: 0 2px;
}

/* ============ SCROLL SUAVE ============ */

html { scroll-behavior: smooth; }

/* ============ /05 TRAYECTORIA — texto + foto retrato ============ */

.trayectoria-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}

.trayectoria-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
}

.trayectoria-portrait img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(132, 204, 22, 0.25);
}

.trayectoria-portrait-caption {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.tray-link {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(132,204,22,0.4);
  transition: border-color 0.2s ease;
}
.tray-link:hover {
  border-bottom-color: var(--lime);
}

.tray-linkedin-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--lime);
  text-decoration: none;
  transition: background 0.2s ease;
}
.tray-linkedin-btn:hover {
  background: #9bdc2a;
}

.tray-quote-full {
  margin: 48px 0 32px;
  padding: 32px 40px;
  border-left: 3px solid var(--lime);
  background: rgba(132,204,22,0.04);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.tray-rebel-lead {
  max-width: 72ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 48px;
}

.timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .trayectoria-grid { grid-template-columns: 1fr; gap: 32px; }
  .trayectoria-portrait { padding-top: 0; }
  .trayectoria-portrait img { max-width: 280px; }
}

/* ============ /01 EL MOMENTO — texto + imagen ============ */

.momento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}

.momento-image {
  display: flex;
  justify-content: center;
}

.momento-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .momento-grid { grid-template-columns: 1fr; gap: 32px; }
  .momento-image { order: -1; }
  .momento-image img { max-width: 360px; }
}

/* ============ EMPIEZA POR LO BÁSICO — system inspector rows ============ */

.basics-stack {
  margin-top: 56px;
  border-top: 1px solid rgba(132, 204, 22, 0.25);
}

.basic-row {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(132, 204, 22, 0.25);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}

.basic-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(132, 204, 22, 0.04);
  transition: width 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.basic-row > * { position: relative; z-index: 1; }

.basic-row:hover::before { width: 100%; }

.basic-row-num {
  font-family: 'Space Mono', monospace;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.02em;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.basic-row:hover .basic-row-num {
  opacity: 1;
  transform: translateX(8px);
}

.basic-row-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.basic-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.basic-row-meta span { white-space: nowrap; }

.basic-row-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  transition: transform 0.25s ease;
}

.basic-row:hover .basic-row-title {
  transform: translateX(4px);
}

.basic-row-title b {
  color: var(--lime);
  font-weight: 700;
}

.basic-row-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.72);
  max-width: 60ch;
}

.basic-row-points {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.basic-row-points li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.62);
}

.basic-row-points li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 700;
}

.basic-row-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 10px;
  border: 2px solid var(--lime);
  padding: 14px 22px;
  white-space: nowrap;
  transition: background 0.22s ease;
}

.basic-row:hover .basic-row-cta {
  background: var(--lime);
}

.basic-row-arrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  transition: color 0.22s ease;
}

.basic-row:hover .basic-row-arrow {
  color: var(--black);
}

.basic-row-arrow-icon {
  font-size: 1rem;
  color: var(--lime);
  transition: color 0.22s ease, transform 0.22s ease;
  display: block;
  line-height: 1;
}

.basic-row:hover .basic-row-arrow-icon {
  color: var(--black);
  transform: translateX(5px);
}

/* ============ NUBE DE TAGS — Y muchas cosas más ============ */

.cloud-header {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid rgba(250, 250, 250, 0.15);
  position: relative;
  overflow: hidden;
}

.cloud-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/brand/cloud-bg.png') center center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.cloud-header > * {
  position: relative;
  z-index: 1;
}

.cloud-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.cloud-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.cloud-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.7);
  max-width: 640px;
}

.cloud-title b {
  color: var(--lime);
  font-weight: 700;
}

.cloud-lead b,
.cloud-lead strong {
  color: var(--lime);
  font-weight: 700;
}

.tags-cloud {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud .tag {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(132, 204, 22, 0.35);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 250, 0.88);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.tags-cloud .tag:hover,
.tags-cloud .tag.is-active {
  border-color: var(--lime);
  color: var(--black);
  background: var(--lime);
  transform: translateY(-1px);
}

.tag-preview {
  min-height: 72px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(132, 204, 22, 0.2);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tag-preview.is-visible {
  opacity: 1;
}

.tag-preview-text {
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--white);
  max-width: 72ch;
  margin: 0;
}

@media (max-width: 1024px) {
  .basic-row { grid-template-columns: 80px 1fr; gap: 24px; padding: 36px 0; }
  .basic-row-num { font-size: 3.4rem; }
  .basic-row-cta { grid-column: 2; justify-content: flex-start; align-self: start; margin-top: 8px; }
  .basic-row-title { font-size: 1.5rem; }
}

@media (max-width: 640px) {
  .basic-row { grid-template-columns: 1fr; gap: 16px; }
  .basic-row-num { font-size: 2.4rem; }
  .basic-row-cta { grid-column: 1; }
}

/* ============ FOR WHO ============ */

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.who-block {
  border: 2px solid var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.who-block.priority {
  border-color: var(--lime);
  background: rgba(132, 204, 22, 0.04);
}

.who-block-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.who-block h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.who-block h3 b,
.who-block p b {
  color: var(--lime);
  font-weight: 700;
}

.who-block p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(250, 250, 250, 0.85);
}

.who-block-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--lime);
  text-decoration: none;
  transition: background 0.2s ease, gap 0.2s ease;
}

.who-block-link:hover {
  background: #9bdc2a;
  gap: 14px;
}

.who-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.who-block ul li {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding-left: 18px;
  position: relative;
}

.who-block ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

@media (max-width: 768px) {
  .who-grid { grid-template-columns: 1fr; gap: 16px; }
  .who-block { padding: 24px; }
}

/* ============ TIMELINE ============ */

.timeline {
  max-width: 920px;
  border-top: var(--border);
  margin-top: 32px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 32px 0;
  border-bottom: var(--border);
  gap: 24px;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.01em;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.85);
}

@media (max-width: 768px) {
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; padding: 24px 0; }
  .timeline-year { font-size: 1.1rem; }
}

/* ============ LEAD MAGNET ============ */

.magnet-section {
  padding: 100px 40px;
  border-bottom: var(--border);
  background: var(--black);
}

.magnet-card {
  border: 2px solid var(--lime);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.magnet-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.magnet-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 24px;
}

.magnet-form {
  display: flex;
  gap: 0;
  border: 2px solid var(--white);
  background: var(--black);
}

.magnet-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
}

.magnet-form input::placeholder { color: var(--dim-strong); }

.magnet-form button {
  background: var(--lime);
  color: var(--black);
  border: none;
  padding: 16px 24px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}

.magnet-form button:hover { background: var(--white); }

.magnet-side {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  border-left: 2px solid var(--lime);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.magnet-side b {
  color: var(--white);
  font-weight: 700;
  display: block;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .magnet-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .magnet-side { border-left: none; padding-left: 0; border-top: 2px solid var(--lime); padding-top: 24px; }
}

/* ============ CTA SECTION ============ */

.cta-section {
  padding: 120px 40px;
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-heading {
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cta-heading b,
.section-title b,
.lp-section-title b,
.lp-headline b,
.lp-step p b,
.lp-fit-card p b,
.lp-include p b {
  color: var(--lime);
}

.cta-disclaimer {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.6);
  max-width: 600px;
}

.cta-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cta-btn-main {
  background: var(--lime);
  color: var(--black);
  border: 2px solid var(--lime);
  padding: 20px 40px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  font-family: var(--font);
}

.cta-btn-main:hover { background: var(--black); color: var(--lime); }

@media (max-width: 768px) { .cta-section { padding: 80px 20px; } }

/* ============ FOOTER ============ */

footer {
  border-top: var(--border);
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0;
  padding: 56px 40px 48px;
  border-bottom: 1px solid rgba(132, 204, 22, 0.35);
}

.footer-brand-col {
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand-name span { color: var(--lime); }

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.5);
  max-width: 28ch;
}

.footer-nav-col,
.footer-legal-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.footer-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 4px;
}

.footer-nav-col a,
.footer-legal-col a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 250, 0.55);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s;
  display: inline-block;
}

.footer-nav-col a:hover,
.footer-legal-col a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-email {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 250, 0.45);
}

.footer-email a {
  color: rgba(250, 250, 250, 0.45);
  transition: color 0.15s;
}

.footer-email a:hover { color: var(--lime); }

.footer-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.3);
}

/* Legacy classes — kept for JS hooks */
.footer-left  { display: none; }
.footer-right { display: none; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 24px 40px; }
  .footer-brand-col { grid-column: 1 / -1; padding-right: 0; }
  .footer-bottom { padding: 18px 24px; }
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 32px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 8px; }
}

/* === páginas internas === */

/* Active state en nav-link */
.nav-link.active { color: var(--lime); opacity: 1; }
.nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lime);
  margin-top: 4px;
}

/* Hero compacto sin video — para producto/contacto/recursos/sobre */
.hero.hero-compact {
  min-height: 50vh;
  padding: 140px 40px 80px;
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero.hero-compact video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.hero.hero-compact > *:not(video) {
  position: relative;
  z-index: 1;
}
.hero.hero-compact .hero-headline {
  font-size: clamp(2.4rem, 7vw, 5rem);
}
.hero.hero-compact .hero-sub {
  max-width: 720px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

@media (max-width: 768px) {
  .hero.hero-compact { padding: 100px 20px 60px; min-height: 40vh; }
}

/* Dept blocks — agrupación de productos por departamento (producto.html) */
.dept-block {
  border-top: var(--border);
  padding: 48px 0;
}
.dept-block:last-child { border-bottom: var(--border); }

.dept-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.dept-name {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.dept-count {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: var(--border-thin);
}

.dept-card {
  padding: 28px 28px 28px 0;
  border-bottom: var(--border-thin);
  border-right: var(--border-thin);
}
.dept-card:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 28px; }

.dept-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dept-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.78);
  margin-bottom: 14px;
}

.dept-card .dept-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.dept-card.muted {
  opacity: 0.55;
}
.dept-card.muted h4::after {
  content: " ↗";
  color: var(--lime);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .dept-grid { grid-template-columns: 1fr; }
  .dept-card,
  .dept-card:nth-child(2n) {
    padding: 24px 0;
    border-right: none;
  }
}

/* Form — contacto.html */
.form-section {
  padding: 100px 40px;
  border-bottom: var(--border);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin-top: 16px;
}
.contact-form label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 2px solid var(--white);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.1s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--lime); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--dim-strong); }
.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: var(--black); color: var(--white); }
.contact-form button {
  background: var(--lime);
  color: var(--black);
  border: 2px solid var(--lime);
  padding: 18px 28px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.1s, color 0.1s;
}
.contact-form button:hover { background: var(--black); color: var(--lime); }

/* Next steps — qué pasa después */
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--border);
  margin-top: 32px;
}
.next-step {
  padding: 32px 28px;
  border-right: var(--border);
  border-bottom: var(--border);
}
.next-step:last-child { border-right: none; }
.next-step .step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.next-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.next-step p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(250, 250, 250, 0.78);
}

@media (max-width: 1024px) {
  .next-steps { grid-template-columns: 1fr; }
  .next-step { border-right: none; }
}

/* Recursos — grid de magnets */
.magnet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
.magnet-card.compact {
  grid-template-columns: 2fr 1fr;
  padding: 36px;
  gap: 32px;
}
.magnet-card.compact .magnet-content h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}
.magnet-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  border: 2px solid var(--lime);
  padding: 6px 12px;
  margin-bottom: 16px;
}
.magnet-tag.soon { color: var(--dim-strong); border-color: var(--dim-strong); }

@media (max-width: 1024px) {
  .magnet-card.compact { grid-template-columns: 1fr; padding: 28px; }
}

/* Proof list — empresas operadas (sobre.html) */
.proof-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--border);
  margin-top: 32px;
}
.proof-item {
  padding: 36px 24px;
  border-right: var(--border);
  border-bottom: var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proof-item p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.7);
}

@media (max-width: 1024px) {
  .proof-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .proof-list { grid-template-columns: 1fr; }
  .proof-item { border-right: none; }
}

/* ============ FOOTER LEGAL LINKS (legacy — kept for old JS hooks) ============ */

.footer-legal { display: none; }

/* ============ COOKIES BANNER ============ */

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 2px solid rgba(250, 250, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 40px;
  z-index: 1000;
  font-size: 0.8rem;
  color: rgba(250, 250, 250, 0.7);
  transition: opacity 0.3s ease;
}

.cookies-banner a { color: var(--lime); text-decoration: underline; }

.cookies-accept {
  background: var(--lime);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.1s;
}

.cookies-accept:hover { background: var(--white); }

.cookies-hidden { opacity: 0; pointer-events: none; }

/* cookies-v2: actions row + config panel */
.cookies-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookies-reject {
  background: transparent;
  color: rgba(250, 250, 250, 0.7);
  border: 1px solid rgba(250, 250, 250, 0.3);
  padding: 10px 20px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.1s, color 0.1s;
}
.cookies-reject:hover { border-color: var(--white); color: var(--white); }

.cookies-config {
  background: transparent;
  color: rgba(250, 250, 250, 0.5);
  border: none;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  white-space: nowrap;
}
.cookies-config:hover { color: var(--white); }

.cookies-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(250, 250, 250, 0.15);
  font-size: 0.8rem;
}
.cookies-detail label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(250, 250, 250, 0.75);
}
.cookies-detail input[type="checkbox"] { accent-color: var(--lime); cursor: pointer; }

.cookies-save {
  background: rgba(250, 250, 250, 0.1);
  color: var(--white);
  border: 1px solid rgba(250, 250, 250, 0.3);
  padding: 8px 16px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.1s;
}
.cookies-save:hover { background: rgba(250, 250, 250, 0.2); }

@media (max-width: 768px) {
  .cookies-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 12px; }
  .cookies-accept { align-self: stretch; text-align: center; }
  .cookies-actions { width: 100%; flex-direction: column; }
  .cookies-reject, .cookies-accept { width: 100%; text-align: center; }
}

/* Sobre — bloques de párrafos densos */
.why-now {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 820px;
  margin-top: 16px;
}
.why-now p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 250, 250, 0.85);
  padding-left: 20px;
  border-left: 3px solid var(--lime);
}

/* ============ YOUTUBE CANAL ============ */
.yt-subscribe-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: var(--border);
  padding: 40px;
  flex-wrap: wrap;
}

.yt-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yt-handle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.01em;
}

.yt-status {
  font-size: 0.8rem;
  color: var(--dim-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yt-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: var(--border-thin);
  margin-top: 32px;
}

.yt-topic {
  padding: 18px 20px;
  border-bottom: var(--border-thin);
  border-right: var(--border-thin);
  font-size: 0.9rem;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.4;
}

.yt-topic:nth-child(2n) { border-right: none; }

.yt-topic::before {
  content: "· ";
  color: var(--lime);
  font-weight: 700;
}

.yt-btn {
  background: var(--lime);
  color: var(--black);
  padding: 16px 32px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.1s;
  flex-shrink: 0;
}

.yt-btn:hover { background: var(--white); }

@media (max-width: 768px) {
  .yt-subscribe-block { flex-direction: column; align-items: flex-start; padding: 24px; }
  .yt-btn { width: 100%; text-align: center; padding: 14px 24px; }
  .yt-topics { grid-template-columns: 1fr; }
  .yt-topic { border-right: none; }
}

