@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

  :root {
    --black: #000;
    --white: #fff;
    --off-white: #fafafa;
    --dark-grey: #1a1a1a;
    --neutral-faded: rgba(255,255,255,0.15);
    --neutral-semi: rgba(255,255,255,0.8);
    --neutral-light: #aaa;
    --neutral-lighter: #ccc;
    --neutral-lightest: #eee;
    --blue: #2d62ff;
    --blue-dark: #080331;
    --blue-light: #d9e5ff;
    --earthy: #f2b76c;
    --sky-blue: #7ec4e3;
    --light-green: #7eea9b;
    --pink: #dd23bb;
    --pink-light: #ffaefe;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Source Serif 4', Georgia, serif;
    --ease: cubic-bezier(.25,.46,.45,.94);
    --grid-max: 80rem; /* alineado con marco editorial (también en bloque GRID más abajo) */
    /* Accent switch (default: green). Override with [data-accent-orb="blue"] */
    --orb-surface: #060e0d;
    --orb-a: 110, 165, 50;
    --orb-b: 35, 125, 65;
    --orb-c: 10, 70, 42;
    --orb-d: 6, 90, 68;
    --orb-e: 3, 50, 38;
  }
  [data-accent-orb="blue"] {
    --orb-surface: #060913;
    --orb-a: 96, 146, 255;
    --orb-b: 45, 98, 255;
    --orb-c: 32, 59, 170;
    --orb-d: 90, 185, 255;
    --orb-e: 20, 40, 120;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

  .container { max-width: 80rem; margin: 0 auto; padding: 0 2rem; }
  .text-center { text-align: center; }

  /* ═══════ BUTTONS ═══════ */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 6.25rem;
    font-size: 0.875rem; font-weight: 500;
    transition: all 300ms var(--ease);
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--white); color: var(--black); }
  .btn-primary:hover { box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
  .btn-secondary {
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    color: var(--white);
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.2); }
  .btn-blue { background: var(--blue); color: var(--white); }
  .btn-blue:hover { box-shadow: 0 4px 20px rgba(45,98,255,0.3); }
  .btn-outline { border: 1px solid var(--neutral-faded); color: var(--white); }
  .btn-outline:hover { border-color: rgba(255,255,255,0.4); }
  .btn-dark { background: var(--dark-grey); color: var(--white); }
  .btn-dark:hover { background: #2a2a2a; }
  .btn-white { background: var(--white); color: var(--black); }
  .btn-white:hover { background: var(--off-white); }
  .btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .btn-arrow { width: 16px; height: 16px; transition: transform 200ms; }
  .btn:hover .btn-arrow { transform: translateX(2px); }
  /* ── Orb hover effect for hero buttons ── */
  .btn-orb { position: relative; overflow: hidden; }
  .btn-orb > span { position: relative; z-index: 1; }
  .btn-orb::before,
  .btn-orb::after {
    content: '';
    position: absolute;
    top: 50%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
    z-index: 0;
  }
  .btn-orb::before {
    width: 80%;
    height: 220%;
    left: -18%;
    transform: translateY(-50%);
    background: radial-gradient(circle at center,
      rgba(var(--orb-a), 0.55) 0%,
      rgba(var(--orb-b), 0.28) 38%,
      transparent 70%
    );
    filter: blur(14px);
    animation: btnOrbL 5s ease-in-out infinite;
    will-change: transform, opacity;
  }
  .btn-orb::after {
    width: 70%;
    height: 200%;
    right: -14%;
    transform: translateY(-50%);
    background: radial-gradient(circle at center,
      rgba(var(--orb-d), 0.42) 0%,
      rgba(var(--orb-e), 0.18) 50%,
      transparent 72%
    );
    filter: blur(12px);
    animation: btnOrbR 5s ease-in-out infinite;
    will-change: transform;
  }
  .btn-orb:hover::before,
  .btn-orb:hover::after { opacity: 1; }
  @keyframes btnOrbL {
    0%   { transform: translateY(-50%) translateX(0%);    }
    40%  { transform: translateY(-62%) translateX(-6%);   }
    75%  { transform: translateY(-40%) translateX(-4%);   }
    100% { transform: translateY(-50%) translateX(0%);    }
  }
  @keyframes btnOrbR {
    0%   { transform: translateY(-50%) translateX(0%);    }
    35%  { transform: translateY(-38%) translateX(6%);    }
    70%  { transform: translateY(-60%) translateX(4%);    }
    100% { transform: translateY(-50%) translateX(0%);    }
  }
  @media (prefers-reduced-motion: reduce) {
    .btn-orb::before, .btn-orb::after { animation: none; }
  }

  /* ═══════ PILL / TAG ═══════ */
  .pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.75rem; border-radius: 6.25rem;
    font-size: 0.75rem; font-weight: 500;
    background: rgba(255,255,255,0.08); border: 1px solid var(--neutral-faded);
  }
  .pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

  /* ═══════ NAV (os-features style) ═══════ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #000000;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    height: 48px;
    display: flex; align-items: center; justify-content: center;
    transition: none;
  }
  .nav-inner {
    max-width: 980px; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 22px;
  }
  .nav-logo {
    font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em;
    color: var(--white);
  }
  .nav-links { display: flex; gap: 1.75rem; }
  .nav-link {
    font-size: 0.72rem; color: #86868b;
    transition: color 200ms;
  }
  .nav-link:hover { color: var(--white); }
  .hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; cursor: pointer; color: var(--white); }
  .hamburger span { height: 2px; background: var(--white); border-radius: 1px; transition: all 200ms; }

  /* ═══════ HERO ═══════ */
  .hero {
    position: relative; overflow: hidden;
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background: #000;
  }
  .hero-bg video,
  .hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.85) 70%, #000 100%);
  }
  .hero-inner {
    position: relative; z-index: 3;
    max-width: 50rem; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    padding: 6rem 2rem 4rem;
  }
  .hero .tag {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0.25rem 1rem; border-radius: 4rem;
    border: 1px solid rgba(250,250,250,0.15);
    font-size: 0.8rem; font-weight: 500;
    color: var(--neutral-semi);
    margin-bottom: 2rem;
  }
  .hero .tag svg { width: 16px; height: 16px; flex-shrink: 0; }
  .hero h1 {
    font-size: 4rem; font-weight: 500; line-height: 1.2;
    letter-spacing: -2.56px; margin-bottom: 1.5rem;
    text-wrap: balance;
  }
  /* Hero title style (matching os-features headline) */
  .hero h1.hero-headline {
    font-size: clamp(2.16rem, 5.4vw, 3.96rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero h1.hero-headline .hero-headline-line {
    display: block;
    white-space: nowrap;
  }
  .hero h1.hero-headline em {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    color: inherit;
    -webkit-text-fill-color: inherit;
  }
  .hero h1.hero-headline em.hero-muted {
    font-weight: 560;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    color: rgba(255,255,255,0.6) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.6) !important;
  }
  .hero h1 em {
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
  }
  .hero-sub {
    font-size: 1rem; color: var(--neutral-semi);
    max-width: 34rem; margin: 0 auto 2rem; line-height: 1.6;
  }
  .hero-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
  .hero-trust {
    margin-top: 3rem; font-size: 0.75rem; color: var(--neutral-light);
    letter-spacing: 0.03em;
  }

  /* ═══════ LOGO STRIP ═══════ */
  .logos-section { padding: 4rem 0 5rem; overflow: hidden; }
  .logos-section h2 {
    text-align: center; font-size: 2.5rem; font-weight: 600;
    letter-spacing: -1.5px; margin-bottom: 2.5rem; color: var(--white);
  }
  .logos-marquee {
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  }
  .logos-track {
    display: flex; align-items: center; gap: 3rem;
    width: max-content;
    animation: logosScroll 25s linear infinite;
  }
  .logo-chip {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 1.25rem; border-radius: 6.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap; flex-shrink: 0;
    font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.45);
  }
  .logo-chip svg, .logo-chip img { width: 20px; height: 20px; flex-shrink: 0; }
  .logo-chip span { font-size: 0.85rem; font-weight: 500; white-space: nowrap; color: var(--neutral-semi); }
  @keyframes logosScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ═══════ HIGHLIGHTS HORIZONTAL SCROLL ═══════ */
  .highlights-section {
    position: relative;
  }
  .highlights-pin {
    position: sticky; top: 0;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
    display: flex; flex-direction: column; justify-content: center;
  }
  .highlights-section {
    overflow: visible;
  }
  .highlights-title {
    padding: 0 clamp(20px, 5vw, 80px);
    margin-bottom: 2rem;
    overflow: visible;
  }
  .highlights-title h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0;
    padding: 0.1em 0;
    overflow: visible;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .highlights-track-wrapper {
    overflow: hidden;
  }
  .highlights-track {
    display: flex; gap: 1.25rem;
    padding: 0 clamp(20px, 5vw, 80px);
    will-change: transform;
  }
  .highlight-card {
    flex-shrink: 0;
    width: 420px; min-height: 560px;
    border-radius: 24px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
  }
  .highlight-card:hover { transform: scale(1.01); background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.16); }
  .highlight-card-text {
    padding: 2rem 2rem 1rem;
    font-size: 1.05rem; font-weight: 600;
    line-height: 1.4; color: var(--white);
    letter-spacing: -0.01em;
  }
  .highlight-card-media {
    flex: 1; min-height: 0; position: relative; overflow: visible;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 0 1.5rem;
  }
  /* Marco fijo para fotos reales (evita que el intrinsic size del JPEG rompa el flex) */
  .highlight-card-photo {
    width: 140%; height: 85%; max-height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
    flex-shrink: 1;
    align-self: flex-end;
    margin-bottom: -30px;
  }
  .highlight-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .highlight-card-media .hl-placeholder {
    width: 295px;
    height: 450px;
    max-width: 100%;
    flex-shrink: 0;
    margin-bottom: -30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 20px 20px 0 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
    box-sizing: border-box;
  }
  .highlight-card-photo.highlight-card-photo--slot {
    width: 295px;
    height: 450px;
    max-width: 100%;
    max-height: none;
    left: auto;
    transform: none;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: -30px;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }
  .highlight-card-photo--slot img {
    object-fit: cover;
    object-position: top center;
  }
  /* Omnichannel: marco fijo 645×395 (Figma); card más ancha para contenerlo + padding del media. */
  .highlight-card.highlight-card--omni {
    width: 695px;
    flex-shrink: 0;
  }
  .highlight-card-photo.highlight-card-photo--omni {
    width: 645px;
    height: 450px;
    max-height: none;
    left: auto;
    transform: none;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: -30px;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }
  .highlight-card-photo--omni picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .highlight-card-photo--omni img {
    object-fit: cover;
    object-position: top center;
  }

  @media (max-width: 767px) {
    .highlights-section { height: auto !important; }
    .highlights-pin {
      position: relative; height: auto; overflow: visible;
      padding: 4rem 0;
    }
    /* El wrapper no puede recortar: el scroll horizontal vive en .highlights-track con ancho = viewport */
    .highlights-track-wrapper {
      overflow: visible;
      width: 100%;
      max-width: 100%;
    }
    .highlights-track {
      display: flex;
      flex-wrap: nowrap;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: clamp(16px, 4vw, 24px);
      -webkit-overflow-scrolling: touch;
      touch-action: pan-x pan-y;
      overscroll-behavior-x: contain;
      padding-bottom: 1rem;
      scrollbar-width: none;
      will-change: auto;
      transform: none !important;
    }
    .highlights-track::-webkit-scrollbar { display: none; }
    .highlight-card {
      width: min(320px, calc(100vw - 2.5rem));
      min-height: 460px;
      scroll-snap-align: center;
      scroll-snap-stop: normal;
    }
    /* Omnichannel: misma disposición que la primera card (texto arriba + foto tipo slot) */
    .highlight-card.highlight-card--omni {
      width: min(320px, calc(100vw - 2.5rem));
    }
    .highlight-card-media .hl-placeholder {
      width: 100%;
      height: auto;
      aspect-ratio: 295 / 395;
      max-height: 320px;
    }
    .highlight-card-photo.highlight-card-photo--slot,
    .highlight-card-photo.highlight-card-photo--omni {
      width: 100%;
      height: auto;
      aspect-ratio: 295 / 395;
      max-height: 320px;
      margin-bottom: 0;
      align-self: center;
      left: auto;
      transform: none;
      border-radius: 14px 14px 0 0;
    }
    .highlight-card-photo--omni picture {
      width: 100%;
      height: 100%;
      min-height: 0;
    }
    .highlight-card-photo.highlight-card-photo--omni img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
  }

  /* ═══════ SCROLL REVEAL TEXT ═══════ */
  .reveal-section {
    padding: 2.5rem 0 4rem;
    position: relative; overflow: hidden;
  }
  .reveal-section .reveal-video-bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .reveal-section .reveal-video-bg video {
    width: 100%; height: 100%; object-fit: cover;
  }
  .reveal-section .reveal-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.85) 85%, #000 100%);
    pointer-events: none;
  }
  .reveal-section .container {
    position: relative; z-index: 2;
  }
  .reveal-text {
    font-size: 1.75rem; font-weight: 650;
    line-height: 1.55;
    max-width: 38rem;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .reveal-text .reveal-word {
    color: rgba(255,255,255,0.15);
    transition: color 0.3s ease;
    display: inline;
  }
  .reveal-text .reveal-word.lit {
    color: rgba(255,255,255,1);
  }
  .reveal-text .reveal-icon {
    display: inline-flex; vertical-align: middle;
    width: 1.4em; height: 1.4em; margin: 0 0.1em;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border-radius: 6px;
    transition: background 0.3s ease;
  }
  .reveal-text .reveal-icon.lit { background: rgba(255,255,255,0.15); }
  .reveal-text .reveal-icon svg {
    width: 0.7em; height: 0.7em; fill: rgba(255,255,255,0.4);
    transition: fill 0.3s ease;
  }
  .reveal-text .reveal-icon.lit svg { fill: rgba(255,255,255,0.9); }
  .reveal-para { margin-bottom: 1.5rem; }

  /* ═══════ IMMERSIVE SECTION ═══════ */
  .immersive-section {
    position: relative;
    height: 300vh;
  }
  .immersive-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
  .immersive-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    will-change: filter;
  }
  .immersive-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .immersive-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    will-change: opacity;
  }
  .immersive-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 clamp(40px, 8vw, 120px);
  }
  .immersive-text {
    max-width: 480px;
    opacity: 0;
    transform: translateY(40px);
    will-change: opacity, transform;
  }
  .immersive-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #bf5af2;
    margin-bottom: 1.25rem;
  }
  .immersive-text h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .immersive-text .immersive-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    font-weight: 400;
  }

  .immersive-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 2.5rem clamp(40px, 8vw, 120px) 3rem;
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
  }
  .immersive-card {
    padding: 1.5rem 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
  }
  .immersive-card:first-child {
    border-left: none;
    padding-left: 0;
  }
  .immersive-card-icon.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: #fff;
  }
  .immersive-card-icon.feature-icon svg {
    width: 64px;
    height: 64px;
  }
  .immersive-card-icon.feature-icon svg path,
  .immersive-card-icon.feature-icon svg circle,
  .immersive-card-icon.feature-icon svg rect {
    stroke: rgba(255, 255, 255, 0.95);
    fill: transparent;
    stroke-width: 2;
  }
  .immersive-card-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
  .immersive-card-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }

  /* Immersive + marco editorial (imagen solo en columna central; laterales negros) */
  .immersive-section--editorial .immersive-pin {
    background: #000;
  }
  .immersive-section--editorial .immersive-media-column {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--grid-max));
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }
  .immersive-section--editorial .immersive-media-column .immersive-bg,
  .immersive-section--editorial .immersive-media-column .immersive-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .immersive-section--editorial .immersive-media-column .immersive-bg {
    z-index: 1;
  }
  .immersive-section--editorial .immersive-media-column .immersive-overlay {
    z-index: 2;
  }

  /* Título dentro del mismo módulo que la imagen y las líneas */
  .immersive-section--editorial .immersive-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--grid-max));
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
  }

  /* Immersive + marco editorial (laterales + grid de cards; líneas con bordes, sin fondo en el grid) */
  .immersive-section--editorial .immersive-rails {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .immersive-section--editorial .immersive-rails-inner {
    width: min(100%, var(--grid-max));
    height: 100%;
    box-sizing: border-box;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
  }
  .immersive-section--editorial .immersive-rails-inner::before,
  .immersive-section--editorial .immersive-rails-inner::after {
    content: '';
    position: absolute;
    bottom: -3.5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 1;
  }
  .immersive-section--editorial .immersive-rails-inner::before { left: -3.5px; }
  .immersive-section--editorial .immersive-rails-inner::after { right: -3.5px; }

  .immersive-section--editorial .immersive-cards-shell {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: min(100%, var(--grid-max));
    max-width: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 3rem;
    box-sizing: border-box;
    pointer-events: none;
  }
  .immersive-section--editorial .immersive-cards-shell-inner {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    pointer-events: auto;
  }
  .immersive-section--editorial .immersive-cards {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    overflow: hidden;
    box-sizing: border-box;
  }
  .immersive-section--editorial .immersive-card {
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.35rem 1.5rem 1.5rem;
    background: transparent;
  }
  .immersive-section--editorial .immersive-card:nth-child(3n) {
    border-right: none;
  }
  .immersive-section--editorial .immersive-card:nth-last-child(-n+3) {
    border-bottom: none;
  }
  .immersive-section--editorial .immersive-card-text {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  }
  .immersive-section--editorial .immersive-card-text strong {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
  }

  @media (max-width: 991px) {
    .immersive-content { justify-content: center; padding: 0 2rem; }
    .immersive-text { max-width: 560px; text-align: center; }
    .immersive-overlay {
      background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.9) 100%);
    }
  }
  @media (max-width: 767px) {
    .immersive-section { height: 250vh; }
    /* Evitar solapamiento título (centrado) vs cards (absolute bottom) en viewport corto */
    .immersive-pin {
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }
    .immersive-content {
      position: relative;
      z-index: 3;
      flex: 0 0 auto;
      height: auto;
      min-height: 0;
      align-items: center;
      justify-content: flex-start;
      padding: 4.5rem 1.25rem 0.75rem;
    }
    .immersive-text {
      max-width: 100%;
    }
    .immersive-text h2 {
      font-size: clamp(1.45rem, 6.2vw, 2.1rem);
      line-height: 1.12;
      margin-bottom: 0;
    }
    .immersive-label { margin-bottom: 0.65rem; }
    .immersive-cards {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      z-index: 4;
      flex: 0 0 auto;
      margin-top: auto;
      width: 100%;
      box-sizing: border-box;
      grid-template-columns: 1fr;
      gap: 0.75rem;
      padding: 1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    }
    .immersive-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 0.85rem 0; }
    .immersive-card:first-child { border-top: none; padding-top: 0; }
    .immersive-card-text { font-size: 0.73rem; }
    .immersive-card-text strong { font-size: 0.82rem; }

    .immersive-section--editorial .immersive-content {
      position: relative;
      left: auto;
      transform: none;
      width: 100%;
      max-width: min(100%, var(--grid-max));
      margin-left: auto;
      margin-right: auto;
      height: auto;
      min-height: 0;
      flex: 0 0 auto;
      padding: 4.5rem 1.25rem 0.75rem;
      justify-content: flex-start;
      align-items: center;
    }
    .immersive-section--editorial .immersive-cards-shell {
      position: relative;
      left: auto;
      transform: none;
      flex: 0 0 auto;
      margin-top: auto;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      max-width: min(100%, var(--grid-max));
      padding: 1rem 0 max(1.25rem, env(safe-area-inset-bottom));
      pointer-events: none;
    }
    .immersive-section--editorial .immersive-cards-shell-inner {
      width: 100%;
      padding: 0;
      box-sizing: border-box;
    }
    .immersive-section--editorial .immersive-cards {
      flex: none;
      margin-top: 0;
      grid-template-columns: 1fr;
      gap: 0;
      padding: 0;
      background: transparent;
    }
    .immersive-section--editorial .immersive-card {
      border: none;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding: 0.9rem 1rem 1rem;
      background: transparent;
    }
    /* Anula desktop: fila inferior sin borde → en columna única sí hace falta separador */
    .immersive-section--editorial .immersive-card:nth-last-child(-n+3) {
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .immersive-section--editorial .immersive-card:last-child {
      border-bottom: none;
    }
  }

  /* ═══════ CORE FEATURES ═══════ */
  .features-section { padding: 6rem 0; }
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-header h2 {
    font-size: 3rem; font-weight: 400; line-height: 1.15;
    letter-spacing: -1.5px; margin-bottom: 0.5rem;
    font-family: 'Source Serif 4', 'Playfair Display', Georgia, serif;
  }
  .features-section .section-header h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    padding: 0.1em 0;
    overflow: visible;
    font-family: inherit;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .bento-section .section-header h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    padding: 0.1em 0;
    overflow: visible;
    font-family: inherit;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0.72));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .features-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; overflow: hidden;
  }
  .feature-card {
    background: transparent; padding: 2.5rem;
    display: flex; flex-direction: column; gap: 2rem;
    transition: background 400ms var(--ease);
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
  }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-last-child(-n+2) { border-bottom: none; }
  .feature-card:hover { background: transparent; }
  /* Animated gradient background — green orb effect */
  .feature-card-animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--orb-surface);
    opacity: 0;
    transition: opacity 0.65s ease;
    overflow: hidden;
  }
  .feature-card:hover .feature-card-animated-bg { opacity: 1; }
  .feature-card-animated-bg::before {
    content: '';
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: radial-gradient(
      circle at center,
      rgba(var(--orb-a), 0.52) 0%,
      rgba(var(--orb-b), 0.30) 35%,
      rgba(var(--orb-c), 0.12) 62%,
      transparent 80%
    );
    filter: blur(64px);
    animation: bcOrbA 6.5s ease-in-out infinite;
    will-change: transform, opacity;
  }
  .feature-card-animated-bg::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(
      circle at center,
      rgba(var(--orb-d), 0.38) 0%,
      rgba(var(--orb-e), 0.18) 50%,
      transparent 74%
    );
    filter: blur(52px);
    animation: bcOrbB 6.5s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes bcOrbA {
    0%   { transform: translate(-58%, 10%);  opacity: 0.40; }
    25%  { transform: translate(-62%, -25%); opacity: 0.68; }
    55%  { transform: translate(-48%, -48%); opacity: 0.78; }
    78%  { transform: translate(-38%, 8%);   opacity: 0.48; }
    100% { transform: translate(-58%, 10%);  opacity: 0.40; }
  }
  @keyframes bcOrbB {
    0%   { transform: translate(58%, -8%);  }
    30%  { transform: translate(62%,  28%); }
    62%  { transform: translate(46%,  52%); }
    86%  { transform: translate(42%, -2%);  }
    100% { transform: translate(58%, -8%);  }
  }
  @media (prefers-reduced-motion: reduce) {
    .feature-card-animated-bg::before,
    .feature-card-animated-bg::after { animation: none; opacity: 0.45; }
  }
  .feature-card .feature-icon,
  .feature-card .feature-card-body {
    position: relative;
    z-index: 1;
  }
  .feature-icon {
    width: 96px; height: 96px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .feature-icon svg {
    width: 96px; height: 96px; fill: none;
  }
  .feature-icon svg path, .feature-icon svg circle, .feature-icon svg rect {
    stroke: rgba(204,204,204,0.85); stroke-width: 2; fill: transparent;
  }
  .feature-card-body { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
  .feature-card h3 {
    font-size: 1.2rem; font-weight: 500; margin: 0; text-align: left;
  }
  .feature-card p {
    font-size: 0.88rem; color: var(--neutral-semi); line-height: 1.65; text-align: left; margin: 0;
  }

  /* Features “El corazón…” — modo claro */
  .features-section--light {
    background: #ffffff;
    color: #1d1d1f;
  }
  .features-section--light .section-header h2 {
    background: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0.72));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .features-section--light .features-grid {
    border-color: rgba(0,0,0,0.08);
    background: #f5f5f7;
    border-radius: 0.76rem;
  }
  .features-section--light .feature-card {
    border-right-color: rgba(0,0,0,0.08);
    border-bottom-color: rgba(0,0,0,0.08);
    background: #f5f5f7;
  }
  .features-section--light .feature-card:hover {
    background: #f5f5f7;
  }
  .features-section--light .feature-card-animated-bg {
    background: #eef0f2;
  }
  .features-section--light .feature-card-animated-bg::before {
    background: radial-gradient(
      circle at center,
      rgba(110, 165, 50, 0.28) 0%,
      rgba(35, 125, 65, 0.14) 38%,
      rgba(10, 70, 42, 0.06) 62%,
      transparent 80%
    );
  }
  .features-section--light .feature-card-animated-bg::after {
    background: radial-gradient(
      circle at center,
      rgba(6, 90, 68, 0.18) 0%,
      rgba(3, 50, 38, 0.08) 50%,
      transparent 74%
    );
  }
  .features-section--light .feature-icon svg path,
  .features-section--light .feature-icon svg circle,
  .features-section--light .feature-icon svg rect {
    stroke: rgba(29, 29, 31, 0.42);
  }
  .features-section--light .feature-card h3 {
    color: #1d1d1f;
  }
  .features-section--light .feature-card p {
    color: #6e6e73;
  }

  /* Features “El corazón…” — marco editorial en dark (líneas vía gap + fondo; resto como features oscuro) */
  .features-section--editorial {
    padding: 0 0 clamp(3.5rem, 7vh, 6rem);
    background: #000000;
    color: var(--white);
  }
  .features-section--editorial .container {
    padding-top: clamp(4rem, 8vh, 6rem);
    padding-bottom: clamp(2rem, 4vh, 3rem);
  }
  .features-section--editorial .section-header {
    margin-bottom: clamp(2rem, 4vh, 3rem);
  }
  .features-section--editorial .section-header h2 {
    font-weight: 250; /* ~30% menos que 357 */
    font-size: clamp(0.82rem, 2.04vw, 1.49rem); /* ~30% menos que el valor anterior */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  /* Líneas uniformes: el hueco del grid muestra el color “gris”; las celdas en negro sólido */
  .features-section--editorial .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border: none;
    border-radius: 0;
    /* gap solo dibuja líneas *entre* celdas; arriba/abajo hace falta borde explícito */
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
  }
  .features-section--editorial .feature-card {
    border-radius: 0;
    border: none;
    background: #000000;
    margin: 0;
  }
  .features-section--editorial .feature-card:hover { background: #000000; }
  /* Orbes hover: mismos que .feature-card-animated-bg por defecto (no overrides) */
  .features-section--editorial .feature-icon svg path,
  .features-section--editorial .feature-icon svg circle,
  .features-section--editorial .feature-icon svg rect {
    stroke: rgba(204, 204, 204, 0.85);
  }
  .features-section--editorial .feature-card p {
    color: var(--neutral-semi);
  }

  /* ═══════ PROMO VIDEO (full-screen immersive, triggers on scroll-into-view) ═══════ */
  .promo-video-section {
    position: relative;
    height: 100vh; /* just enough to trigger the sticky */
  }
  .promo-video-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    isolation: isolate;
  }
  /* Vigneta arriba/abajo: funde a negro para ocultar el corte con secciones vecinas */
  .promo-video-sticky::before,
  .promo-video-sticky::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    height: clamp(5.5rem, 26vh, 15rem);
  }
  .promo-video-sticky::before {
    top: 0;
    background: linear-gradient(
      to bottom,
      #000 0%,
      rgba(0, 0, 0, 0.88) 28%,
      rgba(0, 0, 0, 0.45) 58%,
      transparent 100%
    );
  }
  .promo-video-sticky::after {
    bottom: 0;
    background: linear-gradient(
      to top,
      #000 0%,
      rgba(0, 0, 0, 0.88) 28%,
      rgba(0, 0, 0, 0.45) 58%,
      transparent 100%
    );
  }
  #promoVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  #promoVideo2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* ═══════ SCROLL VIDEO (Apple-style frame sequence) ═══════ */
  .scroll-video-section {
    position: relative;
    height: 300vh;
  }
  /* Tras promo dynamictitle3: scroll automático deja el título bajo el nav fijo */
  #scrollVideoSection2.scroll-video-section {
    scroll-margin-top: 56px;
  }
  /* Una pantalla: video de fondo + reproducción hasta el final (sin scrub por scroll) */
  #scrollVideoSection2.scroll-video-section--bg-video {
    height: 100vh;
    background: #ffffff;
  }
  .scroll-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    /* Capa bajo píxeles transparentes (p. ej. WebM con alpha) */
    background-color: #ffffff;
  }
  #features {
    scroll-margin-top: 56px;
  }
  .scroll-video-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    isolation: isolate;
  }
  .scroll-video-sticky::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    height: clamp(4.5rem, 18vh, 11rem);
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 38%, transparent 100%);
  }
  /* Misma voz visual que .tech-stack-shell h2 + fade-in al entrar en vista */
  .scroll-video-heading {
    position: absolute;
    top: clamp(6.75rem, 17vh, 9.5rem);
    left: 0;
    right: 0;
    z-index: 3;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, 3vw, 1.25rem);
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(0.82rem, 2.65vw + 0.35rem, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.98) 25%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.95s ease, transform 0.95s ease;
  }
  .scroll-video-heading.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .scroll-video-heading {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
  /* Bottom glow orb for second scroll-video — blends behind the video */
  #scrollVideoSection2 .scroll-video-sticky::after {
    content: '';
    position: absolute;
    bottom: -12%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(
      ellipse at center,
      rgba(110, 165, 50, 0.55) 0%,
      rgba(35, 125, 65, 0.35) 25%,
      rgba(10, 70, 42, 0.18) 50%,
      transparent 75%
    );
    filter: blur(60px);
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 1.2s ease;
    animation: svGlowFloat 6s ease-in-out infinite;
    will-change: transform, opacity;
  }
  #scrollVideoSection2 .scroll-video-sticky.sv-glow-active::after {
    opacity: 1;
  }
  @keyframes svGlowFloat {
    0%   { transform: translateX(-50%) translateY(0%);  }
    40%  { transform: translateX(-52%) translateY(-12%); }
    70%  { transform: translateX(-48%) translateY(-6%);  }
    100% { transform: translateX(-50%) translateY(0%);   }
  }
  @media (prefers-reduced-motion: reduce) {
    #scrollVideoSection2 .scroll-video-sticky::after { animation: none; }
  }

  /* “Así se ve cuando la IA conecta tu stack” — modo claro (blanco: video con alpha) */
  #scrollVideoSection2.scroll-video-section--light .scroll-video-sticky {
    background: #ffffff;
  }
  #scrollVideoSection2.scroll-video-section--light .scroll-video-sticky::before {
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.92) 42%, transparent 100%);
  }
  #scrollVideoSection2.scroll-video-section--light .scroll-video-heading {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.72));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  /* Sin glow / orbe inferior en modo claro */
  #scrollVideoSection2.scroll-video-section--light .scroll-video-sticky::after,
  #scrollVideoSection2.scroll-video-section--light .scroll-video-sticky.sv-glow-active::after {
    content: none;
    display: none;
  }
  #scrollVideoSection2.scroll-video-section--light .sv-chip {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }
  #scrollVideoSection2.scroll-video-section--light .sv-chip > span {
    color: rgba(29, 29, 31, 0.62);
  }
  #scrollVideoSection2.scroll-video-section--light .sv-chip.sv-chip-lit {
    border-color: rgba(0, 0, 0, 0.14);
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  }
  #scrollVideoSection2.scroll-video-section--light .sv-chip.sv-chip-lit > span {
    color: #1d1d1f;
  }

  #scrollVideoCanvas,
  #scrollVideoCanvas3 {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ═══════ SV-CHIPS (action chips below title) ═══════ */
  .sv-chips {
    position: absolute;
    top: clamp(12rem, 30vh, 17rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 1.2vw, 0.85rem);
    flex-wrap: wrap;
    pointer-events: none;
    width: max(88%, 340px);
    max-width: 760px;
    opacity: 0;
    transition: opacity 0.7s ease 0.35s;
  }
  .sv-chips.sv-chips-visible { opacity: 1; }
  .sv-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: 6.25rem;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease,
                border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  }
  .sv-chip.sv-chip-in {
    opacity: 1;
    transform: translateY(0);
  }
  .sv-chip > span {
    position: relative;
    z-index: 1;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    transition: color 0.4s ease;
  }
  .sv-chip.sv-chip-lit {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.14);
  }
  .sv-chip.sv-chip-lit > span { color: #fff; }
  /* Orb glow on lit — same as btn-orb */
  .sv-chip::before,
  .sv-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
    z-index: 0;
  }
  .sv-chip::before {
    width: 80%;
    height: 240%;
    left: -20%;
    transform: translateY(-50%);
    background: radial-gradient(circle at center,
      rgba(var(--orb-a), 0.50) 0%,
      rgba(var(--orb-b), 0.24) 40%,
      transparent 72%
    );
    filter: blur(14px);
    animation: btnOrbL 5s ease-in-out infinite;
    will-change: transform, opacity;
  }
  .sv-chip::after {
    width: 70%;
    height: 220%;
    right: -16%;
    transform: translateY(-50%);
    background: radial-gradient(circle at center,
      rgba(var(--orb-d), 0.38) 0%,
      rgba(var(--orb-e), 0.16) 50%,
      transparent 74%
    );
    filter: blur(12px);
    animation: btnOrbR 5s ease-in-out infinite;
    will-change: transform;
  }
  .sv-chip.sv-chip-lit::before,
  .sv-chip.sv-chip-lit::after { opacity: 1; }
  @media (prefers-reduced-motion: reduce) {
    .sv-chips { opacity: 1; transition: none; }
    .sv-chip { opacity: 1; transform: none; transition: none; }
    .sv-chip::before, .sv-chip::after { animation: none; }
  }
  @media (max-width: 767px) {
    .sv-chips { width: 95%; top: clamp(10rem, 24vh, 14rem); gap: 0.35rem; }
    .sv-chip { padding: 0.45rem 0.9rem; }
    .sv-chip > span { font-size: 0.72rem; }
  }

  /* ═══════ TECH STACK MARQUEE ═══════ */
  .tech-stack-section {
    padding: 5rem 0 4rem;
  }
  .tech-stack-shell {
    border-radius: 1.5rem;
    background: transparent;
    padding: 1.5rem 0;
    overflow: hidden;
  }
  .tech-stack-shell h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 720px;
    margin: 0 auto 0.6rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.98) 25%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .tech-stack-shell p {
    text-align: center;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.56);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.55;
  }
  .tech-stack-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 0.4rem 0;
  }
  .tech-stack-marquee::before,
  .tech-stack-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 14%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .tech-stack-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  }
  .tech-stack-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  }
  .tech-stack-track {
    display: flex;
    width: max-content;
    gap: 0.65rem;
    animation: techStackScroll 34s linear infinite;
    will-change: transform;
  }
  .tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.52rem 0.75rem;
    border-radius: 0.72rem;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    min-width: 110px;
    flex-shrink: 0;
  }
  .tech-chip-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.42rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
  }
  .tech-chip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .tech-chip span:last-child {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    white-space: nowrap;
  }
  @keyframes techStackScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .tech-stack-track { animation: none; }
  }

  /* ═══════ GRID / EDITORIAL BORDER SYSTEM ═══════ */
  :root {
    --grid-line:        rgba(0,0,0,0.09);
    --grid-line-strong: rgba(0,0,0,0.14);
    --grid-max:         80rem;
  }
  /* Fondo full-width blanco que contiene el grid-wrap */
  .grid-bg {
    background: #ffffff;
  }
  .grid-wrap {
    max-width: var(--grid-max);
    margin: 0 auto;
    border-left:   1px solid var(--grid-line);
    border-right:  1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    position: relative;
  }
  /* Círculos en las esquinas inferiores del marco editorial */
  .grid-wrap::before,
  .grid-wrap::after {
    content: '';
    position: absolute;
    bottom: -3.5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grid-line-strong);
    pointer-events: none;
    z-index: 1;
  }
  .grid-wrap::before { left:  -3.5px; }
  .grid-wrap::after  { right: -3.5px; }
  .grid-section {
    border-top: 1px solid var(--grid-line);
    position: relative;
  }
  /* Marcas circulares en las esquinas (intersecciones de líneas) */
  .grid-section::before,
  .grid-section::after {
    content: '';
    position: absolute;
    top: -3.5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grid-line-strong);
    pointer-events: none;
    z-index: 1;
  }
  .grid-section::before { left: -3.5px; }
  .grid-section::after  { right: -3.5px; }

  /* Marco editorial sobre fondo negro (bloque features) */
  .grid-bg--dark {
    background: #000000;
  }
  .grid-wrap--dark {
    border-left-color:   rgba(255, 255, 255, 0.12);
    border-right-color:  rgba(255, 255, 255, 0.12);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  .grid-wrap--dark::before,
  .grid-wrap--dark::after {
    background: rgba(255, 255, 255, 0.22);
  }
  .grid-section--dark {
    border-top-color: rgba(255, 255, 255, 0.12);
  }
  .grid-section--dark::before,
  .grid-section--dark::after {
    background: rgba(255, 255, 255, 0.22);
  }

  /* ═══════ BENTO STATS ═══════ */
  .bento-section {
    padding: 0;
    background: #ffffff;
  }
  .bento-section .container {
    padding-top: clamp(4.6rem, 9.2vh, 8.05rem);
    padding-bottom: clamp(2rem, 4vh, 3rem);
  }
  .bento-lead {
    font-size: 1.09rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(29,29,31,0.55);
    max-width: 39rem;
    margin: 0.58rem auto 0;
    text-align: center;
  }
  .bento-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1.1fr;
    grid-template-rows: minmax(260px, 0.85fr) minmax(330px, 1.15fr);
    gap: 0;
  }
  .bento-card {
    border-radius: 0;
    padding: clamp(1.66rem, 2.65vw, 2.31rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #ffffff;
    color: #1d1d1f;
    position: relative;
    overflow: hidden;
    /* Líneas grises estilo editorial */
    border-right: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    box-shadow: none;
  }
  /* Esquina derecha: sin borde derecho */
  .bento-cd, .bento-f { border-right: none; }
  /* Última fila: sin borde inferior */
  .bento-a, .bento-e, .bento-f { border-bottom: none; }
  .bento-card h3 {
    font-size: clamp(1.39rem, 1.99vw, 1.78rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    color: #1d1d1f;
  }
  .bento-card p {
    font-size: clamp(.81rem,.94vw,.88rem);
    font-weight: 400;
    line-height: 1.5;
    color: #6e6e73;
    margin: 0;
  }
  .bento-big {
    font-size: clamp(2.91rem, 5.29vw, 4.23rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
    margin-bottom: 0.67rem;
  }
  .bento-desc {
    font-size: clamp(.81rem,.94vw,.88rem);
    font-weight: 400;
    line-height: 1.5;
    color: #6e6e73;
    display: block;
  }

  /* A: tall image — col 1, spans both rows (referencia: foto arriba + fade + texto claro abajo) */
  .bento-a {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }
  .bento-a-media {
    position: relative;
    flex: 1 1 0%;
    min-height: 0;
    overflow: hidden;
  }
  .bento-a-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.55) 72%,
      #ffffff 100%
    );
  }
  .bento-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.12) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
  /* Texto oscuro sobre fotos claras / gradientes */
  .bento-overlay--light {
    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.65) 38%,
      rgba(255, 255, 255, 0.28) 68%,
      transparent 100%
    );
  }
  .bento-card-front {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
  }
  .bento-a-text {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    background: #ffffff;
    border-top: 1px solid var(--grid-line);
    padding: clamp(1.35rem, 2.4vw, 1.85rem) clamp(1.35rem, 2.4vw, 1.75rem) clamp(1.45rem, 2.5vw, 1.95rem);
    text-align: left;
  }
  /* Mismo estilo que .bento-card h3 vía herencia; solo layout en dos líneas */
  .bento-a .bento-a-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06em;
    margin-top: 0;
  }
  .bento-a .bento-a-title .bento-a-num,
  .bento-a .bento-a-title .bento-a-title-line {
    display: block;
    margin: 0;
  }
  .bento-a .bento-a-body { margin:0; font-weight:400; font-size:clamp(.81rem,.94vw,.88rem); line-height:1.5; color:#6e6e73; max-width:100%; }

  /* B: stat — row 1, col 2 */
  .bento-b {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .bento-b .bento-card-front {
    justify-content: center;
    align-items: center;
  }
  .bento-b .bento-big { color: #1d1d1f; }

  /* C+D merged — row 1, cols 3–4 (misma extensión 2× que .bento-e en fila 2) */
  .bento-cd {
    grid-column: 3 / 5;
    grid-row: 1;
  }
  .bento-cd .bento-card-front {
    justify-content: flex-start;
    padding-top: clamp(1.85rem, 11%, 2.75rem);
  }

  /* E: wide card — row 2, cols 2-3 */
  .bento-e {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  /* F: accent stat — row 2, col 4 */
  .bento-f {
    grid-column: 4;
    grid-row: 2;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .bento-f .bento-card-front {
    justify-content: flex-start;
    align-items: center;
    padding-top: clamp(1.85rem, 12%, 3rem);
  }
  .bento-f .bento-big { color: #1d1d1f; margin-bottom: 0.5rem; }

  /* Responsive */
  @media (max-width: 1023px) {
    .bento-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
    }
    .bento-a  { grid-column: 1; grid-row: 1; min-height: 317px; border-right: 1px solid var(--grid-line); border-bottom: 1px solid var(--grid-line); }
    .bento-b  { grid-column: 2; grid-row: 1; border-right: none; border-bottom: 1px solid var(--grid-line); }
    .bento-cd { grid-column: 1 / 3; grid-row: 2; border-right: none; border-bottom: 1px solid var(--grid-line); }
    .bento-e  { grid-column: 1 / 3; grid-row: 3; border-right: none; border-bottom: 1px solid var(--grid-line); }
    .bento-f  { grid-column: 1 / 3; grid-row: 4; border-right: none; border-bottom: none; }
  }
  @media (max-width: 599px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-a { grid-column: 1; grid-row: auto; min-height: 291px; border-right: none; border-bottom: 1px solid var(--grid-line); }
    .bento-b, .bento-cd, .bento-e { grid-column: 1; grid-row: auto; border-right: none; border-bottom: 1px solid var(--grid-line); }
    .bento-f  { grid-column: 1; grid-row: auto; border-right: none; border-bottom: none; }
  }

  /* ═══════ INDUSTRIES (carousel style) ═══════ */
  .industries-section {
    background: #fff;
    padding: clamp(5rem, 9vh, 8rem) 0 clamp(4rem, 7vh, 6rem);
  }

  /* Header — left-aligned, same left-edge as carousel cards */
  .industries-top {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    box-sizing: border-box;
  }
  .industries-top h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    padding: 0.1em 0;
    font-family: inherit;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0.72));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .industries-top .bento-lead {
    text-align: left;
    margin: 0 0 1.5rem;
    max-width: 46rem;
  }

  /* Navigation chips — left-aligned, con línea divisoria inferior estilo editorial */
  .industries-chips {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-bottom: clamp(1rem, 2vh, 1.5rem);
    border-bottom: 1px solid var(--grid-line);
  }
  .ind-chip {
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.52rem 1.15rem;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.12);
    background: transparent;
    color: rgba(29,29,31,0.55);
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
  }
  .ind-chip:hover {
    background: rgba(0,0,0,0.04);
    color: #1d1d1f;
    border-color: rgba(0,0,0,0.18);
  }
  .ind-chip--active {
    background: #1d1d1f;
    color: #fff;
    border-color: #1d1d1f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
  }
  .ind-chip--active:hover { background: #333; border-color: #333; color: #fff; }

  /* Stage — scroll horizontal nativo (+ snap) */
  .industries-stage {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    width: 100%;
    margin-top: clamp(1.25rem, 2.5vh, 1.75rem);
    scrollbar-width: none; /* Firefox */
    scrollbar-color: transparent transparent; /* Safari/Firefox fallback */
  }
  .industries-stage::-webkit-scrollbar { 
    width: 0;
    height: 0;
    display: none;
  }

  /* Track — flex row; el desplazamiento lo hace el stage */
  .ind-track {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: max-content;
  }

  /*
   * Carrusel: mismo ancho por slide (viewport + peek, vía JS).
   * La altura de cada card sigue la relación de aspecto de su imagen (ancho fijo × ratio intrínseco).
   */
  .ind-card {
    flex: 0 0 auto;
    align-self: flex-start;
    position: relative;
    border-radius: 0.76rem;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    background: #fff;
    box-shadow:
      0 0 0 1px rgba(0,0,0,0.07),
      inset 0 1px 0 rgba(255,255,255,0.85),
      inset 1px 0 0 rgba(255,255,255,0.45),
      inset -1px 0 0 rgba(0,0,0,0.04),
      inset 0 -1px 0 rgba(0,0,0,0.05);
  }

  /* Media ocupa todo el card — JS fija width/height en el article */
  .ind-card-media {
    position: absolute;
    inset: 0;
    background: #111e1e;
  }
  .ind-card-media img,
  .ind-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── Texto superpuesto sobre la imagen ── */
  .ind-card-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    pointer-events: none;
  }
  .ind-card-header {
    padding: clamp(0.8rem, 5.5%, 1.4rem);
  }
  .ind-card-title {
    font-size: clamp(0.89rem, 1.87vw, 1.57rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    font-family: inherit;
  }
  .ind-card-body {
    padding: 0 clamp(0.8rem, 5.5%, 1.4rem) clamp(0.8rem, 5.5%, 1.4rem);
    display: flex;
    flex-direction: column;
    gap: 0.4em;
  }
  .ind-card-divider {
    /* Eliminada la línea divisoria entre subtítulos (se reencuadra por el gap del flex). */
    display: none;
  }
  .ind-card-sub {
    font-size: clamp(0.44rem, 0.94vw, 0.79rem);
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    margin: 0;
    font-family: inherit;
  }
  .ind-card-aux {
    font-size: clamp(0.44rem, 0.94vw, 0.79rem);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255,255,255,0.62);
    margin: 0;
    font-family: inherit;
  }

  /* Progress bar — fill updated directly by JS, no CSS transition */
  .industries-progress {
    /* width set by JS to match card left edge + card width */
    max-width: 1200px;
    margin: 1.25rem auto 0;
    padding: 0 clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
  }
  .industries-progress-bar {
    height: 2px;
    background: rgba(0,0,0,0.08);
    border-radius: 2px;
    overflow: hidden;
  }
  .industries-progress-fill {
    height: 100%;
    width: 0%;
    background: #1d1d1f;
    border-radius: 2px;
    /* intentionally no transition — animated frame-by-frame by JS */
  }

  @media (max-width: 767px) {
    .ind-track { gap: 0.75rem; }
    .industries-chips { gap: 0.3rem; }
    .ind-chip { font-size: 0.76rem; padding: 0.42rem 0.85rem; }
  }

  /* ═══════ WALKTHROUGH ═══════ */
  .walkthrough-section { padding: 0; }
  .walkthrough-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 5rem;
    align-items: start;
  }
  /* Header spans both columns, sitting above the two content columns */
  .walkthrough-header {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    padding: 4rem 0 clamp(3rem, 6vh, 5rem);
  }
  .walkthrough-header h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    padding: 0.1em 0;
    font-family: inherit;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.72));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .walkthrough-left {
    grid-column: 1;
    grid-row: 2;
    position: relative;
  }
  .walkthrough-content {
    display: flex; flex-direction: column; justify-content: center;
    align-items: flex-start; min-height: 100vh; padding: 2rem 0;
  }
  .walkthrough-spacer { height: 50vh; }
  .walkthrough-step-number {
    font-size: 4.5rem; font-weight: 800; letter-spacing: -0.04em;
    line-height: 1; margin-bottom: 0.75rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .walkthrough-tag {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.9rem; font-weight: 600; margin-bottom: 1.25rem;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .walkthrough-tag svg { width: 1.25rem; height: 1.25rem; }
  .walkthrough-tag.is-earthy { color: #f2b76c; }
  .walkthrough-tag.is-earthy svg { fill: #f2b76c; }
  .walkthrough-tag.is-sky { color: #7ec4e3; }
  .walkthrough-tag.is-sky svg { fill: #7ec4e3; }
  .walkthrough-tag.is-green { color: #7eea9b; }
  .walkthrough-tag.is-green svg { fill: #7eea9b; }
  .walkthrough-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1rem;
    padding: 0.1em 0;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .walkthrough-content p {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 420px;
  }
  .walkthrough-right {
    grid-column: 2;
    grid-row: 2;
    position: sticky;
    top: clamp(7.5rem, 13vh, 10rem);
    width: 100%;
  }
  .walkthrough-image-holder {
    width: 100%;
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 380px;
    max-height: 70vh;
  }
  .walkthrough-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; border-radius: 1rem;
    display: block;
    opacity: 0; transition: opacity 0.6s ease;
  }
  .walkthrough-img.is-active { opacity: 1; }
  .walkthrough-mobile-img {
    display: none;
    width: 100%;
    max-height: min(56vh, 420px);
    border-radius: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    background: #0a0a0a;
    vertical-align: middle;
  }

  /* ═══════ AI FEATURES GRID ═══════ */
  .ai-features-section { padding: 6rem 0; }
  .ai-features-section .section-header h2 {
    text-align: center; max-width: 560px; margin-left: auto; margin-right: auto;
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    padding: 0.1em 0;
    overflow: visible;
    font-family: inherit;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .ai-features-section .section-header .section-lead {
    text-align: center; max-width: 34rem;
    margin: 0 auto;
    font-size: 0.95rem; font-weight: 500;
    line-height: 1.6; color: rgba(255,255,255,0.52);
    letter-spacing: -0.01em;
  }
  .ai-features-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, auto);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem;
    overflow: hidden;
    isolation: isolate;
  }
  .ai-feature-card {
    position: relative;
    z-index: 0;
    background: transparent; padding: 2.5rem;
    display: flex; flex-direction: column; align-items: stretch;
    align-self: stretch;
    min-height: 100%;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: default;
    transition:
      background 380ms var(--ease),
      box-shadow 380ms var(--ease),
      border-color 380ms var(--ease);
  }
  .ai-feature-card:nth-child(2n) { border-right: none; }
  .ai-feature-card:nth-child(5), .ai-feature-card:nth-child(6) { border-bottom: none; }
  .ai-feature-card:hover {
    z-index: 2;
    background:
      radial-gradient(120% 80% at 50% 0%, rgba(45,98,255,0.14) 0%, transparent 55%),
      rgba(45,98,255,0.06);
    border-color: rgba(45,98,255,0.28);
    box-shadow:
      inset 0 0 0 1px rgba(45,98,255,0.22),
      inset 0 1px 0 rgba(255,255,255,0.07),
      inset 0 -32px 56px -28px rgba(45,98,255,0.12);
  }
  .ai-feature-stat {
    display: block;
    margin-bottom: 0.9rem;
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.95;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,0.72));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 380ms var(--ease), transform 380ms var(--ease);
  }
  .ai-feature-card:hover .ai-feature-stat {
    filter: brightness(1.12) saturate(1.05);
    transform: translateY(-1px);
  }
  .ai-feature-stat--compact {
    font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  }
  .ai-feature-detail {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255,255,255,0.58);
    line-height: 1.6;
    margin: 0;
    text-align: left;
    flex: 1;
    transition: color 380ms var(--ease);
  }
  .ai-feature-card:hover .ai-feature-detail {
    color: rgba(255,255,255,0.72);
  }
  .ai-feature-ref {
    display: block;
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    transition: color 380ms var(--ease), border-color 380ms var(--ease), letter-spacing 380ms var(--ease);
  }
  .ai-feature-card:hover .ai-feature-ref {
    color: rgba(255,255,255,0.55);
    border-top-color: rgba(45,98,255,0.25);
    letter-spacing: 0.11em;
  }
  @media (prefers-reduced-motion: reduce) {
    .ai-feature-card,
    .ai-feature-card:hover,
    .ai-feature-stat,
    .ai-feature-card:hover .ai-feature-stat,
    .ai-feature-detail,
    .ai-feature-ref {
      transition: none !important;
    }
    .ai-feature-card:hover .ai-feature-stat { transform: none; }
  }
  .ai-features-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.65rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.32);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
  }

  /* ═══════ NEXT-GEN FEATURES (carousel cards) ═══════ */
  .nextgen-section { padding: 5rem 0; background: #000; }
  .nextgen-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem;
  }
  .nextgen-section h2 {
    font-size: 2.25rem; font-weight: 500; letter-spacing: -0.5px;
    color: var(--white); margin: 0;
  }
  .nextgen-nav {
    display: flex; gap: 0.5rem;
  }
  .nextgen-nav-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 200ms, border-color 200ms;
  }
  .nextgen-nav-btn:hover {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2);
  }
  .nextgen-nav-btn svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.6); }
  .nextgen-scroll {
    display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem;
    scrollbar-width: none; scroll-snap-type: x mandatory;
  }
  .nextgen-scroll::-webkit-scrollbar { display: none; }
  .nextgen-card {
    width: 280px; flex-shrink: 0; scroll-snap-align: start;
    aspect-ratio: 3/4;
    border-radius: 1rem; padding: 1.75rem;
    display: flex; flex-direction: column; position: relative;
    transition: transform 200ms;
  }
  .nextgen-card .nextgen-plus {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 200ms;
  }
  .nextgen-card .nextgen-plus:hover { background: rgba(255,255,255,0.35); }
  .nextgen-card .nextgen-plus svg { width: 16px; height: 16px; stroke: var(--white); }
  .nextgen-card .nextgen-body { margin-top: auto; padding-right: 2rem; }
  .nextgen-card h3 {
    font-size: 1.25rem; font-weight: 600; margin: 0 0 0.5rem 0;
    color: var(--white); line-height: 1.25;
  }
  .nextgen-card .nextgen-desc {
    font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5;
    margin: 0;
  }
  .nextgen-card.bg-multilingual {
    background: linear-gradient(155deg, #6b2d5c 0%, #4a1a5e 25%, #2d1b69 50%, #1e0d4d 75%, #0f3460 100%);
  }
  .nextgen-card.bg-continual {
    background: linear-gradient(165deg, #6b7a3d 0%, #4a5a2a 30%, #2a3d2a 55%, #1a2535 80%, #0f1623 100%);
  }
  .nextgen-card.bg-modular {
    background: radial-gradient(ellipse 90% 90% at 100% 40%, rgba(120,200,255,0.28), transparent 50%),
                linear-gradient(115deg, #0d3d2e 0%, #1a3d32 45%, #0a2520 100%);
  }
  .nextgen-card.bg-analytics {
    background: linear-gradient(140deg, #1e2a4a 0%, #2d2463 35%, #4a3a7a 65%, #2a2a5a 100%);
  }
  .nextgen-card.bg-agent {
    background: linear-gradient(150deg, #2d1a4a 0%, #1a2d4a 50%, #0d1a2d 100%);
  }
  .nextgen-card.bg-workflow {
    background: linear-gradient(140deg, #1e3d2d 0%, #1a2d3d 50%, #0d1a25 100%);
  }
  .nextgen-card.bg-semantic {
    background: linear-gradient(155deg, #3d1a4a 0%, #2a1a3d 50%, #1a0d2d 100%);
  }
  .nextgen-card.bg-deploy {
    background: linear-gradient(130deg, #1a2d4a 0%, #0d2540 50%, #0a1525 100%);
  }

  /* ═══════ TESTIMONIALS ═══════ */
  .testimonials-section { padding: 5rem 0; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .testimonial-card {
    background: linear-gradient(160deg, #0a0a18, #050510);
    border: 1px solid var(--neutral-faded); border-radius: 1.25rem;
    padding: 2rem;
  }
  .testimonial-card blockquote {
    font-family: var(--font-serif); font-size: 0.95rem; font-style: italic;
    color: var(--neutral-semi); line-height: 1.55; margin-bottom: 1.5rem;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 0.75rem;
  }
  .testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
  }
  .testimonial-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
  .testimonial-name { font-size: 0.85rem; font-weight: 600; }
  .testimonial-role { font-size: 0.75rem; color: var(--neutral-light); }

  /* ═══════ FAQ ═══════ */
  .faq-section { padding: 5rem 0; }
  .faq-section h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0.1em 0;
    overflow: visible;
    font-family: inherit;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .faq-list { max-width: 48rem; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--neutral-faded); overflow: hidden;
  }
  .faq-question {
    width: 100%; text-align: left; padding: 1.25rem 0;
    font-size: 1rem; font-weight: 500; color: var(--white);
    display: flex; justify-content: space-between; align-items: center;
  }
  .faq-icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
    transition: transform 300ms; flex-shrink: 0;
  }
  .faq-icon svg { width: 12px; height: 12px; stroke: var(--white); fill: none; stroke-width: 2; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease), padding 400ms;
    padding: 0 0 0 0;
  }
  .faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.25rem; }
  .faq-answer p {
    font-size: 0.9rem; color: var(--neutral-semi); line-height: 1.65;
  }

  /* ═══════ CTA ═══════ */
  .cta-section {
    padding: 6rem 0; text-align: center;
    border-top: 1px solid var(--neutral-faded);
  }
  .cta-section h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 2rem;
    padding: 0.1em 0;
    overflow: visible;
    font-family: inherit;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

  /* ═══════ FLOATING CTA BUTTON ═══════ */
  .floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.7rem 0.6rem 1.25rem;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    transition:
      transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.4s ease,
      box-shadow 200ms var(--ease),
      background 200ms var(--ease),
      visibility 0s linear 0s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    visibility: visible;
  }
  .floating-cta.is-hidden {
    transform: translateX(-50%) translateY(calc(100% + 3rem));
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.35s ease,
      visibility 0s linear 0.4s;
  }
  .floating-cta:hover:not(.is-hidden) {
    transform: translateX(-50%) scale(1.04);
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 6px 32px rgba(0,0,0,0.5);
  }
  .floating-cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2d62ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .floating-cta-icon svg {
    width: 15px;
    height: 15px;
  }

  /* Dos CTAs flotantes (p. ej. Para ventas / Para empresas), visible tras salir del hero */
  .floating-cta-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: calc(100vw - 1.5rem);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition:
      transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.4s ease,
      visibility 0s linear 0s;
  }
  .floating-cta-bar > * {
    pointer-events: auto;
  }
  .floating-cta-bar.is-hidden {
    transform: translateX(-50%) translateY(calc(100% + 3rem));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.35s ease,
      visibility 0s linear 0.4s;
  }
  .floating-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1rem 0.6rem 1.2rem;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    transition: transform 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
  }
  .floating-cta-link:hover {
    transform: scale(1.04);
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 6px 28px rgba(0,0,0,0.5);
  }
  .floating-cta-bar:not(.is-hidden) .floating-cta-link:focus-visible {
    outline: 2px solid rgba(255,255,255,0.35);
    outline-offset: 3px;
  }
  .floating-cta-link .floating-cta-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2d62ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .floating-cta-link .floating-cta-icon svg {
    width: 14px;
    height: 14px;
  }

  @media (max-width: 767px) {
    .floating-cta {
      bottom: 1.25rem;
      padding: 0.5rem 0.6rem 0.5rem 1rem;
      font-size: 0.85rem;
    }
    .floating-cta-icon { width: 26px; height: 26px; }
    .floating-cta-bar {
      bottom: 1.25rem;
      gap: 0.4rem;
    }
    .floating-cta-link {
      font-size: 0.82rem;
      padding: 0.5rem 0.85rem 0.5rem 1rem;
    }
    .floating-cta-link .floating-cta-icon { width: 26px; height: 26px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .floating-cta,
    .floating-cta.is-hidden {
      transition-duration: 0.05s;
    }
    .floating-cta-bar,
    .floating-cta-bar.is-hidden {
      transition-duration: 0.05s;
    }
  }

  /* ═══════ FOOTER ═══════ */
  .footer {
    border-top: 1px solid var(--neutral-faded); padding: 3rem 0 2rem;
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 2rem; border-bottom: 1px solid var(--neutral-faded);
    margin-bottom: 1.5rem;
  }
  .footer-brand { font-size: 0.85rem; color: var(--neutral-light); max-width: 14rem; line-height: 1.5; }
  .footer-brand .nav-logo { margin-bottom: 0.75rem; }
  .footer-columns { display: flex; gap: 4rem; }
  .footer-col h6 {
    font-size: 0.75rem; font-weight: 600; color: var(--neutral-light);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
  }
  .footer-col a {
    display: block; font-size: 0.85rem; color: var(--neutral-semi);
    margin-bottom: 0.4rem; transition: color 200ms;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.75rem; color: var(--neutral-light);
  }

  /* ═══════ OMNICHANNEL SECTION ═══════ */
  .omni-section { padding: 6rem 0; background: #000; }
  .omni-section .omni-heading { text-align: center; margin-bottom: 3rem; }
  .omni-section .omni-heading .omni-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
  .omni-section .omni-heading h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 3rem 0;
    padding: 0.1em 0;
    overflow: visible;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .omni-section .omni-copy { text-align: center; max-width: 560px; margin: 3rem auto 0; font-size: 0.95rem; color: var(--neutral-semi); line-height: 1.6; }
  .omni-section .omni-copy strong { color: var(--white); }
  /* ── Flow Builder Canvas ── */
  .fb-canvas {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(3rem, 6vw, 5rem);
    padding: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fb-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .fb-path-bg {
    fill: none;
    stroke: rgba(124,58,237,0.12);
    stroke-width: 2;
    stroke-linecap: round;
  }
  .fb-path-lit {
    fill: none;
    stroke: url(#fbGrad);
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: none;
  }
  .fb-particle {
    r: 3.5;
    fill: #a78bfa;
    opacity: 0;
    filter: url(#fbGlow);
  }
  .fb-particle.fb-moving { opacity: 1; }

  .fb-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .fb-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(0.8rem, 1.5vw, 1.25rem) clamp(0.6rem, 1.2vw, 1rem);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    width: clamp(100px, 12vw, 140px);
    transition: transform 0.4s ease, border-color 0.5s ease, box-shadow 0.5s ease, background 0.4s ease;
    opacity: 0;
    transform: translateX(-20px);
  }
  .fb-node.fb-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .fb-node:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(124,58,237,0.35);
    background: rgba(124,58,237,0.06);
  }
  .fb-node.fb-lit {
    border-color: rgba(124,58,237,0.5);
    box-shadow: 0 0 24px rgba(124,58,237,0.15), 0 4px 20px rgba(0,0,0,0.3);
    background: rgba(124,58,237,0.08);
  }

  .fb-node-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.4s ease;
  }
  .fb-node.fb-lit .fb-node-icon { color: #a78bfa; }
  .fb-node-icon svg { width: 100%; height: 100%; }

  .fb-node-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
    margin-bottom: 0.1rem;
    white-space: nowrap;
  }
  .fb-node-sub {
    font-size: 0.56rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.3;
    white-space: nowrap;
  }
  .fb-node.fb-lit .fb-node-sub { color: rgba(255,255,255,0.55); }

  .fb-node--trigger {
    border-color: rgba(124,58,237,0.25);
    background: rgba(124,58,237,0.06);
  }
  .fb-node--trigger .fb-node-icon { color: #a78bfa; }

  .fb-node--ai {
    border-color: rgba(45,98,255,0.2);
    background: rgba(45,98,255,0.04);
  }
  .fb-node--ai .fb-node-icon { color: rgba(96,165,250,0.8); }
  .fb-node--ai.fb-lit {
    border-color: rgba(45,98,255,0.5);
    box-shadow: 0 0 24px rgba(45,98,255,0.15), 0 4px 20px rgba(0,0,0,0.3);
    background: rgba(45,98,255,0.08);
  }
  .fb-node--ai.fb-lit .fb-node-icon { color: #60a5fa; }

  .fb-node--human {
    border-color: rgba(34,197,94,0.2);
    background: rgba(34,197,94,0.04);
  }
  .fb-node--human .fb-node-icon { color: rgba(74,222,128,0.7); }
  .fb-node--human.fb-lit {
    border-color: rgba(34,197,94,0.5);
    box-shadow: 0 0 24px rgba(34,197,94,0.15), 0 4px 20px rgba(0,0,0,0.3);
    background: rgba(34,197,94,0.08);
  }
  .fb-node--human.fb-lit .fb-node-icon { color: #4ade80; }

  /* Pricing moved to pricing.html */

  /* ═══════ RESPONSIVE ═══════ */
  @media (max-width: 991px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-inner {
      width: 100%;
      max-width: min(50rem, 100%);
      box-sizing: border-box;
    }
    .hero h1.hero-headline {
      font-size: clamp(1.85rem, 5.6vw, 2.75rem);
      max-width: 100%;
      text-wrap: balance;
      overflow-wrap: break-word;
      line-height: 1.12;
    }
    .hero h1.hero-headline .hero-headline-line {
      white-space: normal;
    }
    .highlights-title h2,
    .omni-section .omni-heading h2,
    .features-section .section-header h2,
    .bento-section .section-header h2,
    .ai-features-section .section-header h2 { font-size: clamp(1.3rem, 3.92vw, 1.93rem); }
    .features-section--editorial .section-header h2 {
      font-size: clamp(0.7rem, 2.11vw, 1.04rem);
    }
    .section-header h2, .faq-section h2, .nextgen-section h2,
    .cta-section h2 { font-size: 2.2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-features-grid { grid-template-columns: repeat(2, 1fr); }
    /* Keep default 2x2 grid borders for features cards */
    .walkthrough-header { padding: 3rem 0 0; grid-column: 1; }
    .walkthrough-grid { grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 0; }
    .walkthrough-left { grid-column: 1; grid-row: 2; }
    .walkthrough-right { display: none; }
    .walkthrough-content { min-height: auto; padding: 3rem 0; }
    .walkthrough-spacer { display: none; }
    .walkthrough-mobile-img { display: block; }
    .walkthrough-step-number { font-size: 3rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 767px) {
    .container { padding: 0 1.25rem; }
    .hero { padding: 7rem 0 3rem; }
    .hero-inner {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      padding-top: 5rem;
      padding-bottom: 3rem;
    }
    .hero h1.hero-headline {
      font-size: clamp(1.35rem, 6.5vw + 0.35rem, 2.1rem);
      letter-spacing: -0.03em;
      line-height: 1.15;
    }
    .hero-sub {
      width: 100%;
      box-sizing: border-box;
      padding: 0 0.25rem;
    }
    .highlights-title h2,
    .omni-section .omni-heading h2,
    .features-section .section-header h2,
    .bento-section .section-header h2,
    .ai-features-section .section-header h2 { font-size: clamp(1.12rem, 5.04vw, 1.58rem); letter-spacing: -0.03em; }
    .features-section--editorial .section-header h2 {
      font-size: clamp(0.6rem, 2.72vw, 0.85rem);
      letter-spacing: -0.03em;
    }
    .features-grid, .ai-features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .features-section--light .feature-card {
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .features-section--editorial .features-grid {
      gap: 1px;
    }
    .features-section--editorial .feature-card {
      border: none !important;
      border-bottom: none !important;
    }
    .feature-card:last-child { border-bottom: none; }
    .ai-feature-card { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .ai-feature-card:nth-child(5), .ai-feature-card:nth-child(6) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .ai-feature-card:last-child { border-bottom: none; }
    .footer-top { flex-direction: column; gap: 2rem; }
    .footer-columns { flex-wrap: wrap; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; }
    .marquee-text { font-size: 1.25rem; }
    .nextgen-card { width: 260px; }
    .fb-canvas { gap: 1.5rem; justify-content: flex-start; padding: 1.5rem 0.5rem; }
    .fb-col { gap: 0.5rem; }
    .fb-node { width: 80px; padding: 0.6rem 0.4rem; border-radius: 10px; }
    .fb-node-icon { width: 22px; height: 22px; margin-bottom: 0.25rem; }
    .fb-node-label { font-size: 0.55rem; }
    .fb-node-sub { font-size: 0.42rem; }
    .tech-stack-section { padding: 3rem 0 2.5rem; }
    .tech-stack-shell { padding: 1rem 0; border-radius: 1rem; }
    .tech-stack-shell p { font-size: 0.82rem; margin-bottom: 1rem; }
    .tech-stack-marquee::before, .tech-stack-marquee::after { width: 16%; }
    .tech-chip { min-width: 96px; padding: 0.42rem 0.62rem; }
    .tech-chip span:last-child { font-size: 0.7rem; }
  }

/* ═══════ PRICING (from pricing.css) ═══════ */
.pricing-section { padding: 5rem 0 4rem; }

/* Calculator toggle */
.calc-toggle-wrap { text-align: center; margin-bottom: 1.5rem; }
.calc-toggle-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.35rem; border-radius: 6.25rem;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); transition: all 250ms var(--ease);
}
.calc-toggle-btn:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.calc-toggle-btn svg { width: 14px; height: 14px; transition: transform 300ms var(--ease); }
.calc-toggle-btn.is-open svg { transform: rotate(180deg); }
.calc-panel {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 500ms var(--ease), opacity 350ms var(--ease);
}
.calc-panel.is-open { max-height: 800px; opacity: 1; }

/* Calculator wrapper */
.calc-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  margin-bottom: 1.25rem;
}
.calc-title {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.3rem;
}
.calc-subtitle {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  line-height: 1.45; margin-bottom: 1.5rem;
}

/* Segment cards */
.calc-segments {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.calc-seg {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 0.85rem 0.5rem; border-radius: 0.75rem;
  cursor: pointer; text-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45); transition: all 200ms var(--ease);
}
.calc-seg:hover { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.65); }
.calc-seg.is-active {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.calc-seg-icon { font-size: 1.25rem; line-height: 1; }
.calc-seg-name { font-size: 0.72rem; font-weight: 600; }
.calc-seg-avg { font-size: 0.62rem; font-weight: 500; color: rgba(255,255,255,0.3); }
.calc-seg.is-active .calc-seg-avg { color: rgba(255,255,255,0.5); }

/* Slider */
.calc-slider-area { position: relative; margin-bottom: 2rem; }
.calc-slider-area input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none; cursor: pointer;
}
.calc-slider-area input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(45,98,255,0.18);
}
.calc-slider-area input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; border: none;
  background: var(--blue); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(45,98,255,0.18);
}
.calc-slider-labels {
  display: flex; justify-content: space-between; margin-top: 0.5rem;
}
.calc-slider-min, .calc-slider-max {
  font-size: 0.68rem; color: rgba(255,255,255,0.3); font-weight: 500;
}

/* Results bar */
.calc-result {
  display: flex; align-items: stretch; gap: 1.5rem;
}
.calc-result-col {
  flex: 1; text-align: center;
}
.calc-result-num {
  font-size: 2.5rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-result-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  margin-top: 0.3rem; font-weight: 500;
}
.calc-result-divider {
  width: 1px; background: rgba(255,255,255,0.08);
  align-self: stretch; flex-shrink: 0;
}
.calc-result-bar-wrap {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.calc-bar-track {
  width: 100%; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.06);
  overflow: hidden; margin-bottom: 0.5rem;
}
.calc-bar-fill {
  height: 100%; border-radius: 4px;
  background: var(--blue);
  transition: width 300ms ease-out;
  min-width: 2%;
}
.calc-bar-label {
  display: flex; justify-content: space-between;
  font-size: 0.65rem; color: rgba(255,255,255,0.3); font-weight: 500;
}

/* Info banner */
.calc-info {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem; padding: 1rem 1.25rem;
  margin-bottom: 3rem; font-size: 0.72rem; line-height: 1.55;
  color: rgba(255,255,255,0.45);
}
.calc-info svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--white); }
.calc-info strong { color: var(--white); }

.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem; padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative; transition: border-color 400ms var(--ease);
}
.plan-card.is-featured {
  border-color: var(--blue);
  background: rgba(45,98,255,0.05);
}
.plan-card.is-recommended {
  border-color: var(--light-green);
  box-shadow: 0 0 24px rgba(126,234,155,0.1);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 0.85rem; border-radius: 6.25rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
  background: var(--blue); color: var(--white);
  white-space: nowrap;
}
.plan-badge.is-reco {
  background: var(--light-green); color: var(--black);
}
.plan-card.is-featured.is-recommended > .plan-badge {
  background: var(--light-green);
  color: var(--black);
}
.plan-name {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem;
  color: var(--white);
}
.plan-ideal {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem; font-weight: 400;
}
.plan-price {
  font-size: 2.75rem; font-weight: 700; color: var(--white);
  line-height: 1; margin-bottom: 0.15rem;
  font-variant-numeric: tabular-nums;
}
.plan-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.plan-exec-block {
  background: rgba(255,255,255,0.04); border-radius: 0.75rem;
  padding: 1rem; margin: 1.25rem 0; text-align: center;
}
.plan-exec-num { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.plan-exec-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.plan-exec-equiv { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.15rem; }
.plan-excess {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  text-align: center; margin-bottom: 1.25rem;
}
.plan-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding: 0.35rem 0;
}
.plan-features li svg {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px;
  color: var(--light-green);
}
.plan-card-enterprise .plan-price {
  font-size: 2rem;
  background: linear-gradient(135deg, #a78bfa, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; justify-content: center; }

/* Implementación a medida */
.impl-custom-card {
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(45,98,255,0.08) 0%, rgba(126,234,155,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(45,98,255,0.06) inset;
}
.impl-custom-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.impl-custom-card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light-green);
}
.impl-custom-card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.impl-custom-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.impl-custom-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 42rem;
}
.impl-custom-card p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.pricing-excess-notice {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin: 3rem 0 0;
  text-align: left;
}
.pricing-excess-notice svg {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 1px; color: var(--white);
}
.pricing-excess-notice strong {
  color: var(--white);
}

/* Responsive adjustments for pricing */
@media (max-width: 991px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .plan-card { padding: 1.5rem 1.25rem; }
  .plan-price { font-size: 2.25rem; }
  .calc-segments { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .pricing-section { padding: 3rem 0 2rem; }
  .plans-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .calc-wrap { padding: 1.5rem; border-radius: 1rem; }
  .calc-segments { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .calc-result { flex-direction: column; gap: 1rem; }
  .calc-result-divider { width: 100%; height: 1px; }
  .calc-result-num { font-size: 2rem; }
  .pricing-excess-notice { flex-direction: column; gap: 0.5rem; }
  .impl-custom-card {
    padding: 1.25rem 1.15rem;
    margin-top: 1.25rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ENKEL.HTML — OVERRIDES Y ESCALA TIPOGRÁFICA
   Todos los ajustes visuales específicos de enkel.html viven aquí.
   Agrupados por componente para facilitar la edición de cada texto.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. BENTO SECTION — layout y tarjetas (estilo "anterior") ────────────── */
.enkel-page .bento-section {
  padding: clamp(4.6rem, 9.2vh, 8.05rem) 0;
}
.enkel-page .bento-section .container {
  padding-top: 0;
  padding-bottom: 0;
}
.enkel-page .bento-grid {
  gap: clamp(0.36rem, 0.66vw, 0.565rem);
  max-width: 1455px;
  margin: 0 auto;
  min-height: 555px;
  grid-template-rows: minmax(234px, 0.85fr) minmax(315px, 1.15fr);
}
.enkel-page .bento-card {
  border-radius: 0.76rem;
  background: #f5f5f7;
  border-right: none !important;
  border-bottom: none !important;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 1px 0 0 rgba(255,255,255,0.45),
    inset -1px 0 0 rgba(0,0,0,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.05);
}
.enkel-page .bento-a-media::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 38%,
    rgba(245, 245, 247, 0.55) 72%,
    #f5f5f7 100%
  );
}
.enkel-page .bento-a-text {
  background: #f5f5f7;
  border-top: none !important;
}
.enkel-page .bento-b .bento-big { color: #fff; }
.enkel-page .bento-f .bento-big { color: #fff; }

@media (max-width: 1023px) {
  .enkel-page .bento-grid { min-height: auto; }
  .enkel-page .bento-a,
  .enkel-page .bento-b,
  .enkel-page .bento-cd,
  .enkel-page .bento-e,
  .enkel-page .bento-f {
    border-right: none !important;
    border-bottom: none !important;
  }
}

/* ─── 2. CHIPS "Así se ve cuando la IA conecta tu stack" ─────────────────── */
#scrollVideoSection2 .sv-chip {
  box-shadow: none !important;
  transition: none !important;
}
#scrollVideoSection2 .sv-chip::before,
#scrollVideoSection2 .sv-chip::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}
#scrollVideoSection2 .sv-chip.sv-chip-lit {
  box-shadow: none !important;
}

/* ─── 3. INDUSTRIES — sin borde bajo chips ni progress bar ──────────────── */
.enkel-page .industries-chips {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.enkel-page .industries-progress {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ESCALA TIPOGRÁFICA — editar aquí para cambiar el tamaño/peso de cada texto
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── HERO ────────────────────────────────────────────────────────────────── */
/* Headline principal del hero (H1) */
.enkel-page .hero h1.hero-headline {
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.enkel-page .hero h1.hero-headline em { font-weight: 600; }

/* Subtítulo bajo el headline */
.enkel-page .hero-sub {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Etiqueta "Enkel AI Studio" en el tag del hero */
.tag-label {
  font-size: 0.8rem;
}

/* ─── REVEAL TEXT (párrafo largo de scroll) ──────────────────────────────── */
.enkel-page .reveal-text {
  font-size: 1.45rem;
  font-weight: 550;
  line-height: 1.5;
}

/* ─── SCROLL VIDEO HEADING ("Así se ve cuando la IA conecta tu stack") ────── */
.enkel-page .scroll-video-heading {
  font-size: clamp(0.78rem, 2.2vw + 0.3rem, 2.1rem);
  font-weight: 600;
}

/* ─── FEATURES — "El corazón de la automatización inteligente" (H2) ─────── */
#features .section-header h2 {
  font-size: clamp(1.35rem, 3.1vw, 2.25rem);
  font-weight: 425;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  padding: 0.1em 0;
  overflow: visible;
  font-family: inherit;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Títulos H3 de las feature cards */
.enkel-page .feature-card h3 {
  font-size: clamp(0.92rem, 1.02vw, 1.04rem);
  font-weight: 550;
}

/* Cuerpo de texto de las feature cards */
.enkel-page .feature-card p {
  font-size: 0.84rem;
}

/* ─── IMMERSIVE SECTION ──────────────────────────────────────────────────── */
/* Título principal ("Diseñá, conectá, automatizá.") */
.enkel-page .immersive-text h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 600;
}

/* Título en zona media-alta (equilibrio con cards abajo); desktop/tablet landscape */
@media (min-width: 768px) {
  .enkel-page #immersiveSection .immersive-content {
    align-items: flex-start;
    padding-top: clamp(7.5rem, 17.5vh, 11.5rem);
  }
}

/* Aire inferior: barra flotante (Para ventas / Para empresas) */
.enkel-page #immersiveSection .immersive-cards {
  padding-bottom: clamp(6rem, 17vh, 9rem);
}
.enkel-page #immersiveSection .immersive-card {
  min-height: clamp(13.5rem, 26vh, 19rem);
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

/* Texto en negrita de las immersive cards */
.enkel-page .immersive-card-text strong {
  font-size: 0.82rem;
}

/* Cuerpo de texto de las immersive cards */
.enkel-page .immersive-card-text {
  font-size: 0.67rem;
}

@media (max-width: 767px) {
  .enkel-page #immersiveSection .immersive-card {
    min-height: 0;
    padding-top: 0.85rem;
    padding-bottom: 1.15rem;
  }
  .enkel-page #immersiveSection .immersive-cards {
    padding-bottom: max(5.75rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
  }
}

/* ─── BENTO STATS — "Lo que pasa cuando tus flujos trabajan por vos." ──────── */
/* Título H2 del bento */
.enkel-page #bentoSection .section-header h2 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 26ch;
  font-size: clamp(1.35rem, 3.1vw, 2.25rem);
  font-weight: 425;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Párrafo lead ("Empresas que automatizan con Enkel…") */
.enkel-page .bento-lead {
  font-size: 1rem;
  font-weight: 400;
}

/* Títulos H3 dentro de las bento cards */
.enkel-page .bento-card h3 {
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  font-weight: 600;
}

/* Números grandes (90%, 95%, 3x) */
.enkel-page .bento-big {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
}

/* Layout del header bento: título izq + lead der en la misma línea */
.enkel-page #bentoSection .section-header {
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}
.enkel-page #bentoSection .section-header .bento-lead {
  text-align: left;
  margin-left: clamp(1.5rem, 5vw, 10rem);
  margin-right: 0;
  max-width: 40ch;
  justify-self: start;
  align-self: start;
  padding-top: 0.35rem;
  color: #000;
}
.enkel-page #bentoSection .bento-card {
  border-radius: 10px;
}
.enkel-page #bentoSection .bento-grid {
  gap: clamp(0.18rem, 0.33vw, 0.28rem);
}

