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

:root {
  --purple: #8A32D0;
  --purple-bright: #B14CFA;
  --purple-glow: rgba(154, 56, 224, 0.72);
  --purple-soft: rgba(138, 50, 208, 0.18);
  --white: #FFFFFF;
  --gray: #A0A0A0;
  --black: #0A0A0A;
  --border: rgba(255, 255, 255, 0.08);
  --project-error: #ff4d6d;
  --project-error-soft: rgba(255, 77, 109, 0.12);
  --surface-1: #0d0d0f;
  --surface-2: #121116;
  --surface-3: #17131d;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-purple: rgba(177, 76, 250, 0.24);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.64);
  --text-muted: rgba(255, 255, 255, 0.42);
  --glow-soft: 0 0 28px rgba(138, 50, 208, 0.09);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius-card: 18px;
  --radius-small: 12px;
  --section-space-desktop: 7rem;
  --section-space-tablet: 5.5rem;
  --section-space-mobile: 4.25rem;
  --card-bg: linear-gradient(145deg, rgba(18, 17, 21, 0.97), rgba(10, 10, 12, 0.99));
  --section-radial: radial-gradient(circle at 50% 0%, rgba(138, 50, 208, 0.075), transparent 34rem);
  --section-radial-left: radial-gradient(circle at 12% 10%, rgba(138, 50, 208, 0.07), transparent 30rem);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  cursor: none;
}

/* ══ CURSOR ══ */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--purple-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(177, 76, 250, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, border-color 0.2s;
}


/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 4rem;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-nix {
  color: var(--white);
}

.logo-studio {
  color: var(--purple-bright);
  font-weight: 400;
  margin-left: 2px;
  font-size: 0.85em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--purple-bright);
  transition: width 0.25s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: none;
}

.nav-cta:hover {
  background: var(--purple-bright) !important;
  box-shadow: 0 0 24px var(--purple-glow) !important;
  transform: translateY(-1px) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 600;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--purple-bright);
}

.mobile-cta {
  color: #C084FC !important;
}

/* ══ HERO ══ */
#hero {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 5rem 4rem 3rem;
  overflow-x: clip;
  overflow-y: hidden;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 560px;
  animation: heroPanelFromLeft 1.5s .08s cubic-bezier(.22, 1, .36, 1) both;
  will-change: transform, opacity;
}

.hero-right {
  position: relative;
  z-index: 2;
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
  /* ← clave */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--purple-soft);
  border: 1px solid rgba(123, 47, 190, 0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  color: #C084FC;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.8rem;
  animation: heroTextFade .65s .18s ease both, badgeGlow 2.5s 1s ease-in-out infinite;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #C084FC;
  border-radius: 50%;
  box-shadow: 0 0 8px #C084FC;
  animation: blink 1.8s infinite;
}

.hero-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: heroTextFade .7s .24s ease both;
}

.hero-title .accent {
  color: var(--purple-bright);
}

.hero-title .word {
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
}

.hero-title .word:hover {
  transform: translateY(-4px) skewX(-2deg);
  color: var(--purple-bright);
}

.hero-sub {
  max-width: 480px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 1.2rem;
  animation: heroTextFade .7s .34s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  animation: heroTextFade .7s .44s ease both;
  margin-bottom: 0.8rem;
}

.hero-action-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  animation: heroTextFade .7s .53s ease both;
}

.hero-action-note svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  fill: rgba(177, 76, 250, .1);
  stroke: var(--purple-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px var(--purple-glow));
}

.hero-proof {
  animation: heroTextFade .7s .62s ease both;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
}

.proof-icon {
  width: 36px;
  height: 36px;
  background: var(--purple-soft);
  border: 1px solid rgba(123, 47, 190, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #C084FC;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.proof-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.proof-text span {
  font-size: 0.76rem;
  color: var(--gray);
}

/* BUTTONS */
.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: all 0.25s;
  box-shadow: 0 0 30px var(--purple-glow);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: shimmer 2.5s infinite;
}

.btn-primary:hover {
  background: var(--purple-bright);
  box-shadow: 0 0 55px var(--purple-glow);
  transform: translateY(-3px) scale(1.02);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: none;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
#redes {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.redes {
  display: flex;
  align-items: center;
  gap: 14px;
}

.redes-titulo {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.redes a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.redes a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.redes a:hover {
  color: #ffffff;
  border-color: rgba(177, 76, 250, 0.55);
  background: rgba(138, 50, 208, 0.1);
  box-shadow: 0 0 18px rgba(138, 50, 208, 0.18);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .redes {
    gap: 10px;
  }

  .redes a {
    width: 38px;
    height: 38px;
  }

  .redes a svg {
    width: 16px;
    height: 16px;
  }

  .redes-titulo {
    font-size: 0.66rem;
  }
}

/* ══ HERO RIGHT — FLOAT CARDS + MOCKUP ══ */
.mockup-wrap {
  position: absolute;
  width: 55vw;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transform-origin: center;
}

.mockup-wrap::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 76, 250, .48) 0%, rgba(138, 50, 208, .24) 34%, transparent 70%);
  filter: blur(24px);
  opacity: .95;
  animation: mockupGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.mockup-glow {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  animation: ctaPulse 4s ease-in-out infinite;
}

.mockup-screen {
  width: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  position: relative;
  animation: fadeUp .8s .2s ease both;
}

.mockup-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  animation:
    laptopDepth 5.5s 1s ease-in-out infinite,
    mockupImageDrift 7s ease-in-out infinite;
  will-change: transform, filter;
}

.mockup-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  text-align: center;
  padding: 2rem;
}

.placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  opacity: 0.4;
}

.placeholder-inner p {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.4rem;
}

.placeholder-inner span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
}

/* Float cards (hero-right external version) */
.float-card {
  position: absolute;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123, 47, 190, 0.3);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  z-index: 10;
  min-width: 180px;
  max-width: 220px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.fc-icon {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.fc-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fc-content strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.fc-content span {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.4;
}

.fc-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.score-circle {
  width: 52px;
  height: 52px;
  position: relative;
}

.score-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-circle span,
.score-circle em {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  font-weight: 700;
  font-style: normal;
  color: var(--purple-bright);
  white-space: nowrap;
}

.score-label {
  font-size: 0.7rem;
  color: var(--gray);
}

.device-icons {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.card-rapido {
  top: -20px;
  right: -30px;
  animation: floatA 6s ease-in-out infinite;
}

.card-responsive {
  bottom: 30px;
  right: -40px;
  animation: floatB 7s ease-in-out infinite;
}

.card-moderno {
  bottom: -10px;
  left: -30px;
  animation: floatC 5.5s ease-in-out infinite;
}

/* Orbit cards (index.html inline version) */
.orbit-stage {
  position: relative;
  width: 560px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-ring.r1 {
  width: 600px;
  height: 600px;
  border: 1px dashed rgba(155, 63, 222, 0.22);
  animation: orbitRingSpin 30s linear infinite;
}

.orbit-ring.r2 {
  width: 800px;
  height: 800px;
  border: 1px dashed rgba(155, 63, 222, 0.1);
  animation: orbitRingSpin 44s linear infinite reverse;
}

.orbit-glow {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 76, 250, .36) 0%, rgba(138, 50, 208, .18) 38%, transparent 70%);
  pointer-events: none;
}

.orbit-card {
  position: absolute;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123, 47, 190, 0.3);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  z-index: 10;
  width: 185px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform-origin: center;
  will-change: transform, border-color, box-shadow;
}

/* Card Rápido — arriba a la izquierda, fuera del mockup */
#oc1 {
  top: -10%;
  left: -22%;
  --card-rest-angle: -1deg;
  --card-active-angle: .7deg;
  --card-enter-x: -30px;
  --card-enter-y: -6px;
  animation:
    orbitCardEnter 1.35s .48s cubic-bezier(.22, 1, .36, 1) both,
    orbitCardAura 5.8s 1.83s ease-in-out infinite;
}

/* Card Responsive — derecha centro-arriba, encima del mockup */
#oc2 {
  top: 10%;
  right: -38%;
  left: auto;
  --card-rest-angle: .8deg;
  --card-active-angle: -.6deg;
  --card-enter-x: 30px;
  --card-enter-y: -5px;
  animation:
    orbitCardEnter 1.35s .64s cubic-bezier(.22, 1, .36, 1) both,
    orbitCardAura 6.4s 1.99s ease-in-out infinite;
}

/* Card Moderno — abajo a la derecha */
#oc3 {
  bottom: 2%;
  right: 10%;
  left: auto;
  --card-rest-angle: -.5deg;
  --card-active-angle: .9deg;
  --card-enter-x: 18px;
  --card-enter-y: 18px;
  animation:
    orbitCardEnter 1.35s .8s cubic-bezier(.22, 1, .36, 1) both,
    orbitCardAura 6s 2.15s ease-in-out infinite;
}

.orbit-card .fc-icon {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.orbit-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.orbit-card span.sub {
  font-size: 0.73rem;
  color: var(--gray);
  line-height: 1.4;
  display: block;
}


.hero-scroll {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  z-index: 900;
  display: flex;
  pointer-events: none;
  opacity: 1;
  transform: translateX(-50%);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 0s;
  visibility: visible;
  will-change: opacity, transform;
}

.hero-scroll.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(18px) scale(.92);
  visibility: hidden;
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .65s;
}

.hero-scroll svg {
  display: block;
  filter: drop-shadow(0 0 8px rgba(155, 63, 222, .3));
  animation: mouseBreath 2.8s cubic-bezier(.45, 0, .55, 1) infinite;
  transform-origin: center;
}

.hero-scroll circle {
  animation: scrollDot 2.2s cubic-bezier(.45, 0, .55, 1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(123, 47, 190, 0.8), transparent);
  animation: scrollPulse 1.8s infinite;
}

/* ══ LOGOS STRIP ══ */
.logos-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logos-label {
  flex-shrink: 0;
  background: var(--black);
  padding: 0 2rem 0 3rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.logos-track {
  display: flex;
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.logos-marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.logos-marquee .brand {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.logos-marquee .brand:hover {
  color: rgba(155, 63, 222, 0.7);
}

/* ══ REVEAL ══ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  filter: blur(2px);
  transition-property: opacity, transform, filter;
  transition-duration: 1.3s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal {
  transform: translate3d(0, 17px, 0) scale(.997);
}

.reveal-left {
  transform: perspective(1000px) translate3d(-20px, 5px, 0) rotateY(.7deg);
  transform-origin: left center;
}

.reveal-right {
  transform: perspective(1000px) translate3d(20px, 5px, 0) rotateY(-.7deg);
  transform-origin: right center;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

.reveal-delay-1 {
  --reveal-delay: 90ms;
}

.reveal-delay-2 {
  --reveal-delay: 180ms;
}

.reveal-delay-3 {
  --reveal-delay: 270ms;
}

.reveal-delay-4 {
  --reveal-delay: 360ms;
}

.reveal-delay-5 {
  --reveal-delay: 450ms;
}

.reveal-delay-6 {
  --reveal-delay: 540ms;
}

/* ══ SECCIONES ══ */
section {
  padding: 6rem 4rem;
}

.section-label {
  display: inline-block;
  color: var(--purple-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-title .accent {
  color: var(--purple-bright);
}

.section-desc {
  color: var(--gray);
  line-height: 1.75;
  font-size: 1rem;
}

.section-desc.center-desc {
  margin: 0 auto 3.5rem;
  text-align: center;
}

.highlight-text {
  color: #C084FC;
}

.hl {
  color: var(--white);
}

.hl2 {
  color: var(--purple-bright);
}

.hl-text {
  color: var(--purple-bright);
}

/* ══ PROBLEMA ══ */
#problema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problema-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card-dark {
  background: #0E0E0E;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card-dark:hover {
  border-color: rgba(123, 47, 190, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-dark .card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.card-dark h4 {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.card-dark p {
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.5;
}

.card-purple {
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.22), rgba(123, 47, 190, 0.04));
  border: 1px solid rgba(123, 47, 190, 0.35);
  border-radius: 14px;
  padding: 1.5rem;
  grid-column: 1 / -1;
}

.card-purple h4 {
  color: #C084FC;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-purple p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   SOLUCIONES SEGÚN EL OBJETIVO
   ═══════════════════════════════════════ */

#servicios {
  position: relative;
  padding: 7rem 4rem;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(138, 50, 208, 0.07),
      transparent 38rem
    );
}

#servicios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(900px, 80%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(177, 76, 250, 0.3),
    transparent
  );
  transform: translateX(-50%);
}

.solutions-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 4rem;
}

#servicios .section-label {
  margin-bottom: 1.1rem;
}

#servicios .section-title {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

#servicios .section-desc {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1rem;
}

.servicios-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  width: min(1360px, 100%);
  max-width: none;
  margin: 0 auto;
}

.servicio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 2rem;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 17, 20, 0.97),
      rgba(10, 10, 12, 0.99)
    );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.servicio-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(177, 76, 250, 0.62),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 76, 250, 0.32);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(138, 50, 208, 0.08);
}

.servicio-card:hover::before {
  opacity: 1;
}

