/* =============================================
   XYNTROPY — style.css
   Monochrome Luxury | Minimal Purple Accent
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:       #060606;
  --bg-mid:        #0c0c0c;
  --accent:        #8b5cf6;        /* ÚNICO color — morado, usado muy poco */
  --accent-dim:    rgba(139,92,246,0.15);
  --accent-line:   rgba(139,92,246,0.3);
  --text-primary:  #f0f0f0;
  --text-secondary:#888888;
  --text-muted:    #444444;
  --white:         #ffffff;
  --glass-bg:      rgba(255,255,255,0.03);
  --glass-border:  rgba(255,255,255,0.07);
  --glass-bg-hover:rgba(255,255,255,0.055);
  --radius-pill:   9999px;
  --radius-lg:     20px;
  --radius-md:     14px;
  --radius-sm:     8px;
  --transition:    0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== BACKGROUND — muy sutil, sin colores ===== */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: orbFloat 25s ease-in-out infinite alternate;
}
/* Solo un orb morado muy tenue */
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.07), transparent 70%);
  top: -250px; left: -200px;
  animation-duration: 28s;
}
/* Orbs blancos/grises para textura */
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.025), transparent 70%);
  bottom: 5%; right: -100px;
  animation-duration: 22s; animation-delay: -10s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.015), transparent 70%);
  top: 45%; left: 45%;
  animation-duration: 30s; animation-delay: -5s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  transition: transform 0.15s ease-out, background var(--transition), border-color var(--transition), box-shadow var(--transition);
  /* 3D tilt engine */
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(0);
  position: relative;
  overflow: hidden;
}

/* Subtle glare that tracks the mouse */
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  mix-blend-mode: overlay;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.glass-card:hover::after {
  opacity: 1;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
/* Texto en blanco puro — sin gradientes de colores */
.gradient-text {
  color: var(--white);
}
.gradient-text-2 {
  color: var(--text-secondary);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--white);
  color: var(--bg-deep);
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(255,255,255,0.08);
}
.btn-primary svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
  background: #ececec;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.14);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar-wrapper {
  position: fixed;
  top: 24px;
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 32px;
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  width: fit-content;
  max-width: calc(100vw - 48px);
  transition: background var(--transition), border-color var(--transition);
}
.navbar-wrapper.scrolled .navbar-pill {
  background: rgba(4,4,4,0.92);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo { 
  margin-right: 12px; 
  transform: translateY(-15%);
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 9px 17px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  margin-left: 6px;
  background: var(--white);
  color: var(--bg-deep);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: #e8e8e8; transform: scale(1.02); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 4px;
}
.nav-burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  width: calc(100vw - 48px);
  max-width: 480px;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mob-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.mob-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.mob-cta {
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--white);
  color: var(--bg-deep);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* ===== HERO TEXT ANIMATIONS ===== */

/* Fade up — badge, subtitle, buttons, stats */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: animFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}
@keyframes animFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Line mask — cada línea del título sube desde abajo (efecto cine) */
.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.title-word {
  display: block;
  opacity: 0;
  transform: translateY(105%);
  animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}
@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Colores de las líneas del título */
.title-accent {
  color: var(--white);
  font-style: italic;
  font-weight: 800;
}
.title-dim {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.72em;
  letter-spacing: 0.02em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px 7px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 44px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Sora', sans-serif;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  text-transform: uppercase;
}

.hero-title .title-line:first-child {
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: 0.05em;
  /* El tracking agrega espacio al final, lo compensamos */
  margin-right: -0.05em;
}

.title-dim {
  font-size: clamp(10px, 1.35vw, 16.5px);
  font-weight: 300;
  letter-spacing: 0.72em;
  color: var(--text-secondary);
  /* Compensamos el tracking al final */
  margin-right: -0.72em;
}

.hero-sub {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 500px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-plus {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: super;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 6px;
  text-transform: uppercase;
  font-weight: 400;
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.08);
}