@media (max-width: 991px) {
  .enkel-page #bentoSection .section-header {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }
  .enkel-page #bentoSection .section-header .bento-lead {
    max-width: 46rem;
    padding-top: 0;
  }
}

/* ─── INDUSTRIES — "Diseñado para tu industria." ─────────────────────────── */
/* Título H2 */
.enkel-page #industriesSection .industries-top h2 {
  max-width: 26ch;
  font-size: clamp(1.35rem, 3.1vw, 2.25rem);
  font-weight: 425;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: left;
  margin: 0;
  justify-self: start;
}

/* Lead paragraph */
.enkel-page .industries-top .bento-lead {
  font-size: 0.95rem;
  font-weight: 400;
}

/* Layout: título izq + subtítulo der */
.enkel-page #industriesSection .industries-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  margin: 0 auto;
  max-width: 1200px;
  width: auto;
}
.enkel-page #industriesSection .industries-top .bento-lead {
  max-width: 40ch;
  text-align: left;
  margin-left: clamp(1.5rem, 5vw, 3.5rem);
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  justify-self: start;
  align-self: start;
  padding-top: 0.35rem;
  color: #000;
}
.enkel-page #industriesSection .industries-top .industries-chips {
  grid-column: 1 / -1;
  width: 100%;
  margin: 2.6rem 0 0 0;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .enkel-page #industriesSection .industries-top {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }
  .enkel-page #industriesSection .industries-top .bento-lead {
    max-width: 46rem;
    padding-top: 0;
  }
}