.solution-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.servicio-num {
  color: rgba(196, 151, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid rgba(177, 76, 250, 0.28);
  border-radius: 13px;
  background:
    linear-gradient(
      145deg,
      rgba(138, 50, 208, 0.14),
      rgba(138, 50, 208, 0.04)
    );
  color: #c995ff;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.servicio-card:hover .solution-icon {
  transform: translateY(-2px);
  border-color: rgba(177, 76, 250, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(138, 50, 208, 0.22),
      rgba(138, 50, 208, 0.07)
    );
}

.solution-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-line {
  width: 46px;
  height: 1px;
  margin: 1.4rem 0 1.8rem;
  background: rgba(177, 76, 250, 0.5);
}

.servicio-card h3 {
  margin-bottom: 0.85rem;
  color: var(--white);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.servicio-card > p {
  max-width: 340px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.7;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.solution-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.38rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  line-height: 1.2;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.servicio-card:hover .solution-tags span {
  border-color: rgba(177, 76, 250, 0.2);
  background: rgba(138, 50, 208, 0.035);
  color: rgba(255, 255, 255, 0.74);
}

/* Diferencia visual sutil, sin hacerlo colorido */
.servicio-card:nth-child(2) {
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(138, 50, 208, 0.07),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(18, 17, 21, 0.98),
      rgba(10, 10, 12, 0.99)
    );
}

.servicio-card:nth-child(3) {
  border-color: rgba(177, 76, 250, 0.18);
}

/* LAPTOP / TABLET */
@media (max-width: 1050px) {
  #servicios {
    padding: 6rem 2rem;
  }

  .servicios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .servicio-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 650px);
    justify-self: center;
  }
}

/* MÓVIL */
@media (max-width: 680px) {
  #servicios {
    padding: 4.5rem 1rem;
  }

  .solutions-heading {
    margin-bottom: 2.8rem;
  }

  #servicios .section-title {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  #servicios .section-desc {
    font-size: 0.9rem;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .servicio-card,
  .servicio-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 330px;
    padding: 1.5rem;
  }

  .solution-icon {
    width: 46px;
    height: 46px;
  }

  .solution-icon svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 430px) {
  .servicio-card {
    min-height: 310px;
    padding: 1.3rem;
  }

  .servicio-card h3 {
    font-size: 1.2rem;
  }

  .servicio-card > p {
    font-size: 0.84rem;
  }

  .solution-tags span {
    padding: 0.34rem 0.68rem;
    font-size: 0.65rem;
  }
}

/* ══ CUÁNDO PODEMOS AYUDARTE ══ */
#publico {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.8fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: min(1600px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 6rem 0;
  overflow: visible;
}

#publico::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 18%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 50, 208, 0.09) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.needs-intro {
  position: relative;
  z-index: 1;
  max-width: 430px;
}

.needs-intro .section-label {
  margin-bottom: 1.25rem;
}

.needs-intro .section-title {
  max-width: 420px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.needs-intro .section-desc {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.8;
}

.needs-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding-left: 1.15rem;
  border-left: 2px solid var(--purple-bright);
}

.needs-note__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid rgba(177, 76, 250, 0.35);
  border-radius: 50%;
  background: rgba(138, 50, 208, 0.14);
  color: var(--purple-bright);
  box-shadow: 0 0 18px rgba(138, 50, 208, 0.12);
}

.needs-note p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
}

.needs-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.need-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 285px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(138, 50, 208, 0.08),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(19, 17, 22, 0.96),
      rgba(11, 11, 13, 0.98)
    );
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.need-item::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(177, 76, 250, 0.7),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.need-item:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 76, 250, 0.32);
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(138, 50, 208, 0.14),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(22, 18, 27, 0.98),
      rgba(12, 12, 14, 0.98)
    );
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(138, 50, 208, 0.08);
}

.need-item:hover::before {
  opacity: 1;
}

.need-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.55rem;
}

.need-item__number {
  color: rgba(177, 76, 250, 0.9);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.need-item__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(177, 76, 250, 0.3);
  border-radius: 50%;
  background: rgba(138, 50, 208, 0.09);
  color: #d29aff;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.need-item:hover .need-item__icon {
  transform: rotate(-6deg) scale(1.08);
  background: rgba(138, 50, 208, 0.18);
  box-shadow: 0 0 20px rgba(138, 50, 208, 0.2);
}

.need-item__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.need-item__category {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--purple-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.need-item h3 {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.need-item__footer {
  margin-top: auto;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.need-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1;
}

.need-item__badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 8px var(--purple-glow);
}

.need-item--featured {
  border-color: rgba(177, 76, 250, 0.58);
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(177, 76, 250, 0.25),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(45, 21, 62, 0.96),
      rgba(18, 11, 25, 0.98)
    );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.38),
    0 0 30px rgba(138, 50, 208, 0.14);
}

.need-item--featured:hover {
  border-color: rgba(209, 139, 255, 0.85);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(138, 50, 208, 0.24);
}

.need-item__featured-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.48rem 1rem;
  border-radius: 0 18px 0 14px;
  background: linear-gradient(
    90deg,
    #7835cf,
    var(--purple-bright)
  );
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(138, 50, 208, 0.28);
}

.need-item--featured .need-item__number {
  color: #c980ff;
}

.need-item--featured .need-item__category {
  color: #d49bff;
}

.need-item--featured .need-item__icon {
  border-color: rgba(210, 154, 255, 0.48);
  background: rgba(177, 76, 250, 0.16);
}

@media (max-width: 1180px) {
  #publico {
    grid-template-columns: 1fr;
    width: min(1100px, calc(100% - 40px));
    gap: 3rem;
  }

  .needs-intro {
    max-width: 700px;
  }

  .needs-intro .section-title,
  .needs-intro .section-desc {
    max-width: 700px;
  }

  .needs-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #publico {
    width: min(100% - 32px, 760px);
    padding: 5rem 0;
  }

  .needs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  #publico {
    width: min(100% - 24px, 520px);
    gap: 2.4rem;
    padding: 4rem 0;
  }

  .needs-intro .section-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .needs-list {
    grid-template-columns: 1fr;
  }

  .need-item {
    min-height: 240px;
    padding: 1.35rem;
  }
}

@media (max-width: 600px) {
  #publico {
    gap: 2.4rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .needs-intro .section-title {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .needs-list {
    grid-template-columns: 1fr;
  }

  .need-item {
    min-height: 250px;
    padding: 1.4rem;
  }

  .need-item h3 {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .need-item__featured-label {
    padding: 0.42rem 0.75rem;
    font-size: 0.54rem;
  }
}

@media (max-width: 430px) {
  .needs-note {
    align-items: flex-start;
  }

  .need-item {
    min-height: 235px;
  }

  .need-item__number {
    font-size: 2.4rem;
  }

  .need-item__icon {
    width: 38px;
    height: 38px;
  }
}
/* ══ VALOR / POR QUÉ NIX ══ */
#valor {
  text-align: center;
  position: relative;
  overflow: hidden;

}

.valor-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 6s ease-in-out infinite;
}

#valor .section-desc {
  margin: 0 auto 3.5rem;
}

.valor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.valor-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
  background: #0E0E0E;
  transition: all 0.3s;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.valor-card:hover {
  border-color: rgba(123, 47, 190, 0.4);
  box-shadow: 0 0 35px rgba(123, 47, 190, 0.12);
  transform: translateY(-6px);
}

.valor-card:hover::before {
  opacity: 1;
}

.valor-num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(155, 63, 222, 0.35);
  letter-spacing: 0.1em;
}

.valor-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--purple-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(123, 47, 190, 0.25);
}

/* Rotating icon */
.rotating-icon,
.valor-icon {
  font-size: 1.5rem;
  animation: gentleSpin 8s linear infinite;
  display: inline-block;
}

.valor-card:nth-child(2) .rotating-icon,
.valor-card:nth-child(2) .valor-icon {
  animation-duration: 10s;
  animation-direction: reverse;
}

.valor-card:nth-child(3) .rotating-icon,
.valor-card:nth-child(3) .valor-icon {
  animation-duration: 12s;
}

.valor-card:nth-child(4) .rotating-icon,
.valor-card:nth-child(4) .valor-icon {
  animation-duration: 9s;
  animation-direction: reverse;
}

.valor-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.valor-card p {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.valor-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.valor-tag {
  background: rgba(123, 47, 190, 0.12);
  border: 1px solid rgba(123, 47, 190, 0.25);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  color: rgba(200, 132, 252, 0.85);
  white-space: nowrap;
}

/* Social proof row */
.valor-social-proof,
.valor-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.proof-avatars,
.proof-avs {
  display: flex;
}

.proof-av,
.pav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: -10px;
  background: var(--purple-soft);
  border-color: rgba(123, 47, 190, 0.4);
  color: #C084FC;
}

.proof-av:first-child,
.pav:first-child {
  margin-left: 0;
}

.pav1 {
  background: #7B2FBE;
}

.pav2 {
  background: #9B3FDE;
}

.pav3 {
  background: #C084FC;
  color: #200d40;
}

.pav4 {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--gray);
  font-size: 0.75rem;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.proof-copy strong {
  font-size: 0.88rem;
  color: var(--white);
}

.proof-copy span {
  font-size: 0.76rem;
  color: var(--gray);
}

/* ══ PROCESO ══ */
#proceso {
  padding: 6rem 4rem;
  overflow: hidden;
}

.proceso-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.proceso-header-left {
  max-width: 480px;
}

.proceso-transparencia,
.proceso-trans {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  max-width: 300px;
  flex-shrink: 0;
  align-self: center;
}

.trans-icon {
  font-size: 1.4rem;
  color: #C084FC;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--purple-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proceso-transparencia strong,
.proceso-trans strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}

.proceso-transparencia p,
.proceso-trans p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Timeline */
.proceso-timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--purple), transparent);
  opacity: 0.4;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.paso {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.paso-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.paso-dot {
  width: 10px;
  height: 10px;
  background: var(--purple-bright);
  border-radius: 50%;
  position: absolute;
  top: -28px;
  box-shadow: 0 0 12px var(--purple-glow);
  animation: dotPulse 2s ease-in-out infinite;
}

.paso:nth-child(2) .paso-dot {
  animation-delay: 0.5s;
}

.paso:nth-child(3) .paso-dot {
  animation-delay: 1s;
}

.paso:nth-child(4) .paso-dot {
  animation-delay: 1.5s;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0E0E0E;
  border: 2px solid rgba(123, 47, 190, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--purple-bright);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.paso:hover .paso-num {
  background: var(--purple-soft);
  border-color: var(--purple-bright);
  box-shadow: 0 0 20px var(--purple-glow);
}

.paso-nw {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.paso-card {
  background: #0E0E0E;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.4rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.paso:hover .paso-card {
  border-color: rgba(123, 47, 190, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.paso-icon,
.paso-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--purple-soft);
  border: 1px solid rgba(123, 47, 190, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.paso:hover .paso-icon,
.paso:hover .paso-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(123, 47, 190, 0.4);
}

.paso h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.paso p {
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.paso-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.paso-tags span {
  background: rgba(123, 47, 190, 0.1);
  border: 1px solid rgba(123, 47, 190, 0.2);
  border-radius: 50px;
  padding: 0.25rem 0.7rem;
  font-size: 0.68rem;
  color: rgba(192, 132, 252, 0.8);
}

.paso-arrow {
  position: absolute;
  right: -18px;
  top: 45%;
  font-size: 1.4rem;
  color: rgba(123, 47, 190, 0.5);
  z-index: 5;
}

/* ══ FAQ ══ */
#faq {
  max-width: 780px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

#faq .section-title {
  text-align: center;
}

#faq .section-label {
  display: block;
  text-align: center;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: rgba(123, 47, 190, 0.4);
}

.faq-q {
  width: 100%;
  background: #0E0E0E;
  border: none;
  color: var(--white);
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 1.4rem 1.6rem;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #141414;
}

.faq-arrow {
  font-size: 1rem;
  color: var(--purple-bright);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  background: #0C0C0C;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.6rem;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.6rem 1.4rem;
}

/* ══ CTA ══ */
#cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem;
}

#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 4s ease-in-out infinite;
}

#cta .section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

#cta .section-desc {
  margin: 0 auto 2.5rem;
}

/* ══ FOOTER ══ */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
}

footer p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--purple-bright);
}

