:root {
  --z-black:   #050507;
  --z-deep:    #08080C;
  --z-dark:    #0D0D14;
  --z-card:    #12121A;
  --z-border:  rgba(255, 255, 255, 0.06);
  --z-cyan:    #00E5FF;
  --z-cyan2:   #00B8D4;
  --z-violet:  #7C3AED;
  --z-violet2: #5B21B6;
  --z-lime:    #A3E635;
  --z-white:   #F0F0FA;
  --z-silver:  #8888A8;
  --z-muted:   #4A4A6A;
  --f-display: 'Playfair Display', Georgia, serif;
  --f-sans:    'Syne', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', monospace;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  background: var(--z-black);
  color: var(--z-white);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a { cursor: none; color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
img, video { max-width: 100%; display: block; }
::selection { background: var(--z-cyan); color: var(--z-black); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--z-black); }
::-webkit-scrollbar-thumb { background: var(--z-cyan); border-radius: 3px; }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  pointer-events: none;
  z-index: 998;
  animation: noiseAnim 8s steps(2) infinite;
}

#cur {
  position: fixed; width: 10px; height: 10px;
  background: var(--z-cyan); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
  mix-blend-mode: difference;
}
#cur-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(0, 229, 255, 0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: border-color .3s;
}
#cur.big { width: 60px; height: 60px; background: rgba(0, 229, 255, 0.15); }
#cur-ring.big { width: 80px; height: 80px; border-color: var(--z-cyan); }

#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--z-black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--f-display); font-size: 3rem; font-weight: 900;
  letter-spacing: -.02em; color: var(--z-white);
}
.loader-logo span { color: var(--z-cyan); }
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--z-cyan);
  animation: loadSlide 1.8s var(--ease-out) forwards;
}
.loader-pct {
  font-family: var(--f-mono); font-size: .75rem;
  color: var(--z-cyan); letter-spacing: .1em;
}

#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s var(--ease-smooth);
}
#nav.scrolled {
  padding: 14px 5%;
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--z-border);
}
.nav-logo {
  font-family: var(--f-display); font-size: 1.7rem; font-weight: 900;
  letter-spacing: -.03em; color: var(--z-white);
  display: flex; align-items: center; gap: 3px;
}
.nav-logo .dot { color: var(--z-cyan); font-size: 2rem; line-height: 0.5; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--f-sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--z-silver); transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--z-cyan);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--z-white); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--z-cyan); color: var(--z-black);
  padding: 10px 22px; border-radius: 2px;
  font-family: var(--f-sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all .3s var(--ease-out);
}
.nav-btn:hover { background: var(--z-white); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--z-white); transition: all .3s; }

#mobile-nav {
  position: fixed; inset: 0; z-index: 790;
  background: var(--z-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
}
#mobile-nav.open { transform: translateY(0); }
#mobile-nav a {
  font-family: var(--f-display); font-size: 2.8rem; font-weight: 700;
  color: var(--z-white); transition: color .3s;
}
#mobile-nav a:hover { color: var(--z-cyan); }
#mobile-close { position: absolute; top: 24px; right: 5%; font-size: 1.8rem; color: var(--z-silver); }

#inicio { position: relative; overflow: hidden; }
#hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .25;
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: var(--z-cyan);   top: -200px; left: -150px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: var(--z-violet); bottom: -150px; right: -100px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: var(--z-lime);   top: 40%; left: 60%; animation-delay: -8s; opacity: .12; }

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  animation: gridDrift 20s linear infinite;
}
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--z-cyan); border-radius: 50%;
  animation: particleDrift var(--dur) linear infinite;
  opacity: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 5%; max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.05);
  padding: 8px 18px; border-radius: 100px;
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .1em; color: var(--z-cyan); margin-bottom: 36px;
  opacity: 0; animation: slideIn .8s var(--ease-out) .3s forwards;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--z-cyan); border-radius: 50%; animation: blink 1.5s infinite; }
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900; line-height: 1.0; color: var(--z-white);
  opacity: 0; animation: slideIn .9s var(--ease-out) .5s forwards;
}
.hero-h1 .line-cyan    { color: var(--z-cyan); font-style: italic; }
.hero-h1 .line-outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  color: transparent; display: block;
}
.hero-p {
  font-size: 1.05rem; color: var(--z-silver); max-width: 480px;
  margin: 28px 0 44px; line-height: 1.8; font-weight: 400;
  opacity: 0; animation: slideIn .9s var(--ease-out) .7s forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: slideIn .9s var(--ease-out) .9s forwards;
}