/* ===== HERO VISUAL — estático, elegante ===== */
.hero-visual {
  position: absolute;
  right: max(4%, calc(50% - 680px));
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.6s var(--transition) both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-orb-wrap {
  position: relative;
  width: 300px; height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sutil resplandor de fondo (sin color) */
.hero-orb {
  width: 200px; height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo estático — sin rotación */
.hero-symbol {
  width: 130px; height: 130px;
  object-fit: contain;
  filter: invert(1) brightness(0.95);
  position: relative;
  z-index: 1;
}

/* Línea decorativa circular — sutil, no orbitas */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  top: 50%; left: 50%;
}
.orbit-ring-1 {
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  border-color: rgba(255,255,255,0.04);
}
.orbit-ring-2 {
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  border-color: rgba(139,92,246,0.06);
}
.orbit-ring-3 {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-color: rgba(255,255,255,0.025);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 2.5s both;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollAnim 2.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===== TICKER MARQUEE ===== */
.ticker-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s;
}
.ticker-item:hover { color: var(--text-secondary); }

.ticker-sep {
  color: var(--accent);
  font-size: 8px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ===== MANIFESTO ===== */
.manifesto {
  position: relative;
  z-index: 1;
  padding: 130px 0;
}
/* Línea separadora superior */
.manifesto::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
  margin-bottom: 130px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--white);
}
.manifesto-title em {
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 300;
}

.manifesto-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 300;
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.tag {
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
}
.tag:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-primary);
}

.manifesto-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.manifesto-card {
  width: 100%;
  padding: 28px 30px;
  /* Hover transition handled by glass-card base */
}
.manifesto-card:hover { 
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-4px); 
}

/* Se eliminaron los offsets para que queden alineadas como pidió el usuario */
.manifesto-card--offset { margin-left: 0; }
.manifesto-card--bottom { margin-left: 0; }

.mcard-icon {
  width: 36px; height: 36px;
  margin-bottom: 14px;
  opacity: 0.7;
}
.mcard-icon svg { width: 100%; height: 100%; }

.manifesto-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.manifesto-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  z-index: 1;
  padding: 130px 0;
}
.services::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--white);
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  padding: 36px 30px 44px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  /* Transitions inherited from .glass-card */
}
.service-card:hover {
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateY(-5px);
  border-color: rgba(255,255,255,0.12);
}
.service-card:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-card:hover .svc-number {
  color: var(--white);
}

/* Card featured — muy sutil, solo borde ligeramente diferente */
.svc-featured {
  border-color: rgba(139,92,246,0.15);
}
.svc-featured:hover {
  border-color: rgba(139,92,246,0.25);
}
.svc-featured-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 3px 10px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-pill);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-number {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 22px;
  transition: color var(--transition);
}

/* Iconos en blanco/gris */
.svc-icon-wrap { margin-bottom: 18px; }
.svc-icon {
  width: 44px; height: 44px;
  filter: brightness(0) invert(0.55);
  transition: filter var(--transition);
}
.service-card:hover .svc-icon {
  filter: brightness(0) invert(0.85);
}

.svc-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.svc-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 300;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.svc-list li {
  font-size: 11.5px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  letter-spacing: 0.02em;
}
.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
  font-size: 9px;
  top: 1px;
}

.svc-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  position: relative;
  z-index: 1;
  padding: 130px 0;
}
.contact-cta::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
  margin-bottom: 0;
}

.cta-inner {
  position: relative;
  padding: 90px 70px;
  text-align: center;
  overflow: hidden;
  border-radius: 24px;
}

/* Glow morado muy sutil en el CTA */
.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.05), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
}

.cta-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.cta-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.social-link:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo-img {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-secondary); }

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-visual {
    width: 360px; height: 360px;
    right: 2%;
  }
  .hero-orb-wrap { width: 240px; height: 240px; }
  .hero-symbol { width: 100px; height: 100px; }
  .orbit-ring-1 { width: 190px; height: 190px; margin: -95px 0 0 -95px; }
  .orbit-ring-2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
  .orbit-ring-3 { width: 340px; height: 340px; margin: -170px 0 0 -170px; }
}

@media (max-width: 900px) {
  .hero { padding: 120px 24px 100px; flex-direction: column; min-height: auto; }
  .hero-inner { max-width: 100%; }
  .hero-visual { position: relative; right: auto; top: auto; transform: none; margin: 56px auto 0; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-card--offset, .manifesto-card--bottom { margin-left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar-pill { padding: 10px 10px 10px 16px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 30px; }
  .cta-inner { padding: 50px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 18px; }
  .nav-logo-img { height: 20px; }
}