/* ══ KEYFRAMES ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    filter: blur(2px);
    transform: translate3d(0, 12px, 0) scale(.997);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroPanelFromLeft {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(-60px, 0, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroTextFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(155, 63, 222, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(155, 63, 222, 0);
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes sLine {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes badgeGlow {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(123, 47, 190, 0);
  }

  50% {
    box-shadow: 0 0 22px rgba(123, 47, 190, 0.35);
  }
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 0.7;
  }
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(12px) rotate(-1deg);
  }
}

@keyframes floatC {

  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

@keyframes orbitCardAura {

  0%,
  100% {
    border-color: rgba(123, 47, 190, .3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5), inset 0 0 0 rgba(155, 63, 222, 0);
    background-color: rgba(14, 14, 14, .92);
    transform: rotate(var(--card-rest-angle)) scale(1);
  }

  50% {
    border-color: rgba(192, 132, 252, .72);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5), 0 0 24px rgba(155, 63, 222, .22), inset 0 0 18px rgba(155, 63, 222, .07);
    background-color: rgba(20, 15, 24, .94);
    transform: rotate(var(--card-active-angle)) scale(1.035);
  }
}

@keyframes orbitCardEnter {
  from {
    opacity: 0;
    filter: blur(2px);
    transform: translate3d(var(--card-enter-x), var(--card-enter-y), 0) scale(.985) rotate(var(--card-rest-angle));
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--card-rest-angle));
  }
}

@keyframes mobileOrbitCardAura {

  0%,
  100% {
    border-color: rgba(123, 47, 190, .3);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .38), 0 0 0 rgba(155, 63, 222, 0);
    transform: rotate(0) scale(1);
  }

  50% {
    border-color: rgba(192, 132, 252, .58);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .42), 0 0 16px rgba(155, 63, 222, .16);
    transform: rotate(.25deg) scale(1.012);
  }
}

@keyframes mockupImageDrift {

  0%,
  100% {
    transform: translateY(0) rotate(-0.15deg) scale(1);
  }

  50% {
    transform: translateY(-7px) rotate(0.2deg) scale(1.008);
  }
}

@keyframes laptopDepth {

  0%,
  100% {
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .34)) drop-shadow(0 0 0 rgba(155, 63, 222, 0));
  }

  50% {
    filter: drop-shadow(0 24px 26px rgba(0, 0, 0, .46)) drop-shadow(0 0 13px rgba(155, 63, 222, .2));
  }
}

@keyframes orbitRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes gentleSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 8px var(--purple-glow);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 20px var(--purple-glow);
    opacity: 0.6;
  }
}

/* ══ NEW SECTIONS ══ */

/* 2. FRANJA DE CAPACIDADES */
.capabilities-strip {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(14, 14, 14, 0.4);
}

.cap-item {
  flex: 1;
  padding: 3rem 2rem;
  text-align: center;
}

.cap-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-bright);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.cap-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cap-item p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

.cap-divider {
  width: 1px;
  background: var(--border);
}

/* 3. SOBRE NIX STUDIO */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.about-tag {
  background: rgba(123, 47, 190, 0.1);
  border: 1px solid rgba(123, 47, 190, 0.25);
  border-radius: 50px;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  color: rgba(192, 132, 252, 0.85);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-photo-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid rgba(177, 76, 250, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(177, 76, 250, 0.15), transparent 60%);
}

.about-photo-placeholder span {
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* 4. PROYECTOS COMPACTOS */
.projects-grid--compact .project-card--compact {
  min-height: auto;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}

.project-copy--compact {
  padding: 2.5rem;
}

.project-card--compact .project-screenshot>picture>img {
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-psr {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.psr-block strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.psr-block p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* 5. QUÉ CONSTRUIR */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.build-card {
  position: relative;
  background: #0E0E0E;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  cursor: none;
}

.build-card:hover {
  border-color: rgba(123, 47, 190, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.build-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
}

.build-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-soft);
  border: 1px solid rgba(123, 47, 190, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C084FC;
  margin-bottom: 1.5rem;
}

.build-icon svg {
  width: 24px;
  height: 24px;
}

.build-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.build-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   DIFERENCIADOR / NUESTRO ENFOQUE
   ═══════════════════════════════════════ */

#diferenciador {
  position: relative;
  padding: 7rem 4rem;
  overflow: hidden;
}

#diferenciador::before {
  content: '';
  position: absolute;
  top: 22%;
  left: 50%;
  width: 780px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 50, 208, 0.12),
    transparent 68%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.diff-header {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 4rem;
  text-align: center;
}

.diff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(177, 76, 250, 0.38);
  border-radius: 999px;
  background: rgba(138, 50, 208, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diff-eyebrow span {
  color: var(--purple-bright);
  filter: drop-shadow(0 0 8px var(--purple-glow));
}

.diff-header .section-title {
  max-width: 760px;
  margin: 0 auto 1.35rem;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.diff-header .section-title span {
  display: block;
  color: var(--purple-bright);
}

.diff-header .section-desc {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.75;
}

.differentiator-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1320px;
  margin: 0 auto 1.8rem;
}

.differentiator-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(138, 50, 208, 0.1),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(18, 17, 21, 0.98),
      rgba(10, 10, 12, 0.98)
    );
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.differentiator-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(177, 76, 250, 0.75),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.differentiator-card:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 76, 250, 0.38);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.38),
    0 0 30px rgba(138, 50, 208, 0.1);
}

.differentiator-card:hover::before {
  opacity: 1;
}

.differentiator-card--featured {
  border-color: rgba(177, 76, 250, 0.3);
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(177, 76, 250, 0.17),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(27, 15, 35, 0.98),
      rgba(12, 9, 17, 0.99)
    );
}

.differentiator-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.differentiator-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border: 1px solid rgba(177, 76, 250, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(177, 76, 250, 0.2),
      rgba(138, 50, 208, 0.08)
    );
  color: var(--purple-bright);
  box-shadow: inset 0 0 22px rgba(177, 76, 250, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.differentiator-card:hover .differentiator-card__icon {
  transform: rotate(-5deg) scale(1.06);
  box-shadow:
    inset 0 0 24px rgba(177, 76, 250, 0.13),
    0 0 22px rgba(138, 50, 208, 0.16);
}

.differentiator-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.differentiator-card__step {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.differentiator-card__step span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
}

.differentiator-card__step strong {
  color: var(--purple-bright);
  font-size: 0.82rem;
  font-weight: 700;
}

.differentiator-card h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.differentiator-card__description {
  min-height: 78px;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}

.differentiator-card__divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
}

.differentiator-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.differentiator-card li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.45;
}

.differentiator-card li::before {
  content: '✓';
  position: absolute;
  top: 0.03rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(177, 76, 250, 0.6);
  border-radius: 50%;
  color: var(--purple-bright);
  font-size: 0.58rem;
  font-weight: 700;
  box-shadow: 0 0 9px rgba(138, 50, 208, 0.14);
}

.differentiator-card__statement {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(177, 76, 250, 0.35);
  border-radius: 12px;
  background: rgba(138, 50, 208, 0.06);
}

.differentiator-card__statement > span {
  flex-shrink: 0;
  color: var(--purple-bright);
  font-size: 1.35rem;
  filter: drop-shadow(0 0 8px var(--purple-glow));
}

.differentiator-card__statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  line-height: 1.45;
}

.differentiator-card__statement strong {
  display: block;
  color: var(--purple-bright);
  font-weight: 700;
}

.differentiator-quote {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(177, 76, 250, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(138, 50, 208, 0.12),
      rgba(15, 13, 18, 0.92),
      rgba(138, 50, 208, 0.06)
    );
}

.differentiator-quote__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--purple-bright);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px var(--purple-glow));
}

.differentiator-quote p {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.differentiator-quote strong {
  color: var(--purple-bright);
  font-size: 0.98rem;
  font-weight: 700;
}

/* TABLET */
@media (max-width: 1000px) {
  #diferenciador {
    padding: 6rem 2rem;
  }

  .differentiator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .differentiator-card--featured {
    grid-column: 1 / -1;
    width: min(100%, 650px);
    justify-self: center;
  }
}

/* MÓVIL */
@media (max-width: 680px) {
  #diferenciador {
    padding: 4.5rem 1rem;
  }

  .diff-header {
    margin-bottom: 2.8rem;
  }

  .diff-header .section-title {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .diff-header .section-desc {
    font-size: 0.9rem;
  }

  .differentiator-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .differentiator-card,
  .differentiator-card--featured {
    grid-column: auto;
    width: 100%;
    min-height: auto;
    padding: 1.4rem;
  }

  .differentiator-card__description {
    min-height: auto;
  }

  .differentiator-quote {
    align-items: flex-start;
    padding: 1.2rem;
  }

  .differentiator-quote__icon {
    width: 42px;
    height: 42px;
    border-right: 0;
    font-size: 1.3rem;
  }

  .differentiator-quote p,
  .differentiator-quote strong {
    font-size: 0.82rem;
  }
}

@media (max-width: 430px) {
  .differentiator-card__top {
    align-items: flex-start;
  }

  .differentiator-card__icon {
    width: 54px;
    height: 54px;
  }

  .differentiator-card__icon svg {
    width: 24px;
    height: 24px;
  }
}
/* 8. CTA INTERMEDIO */
.cta-mid {
  padding: 0;
}

.cta-mid-inner {
  background:
    linear-gradient(145deg, rgba(138, 50, 208, 0.1), rgba(255, 255, 255, 0.025)),
    var(--card-bg);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border-purple);
  box-shadow: var(--shadow-card);
}

.cta-mid-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-mid-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 11. TECNOLOGÍAS */
.tech-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tech-content {
  max-width: 900px;
  margin: 0 auto;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
}

.tech-tag {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  cursor: none;
}

.tech-tag:hover {
  background: var(--purple-soft);
  border-color: rgba(123, 47, 190, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.tech-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.tech-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.tech-benefit svg {
  width: 18px;
  height: 18px;
  color: var(--purple-bright);
}

/* 12. RECURSOS */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #0E0E0E;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  cursor: none;
}

.article-card:hover {
  border-color: rgba(123, 47, 190, 0.4);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}

.article-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.article-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.article-arrow {
  align-self: flex-start;
  color: var(--gray);
  font-size: 1.2rem;
  transition: transform 0.2s, color 0.2s;
}

.article-card:hover .article-arrow {
  transform: translateX(4px);
  color: var(--purple-bright);
}

/* 14. PRODUCTOS NIX */
.nix-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nix-product-card#membership {
  margin: 0 !important;
}

/* ══ RESPONSIVE ══ */

@media (max-width: 1624px) {
  #oc2 {
    right: -150px;
  }
}

@media (max-width: 1500px) {
  #oc2 {
    right: -100px;
  }
}

@media (max-width: 1400px) {
  #oc2 {
    right: -70px;
  }
}

@media (max-width: 1360px) {
  #oc2 {
    right: -40px;
  }

  #oc1 {
    left: -40px;
  }

  .mockup-wrap {
    width: 53vw;
    left: 200px;
  }
}

@media (max-width: 1200px) {
  #oc2 {
    right: -20px;
  }

  #oc1 {
    left: -20px;
  }
}

/* TABLET */
@media (max-width: 1100px) {
  .valor-grid {
    grid-template-columns: 1fr 1fr;
  }

  #hero {
    padding: 5rem 2rem 3rem;
    gap: 1.5rem;
  }

  .orbit-stage {
    width: 100%;
    height: 460px;
  }

  .mockup-wrap {
    width: 48vw;
    left: 40%;
  }

  #oc1 {
    top: 5%;
    left: -5%;
  }

  #oc2 {
    top: 10%;
    right: -5%;
    left: auto;
  }

  #oc3 {
    bottom: 8%;
    right: 5%;
    left: auto;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    flex-direction: column;
    padding: 7rem 1.5rem 3rem;
    text-align: left;
    gap: 0.5rem;
    min-height: 100svh;
    max-height: none;
    padding-bottom: 1.5rem;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 0 auto 1.2rem;
  }

  .hero-actions {
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .btn-primary,
  .btn-ghost {
    width: auto !important;
    flex: 1;
    min-width: 0;
    text-align: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }

  .hero-proof {
    display: flex;
    justify-content: center;
    text-align: left;
  }

  /* Ocultar todo el hero-right en mobile */
  .hero-right {
    display: none;
  }

  .hero-scroll {
    bottom: 1rem;
  }

  /* Cards sueltas debajo del texto, sin animación, en fila */
  .orbit-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
    height: auto;
    position: static;
    margin: 0;
    padding: 0;
  }

  /* Ocultar mockup y anillos */
  .mockup-wrap {
    display: none;
  }

  .orbit-ring {
    display: none;
  }

  .orbit-glow {
    display: none;
  }

  /* Cards estáticas en fila */
  .orbit-card {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.82em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centra todo el contenido */
  }

  #oc1 {
    --card-enter-x: -18px;
    --card-enter-y: 0px;
    animation: orbitCardEnter .95s .18s cubic-bezier(.22, 1, .36, 1) both, mobileOrbitCardAura 5.8s 1.13s ease-in-out infinite;
  }

  #oc2 {
    --card-enter-x: 0px;
    --card-enter-y: 16px;
    animation: orbitCardEnter .95s .34s cubic-bezier(.22, 1, .36, 1) both, mobileOrbitCardAura 6.2s 1.29s ease-in-out infinite;
  }

  #oc3 {
    --card-enter-x: 18px;
    --card-enter-y: 0px;
    animation: orbitCardEnter .95s .26s cubic-bezier(.22, 1, .36, 1) both, mobileOrbitCardAura 6s 1.21s ease-in-out infinite;
  }

  .device-icons {
    justify-content: center;
  }

  /* Rápido arriba izquierda */
  #oc1 {
    grid-column: 1;
    grid-row: 1;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }



  /* Moderno arriba derecha — mismo tamaño que Rápido */
  #oc3 {
    grid-column: 2;
    grid-row: 1;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    justify-self: stretch;
    align-self: stretch;
  }


  /* Responsive abajo ancho completo */
  #oc2 {
    grid-column: 1 / -1;
    grid-row: 2;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .hero-right {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin: 0;
    padding: 0;
    min-height: unset !important;
  }

  .logos-label {
    padding: 0 1rem 0 1.5rem;
    font-size: 0.65rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  #problema {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .problema-cards {
    grid-template-columns: 1fr;
  }

  .card-purple {
    grid-column: 1;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  #publico {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .publico-visual {
    grid-template-columns: 1fr 1fr;
  }

  .valor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  #proceso {
    padding: 4rem 1.5rem;
  }

  .proceso-header {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }

  .proceso-transparencia,
  .proceso-trans {
    max-width: 100%;
  }

  .timeline-line {
    display: none;
  }

  .proceso-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .paso-dot {
    display: none;
  }

  .paso-arrow {
    display: none;
  }

  #faq {
    padding: 4rem 1.5rem;
  }

  #cta {
    padding: 5rem 1.5rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* MOBILE PEQUEÑO */
