/* ============================================================
   Experts Website — styles.css
   Light hero → premium dark site. Accent: violet #8B5CF6.
   Fonts: Space Grotesk (headings) / Inter (body) / JetBrains Mono (labels)
   ============================================================ */

:root {
  --light-bg: #EDEDED;
  --light-text: #111111;
  --dark-bg: #0A0A0B;
  --text: #F5F5F7;
  --text-2: #6E6E73;
  --accent: #8B5CF6;
  --cyan: #22D3EE;
  --gradient: linear-gradient(90deg, #8B5CF6, #22D3EE);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* anchor targets stop below the fixed navbar instead of under it */
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; text-wrap: balance; }
p { text-wrap: pretty; }

.accent { color: var(--accent); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 40px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--dark-bg);
  display: flex; align-items: center; justify-content: center;
}
.pre-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.pre-mark { display: grid; grid-template-columns: repeat(3, 16px); grid-auto-rows: 16px; gap: 4px; }
.pre-mark span { border-radius: 2px; animation: prePulse 1.1s ease-in-out infinite; }
.pre-mark span:nth-child(1) { background: #8B5CF6; }
.pre-mark span:nth-child(2) { background: #22D3EE; animation-delay: 0.12s; }
.pre-mark span:nth-child(3) { background: #E8E8E8; animation-delay: 0.24s; }
.pre-mark span:nth-child(4) { background: #EC4899; animation-delay: 0.36s; }
.pre-mark span:nth-child(5) { background: #A3E635; animation-delay: 0.48s; }
@keyframes prePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.25; transform: scale(0.8); } }
.pre-count {
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}
.pre-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--gradient);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1001;
}

/* ---------- Custom cursor (desktop only) ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--accent);
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 2000;
  transition: width 0.25s, height 0.25s, background-color 0.3s, border-color 0.3s;
  display: none;
}
.cursor.is-hovering {
  width: 24px; height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}

/* ---------- Navbar (always dark, modern pill) ---------- */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(1280px, calc(100% - 32px));
  z-index: 1200; /* por encima del menú móvil (1100) para que la X sea visible y se pueda cerrar */
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(10, 10, 11, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.5s, background-color 0.5s;
}
.navbar.on-color { background: rgba(10, 10, 11, 0.35); }
.nav-inner {
  padding: 0 12px 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 18px; font-weight: 500; color: var(--text); }
.logo:hover { color: inherit; }
.logo-mark { display: grid; grid-template-columns: repeat(3, 7px); grid-auto-rows: 7px; gap: 2px; }
.logo-mark span { border-radius: 1px; }
.logo-mark span:nth-child(1) { background: #8B5CF6; }
.logo-mark span:nth-child(2) { background: #9A9A9E; }
.logo-mark span:nth-child(3) { background: #FFFFFF; }
.logo-mark span:nth-child(4) { background: #D9D2C5; }
.logo-mark span:nth-child(5) { background: #111111; box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--text-2);
  padding: 8px 14px; border-radius: 999px;
  transition: color 0.3s, background-color 0.3s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }

.nav-right { display: flex; align-items: center; gap: 20px; }

/* Pricing dropdown */
.nav-drop { position: relative; }
.nav-drop > a .caret {
  display: inline-block; margin-left: 5px;
  font-size: 9px; vertical-align: 1px;
  transition: transform 0.3s;
}
.nav-drop:hover > a .caret, .nav-drop:focus-within > a .caret { transform: rotate(180deg); }
/* invisible bridge so the pointer can travel from the pill to the menu */
.nav-drop::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 22px; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 250px;
  padding: 10px;
  background: #141417;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 1001;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  transition: color 0.25s, background-color 0.25s;
}
.nav-drop-menu a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.nav-drop-menu a.drop-all {
  color: var(--accent);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
  margin-bottom: 4px; padding-bottom: 12px;
}
.nav-drop-menu a.drop-all:hover { color: var(--accent); background: rgba(139, 92, 246, 0.08); }
.mobile-menu.open a.mob-link:nth-child(5) { transition-delay: 0.4s; }

/* Text-roll buttons */
.roll-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  padding: 8px 8px 8px 20px;
  transition: filter 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.roll { display: block; overflow: hidden; height: 20px; }
.roll-inner {
  display: flex; flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.roll-inner span { display: block; height: 20px; line-height: 20px; white-space: nowrap; }
.roll-btn:hover .roll-inner { transform: translateY(-50%); }
.arrow-circle {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.roll-btn:hover .arrow-circle { transform: rotate(-45deg); }
.btn-hero-gradient {
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  color: #fff; font-size: 14px; font-family: var(--font-head);
  padding: 10px 10px 10px 24px;
}
.btn-hero-gradient:hover { color: #fff; filter: brightness(1.1); }
.btn-hero-gradient .arrow-white { background: #fff; color: #8B5CF6; width: 28px; height: 28px; }

.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono);
}
.lang-globe { width: 14px; height: 14px; margin: 0 4px 0 7px; color: #a2a2a8; flex-shrink: 0; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: #8a8a8e;
  transition: color 0.3s, background 0.3s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  color: #fff;
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
}

.btn-gradient {
  display: inline-block;
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  color: #fff; border: none;
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: 999px; white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4); color: #fff; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  color: var(--light-text);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none;
  width: 40px; height: 40px; position: relative; z-index: 1101;
}
.hamburger span {
  display: block; width: 22px; height: 2px; margin: 5px auto;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.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 overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--dark-bg);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a.mob-link {
  font-family: var(--font-head); font-size: clamp(36px, 9vw, 56px);
  color: var(--text); opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s, color 0.3s;
}
.mobile-menu.open a.mob-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open a.mob-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a.mob-link:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open a.mob-link:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open a.mob-link:nth-child(4) { transition-delay: 0.32s; }
/* pricing sub-links inside the mobile menu */
.mob-group { display: flex; flex-direction: column; gap: 13px; margin: 8px 0; }
.mob-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2);
}
.mobile-menu .mob-sub-link {
  font-family: var(--font-head);
  font-size: clamp(17px, 4.6vw, 21px);
  color: rgba(245, 245, 247, 0.85);
  padding-left: 14px;
  border-left: 2px solid color-mix(in srgb, var(--accent) 55%, transparent);
  transition: color 0.3s;
}
.mobile-menu .mob-sub-link:hover { color: var(--accent); }
.mobile-menu .lang-toggle { margin-top: 32px; padding: 4px; }
.mobile-menu .lang-btn { font-size: 14px; padding: 8px 18px; }
.mobile-menu .lang-globe { width: 18px; height: 18px; }

/* ---------- Hero (dark, mouse-reactive gradient shader) ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  color: var(--text);
  background: var(--dark-bg);
  padding-top: 108px; /* clearance for the fixed navbar at short viewports */
}
.hero-shader {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
/* fluted-glass vertical streaks over the color flow */
.hero-fluted {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(31deg, rgba(255,255,255,0.03) 0 1.5px, rgba(255,255,255,0) 1.5px 11px);
}
/* film grain */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* terminal line: types what the studio is "doing" in real time */
.hero-terminal {
  position: relative; z-index: 2;
  width: 100%; max-width: 1440px; margin: 0 auto;
  padding: 24px 48px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #9a9aa0;
  white-space: nowrap; overflow: hidden;
}
.term-prompt { color: var(--accent); }
.term-ok { color: #A3E635; }
.term-cursor { color: #F5F5F7; animation: termBlink 1s steps(2) infinite; }
@keyframes termBlink { 50% { opacity: 0; } }

.hero-spacer { flex: 1; }
.hero-bottom {
  position: relative; z-index: 2;
  width: 100%; max-width: 1440px; margin: 0 auto;
  padding: 0 48px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
  flex: 6; /* content takes most of the space, vertically centered */
}
.hero-label {
  font-size: 14px;
  color: #9a9aa0;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(245, 245, 247, 0.75);
  line-height: 1.6;
  max-width: 48ch;
  margin-top: 20px;
}
.hero-proof {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 247, 0.6);
}
.hero-right {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-end;
  flex-shrink: 0;
  width: min(42vw, 560px);
}
/* browser-window frame for the showreel video */
.hero-browser {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #141417;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bdot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.browser-url {
  flex: 1; margin-left: 10px;
  font-family: var(--font-mono); font-size: 11px;
  color: #9a9aa0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 4px 12px;
  text-align: center;
}
.browser-video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.browser-caption {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.browser-caption .kick {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}
.hero-stats {
  display: flex; flex-direction: row; gap: 32px;
  text-align: right;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-value {
  font-family: "Unbounded", var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 1;
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}
.hero-stat-label { font-size: 13px; color: #9a9aa0; }

/* Retro-RGB chromatic chrome text */
@keyframes chromeFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.chrome-text {
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}
.hero-title {
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 22ch;
  margin: 0;
}
.hero-title .word {
  display: inline-block;
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 48px; }
.partner-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 500; color: var(--text);
  transition: border-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.partner-badge:hover { border-color: rgba(255, 255, 255, 0.2); }
.partner-star { color: #8B5CF6; font-size: 18px; line-height: 1; }
.badge-feat {
  background: #fff; color: #17171a;
  font-size: 10px; font-weight: 600;
  padding: 2px 7px; border-radius: 4px;
  letter-spacing: 0.03em;
}
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 48px; z-index: 2;
  background: rgba(255,255,255,0.5);
  overflow: hidden;
}
.scroll-indicator::after {
  content: ""; position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ---------- Manifesto (word-by-word reveal) ---------- */
.manifesto { height: 300vh; position: relative; }
.manifesto-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  /* top padding clears the floating navbar */
  padding: 130px 40px 48px;
}
.manifesto-text {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.35;
  max-width: 1280px;
  text-align: center;
}
.manifesto-text .word { color: #3A3A3C; transition: color 0.3s linear; }
.manifesto-text .word.lit { color: #F5F5F7; }
/* ~25% of words light up in a scattered multicolor palette */
.manifesto-text .word.colored.lit { color: var(--lit-c, #F5F5F7); }
/* Key words (sell / automate / grow) light up with the flowing chrome gradient */
.manifesto-text .word.accent-word.lit {
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
  display: inline-block;
}
/* custom sales chips woven into the manifesto */
.manifesto-text .word.mchip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.4em;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: middle;
  padding: 0.55em 1em;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--c, #8B5CF6) 55%, transparent);
  background: color-mix(in srgb, var(--c, #8B5CF6) 12%, transparent);
  color: var(--c, #8B5CF6);
  transform: translateY(-0.2em);
  opacity: 0.22;
  transition: opacity 0.3s linear, box-shadow 0.3s linear;
  white-space: nowrap;
}
.manifesto-text .word.mchip.lit {
  color: var(--c, #8B5CF6);
  opacity: 1;
  box-shadow: 0 0 20px color-mix(in srgb, var(--c, #8B5CF6) 35%, transparent);
}

/* ---------- Sections (dark) ---------- */
section.dark-section { padding: 80px 0; color: var(--text); }

/* ---------- Portfolio ---------- */
/* Pixel color wave: sweeps across when the section enters the viewport */
.pixel-wave {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-auto-rows: 12px;
  gap: 4px;
  margin-bottom: 56px;
}
.pixel-wave div { opacity: 0; border-radius: 2px; }

.badge-new {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  background: #fff; color: #EC1E9C;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
}


/* ---------- Services — stacked folder panels ---------- */
.services-section .services-label-row { padding-bottom: 40px; }
.services-stack { position: relative; }
.service-panel {
  position: sticky; top: 0;
  min-height: 92vh;
  background: var(--pbg, #3B3BEF);
  color: #fff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  transform-origin: center top;
}
.panel-inner {
  min-height: 92vh;
  max-width: 1400px; margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 48px;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 56px;
  align-items: center;
}
.panel-text {
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  min-height: 66vh;
}
.panel-title-mask { overflow: hidden; }
.panel-title {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(56px, 6.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  min-width: 0; max-width: 100%;
  overflow-wrap: anywhere; hyphens: auto;
}
.panel-title > span:first-child { min-width: 0; }
.service-panel .badge-new {
  background: #fff; color: var(--pbg);
  -webkit-text-fill-color: var(--pbg);
  animation: none;
  font-size: 13px;
}
.panel-also {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 8px;
}
.panel-also-label {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.75;
}
.also-chip {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 7px 15px;
  white-space: nowrap;
}
.panel-features {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  align-self: flex-start;
  max-width: 640px;
}
.panel-features li { display: flex; align-items: baseline; gap: 10px; }
.panel-features li::before { content: "→"; opacity: 0.7; }
.panel-desc {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.5;
  max-width: 42ch;
}
.panel-media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: rgba(0, 0, 0, 0.22);
}
.panel-media::before {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}
.panel-media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
/* scroll room so the last panel stays pinned while Process slides over it */
.services-spacer { height: 92vh; }
/* Process closes the folder deck: pulled up over the spacer's scroll region */
section.covers {
  position: relative; z-index: 2;
  margin-top: -92vh;
  background: var(--dark-bg);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.25);
}
/* navbar readability over the colored panels */
.navbar.on-color { background: rgba(10, 10, 11, 0.35); }
/* every section after the covering one must also paint above the pinned
   panels, or their edges peek through transparent backgrounds */
section.covers ~ section {
  position: relative; z-index: 2;
  background: var(--dark-bg);
}

/* ---------- Process: giant stacked words, editorial rows ---------- */
.process-rows { display: flex; flex-direction: column; }
.process-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.process-row:first-child { border-top: 1px solid var(--border); }
.prow-num {
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: var(--text-2);
  padding-bottom: 14px;
  flex-shrink: 0;
}
.prow-num .plus { color: var(--accent); }
.prow-desc {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 300px;
  padding-bottom: 14px;
}
.prow-mask { overflow: hidden; flex: 1; text-align: right; }
.prow-word {
  display: inline-block;
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(1.6rem, 6.5vw, 6rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.process-row:hover .prow-word {
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}

/* ---------- Paths: editorial section over shader ---------- */
.paths-hero {
  position: relative;
  overflow: hidden;
  display: flex;
}
.paths-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.paths-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,11,0.88), rgba(10,10,11,0.62) 45%, rgba(10,10,11,0.88));
}
.paths-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  padding: 96px 0 64px;
}
.paths-inner .container { width: 100%; flex-shrink: 0; }
/* middle row: dino video in a browser frame + selectable options */
.paths-mid {
  display: flex; align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-top: 40px; padding-bottom: 48px;
}
.paths-browser { flex: 1 1 380px; max-width: 560px; }
.paths-kicker {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  max-width: 26ch;
  margin-top: 20px;
  color: var(--text);
}
.paths-kicker .accent {
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}
.paths-kicker .big {
  font-family: "Unbounded", var(--font-head);
  font-size: 1.3em;
  font-weight: 600;
  text-transform: uppercase;
}
.paths-inner .section-label { margin-bottom: 0; }
/* middle: selectable option cards, stacked list */
.paths-stats-wrap {
  flex: 1;
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
  gap: 14px;
}
.paths-hint {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.9vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
}
.paths-stats {
  display: flex; flex-direction: column;
  gap: 12px;
  width: min(460px, 100%);
}
.pstat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 18px; row-gap: 3px;
  align-items: center;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 16px 20px;
  /* permanent flowing gradient border */
  background:
    linear-gradient(rgba(12, 12, 14, 0.72), rgba(12, 12, 14, 0.72)) padding-box,
    linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6) border-box;
  background-size: auto, 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
/* each option card gets its own flowing gradient */
.pstat:nth-child(1) {
  background:
    linear-gradient(rgba(12, 12, 14, 0.72), rgba(12, 12, 14, 0.72)) padding-box,
    linear-gradient(120deg, #8B5CF6, #22D3EE, #8B5CF6) border-box;
  background-size: auto, 300% 300%;
}
.pstat:nth-child(2) {
  background:
    linear-gradient(rgba(12, 12, 14, 0.72), rgba(12, 12, 14, 0.72)) padding-box,
    linear-gradient(120deg, #22D3EE, #A3E635, #22D3EE) border-box;
  background-size: auto, 300% 300%;
}
.pstat:nth-child(3) {
  background:
    linear-gradient(rgba(12, 12, 14, 0.72), rgba(12, 12, 14, 0.72)) padding-box,
    linear-gradient(120deg, #EC4899, #8B5CF6, #EC4899) border-box;
  background-size: auto, 300% 300%;
}
.pstat:nth-child(4) {
  background:
    linear-gradient(rgba(12, 12, 14, 0.72), rgba(12, 12, 14, 0.72)) padding-box,
    linear-gradient(120deg, #A3E635, #22D3EE, #A3E635) border-box;
  background-size: auto, 300% 300%;
}
.pstat:nth-child(5) {
  background:
    linear-gradient(rgba(12, 12, 14, 0.72), rgba(12, 12, 14, 0.72)) padding-box,
    linear-gradient(120deg, #8B5CF6, #EC4899, #8B5CF6) border-box;
  background-size: auto, 300% 300%;
}
.pstat:hover, .pstat:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.28);
}
.pstat-num {
  grid-row: 1 / span 2;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1;
}
.pstat-num .plus { color: var(--accent); font-size: 0.55em; vertical-align: 0.45em; }
.pstat-label {
  grid-column: 2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--text);
}
.pstat-benefit {
  grid-column: 2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #9a9aa0;
  line-height: 1.4;
  max-width: none;
  text-transform: none;
}
.pstat-go {
  grid-column: 3;
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 4px;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
}
.pstat:hover .pstat-go { opacity: 1; transform: translateX(3px); }
/* bottom: compact 2-column block — copy left, giant heading right */
.paths-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
}
.paths-copy { display: flex; flex-direction: column; gap: 18px; max-width: 400px; }
.paths-tagline {
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 420px;
}
.paths-cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 6px; }
.paths-ctasub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-2);
  white-space: nowrap;
}
.paths-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(14px, 1.7vw, 21px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.paths-cta:hover { color: #fff; transform: translateX(4px); }
.paths-arrow { font-size: 0.9em; color: var(--accent); }
.paths-desc {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--text-2);
  text-align: left;
}
.paths-heading { text-align: right; }
.ph-mask { overflow: hidden; }
.ph-word {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 6.8vw, 6.2rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}
/* "Evolve" — display font + flowing chrome gradient */
.ph-mask:nth-child(1) .ph-word {
  font-family: "Unbounded", var(--font-head);
  font-weight: 600;
  font-size: clamp(1.7rem, 7vw, 7rem);
  letter-spacing: 0;
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}

/* ---------- Marquee ---------- */
.marquee-section { padding: 56px 0; overflow: hidden; }
.marquee { display: flex; overflow: hidden; user-select: none; }
.marquee + .marquee { margin-top: 12px; }
.marquee-track {
  display: flex; flex-shrink: 0; align-items: center;
  gap: 48px; padding-right: 48px;
  animation: marqueeScroll 40s linear infinite;
}
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-100%); } }
.marquee-item {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(48px, 6vw, 80px);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px #4a4a4f;
  transition: color 0.3s, -webkit-text-stroke-color 0.3s;
}
.marquee-item:hover { color: #fff; -webkit-text-stroke-color: #fff; }
.marquee-star { color: var(--accent); font-size: 28px; -webkit-text-stroke: 0; }

/* ---------- Numbers ---------- */
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.number-item { --nc: var(--accent); text-align: left; }
.number-value {
  font-family: "Unbounded", var(--font-head); font-weight: 600;
  font-size: clamp(40px, 4.6vw, 66px);
  color: var(--nc);
  line-height: 1;
  margin-bottom: 12px;
  white-space: nowrap;
  transition: text-shadow 0.4s;
}
.number-item:hover .number-value { text-shadow: 0 0 40px color-mix(in srgb, var(--nc) 55%, transparent); }
.number-label { color: var(--text-2); font-size: 15px; }

/* ---------- Testimonials ---------- */
/* pan-y hands horizontal gestures to the drag handler while keeping
   vertical page scrolling native — without it phones swallow the swipe */
.testimonials-viewport { overflow: hidden; cursor: grab; touch-action: pan-y; }
.testimonials-viewport.dragging { cursor: grabbing; }
.testimonials-track { display: flex; gap: 28px; will-change: transform; }
.testimonial-card {
  --tc: var(--accent);
  flex: 0 0 min(560px, 85%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  background: rgba(255,255,255,0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--tc) 18%, transparent);
  border-color: transparent;
  background:
    linear-gradient(#121215, #121215) padding-box,
    linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6) border-box;
  background-size: auto, 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
}
.testimonial-stars { color: var(--tc); letter-spacing: 4px; margin-bottom: 20px; font-size: 15px; text-shadow: 0 0 16px color-mix(in srgb, var(--tc) 40%, transparent); }
.testimonial-quote { font-family: var(--font-head); font-size: 22px; line-height: 1.45; margin-bottom: 28px; }
.testimonial-name { font-size: 15px; font-weight: 600; }
.testimonial-biz { font-size: 14px; color: var(--tc); }
.testimonial-dots { display: flex; gap: 10px; margin-top: 32px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: #3A3A3C; padding: 0;
  transition: background-color 0.3s, transform 0.3s;
}
.dot.active { background: var(--accent); transform: scale(1.3); }

/* ---------- Contact: dark, typewriter + pills, mouse-scrubbed video ---------- */
.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  color: var(--text);
  display: flex; align-items: center;
  padding: 96px 0 110px;
}
.contact-inner { position: relative; z-index: 2; }
.contact-typed-wrap {
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(32px, 4.6vw, 62px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: pre-wrap;
  min-height: 2.4em;
  margin-bottom: 32px;
}
.contact-typed-wrap .typed {
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
}
.type-cursor {
  display: inline-block;
  width: 3px; height: 1.05em;
  background: #F5F5F7;
  vertical-align: middle;
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}
.type-cursor.done { display: none; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.contact-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: #E9E9EC;
  line-height: 1.65;
  margin-bottom: 56px;
  max-width: 42rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
/* service pills */
.pick-title { font-family: var(--font-head); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--text); }
.pick-sub { color: #C9C9CF; font-size: 15px; margin-bottom: 24px; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.pills { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.pill {
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-head); font-size: 15px; font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--border);
  transition: background-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pill:hover { border-color: rgba(139, 92, 246, 0.6); }
.pill.active {
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  transform: translateY(-1px);
}
.pill.active::before { content: "✓ "; }
.pick-status { margin-bottom: 56px; min-height: 24px; }
.pick-empty { font-size: 12px; font-style: italic; opacity: 0.5; color: var(--text); }
.pick-banner[hidden], .pick-empty[hidden] { display: none; }
.pick-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pick-ready { font-size: 14px; color: var(--text); }
.pick-go {
  background: none; border: none; padding: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s;
}
.pick-go:hover { transform: translateX(4px); }
/* form (dark theme) */
.contact-form { max-width: 720px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-mono); font-size: 12px; color: #C9C9CF; letter-spacing: 0.06em; text-transform: uppercase; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.form-field input, .form-field textarea {
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.3s;
  width: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #48484d; }
.form-submit {
  grid-column: 1 / -1; justify-self: start;
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  color: #fff;
  border: none; border-radius: 999px;
  font-family: var(--font-head); font-size: 16px; font-weight: 500;
  padding: 16px 36px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4); }
.form-status { grid-column: 1 / -1; font-size: 15px; display: none; }
.form-status.success { display: block; color: #34D399; }
.form-status.error { display: block; color: #F87171; }
.contact-secondary {
  margin-top: 56px;
  display: flex; gap: 40px; flex-wrap: wrap; align-items: center;
  font-size: 15px;
}
.contact-secondary a { color: #C9C9CF; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.contact-secondary a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  color: var(--text);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo { color: var(--text); margin-bottom: 16px; }
.footer-tagline { color: var(--text-2); font-size: 15px; line-height: 1.6; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 400; color: var(--text-2); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  font-size: 13px; color: var(--text-2);
}

/* ---------- Floating chat ---------- */
.chat-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(139,92,246,0.4);
  opacity: 0; transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.chat-fab.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-fab svg { width: 24px; height: 24px; fill: #fff; }
.chat-popover {
  position: fixed; bottom: 96px; right: 28px; z-index: 900;
  background: #141417;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 264px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.chat-popover.open { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-popover h5 { font-family: var(--font-head); font-size: 15px; font-weight: 500; margin-bottom: 14px; color: var(--text); }
.chat-popover a {
  display: block; font-size: 14px; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 8px; color: var(--text);
  transition: border-color 0.3s, color 0.3s;
}
.chat-popover a:hover { border-color: var(--accent); color: var(--accent); }
/* WhatsApp = primary option, with a "fastest reply" tag stacked below */
.chat-popover .chat-wa {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  border-color: color-mix(in srgb, #A3E635 45%, transparent);
  background: color-mix(in srgb, #A3E635 10%, transparent);
  font-weight: 600;
}
.chat-popover .chat-wa:hover { border-color: #A3E635; color: var(--text); }
.chat-note { font-size: 11.5px; color: var(--text-2); line-height: 1.5; margin-top: 4px; }
/* on-brand lime "fastest reply" pill */
.wa-fast {
  display: inline-block;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  background: #A3E635; color: #16210a;
  padding: 3px 8px; border-radius: 999px;
  line-height: 1.3;
  max-width: 100%;
  flex-shrink: 0;
}
.wa-fast::before { content: "⚡ "; }
/* contact WhatsApp line + note */
.contact-secondary .wa-link { display: inline-flex; align-items: center; gap: 10px 12px; flex-wrap: wrap; }
.contact-wa-note {
  margin-top: 16px;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
  max-width: 46ch;
}

/* ---------- Reveal helper (GSAP sets initial state) ---------- */
.reveal { will-change: transform, opacity; }

/* ============================================================
   Services page (services.html / es/services.html)
   ============================================================ */

/* Sub-page hero: same shader treatment, shorter, single column */
.hero--sub { min-height: 88vh; }
.hero--sub .hero-bottom { align-items: flex-end; }
.hero--sub .hero-copy { max-width: 880px; }
.hero--sub .hero-title { max-width: 18ch; }
.hero-crumb {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.06em;
  color: #9a9aa0;
  margin-bottom: 28px;
}
.hero-crumb a { color: #9a9aa0; }
.hero-crumb a:hover { color: var(--text); }
.hero-crumb .sep { margin: 0 8px; opacity: 0.5; }

/* CTA link inside a colored service panel */
.panel-cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--pbg, #3B3BEF);
  font-family: var(--font-head); font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: 999px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.panel-cta:hover {
  color: var(--pbg, #3B3BEF);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.panel-cta .arrow { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.panel-cta:hover .arrow { transform: translateX(4px); }

/* ---------- Pricing ---------- */
.pricing-group + .pricing-group { margin-top: 96px; }
.pricing-group-head { margin-bottom: 40px; max-width: 640px; }
.pricing-group-title {
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
}
.pricing-group-sub { color: var(--text-2); font-size: 16px; line-height: 1.6; }
/* "every plan includes" guarantees strip */
.plan-includes {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 36px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.plan-includes-title {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  margin-right: 6px;
}
.inc-chip {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(245, 245, 247, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
}
.inc-chip::before { content: "✓ "; color: #A3E635; }
@media (max-width: 768px) {
  .inc-chip { white-space: normal; }
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  --pc: var(--accent);
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px color-mix(in srgb, var(--pc) 18%, transparent);
}
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(#121215, #121215) padding-box,
    linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6) border-box;
  background-size: auto, 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
}
.price-flag {
  position: absolute; top: -13px; left: 32px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  color: #fff;
  padding: 5px 14px; border-radius: 999px;
}
.price-name { font-family: var(--font-head); font-size: 20px; font-weight: 500; }
.price-for {
  font-size: 13.5px; color: var(--text-2); line-height: 1.55;
  min-height: 4em;
}
.price-value {
  font-family: "Unbounded", var(--font-head);
  font-weight: 600;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1;
  color: var(--pc);
}
.price-value .price-from { font-size: 0.38em; font-weight: 500; color: var(--text-2); display: block; margin-bottom: 8px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.price-term { font-family: var(--font-mono); font-size: 12px; color: var(--text-2); letter-spacing: 0.05em; }
.price-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
  font-size: 14px; line-height: 1.5;
  color: rgba(245, 245, 247, 0.85);
  flex: 1;
}
.price-features { font-size: 13.5px; }
.price-features li { display: flex; align-items: baseline; gap: 10px; }
.price-features li::before { content: "→"; color: var(--pc); flex-shrink: 0; font-size: 13px; }
/* "everything in the previous plan" upsell line */
.price-features li.all-prev { color: var(--pc); font-weight: 600; }
.price-features li.all-prev::before { content: "✦"; font-size: 11px; }
.price-cta {
  display: block; text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent; color: var(--text);
  font-family: var(--font-head); font-size: 15px; font-weight: 500;
  padding: 14px 24px; border-radius: 999px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, color 0.3s;
}
.price-cta:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.price-card.featured .price-cta {
  border: none;
  background: linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6);
  background-size: 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
  color: #fff;
}
.price-card.featured .price-cta:hover { box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4); color: #fff; }
.pricing-grid.three { grid-template-columns: repeat(3, 1fr); gap: 26px; }
/* custom-project + chat-with-an-expert banner under the plans */
.quote-banner {
  margin-top: 44px; padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 20px;
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.14), rgba(34, 211, 238, 0.06));
  display: flex; gap: 28px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.quote-banner h2 { font-family: var(--font-head); font-size: clamp(20px, 2.4vw, 26px); margin: 0 0 8px; }
.quote-banner p { color: rgba(245, 245, 247, 0.7); font-size: 15px; line-height: 1.55; max-width: 54ch; margin: 0; }
.quote-banner-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.quote-banner .price-cta { white-space: nowrap; }
@media (max-width: 640px) { .quote-banner-ctas { width: 100%; } .quote-banner-ctas .price-cta { flex: 1; } }

/* "what's not included" note per plan (label lives in the translated text) */
.price-x {
  font-size: 12px; line-height: 1.5;
  color: rgba(245, 245, 247, 0.55);
  margin: 4px 0 16px; padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* optional monthly care plan: wide horizontal banner */
.care-card {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1.3fr auto 1.4fr;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: center;
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 40px 44px;
  background:
    linear-gradient(#121215, #121215) padding-box,
    linear-gradient(120deg, #8B5CF6, #22D3EE, #EC4899, #A3E635, #8B5CF6) border-box;
  background-size: auto, 300% 300%;
  animation: chromeFlow 8s ease-in-out infinite;
}
.care-flag {
  position: absolute; top: -13px; left: 44px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: #fff; color: #17171a;
  padding: 5px 14px; border-radius: 999px;
}
.care-title {
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
}
.care-for { font-size: 14.5px; color: var(--text-2); line-height: 1.6; max-width: 40ch; }
.care-price-wrap { text-align: center; }
.care-price {
  font-family: "Unbounded", var(--font-head);
  font-weight: 600;
  font-size: clamp(38px, 3.4vw, 52px);
  line-height: 1;
  background: linear-gradient(120deg, #E8E8E8, #22D3EE, #8B5CF6, #EC4899, #A3E635, #E8E8E8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeFlow 8s ease-in-out infinite;
  white-space: nowrap;
}
.care-term {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--text-2); letter-spacing: 0.04em;
  margin-top: 10px;
}
.care-right { display: flex; flex-direction: column; gap: 18px; }
.care-features {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 13.5px;
  color: rgba(245, 245, 247, 0.85);
}
.care-features li { display: flex; align-items: baseline; gap: 9px; }
.care-features li::before { content: "✓"; color: #A3E635; flex-shrink: 0; font-size: 12px; }
.care-card .price-cta { align-self: flex-start; }
@media (max-width: 1000px) {
  .care-card { grid-template-columns: 1fr; text-align: left; padding: 36px 28px; }
  .care-price-wrap { text-align: left; }
  .pricing-grid.three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid.three { grid-template-columns: 1fr; }
  .care-features { grid-template-columns: 1fr; }
  .care-card { margin-top: 72px; }
}

.pricing-note {
  margin-top: 48px;
  font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--font-head); font-size: clamp(17px, 1.6vw, 21px); font-weight: 500;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .faq-x {
  flex-shrink: 0;
  font-family: var(--font-mono); font-size: 20px; font-weight: 400;
  color: var(--accent);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[open] summary .faq-x { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 28px;
  max-width: 68ch;
  color: rgba(245, 245, 247, 0.75);
  font-size: 15.5px; line-height: 1.7;
}

/* ---------- Galaxy zone: starfield behind hero + services ---------- */
.galaxy-zone { position: relative; background: var(--dark-bg); overflow: hidden; }
.galaxy-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 0; pointer-events: none;
  will-change: transform;
}
.hero--galaxy { background: transparent; overflow: visible; }
/* grain spans the whole galaxy zone so no seam shows between sections */
.zone-grain { z-index: 0; }
.galaxy-services { position: relative; z-index: 1; padding: 48px 0 150px; }

/* Liquid-glass service bubbles */
.bubble-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 32px;
  align-items: stretch;
}
.glass-bubble {
  --bc: var(--accent);
  position: relative;
  display: flex; flex-direction: column; gap: 26px;
  padding: 60px 52px;
  /* glass look without backdrop-filter: re-blurring the animated starfield
     every frame was the main scroll cost on this page */
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.07)),
    rgba(14, 14, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  /* static organic shape: continuously morphing border-radius forced a
     full repaint of both bubbles every frame */
  border-radius: 38% 62% 55% 45% / 45% 48% 52% 55%;
  box-shadow:
    0 30px 90px color-mix(in srgb, var(--bc) 16%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -30px 60px rgba(255, 255, 255, 0.02);
  transition: box-shadow 0.6s ease;
}
.glass-bubble:nth-child(2) { border-radius: 55% 45% 40% 60% / 52% 56% 44% 48%; }
.glass-bubble:hover {
  box-shadow:
    0 30px 110px color-mix(in srgb, var(--bc) 30%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -30px 60px rgba(255, 255, 255, 0.03);
}
.bubble-glow {
  position: absolute; inset: -1px; z-index: -1;
  border-radius: inherit;
  background: radial-gradient(60% 55% at 30% 20%, color-mix(in srgb, var(--bc) 22%, transparent), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}
.bubble-title {
  font-family: "Unbounded", var(--font-head);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.15;
}
.bubble-desc {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(245, 245, 247, 0.82);
  max-width: 44ch;
}
.bubble-features {
  list-style: none;
  display: grid; grid-template-columns: 1fr;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.75);
  flex: 1;
}
.bubble-features li { display: flex; align-items: baseline; gap: 10px; }
.bubble-features li::before { content: "✦"; color: var(--bc); flex-shrink: 0; font-size: 11px; }
.bubble-cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid color-mix(in srgb, var(--bc) 60%, transparent);
  background: color-mix(in srgb, var(--bc) 14%, transparent);
  color: var(--text);
  font-family: var(--font-head); font-size: 15px; font-weight: 500;
  padding: 13px 26px; border-radius: 999px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, background-color 0.4s;
}
.bubble-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--bc) 30%, transparent);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--bc) 30%, transparent);
}
/* small decorative floating glass orbs */
.glass-orb {
  position: absolute; z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 62%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  animation: orbFloat 13s ease-in-out infinite alternate;
}
.glass-orb.o2 { animation-delay: -4s; animation-duration: 17s; }
.glass-orb.o3 { animation-delay: -8s; animation-duration: 21s; }
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(14px, -22px) scale(1.05); }
  100% { transform: translate(-10px, 12px) scale(0.97); }
}

/* Services page responsive */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .price-for { min-height: 0; }
}
@media (max-width: 1200px) {
  .bubble-grid { gap: 36px; }
}
@media (max-width: 768px) {
  .hero--sub { min-height: 78vh; }
  .bubble-grid { grid-template-columns: 1fr; gap: 32px; }
  .glass-bubble, .glass-bubble:nth-child(2) { padding: 40px 30px; border-radius: 8% 12% 10% 9% / 10% 9% 12% 8%; }
  .galaxy-services { padding: 24px 0 100px; }
  .glass-orb { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-group + .pricing-group { margin-top: 72px; }
  .price-for { min-height: 0; }
  .panel-cta { align-self: stretch; justify-content: center; order: 6; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .cursor, .scroll-indicator, .pixel-grid, .preloader { display: none !important; }
  .chrome-text, .hero-title .word, .manifesto-text .word.accent-word.lit { -webkit-text-fill-color: initial; background: none; color: var(--accent); }
  .hero-title { color: #fff; }
  body { background-color: var(--dark-bg); }
  .hero-shader { display: none; }
  .manifesto { height: auto; padding: 140px 0; }
  .manifesto-sticky { position: static; height: auto; }
  .manifesto-text .word { color: #F5F5F7; }
  .manifesto-text .word.accent-word { color: var(--accent); }
  .service-panel { position: static; }
  .services-spacer { display: none; }
  section.covers { margin-top: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .panel-inner { grid-template-columns: 1fr 1fr; }
  .panel-title { font-size: clamp(44px, 6vw, 72px); }
  .panel-features { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Collapse the top nav to the hamburger before the long ES labels + CTA overflow
   the header (happens on split-screen / tablet widths between ~900–1000px). */
@media (max-width: 1024px) {
  .nav-links,
  .nav-right .lang-toggle,
  .nav-right .btn-gradient,
  .nav-right .nav-wa { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar { top: 12px; width: calc(100% - 24px); }
  .nav-inner { padding: 0 8px 0 18px; height: 56px; }
  .nav-links, .nav-right .lang-toggle, .nav-right .btn-gradient, .nav-right .nav-wa { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 4.2rem); }
  .manifesto-sticky { padding: 100px 20px 60px; }
  .hero-terminal { padding: 16px 20px 0; }
  .hero-bottom { padding: 0 20px 40px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 36px; }
  .hero-right { width: 100%; align-items: flex-start; }
  .hero-stats { text-align: left; gap: 24px; flex-wrap: wrap; }
  section.dark-section { padding: 80px 0; }
  /* services: keep the folder-stacking reveal, compact so each panel fits the viewport */
  .service-panel { position: sticky; top: 0; min-height: 100svh; }
  .panel-inner {
    min-height: 100svh;
    display: flex; flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    padding: 72px 20px 32px;
  }
  .panel-text { display: contents; }
  .panel-title-mask { order: 1; }
  .panel-media { order: 2; width: 100%; }
  .panel-desc { order: 3; }
  .panel-features { order: 4; }
  .panel-also { order: 5; }
  .also-chip { font-size: 11px; padding: 6px 12px; white-space: normal; }
  .panel-title { font-size: clamp(24px, 7.4vw, 40px); overflow-wrap: anywhere; hyphens: auto; }
  .panel-media { aspect-ratio: 16 / 10; }
  .panel-desc { font-size: 16px; }
  .panel-features { grid-template-columns: 1fr 1fr; gap: 8px 14px; font-size: 11px; }
  .services-spacer { display: block; height: 100svh; }
  section.covers { margin-top: -100svh; }
  /* manifesto: smaller type so the paragraph fits under the navbar with air */
  .manifesto-text { font-size: 21px; line-height: 1.6; }
  /* terminal line: keep it on one line */
  .hero-terminal { font-size: 11px; }
  .term-prompt { display: none; }
  .process-row { flex-wrap: wrap; gap: 12px; padding: 18px 0; }
  .prow-desc { max-width: 180px; font-size: 10px; padding-bottom: 6px; }
  .prow-num { padding-bottom: 6px; }
  .paths-stats { justify-content: flex-start; }
  .paths-stats-wrap { align-items: flex-start; }
  .pstat { align-items: flex-start; text-align: left; width: 100%; }
  .paths-inner { padding: 100px 0 40px; }
  /* stack the middle row + editorial rows on mobile, editorial text first */
  .paths-mid { flex-direction: column; align-items: stretch; gap: 24px; order: 2; }
  .paths-browser { flex: none; max-width: none; }
  .paths-bottom { flex-direction: column; align-items: flex-start; gap: 28px; margin-top: 28px; order: 1; }
  .paths-copy { max-width: none; }
  .paths-heading { text-align: left; width: 100%; }
  .ph-word { font-size: clamp(2.1rem, 10.5vw, 3.6rem); }
  .paths-kicker { max-width: none; }
  .contact-typed-wrap { font-size: clamp(26px, 8vw, 36px); }
  .pick-banner { flex-direction: column; align-items: flex-start; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-fab { bottom: 20px; right: 20px; }
  .chat-popover { right: 20px; bottom: 88px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .roll-btn { justify-content: space-between; }
  .hero-ctas .partner-badge { justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-value { font-size: 20px; }
  .numbers-grid { grid-template-columns: 1fr; gap: 40px; }
  .marquee-item { font-size: 40px; }
  .testimonial-card { padding: 28px; flex-basis: 92%; }
  .prow-desc { display: none; }
}

/* ============================================================
   Portfolio strip — sits above the pricing tables so anyone
   comparing plans can go and see the work first.
   ============================================================ */
.pf-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 56px;
  padding: 28px 24px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 140% at 12% 0%, rgba(139, 92, 246, 0.14), transparent 68%),
    rgba(255, 255, 255, 0.02);
}
@media (min-width: 900px) {
  .pf-strip { grid-template-columns: auto 1fr auto; gap: 34px; padding: 30px 34px; }
}
.pf-strip-shots { display: flex; gap: 8px; flex-shrink: 0; }
.pf-strip-shots span {
  width: 58px; height: 42px; border-radius: 7px; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 900px) {
  .pf-strip-shots span { width: 66px; height: 48px; }
  /* a light fan, so the row reads as a stack of sites rather than swatches */
  .pf-strip-shots span:nth-child(1) { transform: rotate(-4deg); }
  .pf-strip-shots span:nth-child(3) { transform: rotate(3deg); }
  .pf-strip-shots span:nth-child(4) { transform: rotate(-2deg); }
  .pf-strip:hover .pf-strip-shots span { transform: none; }
}
/* Real screenshots, at 260px rather than the full-size ones the portfolio
   grid uses — these render at 66x48 and the big files would be wasted bytes. */
.pf-strip-shots span {
  background-size: cover;
  background-position: top center;
}
.pf-strip-s1 { background-image: url("/img/portfolio/shot-strata-sm.jpg"); background-color: #120c08; }
.pf-strip-s2 { background-image: url("/img/portfolio/shot-vessel-sm.jpg"); background-color: #f5f2ee; }
.pf-strip-s3 { background-image: url("/img/portfolio/shot-cedarwell-sm.jpg"); background-color: #e8f4f8; }
.pf-strip-s4 { background-image: url("/img/portfolio/shot-ember-sm.jpg"); background-color: #140807; }
.pf-strip-copy h3 {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
}
.pf-strip-copy p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 52ch;
}
.pf-strip-cta {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: var(--gradient); color: #fff;
  border-radius: 999px; padding: 13px 26px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pf-strip-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(139, 92, 246, 0.32);
}

/* ============================================================
   Home showcase — the eight demos fanned out, straightening
   and lifting under the cursor. Sits after Process: what we do,
   how we do it, then the proof.
   ============================================================ */
.showcase-head { max-width: 760px; }
.showcase-head h2 {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.08; letter-spacing: -0.02em;
}
.showcase-head p {
  margin-top: 18px; font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7; color: var(--text-2); max-width: 58ch;
}

.showcase-fan {
  display: flex; justify-content: center; align-items: center;
  margin: 56px 0 0; padding: 30px 0 40px;
  perspective: 1600px;
}
.showcase-fan .sc {
  position: relative; flex-shrink: 0;
  width: 200px; aspect-ratio: 16/10;
  margin-left: -60px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease, border-color 0.45s ease;
  will-change: transform;
}
.showcase-fan .sc:first-child { margin-left: 0; }
.showcase-fan .sc img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
/* resting fan: alternating tilt, the middle cards sitting slightly higher */
.showcase-fan .sc:nth-child(odd)  { transform: rotate(-3.5deg) translateY(6px); }
.showcase-fan .sc:nth-child(even) { transform: rotate(3.5deg) translateY(-6px); }
/* hovering the row straightens every card and spreads the stack a little */
.showcase-fan:hover .sc { transform: rotate(0deg) translateY(0); margin-left: -34px; }
.showcase-fan:hover .sc:first-child { margin-left: 0; }
/* the card actually under the cursor comes forward */
.showcase-fan .sc:hover {
  transform: translateY(-14px) scale(1.06) !important;
  z-index: 5; border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 26px 60px rgba(139, 92, 246, 0.35);
}
.showcase-ctas { margin-top: 18px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.showcase-note { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-2); }

@media (max-width: 900px) {
  /* a fan of eight is unreadable on a phone — lay them out flat instead */
  .showcase-fan {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-top: 40px; padding: 0;
  }
  .showcase-fan .sc,
  .showcase-fan .sc:first-child { width: auto; margin-left: 0; }
  .showcase-fan .sc:nth-child(odd),
  .showcase-fan .sc:nth-child(even),
  .showcase-fan:hover .sc { transform: none; margin-left: 0; }
  .showcase-ctas { margin-top: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-fan .sc { transition: none; }
}

/* ============================================================
   WhatsApp companion CTAs (Colombia — WhatsApp junto a cada CTA)
   ============================================================ */
.wa-ico { width: 1.15em; height: 1.15em; flex: none; }
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #04331c;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; white-space: nowrap;
  border: none; text-decoration: none; line-height: 1; cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.btn-wa:hover { background: #1fbe5b; color: #04331c; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(37,211,102,.35); }
.btn-wa-sm { padding: 9px 16px; font-size: 13px; }
.cta-pair { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-ctas .btn-wa { padding: 14px 26px; font-size: 15px; }

/* per-plan button + round WhatsApp companion */
.price-cta-row { display: flex; gap: 10px; align-items: center; margin-top: auto; }
.price-cta-row .price-cta { flex: 1; margin-top: 0; }
.wa-mini {
  flex: none; width: 52px; height: 52px; align-self: center; border-radius: 50%;
  background: #25D366; color: #04331c;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .3s, box-shadow .3s, background .3s;
}
.wa-mini .wa-ico { width: 24px; height: 24px; }
.wa-mini:hover { background: #1fbe5b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.care-card .price-cta-row { align-self: flex-start; }
.quote-banner-ctas .price-cta-row { flex: 0 1 auto; }

/* mobile fullscreen menu WhatsApp link */
.mob-wa { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #25D366 !important; }
.mob-wa .wa-ico { width: 22px; height: 22px; }
@media (max-width: 640px) {
  .cta-pair { width: 100%; }
  .cta-pair .btn-wa { flex: 1; }
}