/* FAQ + CTA — misma tipografía que "Diseñado para tu industria."; layout sigue centrado */
.enkel-page #faq h2,
.enkel-page .cta-section h2 {
  max-width: 26ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.35rem, 3.1vw, 2.25rem);
  font-weight: 425;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  padding: 0.1em 0;
  overflow: visible;
  font-family: inherit;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.enkel-page #faq h2 {
  margin-bottom: 3rem;
}
.enkel-page .cta-section h2 {
  margin-bottom: 2rem;
}

/* ─── WALKTHROUGH — "Listo en 3 pasos" ──────────────────────────────────── */
/* Título H2 del walkthrough */
#walkthroughSection .walkthrough-header h2 {
  font-size: clamp(1.35rem, 3.1vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  padding: 0.1em 0;
  font-family: inherit;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Títulos H3 de cada paso ("La IA más avanzada…", "Infraestructura…", etc.) */
#walkthroughSection .walkthrough-content h3 {
  font-weight: 500;
}

/* Párrafos de cada paso */
#walkthroughSection .walkthrough-content p {
  font-size: clamp(.81rem, .94vw, .88rem);
  font-weight: 400;
  line-height: 1.5;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
/* Links dentro de respuestas de FAQ */
.faq-answer a,
.faq-answer-link {
  color: var(--blue);
  text-decoration: underline;
}

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
/* Nota al pie del CTA ("Velocidad, escala e inteligencia…") */
.cta-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--neutral-light);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
/* Logo en el footer */
.footer-brand .nav-logo,
.footer-logo {
  margin-bottom: 0.75rem;
}