@media (max-width: 500px) {
  .valor-grid {
    grid-template-columns: 1fr;
  }

  .proceso-steps {
    grid-template-columns: 1fr;
  }

  .publico-visual {
    grid-template-columns: 1fr;
  }

  .stat-card.featured {
    grid-column: 1;
  }

  .orbit-card {
    width: 100%;
    max-width: 100%;
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  72% {
    transform: translateY(13px);
    opacity: 1;
  }

  100% {
    transform: translateY(17px);
    opacity: 0;
  }
}

@keyframes mouseBreath {

  0%,
  100% {
    transform: translateY(0) scale(.98);
    opacity: .72;
  }

  50% {
    transform: translateY(6px) scale(1.04);
    opacity: 1;
  }
}

@keyframes mockupGlowPulse {

  0%,
  100% {
    transform: scale(.96);
    opacity: .72;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* ══ FLUJO COMERCIAL NIX — 2026 ══ */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 11000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s, opacity .2s;
  font-weight: 700;
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

:where(section, [id]) {
  scroll-margin-top: 90px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #C084FC;
  outline-offset: 4px;
}

.hamburger {
  background: transparent;
  border: 0;
}

main>section> :not(canvas),
#membership> :not(.membership-glow) {
  position: relative;
  z-index: 4;
}

.logos-strip,
footer {
  position: relative;
  z-index: 4;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

/* Marquee: two identical, non-shrinking groups travel exactly one group width. */
.logos-strip {
  position: relative;
  padding: 0;
  min-height: 76px;
}

.logos-label {
  padding: 0 2rem 0 4rem;
}

.logos-track {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.logos-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  min-width: max-content;
  flex-shrink: 0;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 30s linear infinite !important;
  animation-play-state: running !important;
}

.logos-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.6rem;
  padding-right: 1.6rem;
}

.logos-group span {
  color: rgba(255, 255, 255, .42);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.logos-group i {
  color: var(--purple-bright);
  font-size: .65rem;
  font-style: normal;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Projects */
#proyectos {
  max-width: 1280px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  gap: 1.5rem;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  min-height: 520px;
  background: #0E0E0E;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 47, 190, .45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .5);
}

.project-card--membership {
  background: linear-gradient(135deg, rgba(123, 47, 190, .14), #0E0E0E 48%);
}

.project-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-category {
  color: #C084FC;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.project-copy h3,
.custom-project h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.project-copy>p,
.custom-project p {
  color: var(--gray);
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1rem;
  margin: 1.7rem 0;
}

.feature-list li {
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  padding-left: 1rem;
  position: relative;
}

.feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-bright);
  position: absolute;
  left: 0;
  top: .58em;
  box-shadow: 0 0 8px var(--purple-glow);
}

.text-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid rgba(155, 63, 222, .7);
  padding-bottom: .2rem;
}

.secondary-link {
  color: var(--gray);
  border-color: var(--border);
}

.project-actions {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.project-visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(123, 47, 190, .2), rgba(4, 4, 4, .9) 68%);
}

.project-mockup img {
  width: 105%;
  max-width: none;
  transform: translateX(4%);
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, .55));
}

.project-screenshot {
  padding-top: 36px;
}

.project-screenshot>picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-screenshot>picture>img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: left center;
  display: block;
  transition: transform .6s ease;
}

.project-card:hover .project-screenshot>picture>img {
  transform: scale(1.025);
}

.project-placeholder {
  margin: 2rem;
  border: 1px solid rgba(155, 63, 222, .22);
  border-radius: 18px;
  align-self: stretch;
}

.browser-chrome {
  height: 36px;
  position: absolute;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0 14px;
}

.browser-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
}

.placeholder-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  color: var(--gray);
  padding: 3rem;
}

.placeholder-mark img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  opacity: .2;
}

.placeholder-mark small {
  max-width: 260px;
  color: rgba(255, 255, 255, .3);
}

.custom-project {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(123, 47, 190, .3);
  background: linear-gradient(100deg, rgba(123, 47, 190, .18), rgba(255, 255, 255, .025));
  margin-top: 40px;
}

.custom-project h3 {
  font-size: 1.55rem;
}

.custom-project p {
  max-width: 730px;
}

/* Solutions */
#servicios {
  background: #080808;
}

#servicios .section-desc {
  margin: 0 auto 3.5rem;
}

.solution-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.solution-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(123, 47, 190, .35);
  background: var(--purple-soft);
  border-radius: 13px;
  display: grid;
  place-items: center;
}

.solution-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--purple-bright);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

.solution-tags span {
  padding: .32rem .65rem;
  border-radius: 30px;
  background: rgba(123, 47, 190, .09);
  border: 1px solid rgba(123, 47, 190, .18);
  color: rgba(192, 132, 252, .82);
  font-size: .7rem;
}

/* Needs and compact value */
#publico {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.needs-intro {
  position: relative;
}

.needs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.need-item {
  min-height: 150px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: #0E0E0E;
  border-radius: 16px;
  transition: .25s;
}

.need-item:hover {
  border-color: rgba(123, 47, 190, .4);
  transform: translateY(-3px);
}

.need-item span {
  color: var(--purple-bright);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.need-item p {
  margin-top: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
}

.value-compact {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(123, 47, 190, .28);
  background: linear-gradient(120deg, rgba(123, 47, 190, .14), #0E0E0E);
  border-radius: 20px;
}

.value-compact h3 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.value-compact p {
  color: var(--gray);
  max-width: 690px;
}

.value-compact ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  min-width: 270px;
}

.value-compact li {
  color: #C084FC;
  font-weight: 700;
  font-size: .82rem;
  padding: .55rem .8rem;
  background: var(--purple-soft);
  border-radius: 8px;
}

/* Membership */
#membership {
  margin: 2rem 4rem 5rem;
  padding: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border: 1px solid rgba(123, 47, 190, .35);
  border-radius: 28px;
  background: linear-gradient(135deg, #140B1C, #0B0B0B 55%, rgba(123, 47, 190, .12));
  overflow: hidden;
  position: relative;
}

.membership-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -180px;
  top: -250px;
  background: radial-gradient(circle, rgba(123, 47, 190, .34), transparent 68%);
}

.membership-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin: 2rem 0;
}

.membership-benefits li {
  color: rgba(255, 255, 255, .78);
  font-size: .85rem;
  padding-left: 1.2rem;
  position: relative;
}

.membership-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-bright);
  font-weight: 700;
}

.membership-segments {
  color: var(--gray);
  font-size: .84rem;
  border-left: 2px solid var(--purple);
  padding-left: 1rem;
  margin-bottom: 1.7rem;
}

.membership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.membership-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.membership-visual>img {
  width: 125%;
  margin-left: -8%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .65));
}

.membership-visual>.membership-dashboard {
  display: block;
  width: 112%;
  margin-left: -6%;
  border: 1px solid rgba(177, 76, 250, .3);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55), 0 0 35px rgba(138, 50, 208, .18);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.membership-dashboard>img {
  display: block;
  width: 100%;
  height: auto;
}

.membership-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px dashed rgba(155, 63, 222, .25);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mini-feature {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(123, 47, 190, .35);
  background: rgba(14, 14, 14, .9);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .45);
}

.mini-feature strong,
.mini-feature span {
  display: block;
}

.mini-feature strong {
  font-size: .82rem;
}

.mini-feature span {
  color: var(--gray);
  font-size: .7rem;
  margin-top: .2rem;
}

.paso-card h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .6rem;
}

/* Los conceptos del proceso se leen como viñetas, no como botones. */
.paso-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
  text-align: left;
  padding-left: .15rem;
}

.paso-tags span {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 0 0 .9rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
}

.paso-tags span::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 7px var(--purple-glow);
}

/* FAQ and CTA refinements */
.faq-item h3 {
  margin: 0;
}

#cta .section-desc {
  margin: 0 auto 2rem;
}

.cta-note {
  display: block;
  color: var(--gray);
  margin-top: 1rem;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1100px) {
  .project-card {
    grid-template-columns: 1fr 1fr;
  }

  #membership {
    margin-inline: 2rem;
    padding: 3.5rem 2.5rem;
    gap: 2rem;
  }

  .membership-visual>img {
    width: 115%;
  }
}

@media (max-width: 900px) {
  .mobile-menu a {
    font-size: 1.6rem;
  }

  .logos-strip {
    display: block;
    padding: .8rem 0;
  }

  .logos-label {
    display: block;
    padding: 0 1.5rem .65rem;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card .project-visual {
    grid-row: 1;
    min-height: 340px;
  }

  .project-placeholder {
    margin: 1rem;
  }

  .custom-project {
    align-items: flex-start;
    flex-direction: column;
  }

  #publico {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .needs-intro {
    position: static;
  }

  .value-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  #membership {
    grid-template-columns: 1fr;
    margin: 1rem 1.5rem 4rem;
  }

  .membership-visual {
    min-height: 320px;
  }

  .membership-visual>img {
    width: 100%;
    margin-left: 0;
  }

  .membership-visual>.membership-dashboard {
    width: 100%;
    margin-left: 0;
  }

  .membership-content {
    order: 1;
  }

  .membership-visual {
    order: 2;
  }
}

@media (max-width: 600px) {
  .hero-title br:nth-of-type(2) {
    display: none;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: auto !important;
    flex: 1 1 0;
    min-width: 0;
    padding: .78rem .55rem;
    font-size: clamp(.7rem, 3.3vw, .86rem);
    white-space: nowrap;
  }

  .proof-badge {
    align-items: flex-start;
  }

  .proof-text span {
    line-height: 1.45;
  }

  .feature-list,
  .membership-benefits,
  .needs-list {
    grid-template-columns: 1fr;
  }

  .project-card .project-visual {
    height: 520px;
    min-height: 0;
  }

  .project-screenshot>picture>img {
    min-height: 0;
    object-position: center top;
  }

  .project-copy {
    padding: 1.6rem;
  }

  .project-mockup img {
    width: 115%;
  }

  .custom-project {
    padding: 1.6rem;
  }

  .value-compact {
    padding: 1.6rem;
  }

  .value-compact ul {
    min-width: 0;
    width: 100%;
  }

  #membership {
    padding: 2.5rem 1.4rem;
    border-radius: 20px;
  }

  .membership-actions .btn-primary,
  .membership-actions .btn-ghost {
    width: 100% !important;
  }

  .mini-feature {
    right: -.5rem;
    bottom: 0;
  }

  .membership-visual>.membership-dashboard {
    max-height: 520px;
  }

  .membership-dashboard>img {
    height: 520px;
    object-fit: cover;
    object-position: center top;
  }

  .faq-q {
    font-size: .92rem;
    padding: 1.15rem;
  }

  .faq-a,
  .faq-item.open .faq-a {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

@media (max-width: 430px) {
  #hero {
    padding-inline: 1.1rem;
  }

  section {
    padding-inline: 1.1rem;
  }

  #membership {
    margin-inline: 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .logos-group {
    gap: 1.1rem;
    padding-right: 1.1rem;
  }

  .logos-group span {
    font-size: .74rem;
  }

  .project-card,
  .custom-project,
  .value-compact {
    border-radius: 16px;
  }
}