.btn-glow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--z-cyan); color: var(--z-black);
  padding: 16px 34px; border-radius: 3px;
  font-family: var(--f-sans); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all .3s var(--ease-out);
  position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
}
.btn-glow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%); transition: transform .4s var(--ease-out);
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(0, 229, 255, 0.4); }
.btn-glow:hover::before { transform: translateX(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.12); color: var(--z-white);
  padding: 15px 32px; border-radius: 3px;
  font-family: var(--f-sans); font-size: .85rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all .3s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--z-cyan); color: var(--z-cyan); transform: translateY(-3px); }

.hero-right { position: relative; height: 500px; opacity: 0; animation: slideIn 1s var(--ease-out) .8s forwards; }
.mockup-card {
  position: absolute; background: var(--z-card);
  border: 1px solid var(--z-border); border-radius: 12px;
  padding: 20px; backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.mc-main   { width: 100%; top: 0; left: 0; background: linear-gradient(135deg, #0d1520, #0a0f1a); border-color: rgba(0, 229, 255, 0.15); }
.mc-browser { width: 280px; bottom: 30px; right: -20px; animation: floatY 6s ease-in-out infinite; }
.mc-stat   { width: 160px; top: 40%; left: -30px; animation: floatY 8s ease-in-out infinite reverse; text-align: center; padding: 24px 20px; }
.browser-bar {
  height: 32px; background: rgba(255, 255, 255, 0.04);
  border-radius: 8px 8px 0 0;
  display: flex; align-items: center; padding: 0 12px; gap: 6px;
  margin: -20px -20px 16px;
}
.bb-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-screen {
  height: 160px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(124, 58, 237, 0.08));
  border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.stat-num { font-family: var(--f-display); font-size: 1.8rem; font-weight: 900; color: var(--z-cyan); }
.stat-lbl { font-size: .7rem; color: var(--z-silver); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; display: block; }
.mc-main-content { display: grid; gap: 12px; }
.mc-row { height: 12px; background: rgba(255, 255, 255, 0.06); border-radius: 6px; }
.mc-row:first-child  { width: 70%; background: rgba(0, 229, 255, 0.2); }
.mc-row:nth-child(2) { width: 90%; }
.mc-row:nth-child(3) { width: 60%; }
.mc-imgs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 16px; }
.mc-img  {
  height: 60px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 58, 237, 0.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: slideIn 1s var(--ease-out) 1.4s forwards;
}
.hero-scroll span { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--z-muted); }
.scroll-mouse { width: 24px; height: 38px; border: 1.5px solid rgba(255, 255, 255, 0.15); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 8px; background: var(--z-cyan); border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite; }

.marquee-strip { padding: 18px 0; background: var(--z-cyan); overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; gap: 0; animation: marqueeScroll 20s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px; padding: 0 32px;
  font-family: var(--f-sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--z-black);
}
.marquee-star { font-size: .5rem; opacity: .5; }

.stats-band { padding: 80px 5%; background: var(--z-deep); border-bottom: 1px solid var(--z-border); }
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--z-border);
}
.stat-cell {
  background: var(--z-deep); padding: 40px 32px; text-align: center;
  position: relative; overflow: hidden; transition: background .3s;
}
.stat-cell::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--z-cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.stat-cell:hover { background: var(--z-card); }
.stat-cell:hover::before { transform: scaleX(1); }
.stat-n {
  font-family: var(--f-display); font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 900; color: var(--z-cyan); line-height: 1; display: block;
}
.stat-l {
  font-family: var(--f-sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--z-silver); margin-top: 10px; display: block;
}
.visitor-live { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.live-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: livePulse 2s infinite; }

.section { padding: clamp(80px, 10vw, 140px) 5%; }
.s-inner { max-width: 1300px; margin: 0 auto; }
.s-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--z-cyan); margin-bottom: 20px;
}
.s-eyebrow::before { content: '//'; }
.s-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900; line-height: 1.05; color: var(--z-white);
}
.s-title em      { font-style: italic; color: var(--z-cyan); }
.s-title .outline { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25); color: transparent; }