/* ─── MOBILE MENU ─────────────────────────────────────────────────────────── */
/* Links del menú móvil */
.mobile-nav-link {
  font-size: 1.1rem;
}

/* ─── RESPONSIVE TIPOGRÁFICO ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  #features .section-header h2,
  .enkel-page #bentoSection .section-header h2,
  .enkel-page #industriesSection .industries-top h2,
  .enkel-page #faq h2,
  .enkel-page .cta-section h2 {
    font-size: clamp(1.15rem, 3.3vw, 1.65rem);
  }
  #walkthroughSection .walkthrough-header h2 {
    font-size: clamp(1.15rem, 3.3vw, 1.65rem);
  }
}
@media (max-width: 767px) {
  .enkel-page .hero h1.hero-headline {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
  }
  .enkel-page .reveal-text {
    font-size: 1.15rem;
  }
  #features .section-header h2,
  .enkel-page #bentoSection .section-header h2,
  .enkel-page #industriesSection .industries-top h2,
  .enkel-page #faq h2,
  .enkel-page .cta-section h2 {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }
  #walkthroughSection .walkthrough-header h2 {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }
}

/* ─── CASE SHOWCASE (inactivo — en <template>) ──────────────────────────── */
.case-showcase-section {
  background: #fff;
  padding: clamp(5rem, 9vh, 7.5rem) 0 clamp(4rem, 7vh, 6rem);
}
.case-showcase-section .section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.cs-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 2.5rem;
}
.cs-tab {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  color: rgba(29,29,31,0.52);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.cs-tab:hover { border-color: rgba(0,0,0,0.3); color: #1d1d1f; }
.cs-tab--active { border-color: rgba(0,0,0,0.55); color: #1d1d1f; }
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 0.78fr;
  grid-template-rows: minmax(220px, auto) minmax(220px, auto);
  gap: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cs-card {
  position: relative;
  border-radius: 0.76rem;
  overflow: hidden;
  background: #f0f0f2;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 1px 0 0 rgba(255,255,255,0.45),
    inset -1px 0 0 rgba(0,0,0,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.05);
}
.cs-card--left   { grid-column: 1; grid-row: 1; min-height: 280px; }
.cs-card--center { grid-column: 2; grid-row: 1 / 3; }
.cs-card--sm-1   { grid-column: 3; grid-row: 1; }
.cs-card--sm-2   { grid-column: 3; grid-row: 2; }
.cs-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-card-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.22) 48%, transparent 100%);
}
/* Categoría de la card (ej. "E-commerce") */
.cs-card-category {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 0.35rem;
}
/* Título de la card */
.cs-card-title {
  font-size: 0.9rem; font-weight: 600;
  color: #fff; line-height: 1.4; margin: 0;
}
.cs-card--center .cs-card-title { font-size: 1rem; }
.cs-card--ghost { display: flex; align-items: center; justify-content: center; background: #f0f0f2; }
/* Label de card vacía */
.cs-card-ghost-label {
  font-size: 0.8rem; color: rgba(29,29,31,0.25);
  font-weight: 500; letter-spacing: 0.03em;
  text-align: center; line-height: 1.6;
}
@media (max-width: 991px) {
  .cs-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .cs-card--left   { grid-column: 1; grid-row: 1; min-height: 260px; }
  .cs-card--center { grid-column: 2; grid-row: 1 / 3; }
  .cs-card--sm-1   { grid-column: 1; grid-row: 2; }
  .cs-card--sm-2   { grid-column: 1 / 3; grid-row: 3; min-height: 220px; }
}
@media (max-width: 767px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-card--left, .cs-card--center,
  .cs-card--sm-1, .cs-card--sm-2 { grid-column: 1; grid-row: auto; min-height: 260px; }
}

/* ─── EL-AGENTS (inactivo — en <template>) ──────────────────────────────── */
.ela-section {
  background: #000;
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(4rem, 8vh, 6.5rem);
}
.ela-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
/* Chip/tag "Enkel Agents" */
.ela-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.ela-tag svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.45); }
/* Título H2 de la sección agents */
.ela-title {
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.06;
  margin-bottom: 1.1rem;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.72));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Lead paragraph bajo el título */