/* ══ MOTION SYSTEM — entradas editoriales y escalonadas ══ */
:is(.reveal, .reveal-left, .reveal-right) {
  transition:
    opacity 1.3s var(--reveal-delay, 0ms) cubic-bezier(.22, 1, .36, 1),
    transform 1.3s var(--reveal-delay, 0ms) cubic-bezier(.22, 1, .36, 1),
    filter 1.1s var(--reveal-delay, 0ms) ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

:is(.reveal, .reveal-left, .reveal-right).reveal-complete {
  --reveal-delay: 0ms !important;
}

@media (min-width: 901px) {
  .reveal-scale {
    transform: perspective(1200px) translate3d(0, 18px, 0) scale(.988) rotateX(.5deg);
    transform-origin: center bottom;
  }

  .reveal-card {
    transform: perspective(1000px) translate3d(0, 20px, 0) scale(.992) rotateX(1.5deg);
    transform-origin: center bottom;
  }

  .reveal-soft {
    transform: translate3d(0, 11px, 0) scale(.998);
    filter: blur(1.5px);
  }

  :is(.reveal-scale, .reveal-card, .reveal-soft).visible {
    transform: perspective(1000px) translate3d(0, 0, 0) scale(1) rotateX(0);
  }
}

@media (max-width: 900px) {
  :is(.reveal, .reveal-left, .reveal-right) {
    filter: none;
    transform: translate3d(0, 14px, 0) scale(.996);
    transition-duration: .9s;
  }

  :is(.reveal, .reveal-left, .reveal-right).visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .section-heading.reveal>*,
  .membership-content.reveal-left>* {
    filter: none;
  }
}

/* Los encabezados revelan su jerarquía en tres tiempos. */
.section-heading.reveal>*,
.membership-content.reveal-left>* {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(8px);
  transition: opacity 1.05s cubic-bezier(.22, 1, .36, 1), transform 1.05s cubic-bezier(.22, 1, .36, 1), filter .95s ease;
}

.section-heading.reveal.visible>*,
.membership-content.reveal-left.visible>* {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.section-heading.reveal.visible> :nth-child(2),
.membership-content.reveal-left.visible> :nth-child(2) {
  transition-delay: 90ms;
}

.section-heading.reveal.visible> :nth-child(3),
.membership-content.reveal-left.visible> :nth-child(3) {
  transition-delay: 170ms;
}

.membership-content.reveal-left.visible> :nth-child(4) {
  transition-delay: 230ms;
}

.membership-content.reveal-left.visible> :nth-child(5) {
  transition-delay: 285ms;
}

.membership-content.reveal-left.visible> :nth-child(6) {
  transition-delay: 340ms;
}

/* El producto destacado conserva profundidad interna. */
.membership-visual.reveal-right .membership-dashboard,
.membership-visual.reveal-right .mini-feature {
  opacity: 0;
  transform: translate3d(10px, 5px, 0) scale(.992);
  transition: opacity 1.2s .14s cubic-bezier(.22, 1, .36, 1), transform 1.3s .14s cubic-bezier(.22, 1, .36, 1);
}

.membership-visual.reveal-right.visible .membership-dashboard,
.membership-visual.reveal-right.visible .mini-feature {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.membership-visual.reveal-right .mini-feature {
  transition-delay: .38s;
}

/* Cada proyecto entra como una sola pieza: texto, marco e imagen sincronizados. */
.project-card.reveal {
  filter: none;
  transform: translate3d(0, 14px, 0) scale(.997);
  transition:
    opacity 1.4s var(--reveal-delay, 0ms) cubic-bezier(.22, 1, .36, 1),
    transform 1.4s var(--reveal-delay, 0ms) cubic-bezier(.22, 1, .36, 1),
    border-color .3s ease,
    box-shadow .3s ease;
}

.project-card.reveal.visible {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Micro-stagger interno: beneficios y criterios. */
.membership-content .membership-benefits li,
.value-compact li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.16, 1, .3, 1);
}

.membership-content.visible .membership-benefits li,
.value-compact.visible li {
  opacity: 1;
  transform: translateY(0);
}

.membership-content.visible .membership-benefits li:nth-child(2),
.value-compact.visible li:nth-child(2) {
  transition-delay: 70ms;
}

.membership-content.visible .membership-benefits li:nth-child(3),
.value-compact.visible li:nth-child(3) {
  transition-delay: 120ms;
}

.membership-content.visible .membership-benefits li:nth-child(4),
.value-compact.visible li:nth-child(4) {
  transition-delay: 170ms;
}

.membership-content.visible .membership-benefits li:nth-child(5) {
  transition-delay: 220ms;
}

.membership-content.visible .membership-benefits li:nth-child(6) {
  transition-delay: 270ms;
}

/* Conserva las respuestas hover después de terminar la entrada. */
.project-card.reveal.visible:hover {
  transform: translateY(-5px);
}

.servicio-card.reveal.visible:hover {
  transform: translateY(-6px);
}

.need-item.reveal.visible:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-left {
    animation-name: heroPanelFromLeft !important;
    animation-duration: 1s !important;
    animation-iteration-count: 1 !important;
  }

  .hero-left :is(.hero-badge, .hero-title, .hero-sub, .hero-actions, .hero-action-note, .hero-proof) {
    animation-name: heroTextFade !important;
    animation-duration: .45s !important;
    animation-iteration-count: 1 !important;
    filter: none;
    transform: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 0;
    filter: none !important;
    transform: none !important;
    transition: opacity .8s ease !important;
  }

  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible {
    opacity: 1;
  }

  .section-heading.reveal>*,
  .membership-content.reveal-left>*,
  .membership-content .membership-benefits li,
  .value-compact li {
    opacity: 1;
    filter: none;
    transform: none;
  }

  /* El indicador conserva su movimiento porque comunica una acción necesaria. */
  .hero-scroll {
    transition:
      opacity .65s cubic-bezier(.22, 1, .36, 1),
      transform .65s cubic-bezier(.22, 1, .36, 1),
      visibility 0s linear 0s !important;
  }

  .hero-scroll.is-hidden {
    transition:
      opacity .65s cubic-bezier(.22, 1, .36, 1),
      transform .65s cubic-bezier(.22, 1, .36, 1),
      visibility 0s linear .65s !important;
  }

  .hero-scroll svg {
    animation-duration: 2.8s !important;
    animation-iteration-count: infinite !important;
  }

  .hero-scroll circle {
    animation-duration: 2.2s !important;
    animation-iteration-count: infinite !important;
  }

  /* La pasarela permanece funcional, pero avanza más despacio. */
  .logos-marquee {
    animation: marquee-scroll 60s linear infinite !important;
    animation-play-state: running !important;
  }
}

/* Las cards conservan el pulso visual en escritorio, sin cambiar de posición. */
@media (min-width: 901px) and (prefers-reduced-motion: reduce) {
  .orbit-card {
    animation-duration: 1.35s, 6s !important;
    animation-iteration-count: 1, infinite !important;
  }

  .mockup-wrap::before {
    animation-duration: 4s !important;
    animation-iteration-count: infinite !important;
  }

  .mockup-screen {
    animation-duration: .8s !important;
    animation-iteration-count: 1 !important;
  }

  .mockup-screen img {
    animation-duration: 5.5s, 7s !important;
    animation-iteration-count: infinite, infinite !important;
  }

  .orbit-ring {
    animation-duration: 36s !important;
    animation-iteration-count: infinite !important;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .orbit-card {
    animation-duration: .95s, 6s !important;
    animation-iteration-count: 1, infinite !important;
  }
}

/* Project intake modal */
body.project-intake-open {
  overflow: hidden;
}

.project-intake[hidden] {
  display: none;
}

.project-intake {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.project-intake.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-intake__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(123, 47, 190, .12), transparent 45%),
    rgba(3, 2, 8, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
}

.project-intake.is-open .project-intake__backdrop {
  opacity: 1;
}

.project-intake__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  overflow: hidden;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 1px solid rgba(177, 76, 250, .36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(177, 76, 250, .2), transparent 32%),
    linear-gradient(145deg, rgba(20, 11, 28, .98), rgba(10, 10, 10, .98) 58%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .72), 0 0 45px rgba(138, 50, 208, .18);
  opacity: 0;
  will-change: opacity, transform;
}

.project-intake.is-open .project-intake__dialog {
  opacity: 1;
}

.project-intake.is-open .project-intake__header,
.project-intake.is-open .project-intake__progress,
.project-intake.is-open .project-intake__status,
.project-intake.is-open .project-intake__form,
.project-intake.is-open .project-intake__privacy,
.project-intake.is-open .project-intake__actions:not([hidden]) {
  animation: intakeContentEnter .34s cubic-bezier(.16, 1, .3, 1) both;
}

.project-intake.is-open .project-intake__progress {
  animation-delay: .04s;
}

.project-intake.is-open .project-intake__form {
  animation-delay: .07s;
}

.project-intake.is-open .project-intake__actions:not([hidden]) {
  animation-delay: .1s;
}

.project-intake__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  cursor: none;
  transition: border-color .2s, background .2s, transform .2s;
}

.project-intake__close:hover {
  border-color: rgba(177, 76, 250, .5);
  background: rgba(177, 76, 250, .12);
  transform: translateY(-1px);
}

.project-intake__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.project-intake__header {
  padding: .2rem 3.2rem 0 0;
}

.project-intake__eyebrow {
  display: inline-block;
  margin-bottom: .32rem;
  color: var(--purple-bright);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.project-intake__header h2 {
  max-width: 620px;
  font-size: clamp(1.22rem, 2.25vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.project-intake__header p,
.project-intake__step>p {
  max-width: 620px;
  color: var(--gray);
  line-height: 1.38;
  font-size: .82rem;
}

.project-intake__progress {
  display: grid;
  gap: .25rem;
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  font-weight: 700;
}

.project-intake__progress div {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}

.project-intake__progress i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  box-shadow: 0 0 18px var(--purple-glow);
  transition: width .26s ease;
}

.project-intake__status {
  min-height: 0;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--project-error);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.project-intake__status[hidden],
.project-intake__status:empty {
  display: none;
}

.project-intake__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: clip;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 63, 222, .45) transparent;
  padding-right: .15rem;
}

body.project-intake-open .mockup-wrap,
body.project-intake-open .mockup-screen,
body.project-intake-open .mockup-screen img,
body.project-intake-open .orbit-card,
body.project-intake-open .orbit-ring,
body.project-intake-open .orbit-glow {
  animation-play-state: paused !important;
}

body.project-intake-open .hero-scroll {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.project-intake-open .skip-link {
  transform: translateY(-160%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.project-intake__body::-webkit-scrollbar {
  width: 6px;
}

.project-intake__body::-webkit-scrollbar-track {
  background: transparent;
}

.project-intake__body::-webkit-scrollbar-thumb {
  background: rgba(155, 63, 222, .4);
  border-radius: 999px;
}

.project-intake__body::-webkit-scrollbar-thumb:hover {
  background: rgba(155, 63, 222, .62);
}

.project-intake__form {
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: visible;
  padding-right: 0;
}

.project-intake__step {
  display: none;
  opacity: 0;
  transform: translateX(10px);
}

.project-intake__step[hidden] {
  display: none;
}

.project-intake__step.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.project-intake__step.is-entering {
  animation: projectStepIn .22s cubic-bezier(.22, 1, .36, 1) both;
}

.project-intake__step.is-entering.is-backward {
  animation-name: projectStepInBack;
}

.project-intake__step.is-exiting {
  display: block;
  animation: projectStepOut .18s ease both;
}

.project-intake__step.is-exiting.is-backward {
  animation-name: projectStepOutBack;
}

.project-intake__step h3 {
  margin-bottom: .25rem;
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  line-height: 1.2;
}

.project-intake__service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin-top: .48rem;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 1px;
  transform-origin: center;
}

.project-intake__service-grid.is-invalid {
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.project-intake__service-grid.is-invalid .project-intake__service-card {
  border-color: var(--project-error);
  background:
    linear-gradient(145deg,
      rgba(255, 77, 109, .055),
      rgba(255, 255, 255, .025));
  box-shadow:
    0 0 0 1px rgba(255, 77, 109, .14),
    0 0 18px rgba(255, 77, 109, .1);
}

.project-intake__service-grid.is-invalid .project-intake__service-card:hover {
  border-color: #ff5d79;
  box-shadow:
    0 0 0 1px rgba(255, 77, 109, .18),
    0 0 22px rgba(255, 77, 109, .14);
}

.project-intake__service-grid.is-invalid .project-intake__service-card:has(input:focus-visible) {
  outline: 2px solid rgba(255, 255, 255, .9);
  outline-offset: 3px;
}

.project-intake__service-card {
  position: relative;
  min-height: 96px;
  display: grid;
  gap: .25rem;
  align-content: start;
  padding: .58rem .62rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
  color: var(--white);
  transition: border-color .22s, background .22s, box-shadow .22s, transform .22s;
}

.project-intake__service-card:hover {
  border-color: rgba(177, 76, 250, .42);
  background: rgba(177, 76, 250, .07);
  transform: translateY(-2px);
}

.project-intake__service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-intake__service-card:has(input:focus-visible),
.project-intake__goal-chip:has(input:focus-visible),
.project-intake__field input:focus-visible,
.project-intake__field textarea:focus-visible,
.project-intake button:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 3px;
}

.project-intake__service-card:has(input:checked) {
  border-color: rgba(177, 76, 250, .8);
  background: linear-gradient(145deg, rgba(138, 50, 208, .2), rgba(255, 255, 255, .04));
  box-shadow: 0 0 28px rgba(138, 50, 208, .22);
}

.project-intake__service-card>strong {
  font-size: .84rem;
}

.project-intake__service-card>span:not(.project-intake__service-icon) {
  color: var(--gray);
  font-size: .68rem;
  line-height: 1.28;
}

.project-intake__service-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(177, 76, 250, .34);
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple-bright);
}

.project-intake__service-icon svg,
.project-intake__service-card i svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-intake__service-card i {
  position: absolute;
  top: .62rem;
  right: .62rem;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-bright);
  color: var(--white);
  opacity: 0;
  transform: scale(.78);
  transition: opacity .18s, transform .18s;
}

.project-intake__service-card:has(input:checked) i {
  opacity: 1;
  transform: scale(1);
}

.project-intake__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .42rem .58rem;
  margin-top: .45rem;
}

.project-intake__fields--compact {
  gap: .42rem .58rem;
}

.project-intake__field {
  display: grid;
  gap: .2rem;
  min-width: 0;
  border: 0;
  align-content: start;
  color: rgba(255, 255, 255, .86);
  font-size: .76rem;
  font-weight: 700;
}

.project-intake__field.is-invalid,
.project-intake__field.has-error {
  color: #ff8ca0;
}

.project-intake__field--full {
  grid-column: 1 / -1;
}