#servicios { background: var(--z-deep); }
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 12px; margin-top: 60px;
}
.bento-card {
  background: var(--z-card); border: 1px solid var(--z-border);
  border-radius: 12px; padding: 36px;
  position: relative; overflow: hidden;
  transition: all .4s var(--ease-out);
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 255, 0.06), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover { border-color: rgba(0, 229, 255, 0.2); transform: translateY(-4px); }
.bc-1 { grid-column: span 5; grid-row: span 2; }
.bc-2 { grid-column: span 4; }
.bc-3 { grid-column: span 3; }
.bc-4 { grid-column: span 4; }
.bc-5 { grid-column: span 3; }
.bc-6 {
  grid-column: span 5;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(124, 58, 237, 0.08));
  border-color: rgba(0, 229, 255, 0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 200px;
}
.card-icon {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 24px;
}
.icon-bg-cyan   { background: rgba(0, 229, 255, 0.12);  border: 1px solid rgba(0, 229, 255, 0.2); }
.icon-bg-violet { background: rgba(124, 58, 237, 0.12); border: 1px solid rgba(124, 58, 237, 0.2); }
.icon-bg-lime   { background: rgba(163, 230, 53, 0.12); border: 1px solid rgba(163, 230, 53, 0.2); }
.icon-bg-white  { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); }
.card-num { position: absolute; top: 20px; right: 20px; font-family: var(--f-mono); font-size: .7rem; color: var(--z-muted); letter-spacing: .1em; }
.card-deco { position: absolute; bottom: -20px; right: -20px; font-size: 8rem; opacity: .04; line-height: 1; transform: rotate(-15deg); pointer-events: none; }
.card-title { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--z-white); margin-bottom: 12px; line-height: 1.2; }
.card-desc  { color: var(--z-silver); font-size: .88rem; line-height: 1.75; }
.card-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.ctag {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--z-border);
  color: var(--z-silver);
}
.card-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--z-cyan); font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 24px; transition: gap .3s;
}
.card-cta-link:hover { gap: 14px; }

.parallax-banner {
  height: 50vh; min-height: 360px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pb-bg {
  position: absolute; inset: -25%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(163, 230, 53, 0.05) 100%), var(--z-dark);
  will-change: transform;
}
.pb-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0, 229, 255, 0.04) 59px, rgba(0, 229, 255, 0.04) 60px);
  will-change: transform;
}
.pb-content { position: relative; z-index: 2; text-align: center; padding: 0 5%; }
.pb-word { font-family: var(--f-display); font-size: clamp(3rem, 8vw, 8rem); font-weight: 900; line-height: 1; display: block; }
.pb-word.outline { -webkit-text-stroke: 1.5px rgba(0, 229, 255, 0.3); color: transparent; }
.pb-word.filled  { color: var(--z-white); }
.pb-word em { color: var(--z-cyan); font-style: italic; }

.split-banner { display: grid; grid-template-columns: 1fr 1fr; height: 60vh; min-height: 400px; position: relative; overflow: hidden; }
.split-left, .split-right { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.split-left  { background: var(--z-cyan); }
.split-right { background: var(--z-deep); }
.split-left-bg  { position: absolute; inset: -20%; background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15), transparent 60%); will-change: transform; }
.split-right-bg { position: absolute; inset: -20%; background: radial-gradient(circle at 70% 50%, rgba(0, 229, 255, 0.12), transparent 60%); will-change: transform; }
.split-content  { position: relative; z-index: 2; padding: 40px; text-align: center; }
.split-left .split-content { color: var(--z-black); }
.split-big  { font-family: var(--f-display); font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; line-height: 1; display: block; }
.split-lbl  { font-family: var(--f-sans); font-size: .85rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-top: 12px; opacity: .7; display: block; }