.ela-lead {
  font-size: 0.98rem; color: rgba(255,255,255,0.52);
  line-height: 1.68; margin-bottom: 1.75rem; max-width: 440px;
}
.ela-cta-row {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem;
}
/* Link secundario */
.ela-link {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}
.ela-link:hover { color: #fff; }
.ela-features {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ela-feat { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
/* Títulos H3 de cada feature */
.ela-feat h3 {
  font-size: 0.92rem; font-weight: 650;
  color: rgba(255,255,255,0.88); margin-bottom: 0.25rem; letter-spacing: -0.01em;
}
/* Descripción de cada feature */
.ela-feat p {
  font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.55; margin: 0;
}
.ela-mockup { display: flex; justify-content: center; align-items: flex-start; }
.ela-chat {
  width: 100%; max-width: 400px;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0c0c0e;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(96,146,255,0.06), 0 24px 60px rgba(0,0,0,0.6);
}
.ela-chat-header {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.ela-chat-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(96,146,255,0.5) 0%, rgba(45,98,255,0.3) 100%);
  border: 1px solid rgba(96,146,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.85); letter-spacing: 0.02em; flex-shrink: 0;
}
.ela-chat-meta { flex: 1; }
/* Nombre del agente en el chat */
.ela-chat-name {
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.88); display: block; margin-bottom: 0.08rem;
}
.ela-chat-status {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.38);
}
.ela-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  animation: elaPulse 2.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes elaPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.85); }
}
.ela-chat-body {
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.ela-msg { display: flex; max-width: 80%; }
.ela-msg--in  { align-self: flex-start; }
.ela-msg--out { align-self: flex-end; flex-direction: row-reverse; }
/* Burbujas de chat */
.ela-msg-bubble {
  padding: 0.6rem 0.95rem;
  border-radius: 1rem;
  font-size: 0.82rem; line-height: 1.48; color: rgba(255,255,255,0.82);
}
.ela-msg--in  .ela-msg-bubble {
  background: rgba(255,255,255,0.07);
  border-radius: 0.3rem 1rem 1rem 1rem;
}
.ela-msg--out .ela-msg-bubble {
  background: rgba(96,146,255,0.18);
  border-radius: 1rem 0.3rem 1rem 1rem;
  color: rgba(255,255,255,0.9);
}
/* Badge de acción completada */
.ela-action-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; align-self: center;
  font-size: 0.74rem; font-weight: 600; color: #4ade80;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  padding: 0.42rem 0.9rem; border-radius: 100px; margin: 0.25rem auto;
}
.ela-action-badge svg { width: 13px; height: 13px; stroke: #4ade80; fill: none; stroke-width: 2; stroke-linecap: round; }
.ela-chat-input-row {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.07); margin-top: 0.25rem;
}
/* Placeholder del input de chat */
.ela-chat-input-fake {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 100px;
  padding: 0.5rem 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.22);
  user-select: none;
}
.ela-chat-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(96,146,255,0.22); border: 1px solid rgba(96,146,255,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ela-chat-send svg { width: 14px; height: 14px; stroke: rgba(96,146,255,0.9); fill: none; stroke-width: 1.75; stroke-linecap: round; }
.ela-cases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
}
.ela-case {
  border-radius: 0.76rem; overflow: hidden;
  background: #0c0c0e; border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  transition: border-color 0.25s ease;
}
.ela-case:hover { border-color: rgba(255,255,255,0.16); }
.ela-case-media { height: 180px; overflow: hidden; position: relative; }
.ela-case-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.ela-case:hover .ela-case-media img { transform: scale(1.04); }
.ela-case-body { padding: 1rem 1.15rem 1.15rem; display: flex; flex-direction: column; gap: 0.3rem; }
/* Brand label de los casos */
.ela-case-brand {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
/* Texto del caso */
.ela-case-text {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.72); line-height: 1.45; margin: 0;
}
@media (max-width: 991px) {
  .ela-inner { grid-template-columns: 1fr; }
  .ela-mockup { justify-content: flex-start; }
  .ela-chat { max-width: 100%; }
  .ela-cases { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .ela-cases { grid-template-columns: 1fr; }
  .ela-cta-row { flex-direction: column; align-items: flex-start; }
}