.project-intake__field input,
.project-intake__field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  padding: .45rem .62rem;
  resize: vertical;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.project-intake__field textarea {
  min-height: 96px;
  max-height: 160px;
}

.project-intake__field textarea[name="additionalDetails"] {
  min-height: 80px;
  max-height: 140px;
}

.project-intake__field input::placeholder,
.project-intake__field textarea::placeholder {
  color: rgba(255, 255, 255, .34);
}

.project-intake__field input:focus,
.project-intake__field textarea:focus {
  border-color: rgba(177, 76, 250, .58);
  background: rgba(255, 255, 255, .065);
  box-shadow: 0 0 0 4px rgba(138, 50, 208, .12);
  outline: none;
}

.project-intake__field.is-invalid input,
.project-intake__field.is-invalid textarea,
.project-intake__field.has-error input,
.project-intake__field.has-error textarea {
  border-color: var(--project-error);
  box-shadow: 0 0 0 3px var(--project-error-soft), 0 0 18px rgba(255, 77, 109, .1);
}

.project-intake__field legend {
  margin-bottom: .12rem;
}

.project-intake__field small {
  color: var(--gray);
  font-weight: 400;
}

.project-intake__goal-list {
  display: flex;
  flex-wrap: wrap;
  gap: .28rem;
  margin-top: .25rem;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 1px;
}

.project-intake__goal-list.is-invalid {
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.project-intake__goal-list.is-invalid .project-intake__goal-chip {
  border-color: var(--project-error, #ff4d6d);
  background: rgba(255, 77, 109, .055);
  box-shadow:
    0 0 0 1px rgba(255, 77, 109, .13),
    0 0 14px rgba(255, 77, 109, .08);
}

.project-intake__goal-chip {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .78);
  transition: border-color .2s, background .2s, color .2s;
}

.project-intake__goal-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-intake__goal-chip span {
  padding: .32rem .56rem;
  font-size: .7rem;
  line-height: 1.25;
}

.project-intake__goal-chip:hover,
.project-intake__goal-chip:has(input:checked) {
  border-color: rgba(177, 76, 250, .62);
  background: rgba(138, 50, 208, .16);
  color: var(--white);
}

.project-intake__goal-list.is-invalid .project-intake__goal-chip:hover {
  border-color: #ff5d79;
  background: rgba(255, 77, 109, .075);
  box-shadow:
    0 0 0 1px rgba(255, 77, 109, .17),
    0 0 18px rgba(255, 77, 109, .11);
}

.project-intake__goal-list.is-invalid .project-intake__goal-chip:has(input:checked) {
  border-color: var(--project-error, #ff4d6d);
  background: rgba(255, 77, 109, .055);
  box-shadow:
    0 0 0 1px rgba(255, 77, 109, .13),
    0 0 14px rgba(255, 77, 109, .08);
}

.project-intake__goal-list.is-invalid .project-intake__goal-chip:has(input:focus-visible) {
  outline: 2px solid rgba(255, 255, 255, .9);
  outline-offset: 3px;
}

.project-intake__error {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  color: var(--project-error);
  transform-origin: center;
}

.project-intake__error[hidden] {
  display: none;
}

.project-intake__desktop-result {
  width: min(100%, 440px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(177, 76, 250, .2);
  border-radius: 18px;
  background:
    linear-gradient(145deg,
      rgba(177, 76, 250, .07),
      rgba(255, 255, 255, .025));
  text-align: center;
}

.project-intake__desktop-result[hidden] {
  display: none;
}

.project-intake__desktop-result h3 {
  margin: 4px 0 6px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

.project-intake__desktop-result p {
  max-width: 360px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.5;
}

.project-intake__qr {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 22px rgba(177, 76, 250, .16);
}

.project-intake__qr img,
.project-intake__qr canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.project-intake__qr-error {
  color: #FF9CAF;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.project-intake__desktop-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 13px;
}

.project-intake__desktop-whatsapp>span {
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  line-height: 1.4;
}

.project-intake__whatsapp-link {
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: var(--purple-bright);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: none;
}

.project-intake__whatsapp-link:hover {
  color: #d6a0ff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-intake__privacy {
  color: rgba(255, 255, 255, .46);
  font-size: .68rem;
}

.project-intake__actions {
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: .45rem;
  padding-top: .28rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: transparent;
}

.project-intake__actions[hidden] {
  display: none;
}

.project-intake__result-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.project-intake__result-actions .project-intake__link-button+.project-intake__link-button::before {
  content: '·';
  margin-right: .35rem;
  color: rgba(255, 255, 255, .32);
}

.project-intake__actions .btn-primary,
.project-intake__actions .btn-ghost {
  min-height: 44px;
  padding: .52rem 1.15rem;
  cursor: none;
}

.project-intake__link-button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--gray);
  font: inherit;
  font-weight: 700;
  cursor: none;
  transition: color .2s;
}

.project-intake__link-button:hover {
  color: var(--white);
}

@keyframes projectStepIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes projectStepInBack {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes projectStepOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-10px);
  }
}

@keyframes projectStepOutBack {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(10px);
  }
}

@keyframes intakeContentEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .project-intake {
    padding: .5rem;
    align-items: center;
  }

  .project-intake__dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 20px;
  }

  .project-intake__fields {
    grid-template-columns: 1fr;
  }

  .project-intake__service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }

  .project-intake__form {
    overflow: visible;
  }

  .project-intake__qr {
    width: min(190px, 72vw);
  }

  .project-intake__service-card {
    min-height: 104px;
    padding: .52rem;
  }

  .project-intake__service-icon {
    width: 28px;
    height: 28px;
  }

  .project-intake__service-card>span:not(.project-intake__service-icon) {
    font-size: .66rem;
  }

  .project-intake__actions {
    justify-content: stretch;
  }

  .project-intake__actions .btn-primary,
  .project-intake__actions .btn-ghost,
  .project-intake__link-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .project-intake__dialog {
    padding: 1.35rem .72rem .82rem;
  }

  .project-intake__header {
    padding-right: 2.7rem;
  }

  .project-intake__service-card {
    min-height: 98px;
  }

  .project-intake__goal-chip {
    flex: 1 1 calc(50% - .36rem);
  }
}

/* Modal secundario para mostrar el QR */
.project-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.project-qr-modal[hidden] {
  display: none;
}

.project-qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.project-qr-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(177, 76, 250, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg,
      rgba(24, 18, 30, 0.98),
      rgba(12, 12, 15, 0.98));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.58),
    0 0 45px rgba(138, 50, 208, 0.12);
}

.project-qr-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  cursor: none;
}

.project-qr-modal__close:hover {
  border-color: rgba(177, 76, 250, 0.45);
  background: rgba(177, 76, 250, 0.1);
}

.project-qr-modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.project-qr-modal .project-intake__desktop-result {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.project-qr-modal .project-intake__desktop-result-copy {
  padding-right: 34px;
  margin-bottom: 16px;
}

.project-qr-modal .project-intake__desktop-result-copy h3 {
  margin: 4px 0 6px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.project-qr-modal .project-intake__desktop-result-copy p {
  max-width: 340px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.5;
}

.project-qr-modal .project-intake__qr {
  width: 190px;
  height: 190px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
}

.project-qr-modal .project-intake__qr img,
.project-qr-modal .project-intake__qr canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.project-qr-modal .project-intake__desktop-whatsapp {
  margin-top: 14px;
}

@media (max-width: 600px) {
  .project-qr-modal {
    padding: 16px;
  }

  .project-qr-modal__dialog {
    width: 100%;
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .project-qr-modal .project-intake__qr {
    width: 176px;
    height: 176px;
  }
}

/* ══ PASO 3 COMPACTO SIN SCROLL EN PC ══ */
@media (min-width: 769px) {
  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) {
    max-height: calc(100dvh - 32px);
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__header {
    margin-bottom: 10px;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__header h2 {
    margin-bottom: 4px;
    font-size: 1.55rem;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__header p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__progress {
    margin-bottom: 10px;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__body {
    overflow: hidden !important;
    max-height: none !important;
    min-height: 0;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__form {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .project-intake__step[data-step="3"] {
    overflow: visible !important;
    padding: 0;
  }

  .project-intake__step[data-step="3"]>h3 {
    margin-bottom: 2px;
    font-size: 1.15rem;
  }

  .project-intake__step[data-step="3"]>p {
    margin-bottom: 9px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .project-intake__step[data-step="3"] .project-intake__fields--compact {
    display: grid;
    gap: 8px;
  }

  .project-intake__step[data-step="3"] fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .project-intake__step[data-step="3"] .project-intake__goal-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    max-height: none !important;
    overflow: visible !important;
  }

  .project-intake__step[data-step="3"] .project-intake__goal-chip {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .project-intake__step[data-step="3"] .project-intake__field {
    gap: 4px;
    font-size: 0.76rem;
  }

  .project-intake__step[data-step="3"] input[type="text"] {
    min-height: 38px;
    height: 38px;
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  .project-intake__step[data-step="3"] textarea {
    min-height: 46px;
    height: 46px;
    max-height: 46px;
    padding: 8px 11px;
    font-size: 0.78rem;
    line-height: 1.3;
    resize: none;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__privacy {
    margin-top: 8px;
    margin-bottom: 7px;
    font-size: 0.68rem;
  }

  .project-intake__dialog:has(.project-intake__step[data-step="3"].is-active) .project-intake__actions {
    padding-top: 8px;
  }
}

/* ══ PASO 3 MÁS ORDENADO EN MÓVIL ══ */
@media (max-width: 768px) {
  .project-intake__step[data-step="3"] .project-intake__goal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-height: none !important;
    overflow: visible !important;
  }

  .project-intake__step[data-step="3"] .project-intake__goal-chip {
    min-height: 40px;
    padding: 7px 8px;
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .project-intake__step[data-step="3"]>h3 {
    margin-bottom: 2px;
    font-size: 1.05rem;
  }

  .project-intake__step[data-step="3"]>p {
    margin-bottom: 8px;
    font-size: 0.75rem;
  }

  .project-intake__step[data-step="3"] .project-intake__fields--compact {
    gap: 8px;
  }

  .project-intake__step[data-step="3"] input[type="text"] {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .project-intake__step[data-step="3"] textarea {
    min-height: 60px;


    padding: 8px 10px;
    font-size: 0.76rem;
    resize: none;
  }
}

/* ══ NEW SECTIONS RESPONSIVE ══ */

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .build-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentiator-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentiator-card--featured {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .capabilities-strip {
    flex-direction: column;
  }

  .cap-divider {
    width: 100%;
    height: 1px;
  }

  .cap-item {
    padding: 2rem 1.5rem;
  }

  .projects-grid--compact .project-card--compact {
    grid-template-columns: 1fr;
  }

  .project-copy--compact {
    padding: 1.6rem;
  }

  .project-card--compact .project-visual {
    min-height: 340px;
  }

  .cta-mid-inner {
    padding: 3rem 1.5rem;
    margin: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .differentiator-quote {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .differentiator-quote p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .build-grid {
    grid-template-columns: 1fr;
  }

  .differentiator-grid {
    grid-template-columns: 1fr;
  }

  .differentiator-card--featured {
    grid-column: auto;
  }

  .differentiator-card {
    padding: 2rem 1.5rem;
  }

  .differentiator-card__number {
    font-size: 6rem;
    top: -5px;
    right: 0px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .tech-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* VISUAL SYSTEM COHESION */
main > section {
  position: relative;
  padding-block: var(--section-space-desktop);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}



main > section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(18, 17, 21, 0.22), rgba(10, 10, 10, 0));
}

main > section > * {
  position: relative;
  z-index: 2;
}

#hero,
#cta-mid,
#cta {
  border-top: 0;
}

#hero {
  background: var(--black);
}

.section-heading,
.solutions-heading,
.diff-header,
.tech-header {
  max-width: 760px;
  margin-bottom: 3.25rem;
}

.section-heading {
  margin-inline: 0;
}

#proyectos .section-heading,
#soluciones-digitales .section-heading,
#recursos .section-heading,
#productos-nix .section-heading,
.solutions-heading,
.diff-header,
.tech-header {
  margin-inline: auto;
  text-align: center;
}

.section-label,
.diff-eyebrow,
.project-category,
.article-tag,
.need-item__category {
  color: #c995ff;
  letter-spacing: 0.13em;
}

.section-label {
  margin-bottom: 0.85rem;
}

.diff-eyebrow {
  background: rgba(138, 50, 208, 0.065);
  border-color: var(--border-purple);
  color: var(--text-secondary);
}

.section-title,
.diff-header .section-title,
#servicios .section-title,
.needs-intro .section-title,
#cta .section-title {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-desc,
.diff-header .section-desc,
#servicios .section-desc,
.needs-intro .section-desc {
  max-width: 680px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.72;
}

.section-heading .section-desc,
.solutions-heading .section-desc,
.diff-header .section-desc,
.tech-header .section-desc {
  margin-inline: auto;
}

#sobre,
#proceso,

#proyectos,
#servicios,
#diferenciador,
#publico,
#recursos,
#faq,
#productos-nix {
  overflow: hidden;
}

#servicios,
#diferenciador {
  padding-block: var(--section-space-desktop);
}

#servicios::before,
#diferenciador::before,
#publico::before,
#cta::before,
.valor-bg-glow,
.membership-glow {
  opacity: 0.58;
}

.card-dark,
.project-card,
.custom-project,
.build-card,
.servicio-card,
.differentiator-card,
.differentiator-quote,
.need-item,
.value-compact,
.proceso-transparencia,
.proceso-trans,
.paso-card,
.tech-tag,
.article-card,
.faq-item,
#membership,
.proof-badge,
.orbit-card,
.float-card,
.mini-feature {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
}

.project-card--membership,
.differentiator-card--featured,
.need-item--featured,
#membership {
  border-color: var(--border-purple);
  background:
    radial-gradient(circle at 82% 0%, rgba(138, 50, 208, 0.12), transparent 38%),
    var(--card-bg);
}

.card-dark:hover,
.project-card:hover,
.build-card:hover,
.servicio-card:hover,
.differentiator-card:hover,
.need-item:hover,
.paso:hover .paso-card,
.tech-tag:hover,
.article-card:hover,
.faq-item.open,
.custom-project:hover {
  transform: translateY(-5px);
  border-color: var(--border-purple);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.38),
    var(--glow-soft);
}

.faq-item.open,
.tech-tag:hover {
  transform: none;
}

.card-purple,
.custom-project,
.differentiator-quote,
.value-compact,
.cta-mid-inner {
  background:
    linear-gradient(145deg, rgba(138, 50, 208, 0.1), rgba(255, 255, 255, 0.025)),
    var(--card-bg);
  border-color: var(--border-purple);
}

.cta-mid {
  padding-block: 3rem;
  background: transparent;
}

.cta-mid-inner {
  border-radius: calc(var(--radius-card) + 2px);
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(138, 50, 208, 0.12);
}

.btn-primary,
.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  box-shadow: 0 16px 36px rgba(138, 50, 208, 0.26);
}

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 20px 42px rgba(138, 50, 208, 0.34) !important;
  transform: translateY(-2px) !important;
}

.btn-ghost {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.solution-icon,
.build-icon,
.differentiator-card__icon,
.need-item__icon,
.trans-icon,
.paso-icon,
.paso-icon-circle,
.proof-icon,
.project-intake__service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(177, 76, 250, 0.28);
  border-radius: 13px;
  background: rgba(138, 50, 208, 0.08);
  color: #c995ff;
  box-shadow: none;
}

.differentiator-card__icon,
.need-item__icon,
.paso-icon,
.paso-icon-circle {
  border-radius: 13px;
}

.solution-icon svg,
.build-icon svg,
.differentiator-card__icon svg,
.need-item__icon svg,
.project-intake__service-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.65;
}

.about-tag,
.solution-tags span,
.paso-tags span,
.tech-tag,
.need-item__badge,
.value-compact li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

.about-tag:hover,
.solution-tags span:hover,
.tech-tag:hover,
.need-item__badge:hover {
  border-color: var(--border-purple);
  color: rgba(255, 255, 255, 0.76);
}

.solution-tags span,
.about-tag {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.paso-tags span {
  border: 0;
  background: transparent;
  border-radius: 0;
}

#publico {
  width: min(1320px, calc(100% - 8rem));
  max-width: none;
  padding-block: var(--section-space-desktop);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.65fr);
  gap: 3rem;
}

#publico .needs-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.need-item {
  min-height: 260px;
}

.need-item--featured {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(138, 50, 208, 0.1);
}

.need-item__featured-label {
  background: rgba(138, 50, 208, 0.22);
  border-left: 1px solid var(--border-purple);
  border-bottom: 1px solid var(--border-purple);
  box-shadow: none;
}

.project-visual {
  background:
    radial-gradient(circle at 50% 35%, rgba(138, 50, 208, 0.13), transparent 58%),
    var(--surface-1);
}

#membership {
  border-radius: calc(var(--radius-card) + 6px);
}

.membership-visual > .membership-dashboard,
.project-screenshot > picture > img {
  border-color: var(--border-purple);
}

#faq {
  max-width: 860px;
  padding-block: var(--section-space-desktop);
}

.faq-q {
  background: transparent;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.035);
}