#media { background: var(--z-black); }
.media-tabs { display: flex; gap: 0; border: 1px solid var(--z-border); border-radius: 8px; width: fit-content; margin: 40px 0 48px; overflow: hidden; }
.media-tab {
  padding: 12px 28px; font-family: var(--f-sans); font-size: .8rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--z-silver); background: none; border: none; transition: all .3s;
  display: flex; align-items: center; gap: 8px;
}
.media-tab.active, .media-tab:hover { background: var(--z-cyan); color: var(--z-black); }
.media-content { display: none; }
.media-content.active { display: block; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card {
  background: var(--z-card); border: 1px solid var(--z-border);
  border-radius: 10px; overflow: hidden;
  transition: all .4s var(--ease-out); position: relative;
}
.video-card:hover { border-color: rgba(0, 229, 255, 0.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--z-dark); display: flex; align-items: center; justify-content: center; }
.video-thumb video { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity .3s; }
.video-card:hover .video-thumb video { opacity: 1; }
.video-thumb-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, var(--z-card), var(--z-dark)); font-size: 3rem; }
.video-thumb-placeholder span { font-family: var(--f-mono); font-size: .7rem; color: var(--z-muted); letter-spacing: .1em; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; background: rgba(0, 229, 255, 0.15);
  border: 1.5px solid var(--z-cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; backdrop-filter: blur(8px);
}
.play-btn::after { content: ''; border-left: 16px solid var(--z-cyan); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 3px; }
.video-card:hover .play-btn { background: var(--z-cyan); transform: translate(-50%, -50%) scale(1.1); }
.video-card:hover .play-btn::after { border-left-color: var(--z-black); }
.video-duration { position: absolute; bottom: 10px; right: 10px; background: rgba(0, 0, 0, 0.7); padding: 3px 8px; border-radius: 4px; font-family: var(--f-mono); font-size: .65rem; color: var(--z-white); }
.video-info     { padding: 18px; }
.video-cat      { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--z-cyan); margin-bottom: 6px; }
.video-title    { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--z-white); line-height: 1.3; }
.video-meta     { font-size: .78rem; color: var(--z-silver); margin-top: 6px; }
.video-featured { grid-column: span 2; }
.video-featured .video-thumb { aspect-ratio: 16/9; }
.video-featured .video-thumb-placeholder { font-size: 5rem; }

.photo-masonry { columns: 3; gap: 16px; }
.photo-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: 10px; overflow: hidden;
  position: relative; background: var(--z-card);
  border: 1px solid var(--z-border);
  transition: all .4s var(--ease-out);
}
.photo-item:hover { transform: scale(1.02); border-color: rgba(0, 229, 255, 0.3); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); }
.photo-thumb     { width: 100%; padding-bottom: var(--ratio, 75%); position: relative; overflow: hidden; }
.photo-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--c1, rgba(0, 229, 255, 0.08)), var(--c2, rgba(124, 58, 237, 0.08)));
}
.photo-inner span { font-family: var(--f-mono); font-size: .68rem; color: var(--z-muted); letter-spacing: .1em; }
.photo-overlay {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity .3s;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay-label { font-family: var(--f-sans); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--z-cyan); }
.photo-caption       { padding: 14px; background: var(--z-card); }
.photo-caption-title { font-family: var(--f-display); font-size: .95rem; font-weight: 700; color: var(--z-white); }
.photo-caption-sub   { font-size: .75rem; color: var(--z-silver); margin-top: 3px; }
.photo-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.photo-item:hover .photo-thumb img {
  transform: scale(1.04);
}

.tech-strip { padding: 60px 0; background: var(--z-deep); border-top: 1px solid var(--z-border); border-bottom: 1px solid var(--z-border); overflow: hidden; }
.tech-scroll { display: flex; gap: 48px; animation: techScroll 25s linear infinite; }
.tech-scroll:hover { animation-play-state: paused; }
.tech-item {
  display: flex; align-items: center; gap: 14px; white-space: nowrap;
  font-family: var(--f-sans); font-size: 1rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.2); transition: color .3s; flex-shrink: 0;
}
.tech-item:hover { color: rgba(255, 255, 255, 0.7); }
.tech-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--z-card); border: 1px solid var(--z-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: border-color .3s;
}
.tech-item:hover .tech-icon-wrap { border-color: var(--z-cyan); }

#portfolio { background: var(--z-dark); }
.portfolio-filter { display: flex; gap: 8px; flex-wrap: wrap; margin: 36px 0 52px; }
.pf-btn {
  padding: 8px 20px; border-radius: 100px;
  font-family: var(--f-sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--z-border); color: var(--z-silver); transition: all .3s;
}
.pf-btn.active, .pf-btn:hover { background: var(--z-cyan); color: var(--z-black); border-color: var(--z-cyan); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.port-card {
  background: var(--z-card); border: 1px solid var(--z-border);
  border-radius: 12px; overflow: hidden;
  transition: all .4s var(--ease-out); display: block;
}
.port-card:hover { border-color: rgba(0, 229, 255, 0.25); transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.port-thumb {
  aspect-ratio: 4/3; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; font-size: 4rem; overflow: hidden;
}
.port-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7)); }
.port-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 229, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s; z-index: 2;
  font-family: var(--f-sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--z-cyan); gap: 8px;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-label {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 100px;
  font-family: var(--f-mono); font-size: .65rem; color: var(--z-cyan);
  letter-spacing: .1em; text-transform: uppercase;
}
.port-info       { padding: 22px; }
.port-cat        { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--z-cyan); margin-bottom: 8px; }
.port-title      { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; color: var(--z-white); margin-bottom: 8px; }
.port-desc       { font-size: .83rem; color: var(--z-silver); line-height: 1.65; }
.port-card.featured { grid-column: span 2; }
.port-card.featured .port-thumb { aspect-ratio: 16/9; font-size: 5rem; }