.faq-a {
  background: transparent;
  color: var(--text-secondary);
}

#cta {
  padding-block: calc(var(--section-space-desktop) + 1rem);
  background:
    radial-gradient(circle at 50% 48%, rgba(138, 50, 208, 0.18), transparent 34rem),
    var(--black);
}

#cta .section-desc {
  max-width: 640px;
}

footer {
  background: var(--surface-1);
}

@media (max-width: 1200px) {
  main > section,
  #servicios,
  #diferenciador,
  #publico,
  #faq {
    padding-block: var(--section-space-tablet);
  }

  #publico {
    width: min(100% - 4rem, 1080px);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  main > section,
  #servicios,
  #diferenciador,
  #publico,
  #proceso,
  #faq {
    padding-block: var(--section-space-tablet);
  }

  .section-heading,
  .solutions-heading,
  .diff-header,
  .tech-header {
    margin-bottom: 2.5rem;
  }

  #publico .needs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  main > section,
  #servicios,
  #diferenciador,
  #publico,
  #proceso,
  #faq {
    padding-block: var(--section-space-mobile);
  }

  main > section {
    padding-inline: 1.1rem;
  }

  .section-title,
  .diff-header .section-title,
  #servicios .section-title,
  .needs-intro .section-title,
  #cta .section-title {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .section-desc,
  .diff-header .section-desc,
  #servicios .section-desc,
  .needs-intro .section-desc {
    font-size: 0.94rem;
  }

  #publico {
    width: min(100% - 2.2rem, 520px);
  }

  #publico .needs-list {
    grid-template-columns: 1fr;
  }

  .need-item {
    min-height: auto;
  }

  .cta-mid {
    padding-block: 2rem;
  }

  .cta-mid-inner {
    margin-inline: 1.1rem;
    padding: 2.5rem 1.25rem;
  }

  .solution-icon,
  .build-icon,
  .differentiator-card__icon,
  .need-item__icon,
  .trans-icon,
  .paso-icon,
  .paso-icon-circle,
  .proof-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  main > section {
    padding-inline: 1rem;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 44px;
    padding-inline: 1rem;
  }

  .project-card,
  .build-card,
  .servicio-card,
  .differentiator-card,
  .need-item,
  .paso-card,
  .article-card,
  .faq-item,
  #membership {
    border-radius: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SISTEMA DE FONDO CONTINUO — NIX ARC
   Corrige círculos visibles y fondos cortados entre secciones
   ═══════════════════════════════════════════════════════════ */

/*
  El fondo decorativo vive únicamente en body.
  Se utilizan elipses muy amplias y de baja opacidad para evitar
  manchas circulares sólidas y cortes entre secciones.
*/
html {
  background: #09090b;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: #09090b;
  background-image:
    radial-gradient(
      ellipse 95% 28% at 72% 4%,
      rgba(138, 50, 208, 0.105) 0%,
      rgba(138, 50, 208, 0.045) 36%,
      transparent 74%
    ),
    radial-gradient(
      ellipse 82% 22% at 15% 25%,
      rgba(177, 76, 250, 0.055) 0%,
      rgba(138, 50, 208, 0.025) 42%,
      transparent 76%
    ),
    radial-gradient(
      ellipse 92% 24% at 88% 51%,
      rgba(138, 50, 208, 0.06) 0%,
      rgba(138, 50, 208, 0.022) 44%,
      transparent 78%
    ),
    radial-gradient(
      ellipse 88% 22% at 18% 77%,
      rgba(177, 76, 250, 0.045) 0%,
      rgba(138, 50, 208, 0.018) 45%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 100% 26% at 62% 97%,
      rgba(138, 50, 208, 0.06) 0%,
      rgba(138, 50, 208, 0.02) 44%,
      transparent 80%
    ),
    linear-gradient(
      180deg,
      #09090b 0%,
      #0b090e 21%,
      #09090b 43%,
      #0b090e 67%,
      #09090b 100%
    );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: scroll;
}

/*
  Las secciones no pintan fondos grandes propios.
  Se mantienen intactos los colores de cards, botones y componentes.
*/
main,
main > section,
.capabilities-strip {
  background-color: transparent !important;
}

main > section:not(#hero) {
  position: relative;
  isolation: isolate;
}

/* Elimina únicamente las manchas circulares grandes de sección */
#servicios {
  background-image: none !important;
}

#publico::before,
#diferenciador::before,
#cta::before {
  content: none !important;
  display: none !important;
}

.valor-bg-glow,
.membership-glow {
  display: none !important;
}

/*
  Algunas versiones del CSS añaden fondos radiales grandes a estas
  secciones. Se anulan sin modificar las tarjetas internas.
*/
#sobre,
#proyectos,
#soluciones-digitales,
#servicios,
#diferenciador,
#cta-mid,
#publico,
#proceso,
#tecnologias,
#recursos,
#faq,
#productos-nix,
#membership,
#cta {
  background-image: none !important;
  background-color: transparent !important;
}

/*
  Separadores sutiles. No forman bloques ni rectángulos de color.
*/
main > section:not(#hero)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(1180px, calc(100% - 64px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.045) 28%,
    rgba(177, 76, 250, 0.085) 50%,
    rgba(255, 255, 255, 0.045) 72%,
    transparent 100%
  );
  pointer-events: none;
}

/*
  No añadimos el separador a las secciones donde un pseudo-elemento
  visual forma parte importante del componente.
*/
#hero::after,
#cta-mid::after {
  content: none !important;
}

/*
  Los contenedores destacados conservan su fondo propio,
  porque son componentes y no fondos completos de sección.
*/
.cta-mid-inner {
  background:
    linear-gradient(
      145deg,
      rgba(27, 17, 37, 0.94),
      rgba(13, 11, 17, 0.98)
    ) !important;
}

.nix-product-card,
.project-card,
.servicio-card,
.build-card,
.differentiator-card,
.need-item,
.paso-card,
.resource-card,
.faq-item,
.about-photo-placeholder {
  background-clip: padding-box;
}

/*
  Reduce la dureza de los círculos decorativos del hero sin eliminarlos.
  Así continúan formando parte del concepto visual, pero no dominan.
*/
.orbit-ring.r1 {
  border-color: rgba(155, 63, 222, 0.13);
}

.orbit-ring.r2 {
  border-color: rgba(155, 63, 222, 0.055);
}

.orbit-glow {
  background: radial-gradient(
    ellipse 68% 58% at 50% 50%,
    rgba(177, 76, 250, 0.20) 0%,
    rgba(138, 50, 208, 0.08) 38%,
    transparent 76%
  );
  filter: blur(18px);
  opacity: 0.82;
}

.mockup-wrap::before {
  background: radial-gradient(
    ellipse 70% 58% at 50% 50%,
    rgba(177, 76, 250, 0.26) 0%,
    rgba(138, 50, 208, 0.11) 40%,
    transparent 76%
  );
  filter: blur(34px);
  opacity: 0.78;
}

/* Evita recortes de decoraciones por overflow en secciones normales */
#sobre,
#proyectos,
#soluciones-digitales,
#servicios,
#diferenciador,
#publico,
#proceso,
#tecnologias,
#recursos,
#faq,
#productos-nix,
#membership,
#cta {
  overflow-x: clip;
}

/* Responsive */
@media (max-width: 900px) {
  body {
    background-image:
      radial-gradient(
        ellipse 130% 18% at 75% 3%,
        rgba(138, 50, 208, 0.09) 0%,
        rgba(138, 50, 208, 0.035) 42%,
        transparent 78%
      ),
      radial-gradient(
        ellipse 120% 16% at 15% 38%,
        rgba(177, 76, 250, 0.04) 0%,
        transparent 78%
      ),
      radial-gradient(
        ellipse 130% 18% at 80% 73%,
        rgba(138, 50, 208, 0.045) 0%,
        transparent 80%
      ),
      linear-gradient(
        180deg,
        #09090b 0%,
        #0b090e 46%,
        #09090b 100%
      );
  }

  main > section:not(#hero)::after {
    width: calc(100% - 32px);
  }

  .orbit-ring.r2 {
    opacity: 0.42;
  }

  .orbit-glow {
    opacity: 0.64;
    filter: blur(24px);
  }
}

@media (max-width: 600px) {
  body {
    background-image:
      radial-gradient(
        ellipse 145% 13% at 65% 2%,
        rgba(138, 50, 208, 0.075) 0%,
        transparent 80%
      ),
      radial-gradient(
        ellipse 145% 12% at 20% 54%,
        rgba(177, 76, 250, 0.032) 0%,
        transparent 82%
      ),
      linear-gradient(
        180deg,
        #09090b 0%,
        #0a090c 50%,
        #09090b 100%
      );
  }

  main > section:not(#hero)::after {
    width: calc(100% - 24px);
    opacity: 0.72;
  }

  .orbit-ring {
    opacity: 0.28;
  }

  .orbit-glow {
    opacity: 0.5;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE MOBILE REFINEMENT — NIX ARC
   Mantiene la identidad desktop, reduce el efecto "página de cards"
   y compacta la experiencia en pantallas pequeñas.
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-section-space: 4.25rem;
    --mobile-card-radius: 14px;
  }

  body {
    font-size: 15px;
  }

  main > section {
    padding:
      var(--mobile-section-space)
      var(--mobile-gutter) !important;
  }

  .section-heading,
  .solutions-heading,
  .diff-header,
  .tech-header {
    margin-bottom: 2.2rem;
  }

  .section-label,
  .diff-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .section-title,
  .diff-header .section-title,
  #servicios .section-title,
  .needs-intro .section-title,
  #cta .section-title {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .section-desc,
  .diff-header .section-desc,
  #servicios .section-desc,
  .needs-intro .section-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* HERO */
  #hero {
    min-height: auto;
    max-height: none;
    padding: 6.3rem var(--mobile-gutter) 3.2rem !important;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    max-width: 330px;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.98;
    margin-bottom: 1.1rem;
  }

  .hero-sub {
    max-width: 330px;
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 290px;
    text-align: center;
  }

  .proof-badge {
    width: 100%;
    max-width: 330px;
    padding: 0.75rem 0.85rem;
  }

  .proof-text span {
    font-size: 0.68rem;
  }

  /* FRANJA: deja de parecer cuatro cards apiladas */
  .capabilities-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0 var(--mobile-gutter);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cap-divider {
    display: none;
  }

  .cap-item {
    min-width: 0;
    padding: 1.15rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .cap-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.055);
  }

  .cap-item strong {
    font-size: 0.8rem;
  }

  .cap-item p {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  /* SOBRE NIX */
  .about-grid {
    gap: 2.2rem;
  }

  .about-content {
    max-width: 100%;
  }

  .about-tags {
    gap: 0.4rem;
  }

  .about-tag {
    padding: 0.34rem 0.62rem;
    font-size: 0.64rem;
  }

  .about-visual {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .about-photo-placeholder {
    border-radius: 16px !important;
  }

  /* PROYECTOS: siguen siendo cards porque son casos principales */
  .projects-grid--compact {
    gap: 1.1rem;
  }

  .projects-grid--compact .project-card--compact {
    grid-template-columns: 1fr;
    border-radius: 15px;
  }

  .project-card--compact .project-visual {
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
  }

  .project-card--compact .project-visual img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .project-copy--compact {
    padding: 1.15rem !important;
  }

  .project-copy--compact h3 {
    font-size: 1.2rem;
  }

  .project-category {
    font-size: 0.58rem;
  }

  .project-psr {
    gap: 0.75rem;
  }

  .psr-block p {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .custom-project {
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 14px;
  }

  /* QUÉ PODEMOS CONSTRUIR:
     se vuelve una grilla editorial compacta, no seis cards enormes */
  .build-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .build-card {
    min-height: 0 !important;
    padding: 1.15rem 0.9rem !important;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .build-card:nth-child(even) {
    border-right: 0 !important;
  }

  .build-card:hover {
    transform: none;
    background: rgba(138, 50, 208, 0.045) !important;
  }

  .build-num {
    font-size: 0.62rem;
  }

  .build-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0.85rem;
    border-radius: 10px;
  }

  .build-icon svg {
    width: 17px;
    height: 17px;
  }

  .build-card h3 {
    font-size: 0.93rem;
    line-height: 1.25;
  }

  .build-card p {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  /* SOLUCIONES POR OBJETIVO:
     se aplana visualmente para evitar otra pared de tarjetas */
  .servicios-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .servicio-card,
  .servicio-card:last-child {
    width: 100%;
    min-height: 0 !important;
    padding: 1.3rem 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .servicio-card:hover {
    transform: none;
    background: rgba(138, 50, 208, 0.035) !important;
  }

  .solution-top {
    align-items: center;
  }

  .solution-line {
    margin: 0.95rem 0 1.1rem;
  }

  .servicio-card h3 {
    font-size: 1.05rem;
  }

  .servicio-card > p {
    max-width: 100%;
    margin-bottom: 1.1rem;
    font-size: 0.78rem;
  }

  .solution-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .solution-tags {
    gap: 0.4rem;
  }

  .solution-tags span {
    min-height: 27px;
    padding: 0.3rem 0.58rem;
    font-size: 0.63rem;
  }

  /* DIFERENCIADOR:
     visual editorial, menos caja repetida */
  .differentiator-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .differentiator-card,
  .differentiator-card--featured {
    width: 100%;
    min-height: 0 !important;
    padding: 1.4rem 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .differentiator-card:hover {
    transform: none;
  }

  .differentiator-card__top {
    margin-bottom: 1.1rem;
  }

  .differentiator-card__icon {
    width: 46px;
    height: 46px;
  }

  .differentiator-card__description {
    min-height: 0;
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }

  .differentiator-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .differentiator-card li {
    font-size: 0.72rem;
  }

  .differentiator-card__statement {
    margin-top: 1rem;
    padding: 0.8rem 0.9rem;
  }

  .differentiator-quote {
    margin-top: 1rem;
    padding: 1rem;
    text-align: left;
    border-radius: 12px;
  }

  /* CTA INTERMEDIO */
  .cta-mid-inner {
    margin: 0 !important;
    padding: 2.1rem 1.25rem !important;
    border-radius: 16px;
  }

  .cta-mid-inner h2 {
    font-size: 1.65rem;
  }

  /* CUÁNDO PODEMOS AYUDARTE:
     2 columnas compactas para mantener ritmo parecido a desktop */
  #publico {
    width: 100%;
    padding: var(--mobile-section-space) var(--mobile-gutter) !important;
    gap: 2.1rem;
  }

  .needs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .need-item {
    min-height: 0 !important;
    padding: 1.05rem 0.85rem !important;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .need-item:nth-child(even) {
    border-right: 0 !important;
  }

  .need-item:hover {
    transform: none;
    background: rgba(138, 50, 208, 0.04) !important;
  }

  .need-item__top {
    margin-bottom: 0.8rem;
  }

  .need-item__number {
    font-size: 1.7rem;
  }

  .need-item__icon {
    width: 34px;
    height: 34px;
  }

  .need-item__category {
    font-size: 0.56rem;
    margin-bottom: 0.55rem;
  }

  .need-item h3 {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .need-item__footer {
    padding-top: 0.8rem;
    margin-top: 0.8rem;
  }

  .need-item__badge {
    padding: 0.3rem 0.45rem;
    font-size: 0.54rem;
  }

  .need-item__featured-label {
    display: none;
  }

  /* PROCESO:
     conserva 4 etapas, pero en 2x2 y sin tarjetas gigantes */
  .proceso-header {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.2rem;
  }

  .proceso-transparencia,
  .proceso-trans {
    max-width: 100%;
    width: 100%;
    padding: 0.95rem 1rem;
  }

  .timeline-line,
  .paso-arrow,
  .paso-dot {
    display: none;
  }

  .proceso-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .paso {
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .paso:nth-child(even) {
    border-right: 0;
  }

  .paso-num-wrap {
    margin: 0;
  }

  .paso-num {
    width: 38px;
    height: 38px;
    margin: 1rem 0 0 1rem;
    font-size: 0.78rem;
  }

  .paso-card {
    padding: 0.85rem 1rem 1.1rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left;
  }

  .paso:hover .paso-card {
    transform: none;
  }

  .paso-icon,
  .paso-icon-circle {
    width: 38px;
    height: 38px;
    margin: 0 0 0.8rem;
    font-size: 1rem;
  }

  .paso h4 {
    font-size: 0.88rem;
  }

  .paso p {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .paso-tags span {
    font-size: 0.62rem;
  }

  /* TECNOLOGÍAS */
  .tech-tags,
  .tech-stack,
  .tech-list {
    gap: 0.42rem;
  }

  .tech-tag {
    min-height: 30px;
    padding: 0.35rem 0.65rem;
    font-size: 0.64rem;
  }

  .tech-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem !important;
    align-items: stretch !important;
  }

  /* RECURSOS:
     tarjetas editoriales más planas */
  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .article-card,
  .resource-card {
    min-height: 0 !important;
    padding: 1.2rem 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .article-card:hover,
  .resource-card:hover {
    transform: none;
  }

  /* FAQ */
  #faq {
    max-width: none;
    padding-inline: var(--mobile-gutter) !important;
  }

  .faq-list {
    margin-top: 2rem;
    gap: 0.5rem;
  }

  .faq-item {
    border-radius: 11px;
  }

  .faq-q {
    padding: 1rem;
    font-size: 0.86rem;
  }

  .faq-a {
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .faq-item.open .faq-a {
    padding: 0 1rem 1rem;
  }

  /* PRODUCTOS NIX:
     sigue como bloque destacado, pero menos alto */
  #productos-nix {
    padding-inline: var(--mobile-gutter) !important;
  }

  .nix-product-card,
  .membership-card,
  #membership {
    border-radius: 15px;
  }

  .nix-product-card,
  .membership-card {
    padding: 1.2rem !important;
  }

  .membership-visual {
    min-height: 210px !important;
  }

  .membership-visual > img,
  .membership-dashboard {
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* CTA FINAL */
  #cta {
    padding:
      5.2rem
      var(--mobile-gutter) !important;
  }

  #cta .section-desc {
    max-width: 320px;
  }

  /* FOOTER */
  footer {
    padding: 2rem var(--mobile-gutter);
    align-items: flex-start;
    gap: 1.2rem;
  }

  .footer-links {
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 430px) {
  :root {
    --mobile-gutter: 15px;
    --mobile-section-space: 3.75rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 11.5vw, 2.9rem);
  }

  .capabilities-strip {
    grid-template-columns: 1fr 1fr;
  }

  .build-card {
    padding-inline: 0.72rem !important;
  }

  .build-card h3 {
    font-size: 0.84rem;
  }

  .build-card p {
    font-size: 0.67rem;
  }

  .needs-note {
    gap: 0.65rem;
  }

  .needs-note p {
    font-size: 0.72rem;
  }

  .need-item {
    padding: 0.95rem 0.7rem !important;
  }

  .need-item h3 {
    font-size: 0.72rem;
  }

  .need-item__badge {
    white-space: normal;
    line-height: 1.2;
  }

  .differentiator-card ul {
    grid-template-columns: 1fr;
  }

  .proceso-steps {
    grid-template-columns: 1fr 1fr;
  }

  .paso-card {
    padding-inline: 0.8rem !important;
  }

  .paso p {
    font-size: 0.66rem;
  }

  .tech-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   AJUSTE FINAL — RECURSOS COMO CARDS EN MÓVIL
   Evita repetir otra cuadrícula 2x2 y conserva apariencia de blog.
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  #recursos {
    overflow: hidden;
  }

  #recursos .section-heading {
    margin-bottom: 1.8rem;
  }

  /*
    Carrusel horizontal de artículos:
    conserva cards reales y evita repetir otra cuadrícula.
  */
  #recursos .articles-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0.9rem !important;
    width: calc(100% + var(--mobile-gutter));
    max-width: none;
    margin: 0;
    padding:
      0
      var(--mobile-gutter)
      0.65rem
      0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-top: 0 !important;
  }

  #recursos .articles-grid::-webkit-scrollbar {
    display: none;
  }

  #recursos .article-card,
  #recursos .resource-card {
    position: relative;
    flex: 0 0 min(82vw, 330px);
    min-width: min(82vw, 330px);
    min-height: 250px !important;
    padding: 1.35rem !important;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 15px !important;
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(138, 50, 208, 0.10),
        transparent 38%
      ),
      linear-gradient(
        145deg,
        rgba(18, 17, 21, 0.98),
        rgba(10, 10, 12, 0.99)
      ) !important;
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
    transform: none !important;
  }

  #recursos .article-card::before,
  #recursos .resource-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(177, 76, 250, 0.58),
      transparent
    );
    opacity: 0.75;
  }

  #recursos .article-card:hover,
  #recursos .resource-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(177, 76, 250, 0.3) !important;
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(138, 50, 208, 0.15),
        transparent 40%
      ),
      linear-gradient(
        145deg,
        rgba(20, 18, 24, 0.99),
        rgba(10, 10, 12, 0.99)
      ) !important;
  }

  #recursos .article-tag {
    margin-bottom: 0.85rem;
    font-size: 0.61rem;
    letter-spacing: 0.11em;
  }

  #recursos .article-card h3,
  #recursos .resource-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.12rem;
    line-height: 1.32;
  }

  #recursos .article-card p,
  #recursos .resource-card p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
    line-height: 1.55;
  }

  #recursos .article-arrow {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-top: auto;
    border: 1px solid rgba(177, 76, 250, 0.25);
    border-radius: 50%;
    background: rgba(138, 50, 208, 0.07);
    color: var(--purple-bright);
    font-size: 0.95rem;
  }

  /*
    Indicador visual de desplazamiento sin agregar HTML.
  */
  #recursos::after {
    content: 'Desliza para ver más →';
    display: block;
    width: 100%;
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-align: right;
  }
}

@media (max-width: 430px) {
  #recursos .article-card,
  #recursos .resource-card {
    flex-basis: 84vw;
    min-width: 84vw;
    min-height: 235px !important;
    padding: 1.2rem !important;
  }

  #recursos .article-card h3,
  #recursos .resource-card h3 {
    font-size: 1.02rem;
  }
}

/* ══ PROYECTOS MÁS COMPACTOS EN MÓVIL ══ */
@media (max-width: 768px) {
  .project-card--compact .project-visual {
    width: 100%;
    height: 220px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden;
  }

  .project-card--compact .project-visual picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .project-card--compact .project-visual img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
  }
}

@media (max-width: 430px) {
  .project-card--compact .project-visual {
    height: 190px !important;
  }
}