#proceso { background: var(--z-deep); }
.process-timeline {
  position: relative; margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.process-timeline::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, var(--z-cyan), var(--z-violet), var(--z-cyan));
  opacity: .3;
}
.pt-step {
  padding: 0 24px; text-align: center; position: relative;
  opacity: 0; transform: translateY(30px);
  transition: all .6s var(--ease-out);
}
.pt-step.visible { opacity: 1; transform: translateY(0); }
.pt-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--z-card); border: 2px solid rgba(0, 229, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 1.6rem; position: relative; z-index: 2;
  transition: all .4s var(--ease-out);
}
.pt-step:hover .pt-circle { border-color: var(--z-cyan); background: rgba(0, 229, 255, 0.1); box-shadow: 0 0 30px rgba(0, 229, 255, 0.2); }
.pt-num {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; background: var(--z-cyan); color: var(--z-black);
  border-radius: 50%; font-family: var(--f-mono); font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pt-title { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; color: var(--z-white); margin-bottom: 10px; }
.pt-desc  { font-size: .83rem; color: var(--z-silver); line-height: 1.7; }

#testimonios { background: var(--z-black); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.testi-card {
  background: var(--z-card); border: 1px solid var(--z-border);
  border-radius: 12px; padding: 32px;
  transition: all .4s var(--ease-out); position: relative; overflow: hidden;
}
.testi-card::before { content: '❝'; position: absolute; top: 20px; right: 24px; font-size: 4rem; color: rgba(0, 229, 255, 0.06); font-family: Georgia, serif; line-height: 1; }
.testi-card:hover { border-color: rgba(0, 229, 255, 0.2); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star        { color: var(--z-cyan); font-size: .9rem; }
.testi-text  { font-size: .9rem; color: var(--z-silver); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--z-cyan), var(--z-violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--z-black);
  font-family: var(--f-display); flex-shrink: 0;
}
.testi-name { font-family: var(--f-sans); font-size: .85rem; font-weight: 700; color: var(--z-white); }
.testi-role { font-size: .75rem; color: var(--z-muted); }

#contacto { background: var(--z-deep); position: relative; overflow: hidden; }
.contact-bg-orb {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  right: -200px; top: -100px; pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; position: relative; z-index: 2; }
.c-left-title { font-family: var(--f-display); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 900; line-height: 1.1; color: var(--z-white); margin-bottom: 20px; }
.c-left-title em { color: var(--z-cyan); font-style: italic; }
.c-left-p { color: var(--z-silver); font-size: .95rem; line-height: 1.8; margin-bottom: 40px; }
.c-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.c-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0, 229, 255, 0.08); border: 1px solid rgba(0, 229, 255, 0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.c-detail-text       { font-size: .88rem; color: var(--z-silver); }
.c-detail-text strong { display: block; color: var(--z-white); font-size: .82rem; letter-spacing: .05em; margin-bottom: 2px; }

.c-form { display: flex; flex-direction: column; gap: 18px; }
.fg { position: relative; }
.fg label { display: block; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--z-muted); margin-bottom: 10px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px;
  padding: 14px 18px; color: var(--z-white);
  font-family: var(--f-sans); font-size: .9rem; font-weight: 400;
  outline: none; transition: all .3s var(--ease-smooth);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--z-cyan); background: rgba(0, 229, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--z-muted); }
.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-submit {
  width: 100%; padding: 18px; border-radius: 6px;
  background: var(--z-cyan); color: var(--z-black);
  font-family: var(--f-sans); font-size: .88rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: all .3s var(--ease-out); box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}
.c-submit:hover { background: var(--z-white); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3); }
.c-submit svg { transition: transform .3s; }
.c-submit:hover svg { transform: translateX(4px); }
.c-note { font-family: var(--f-mono); font-size: .68rem; text-align: center; color: var(--z-muted); letter-spacing: .05em; }
#c-success { display: none; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.25); border-radius: 8px; padding: 24px; text-align: center; color: #86EFAC; font-size: .95rem; }

footer { background: var(--z-black); border-top: 1px solid var(--z-border); padding: 60px 5% 32px; }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 3fr 2fr 2fr 2fr; gap: 60px; margin-bottom: 52px; }
.f-brand-logo { font-family: var(--f-display); font-size: 2.2rem; font-weight: 900; color: var(--z-white); letter-spacing: -.03em; margin-bottom: 14px; }
.f-brand-logo .dot { color: var(--z-cyan); }
.f-brand-p   { color: var(--z-muted); font-size: .85rem; line-height: 1.8; max-width: 260px; margin-bottom: 24px; }
.f-social    { display: flex; gap: 10px; }
.f-soc-btn   { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--z-border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all .3s; color: var(--z-silver); }
.f-soc-btn:hover { border-color: var(--z-cyan); color: var(--z-cyan); background: rgba(0, 229, 255, 0.08); }
.f-col h4    { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--z-cyan); margin-bottom: 20px; }
.f-col ul    { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col li a  { font-size: .85rem; color: var(--z-muted); transition: color .3s; }
.f-col li a:hover { color: var(--z-white); }
.footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--z-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .8rem; color: var(--z-muted); }
.footer-bottom a { color: var(--z-cyan); }

.reveal       { opacity: 0; transform: translateY(36px);  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

.custom-select { position: relative; }
.cs-selected {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 6px;
  padding: 14px 40px 14px 18px; color: var(--z-muted);
  font-family: var(--f-sans); font-size: .9rem;
  cursor: pointer; transition: all .3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.custom-select.open .cs-selected {
  border-color: var(--z-cyan); background-color: rgba(0,229,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}
.cs-selected.chosen { color: var(--z-white); }
.cs-options {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 100;
  background: #1a1a28; border: 1px solid rgba(0,229,255,0.2);
  border-radius: 8px; overflow: hidden;
  max-height: 0; opacity: 0; pointer-events: none;
  transition: max-height .35s var(--ease-out), opacity .25s;
}
.custom-select.open .cs-options {
  max-height: 300px; opacity: 1; pointer-events: all;
}
.cs-option {
  padding: 13px 18px; font-family: var(--f-sans); font-size: .88rem;
  color: var(--z-silver); cursor: pointer; transition: all .2s;
}
.cs-option:hover { background: rgba(0,229,255,0.08); color: var(--z-cyan); }
.cs-option.selected { color: var(--z-cyan); background: rgba(0,229,255,0.05); }

@keyframes noiseAnim    { 0%{transform:translate(0,0)} 25%{transform:translate(-2px,1px)} 50%{transform:translate(1px,-1px)} 75%{transform:translate(-1px,2px)} 100%{transform:translate(0,0)} }
@keyframes loadSlide    { to { left: 0; } }
@keyframes slideIn      { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink        { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes orbFloat     { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-40px) scale(1.05)} 66%{transform:translate(-20px,20px) scale(.95)} }
@keyframes gridDrift    { from{background-position:0 0} to{background-position:60px 60px} }
@keyframes particleDrift{ 0%{transform:translateY(100vh) translateX(0);opacity:0} 10%{opacity:.6} 90%{opacity:.3} 100%{transform:translateY(-10vh) translateX(var(--drift));opacity:0} }
@keyframes floatY       { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes scrollWheel  { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }
@keyframes marqueeScroll{ from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes techScroll   { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes livePulse    { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.4)} 50%{box-shadow:0 0 0 8px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }
@keyframes lbFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes lbZoomIn  { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bc-1, .bc-6 { grid-column: span 6; }
  .bc-2, .bc-3 { grid-column: span 3; }
  .bc-4, .bc-5 { grid-column: span 3; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .port-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .split-banner { grid-template-columns: 1fr; height: auto; }
  .split-left, .split-right { padding: 60px 5%; }
  .photo-masonry { columns: 2; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bc-1, .bc-2, .bc-3, .bc-4, .bc-5, .bc-6 { grid-column: span 1; }
  .portfolio-grid, .video-grid, .testi-grid { grid-template-columns: 1fr; }
  .port-card.featured, .video-featured { grid-column: span 1; }
  .process-timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .photo-masonry { columns: 1; }
}

