/* ============================================
   DALEMA — Design System & Styles v5
   Card flip → full-screen popup
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Meyer';
  src: url('assets/fonts/Meyer-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Happy Duckey';
  src: url('assets/fonts/The Happy Duckey.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --black-punch: #201f1f;
  --spicy-bold: #e9633c;
  --soft-whisper: #f0eeea;
  --lime-flash: #dffd52;
  --deep-spark: #675bbe;
  --color-bg: var(--black-punch);
  --color-text: var(--soft-whisper);
  --color-muted: #a8a5a0;
  --font-display: 'Meyer', serif;
  --font-body: 'Poppins', sans-serif;
  --font-fun: 'The Happy Duckey', cursive;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
  position: relative;
}

/* Ambient glow blurs — live on body so they bleed across all sections */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 600px;
  height: 600px;
  background: var(--lime-flash);
  right: -120px;
  top: 40vh;
  filter: blur(200px);
  opacity: 0.07;
}

body::after {
  width: 550px;
  height: 550px;
  background: var(--spicy-bold);
  right: 15%;
  top: -100px;
  filter: blur(180px);
  opacity: 0.06;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow--purple {
  width: 500px;
  height: 500px;
  background: var(--deep-spark);
  left: 30%;
  top: 20vh;
  filter: blur(180px);
  opacity: 0.06;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* --- Custom Cursor (disabled) --- */
.cursor {
  display: none;
}

.cursor.active {
  opacity: 1;
}

.cursor.hover {
  width: 50px;
  height: 50px;
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(32, 31, 31, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 238, 234, 0.06);
  transition: transform var(--transition-medium);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar__logo {
  height: 28px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime-flash);
  transition: width var(--transition-medium);
}

.navbar__links a:hover {
  color: var(--soft-whisper);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  background: var(--spicy-bold) !important;
  color: var(--soft-whisper) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 500 !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.navbar__cta:hover {
  background: #f0845f !important;
  transform: scale(1.04);
}

.navbar__cta::after {
  display: none !important;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__burger span {
  width: 24px;
  height: 2px;
  background: var(--soft-whisper);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

/* --- Section defaults --- */
section {
  padding: var(--space-xl) var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-flash);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--soft-whisper);
  margin-bottom: var(--space-md);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
  max-width: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  color: var(--soft-whisper);
  margin-bottom: var(--space-sm);
  max-width: 900px;
}

.hero__title .accent {
  color: var(--spicy-bold);
}

.hero__title .accent-lime {
  color: var(--lime-flash);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 200;
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--spicy-bold);
  color: var(--soft-whisper);
}

.btn--primary:hover {
  background: #f0845f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 99, 60, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--soft-whisper);
  border: 1px solid rgba(240, 238, 234, 0.2);
}

.btn--ghost:hover {
  border-color: var(--lime-flash);
  color: var(--lime-flash);
  transform: translateY(-2px);
}

.hero__icon-float {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  opacity: 0.15;
  cursor: pointer;
  pointer-events: all;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.hero__icon-float:hover {
  opacity: 0.3;
}

/* Deco base (unused now — blurs live on body) */
.hero__deco {
  display: none;
}

.hero__egg-counter {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lime-flash);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background: rgba(32, 31, 31, 0.7);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(223, 253, 82, 0.2);
  z-index: 10;
}

.hero__egg-counter.visible {
  opacity: 1;
}

.bouncing-d {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.5s ease;
}

/* Wiggle / tickle animation for hero icon */
@keyframes wiggle {

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

  10% {
    transform: translateY(-50%) rotate(-6deg) scale(1.05);
  }

  20% {
    transform: translateY(-50%) rotate(5deg) scale(0.97);
  }

  30% {
    transform: translateY(-50%) rotate(-4deg) scale(1.03);
  }

  40% {
    transform: translateY(-50%) rotate(3deg) scale(0.98);
  }

  50% {
    transform: translateY(-50%) rotate(-2deg) scale(1.02);
  }

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

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

  80% {
    transform: translateY(-50%) rotate(0deg);
  }
}

.hero__icon-float.wiggling {
  animation: wiggle 0.6s ease;
}

.explosion-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.explosion-overlay.active {
  opacity: 1;
}

.explosion-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ========================================
   CAPABILITIES — Cards (front only, no flip)
   ======================================== */
.capabilities {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.cap-card-wrapper {
  perspective: 1400px;
  cursor: pointer;
}

.cap-card-front {
  background: rgba(240, 238, 234, 0.03);
  border: 1px solid rgba(240, 238, 234, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: box-shadow 0.5s ease, border-color 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.cap-card-front:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

/* Click transition: scale down + fade */
.cap-card-wrapper.flipping .cap-card-front {
  animation: cardShrinkOut 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.cap-card-wrapper.flipping-back .cap-card-front {
  animation: cardGrowIn 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes cardShrinkOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.92);
    opacity: 0;
  }
}

@keyframes cardGrowIn {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.cap-card--orange .cap-card-front:hover {
  border-color: var(--spicy-bold);
}

.cap-card--lime .cap-card-front:hover {
  border-color: var(--lime-flash);
}

.cap-card--purple .cap-card-front:hover {
  border-color: var(--deep-spark);
}

.cap-card__accent-line {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.cap-card--orange .cap-card__accent-line {
  background: var(--spicy-bold);
}

.cap-card--lime .cap-card__accent-line {
  background: var(--lime-flash);
}

.cap-card--purple .cap-card__accent-line {
  background: var(--deep-spark);
}

.cap-card__number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(240, 238, 234, 0.12);
}

.cap-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--soft-whisper);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.cap-card__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.cap-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cap-card__tags span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}

.cap-card--orange .cap-card__tags span {
  background: rgba(233, 99, 60, 0.12);
  color: var(--spicy-bold);
}

.cap-card--lime .cap-card__tags span {
  background: rgba(223, 253, 82, 0.1);
  color: var(--lime-flash);
}

.cap-card--purple .cap-card__tags span {
  background: rgba(103, 91, 190, 0.15);
  color: var(--deep-spark);
}

.cap-card__click-hint {
  margin-top: auto;
  padding-top: var(--space-md);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cap-card--orange .cap-card__click-hint {
  color: var(--spicy-bold);
}

.cap-card--lime .cap-card__click-hint {
  color: var(--lime-flash);
}

.cap-card--purple .cap-card__click-hint {
  color: var(--deep-spark);
}

.cap-card-front:hover .cap-card__click-hint {
  opacity: 1;
}

/* ========================================
   WORK POPUP — Full-screen overlay
   ======================================== */
.work-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(32, 31, 31, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.work-popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.work-popup {
  width: 92%;
  max-width: 1100px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  /* Scale + slide entrance */
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), opacity 0.3s ease;
}

.work-popup-overlay.open .work-popup {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close: scale down */
.work-popup-overlay.closing .work-popup {
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 1, 1), opacity 0.2s ease;
}

.work-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  flex-shrink: 0;
}

.work-popup__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--soft-whisper);
}

.work-popup__subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.work-popup__close {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(240, 238, 234, 0.06);
  border: 1px solid rgba(240, 238, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.work-popup__close:hover {
  background: var(--spicy-bold);
  border-color: var(--spicy-bold);
  color: white;
  transform: scale(1.1);
}

/* Horizontal scroll track for work cards */
.work-popup__scroll-track {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  align-items: stretch;
  gap: var(--space-md);
  padding: var(--space-sm) 0 var(--space-md) 0;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.work-popup__scroll-track::-webkit-scrollbar {
  display: none;
}

.work-popup__scroll-hint {
  padding: var(--space-xs) 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.2);
  text-align: center;
  flex-shrink: 0;
}

/* Work cards (bigger, full-screen context) */
.work-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(240, 238, 234, 0.04);
  border: 1px solid rgba(240, 238, 234, 0.06);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-medium), transform var(--transition-fast);
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-card__image {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.work-card__image span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.12);
  z-index: 1;
}

.work-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(32, 31, 31, 0.9) 100%);
}

.work-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card__client {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--soft-whisper);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.work-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Theme colors */
.work-popup-overlay[data-theme="orange"] .work-popup__subtitle {
  color: var(--spicy-bold);
}

.work-popup-overlay[data-theme="orange"] .work-card:hover {
  border-color: rgba(233, 99, 60, 0.3);
}

.work-popup-overlay[data-theme="orange"] .work-card__client {
  color: var(--spicy-bold);
}

.work-popup-overlay[data-theme="orange"] .work-card__image {
  background: linear-gradient(135deg, #2a2020 0%, rgba(233, 99, 60, 0.12) 100%);
}

.work-popup-overlay[data-theme="lime"] .work-popup__subtitle {
  color: var(--lime-flash);
}

.work-popup-overlay[data-theme="lime"] .work-card:hover {
  border-color: rgba(223, 253, 82, 0.3);
}

.work-popup-overlay[data-theme="lime"] .work-card__client {
  color: var(--lime-flash);
}

.work-popup-overlay[data-theme="lime"] .work-card__image {
  background: linear-gradient(135deg, #202018 0%, rgba(223, 253, 82, 0.08) 100%);
}

.work-popup-overlay[data-theme="purple"] .work-popup__subtitle {
  color: var(--deep-spark);
}

.work-popup-overlay[data-theme="purple"] .work-card:hover {
  border-color: rgba(103, 91, 190, 0.3);
}

.work-popup-overlay[data-theme="purple"] .work-card__client {
  color: var(--deep-spark);
}

.work-popup-overlay[data-theme="purple"] .work-card__image {
  background: linear-gradient(135deg, #1d1d2a 0%, rgba(103, 91, 190, 0.12) 100%);
}

/* ========================================
   CLIENT LOGOS MARQUEE
   ======================================== */
.clients {
  padding: var(--space-xl) 0;
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(240, 238, 234, 0.06);
  border-bottom: 1px solid rgba(240, 238, 234, 0.06);
}

.clients__label {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding: 0 var(--space-md);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-right: var(--space-xl);
}

.marquee__item {
  flex-shrink: 0;
  width: 120px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 238, 234, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(240, 238, 234, 0.06);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.marquee__item:hover {
  border-color: rgba(223, 253, 82, 0.3);
  background: rgba(240, 238, 234, 0.06);
}

.marquee__item span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.3);
}

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

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

/* ========================================
   ABOUT — Dark
   ======================================== */
.about {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.about .section-label {
  color: var(--deep-spark);
}

.about__fun-title {
  font-family: var(--font-fun);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--spicy-bold);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.about__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 200;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.about__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.about__dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  transition: transform var(--transition-fast);
}

.about__dots span:hover {
  transform: scale(1.5);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.about__stats .stat:nth-child(1) .stat__number {
  color: var(--spicy-bold);
}

.about__stats .stat:nth-child(2) .stat__number {
  color: var(--deep-spark);
}

.about__stats .stat:nth-child(3) .stat__number {
  color: var(--lime-flash);
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

/* ========================================
   CONTACT CTA
   ======================================== */
.contact {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.contact__block {
  background: linear-gradient(135deg, rgba(103, 91, 190, 0.08) 0%, rgba(233, 99, 60, 0.06) 50%, rgba(223, 253, 82, 0.04) 100%);
  border: 1px solid rgba(240, 238, 234, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.contact__block::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(223, 253, 82, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact__block::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(103, 91, 190, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--soft-whisper);
  margin-bottom: var(--space-sm);
}

.contact__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.contact__email {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--lime-flash);
  transition: color var(--transition-fast);
  display: inline-block;
  margin-bottom: var(--space-md);
}

.contact__email:hover {
  color: var(--spicy-bold);
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.contact__socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(240, 238, 234, 0.06);
  border: 1px solid rgba(240, 238, 234, 0.1);
  font-size: 0.8rem;
  color: var(--color-muted);
  transition: all var(--transition-fast);
}

.contact__socials a:nth-child(1):hover {
  background: var(--deep-spark);
  border-color: var(--deep-spark);
  color: white;
  transform: translateY(-3px);
}

.contact__socials a:nth-child(2):hover {
  background: var(--spicy-bold);
  border-color: var(--spicy-bold);
  color: white;
  transform: translateY(-3px);
}

.contact__socials a:nth-child(3):hover {
  background: var(--lime-flash);
  border-color: var(--lime-flash);
  color: var(--black-punch);
  transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: var(--space-lg) var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(240, 238, 234, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  height: 22px;
  opacity: 0.5;
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(240, 238, 234, 0.3);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .funnel-wrap {
    height: 300vh;
  }

  .funnel-stage__bar--2 { margin-left: 4%; }
  .funnel-stage__bar--3 { margin-left: 8%; }

  .funnel-stage__name {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

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

  .hero__icon-float {
    width: 140px;
    height: 140px;
    right: 2%;
    opacity: 0.08;
  }

  .work-card {
    flex: 0 0 280px;
  }

  .work-card__image {
    height: 160px;
  }
}

/* ========================================
   CURSOR SPOTLIGHT
   ======================================== */
#cursorSpotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(
    450px circle at var(--cx, -300px) var(--cy, -300px),
    rgba(103, 91, 190, 0.08) 0%,
    transparent 70%
  );
  transition: opacity 0.8s ease;
}

#cursorSpotlight.active {
  opacity: 1;
}

/* ========================================
   HERO — centered
   ======================================== */
.hero {
  align-items: center;
  text-align: center;
}

.hero__sub {
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-row {
  justify-content: center;
}

/* ========================================
   FUNNEL SECTION
   ======================================== */
.funnel-wrap {
  height: 360vh;
  position: relative;
}

.funnel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  overflow: hidden;
  z-index: 1;
}

.funnel-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.funnel-hdr {
  margin-bottom: var(--space-md);
}

.funnel-stages {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.funnel-stage {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.65s cubic-bezier(0.2, 0, 0, 1),
              transform 0.65s cubic-bezier(0.2, 0, 0, 1);
}

.funnel-stage.active {
  opacity: 1;
  transform: translateY(0);
}

/* Funnel bars */
.funnel-stage__bar {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 238, 234, 0.06);
  border-left-width: 3px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.funnel-stage__bar--1 {
  margin-left: 0;
  border-left-color: var(--spicy-bold);
  background: linear-gradient(90deg, rgba(233, 99, 60, 0.07) 0%, transparent 55%);
}

.funnel-stage__bar--2 {
  margin-left: 7%;
  border-left-color: var(--lime-flash);
  background: linear-gradient(90deg, rgba(223, 253, 82, 0.05) 0%, transparent 55%);
}

.funnel-stage__bar--3 {
  margin-left: 14%;
  border-left-color: var(--deep-spark);
  background: linear-gradient(90deg, rgba(103, 91, 190, 0.07) 0%, transparent 55%);
}

.funnel-stage__bar:hover {
  border-color: rgba(240, 238, 234, 0.14);
}

.funnel-stage__meta {
  min-width: 190px;
  flex-shrink: 0;
}

.funnel-stage__etapa {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.funnel-stage__bar--1 .funnel-stage__etapa { color: var(--spicy-bold); }
.funnel-stage__bar--2 .funnel-stage__etapa { color: var(--lime-flash); }
.funnel-stage__bar--3 .funnel-stage__etapa { color: var(--deep-spark); }

.funnel-stage__que {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.5;
}

.funnel-stage__name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--soft-whisper);
  line-height: 1;
  flex: 1;
}

.funnel-stage__tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.funnel-stage__tags span {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(240, 238, 234, 0.04);
  border: 1px solid rgba(240, 238, 234, 0.08);
  color: var(--color-muted);
}

/* ========================================
   TEAM SECTION — light bg
   ======================================== */
.team {
  background: var(--soft-whisper);
  max-width: 100%;
  padding: var(--space-2xl) 0;
  margin: 0;
}

.team__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.team .section-label {
  color: var(--spicy-bold);
}

.team .section-title {
  color: var(--black-punch);
}

.team__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(32, 31, 31, 0.5);
  margin-top: calc(-1 * var(--space-sm));
  margin-bottom: var(--space-lg);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.team-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(32, 31, 31, 0.06);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(32, 31, 31, 0.1);
}

.team-card__icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.team-card__role {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black-punch);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.team-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(32, 31, 31, 0.55);
  line-height: 1.7;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ========================================
   CONTACT — WhatsApp
   ======================================== */
.contact__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
  margin-top: var(--space-md);
}

.contact__wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 680px) {
  section {
    padding: var(--space-lg) var(--space-sm);
  }

  .navbar__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(32, 31, 31, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 999;
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links a {
    font-size: 1.2rem;
  }

  .navbar__burger {
    display: flex;
    z-index: 1001;
  }

  .hero__title {
    font-size: clamp(2.8rem, 11vw, 4rem);
    text-align: left;
  }

  .hero__sub {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .funnel-wrap {
    height: 260vh;
  }

  .funnel-stage__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .funnel-stage__bar--2,
  .funnel-stage__bar--3 {
    margin-left: 0;
  }

  .funnel-stage__tags {
    justify-content: flex-start;
  }

  .funnel-stage__meta {
    min-width: unset;
  }

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

  .hero__icon-float {
    display: none;
  }

  .contact__block {
    padding: var(--space-lg) var(--space-md);
  }

  .footer {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .work-popup {
    width: 96%;
  }

  .work-card {
    flex: 0 0 260px;
  }
}

/* ========================================
   HERO — scroll hint (replaces CTA buttons)
   ======================================== */
.hero__cta-row {
  display: none;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-muted);
  pointer-events: none;
}

.hero__scroll-text {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(168, 165, 160, 0.6), transparent);
  transform-origin: top;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  20%  { opacity: 1; }
  80%  { transform: scaleY(1); opacity: 0.5; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ========================================
   HORIZONTAL SCROLL SYSTEM — GSAP driven
   ======================================== */

/* Pin wrapper — GSAP pins this, overflow clips the panels track */
.h-scroll-pin {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Track: flex row, GSAP translates this horizontally */
.h-scroll-track {
  display: flex;
  will-change: transform;
}

/* Each full-screen panel */
.h-panel {
  width: 100vw;
  min-height: 100vh;
  flex-shrink: 0;
}

/* Scroll-progress bar at bottom of pinned section */
.h-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--spicy-bold);
  z-index: 10;
  transition: none;
  pointer-events: none;
}

/* Mobile: stack vertically, no horizontal scroll */
@media (max-width: 767px) {
  .h-scroll-pin {
    overflow: visible;
  }
  .h-scroll-track {
    flex-direction: column;
    transform: none !important;
  }
  .h-panel {
    width: 100%;
    min-height: 100svh;
  }
}

/* ========================================
   STAGE SECTIONS — Apple-style scroll reveal
   ======================================== */
section.stage {
  min-height: 100vh;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stage--light {
  background: var(--soft-whisper);
}

/* Ambient atmosphere per stage */
.stage--1::after,
.stage--2::after,
.stage--3::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(220px);
  pointer-events: none;
  z-index: 0;
}

.stage--1::after {
  background: var(--spicy-bold);
  opacity: 0.12;
  right: -200px;
}

.stage--2::after {
  background: var(--lime-flash);
  opacity: 0.1;
  left: -200px;
}

.stage--3::after {
  background: var(--deep-spark);
  opacity: 0.12;
  right: -200px;
}

.stage__grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Stage 2: deco on left, content on right */
.stage--2 .stage__col--deco {
  order: -1;
}

.stage__col--deco {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Animation system — driven by JS scroll position ---- */
.anim {
  opacity: 0;
  will-change: transform, opacity;
}

.anim--from-left   { transform: translateX(-110px); }
.anim--from-right  { transform: translateX(110px);  }
.anim--from-bottom { transform: translateY(70px); }
.anim--scale-x     { transform: scaleX(0); transform-origin: left center; }

/* ---- Stage content typography ---- */
.stage__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.stage--1 .stage__label { color: var(--spicy-bold); }
.stage--2 .stage__label { color: var(--lime-flash); }
.stage--3 .stage__label { color: var(--deep-spark); }

.stage__que {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.25;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.stage--light .stage__que {
  color: rgba(32, 31, 31, 0.48);
}

.stage__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--soft-whisper);
  margin-bottom: var(--space-md);
}

.stage--light .stage__name {
  color: var(--black-punch);
}

.stage--1 .stage__name { color: var(--spicy-bold); }
.stage--2 .stage__name { color: var(--lime-flash); }
.stage--3 .stage__name { color: var(--deep-spark); }

.stage__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 460px;
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.stage--light .stage__desc {
  color: rgba(32, 31, 31, 0.55);
}

.stage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.stage__tags span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(240, 238, 234, 0.05);
  border: 1px solid rgba(240, 238, 234, 0.1);
  color: var(--color-muted);
}

.stage--light .stage__tags span {
  background: rgba(32, 31, 31, 0.05);
  border-color: rgba(32, 31, 31, 0.1);
  color: rgba(32, 31, 31, 0.5);
}

/* Big decorative number */
.stage__bignum {
  font-family: var(--font-display);
  font-size: clamp(10rem, 26vw, 23rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 238, 234, 0.07);
  display: block;
  text-align: center;
  user-select: none;
}

.stage--light .stage__bignum {
  -webkit-text-stroke: 1px rgba(32, 31, 31, 0.07);
}

/* Stage responsive */
@media (max-width: 900px) {
  .stage__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stage__col--deco {
    display: none;
  }

  .stage__name {
    font-size: clamp(3rem, 12vw, 5rem);
  }
}

/* ========================================
   STAGE — accent line (scaleX animation)
   ======================================== */
.stage__accent-line {
  height: 3px;
  width: 72px;
  border-radius: 2px;
  margin-bottom: 1.6rem;
  transform-origin: left;
  transform: scaleX(0);
}

.stage--1 .stage__accent-line { background: var(--spicy-bold); }
.stage--2 .stage__accent-line { background: var(--lime-flash); }
.stage--3 .stage__accent-line { background: var(--deep-spark); }
.stage--3 .stage__accent-line { background: var(--deep-spark); }

/* ========================================
   STAGE — channels row
   ======================================== */
.stage__channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.stage__channels--dark { color: rgba(32, 31, 31, 0.45); }
.stage__ch-sep { opacity: 0.3; }

/* ========================================
   STAGE — deco block
   ======================================== */
.stage__deco-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.stage__kpis {
  display: flex;
  gap: var(--space-lg);
}

.stage__kpis--dark .stage__kpi-val { color: var(--black-punch); }
.stage__kpis--dark .stage__kpi-lbl { color: rgba(32, 31, 31, 0.45); }

.stage__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stage__kpi-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--soft-whisper);
}

.stage__kpi-lbl {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ========================================
   STAGE — process chain (stage 3)
   ======================================== */
.stage__process {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.stage__arr {
  color: var(--deep-spark);
  font-size: 0.9rem;
}

/* ========================================
   STAGES NAV — fixed side indicator
   ======================================== */
.stages-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.stages-nav.visible { opacity: 1; }

.stages-nav__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  flex-direction: row-reverse;
}

.stages-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 238, 234, 0.2);
  transition: background 0.4s ease, transform 0.4s ease;
  flex-shrink: 0;
}

.stages-nav__item.active .stages-nav__dot { transform: scale(1.8); }
.stages-nav__item[data-stage="0"].active .stages-nav__dot { background: var(--spicy-bold); }
.stages-nav__item[data-stage="1"].active .stages-nav__dot { background: var(--lime-flash); }
.stages-nav__item[data-stage="2"].active .stages-nav__dot { background: var(--deep-spark); }

.stages-nav__label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.3);
  transition: color 0.4s ease;
  white-space: nowrap;
}

.stages-nav__item.active .stages-nav__label { color: rgba(240, 238, 234, 0.75); }

.stages-nav.on-light .stages-nav__label      { color: rgba(32, 31, 31, 0.3); }
.stages-nav.on-light .stages-nav__item.active .stages-nav__label { color: rgba(32, 31, 31, 0.65); }
.stages-nav.on-light .stages-nav__dot        { background: rgba(32, 31, 31, 0.15); }
.stages-nav.on-light .stages-nav__line       { background: rgba(32, 31, 31, 0.1); }

.stages-nav__line {
  width: 1px;
  height: 28px;
  background: rgba(240, 238, 234, 0.1);
  margin-right: 2px;
  align-self: flex-end;
}

@media (max-width: 680px) {
  .stages-nav { display: none; }
}


/* ============================================================
   VISUAL ENHANCEMENT LAYER — Tech Luxury
   ============================================================ */

/* ── Animated film grain overlay ── */
@keyframes grain-shift {
  0%   { background-position: 0% 0%; }
  10%  { background-position: -5% -10%; }
  20%  { background-position: -15% 5%; }
  30%  { background-position: 7% -25%; }
  40%  { background-position: -5% 25%; }
  50%  { background-position: -15% 10%; }
  60%  { background-position: 15% 0%; }
  70%  { background-position: 0% 15%; }
  80%  { background-position: 3% 35%; }
  90%  { background-position: -10% 10%; }
  100% { background-position: 0% 0%; }
}

.grain-overlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.048;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grain-shift 0.8s steps(8) infinite;
  mix-blend-mode: overlay;
  will-change: background-position;
}

/* ── Hero grid background ── */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right,  rgba(240,238,234,0.04) 0px, rgba(240,238,234,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(to bottom, rgba(240,238,234,0.04) 0px, rgba(240,238,234,0.04) 1px, transparent 1px, transparent 80px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

/* ── Hero — floating stat badges ── */
.hero__badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: rgba(240,238,234,0.04);
  border: 1px solid rgba(240,238,234,0.09);
  border-radius: var(--radius-full);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(240,238,234,0.4);
  white-space: nowrap;
  animation: badge-float 6s ease-in-out infinite;
}

.hero__badge--1 { top: 30%; right: 20%; animation-delay: 0s; }
.hero__badge--2 { top: 50%; right: 13%; animation-delay: -2.2s; }
.hero__badge--3 { top: 67%; right: 22%; animation-delay: -4.4s; }

.hero__badge-arrow        { color: var(--spicy-bold); font-size: 0.85rem; }
.hero__badge-arrow--lime  { color: var(--lime-flash); }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

@media (max-width: 900px) { .hero__badges { display: none; } }

/* ── Stage watermark numbers ── */
.stage__watermark {
  position: absolute;
  bottom: -0.12em;
  right: -0.04em;
  font-family: var(--font-display);
  font-size: clamp(18rem, 30vw, 36rem);
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1px currentColor;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.03em;
}

.stage--1 .stage__watermark { color: var(--spicy-bold);   opacity: 0.1; }
.stage--2 .stage__watermark { color: var(--lime-flash);   opacity: 0.1; }
.stage--3 .stage__watermark { color: var(--deep-spark);   opacity: 0.1; }

/* ── DATA CARD — terminal-style deco ── */
.data-card--1 { --card-accent: var(--spicy-bold); }
.data-card--2 { --card-accent: var(--lime-flash); }
.data-card--3 { --card-accent: var(--deep-spark); }

.data-card {
  position: relative;
  width: clamp(240px, 26vw, 340px);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(240,238,234,0.08);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem 1.5rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
}

/* stage 2 is dark — inherits default dark card styles, no override needed */

/* Accent top line */
.data-card__top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-accent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Header row */
.data-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* Live pulse dot */
.data-card__live {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.data-card__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

.data-card__live-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent);
}

.data-card__stage-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--card-accent);
  opacity: 0.7;
  line-height: 1;
}

/* Divider */
.data-card__divider {
  height: 1px;
  background: rgba(240,238,234,0.07);
  margin-bottom: 1.2rem;
}
/* .stage--2 .data-card__divider — dark default applies */

/* Metrics */
.data-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.data-card__metric-header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.data-card__metric-val {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1;
  color: var(--soft-whisper);
}
/* .stage--2 .data-card__metric-val — dark default applies */

.data-card__metric-lbl {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}
/* .stage--2 .data-card__metric-lbl — dark default applies */

/* Sparkline */
.data-card__sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.data-card__sparkline span {
  flex: 1;
  height: 0;
  background: var(--card-accent);
  opacity: 0.28;
  border-radius: 2px 2px 0 0;
  /* height driven by scroll via JS — no CSS transition */
}
.data-card__sparkline span:last-child { opacity: 0.85; }

/* Progress bar */
.data-card__progress-wrap {
  height: 2px;
  background: rgba(240,238,234,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}
/* .stage--2 .data-card__progress-wrap — dark default applies */

.data-card__progress-bar {
  height: 100%;
  width: 0;
  background: var(--card-accent);
  border-radius: var(--radius-full);
  opacity: 0.75;
  /* width driven by scroll via JS — no CSS transition */
}

/* ── Panel counter: "01 / 03" bottom-right fixed ── */
.panel-counter {
  position: fixed;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 200;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(240,238,234,0.25);
}
.panel-counter.visible {
  opacity: 1;
  transform: translateY(0);
}
.panel-counter.on-light { color: rgba(32,31,31,0.25); }

.panel-counter__current {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(240,238,234,0.65);
  transition: color 0.3s ease;
}
.panel-counter.on-light .panel-counter__current { color: rgba(32,31,31,0.55); }

.panel-counter__sep { opacity: 0.4; }

@media (max-width: 767px) {
  .panel-counter {
    display: flex;
    bottom: 1.5rem;
    right: auto;
    left: 1.5rem;
    font-size: 0.58rem;
  }
}

/* ── SplitText char utility ── */
.hero-char {
  display: inline-block;
  transform-style: preserve-3d;
}

/* ── Responsive fixes ── */
@media (max-width: 767px) {
  .stage__watermark { font-size: clamp(10rem, 55vw, 18rem); opacity: 0.03 !important; }
  .hero__grid-bg { opacity: 0.5; }

  /* Capabilities: single column on mobile */
  .capabilities__grid {
    grid-template-columns: 1fr;
  }

  /* Show data card on mobile, stacked below content */
  .stage__col--deco {
    display: flex !important;
    justify-content: center;
    order: 2;
    width: 100%;
  }

  /* Reset stage--2 deco order so content stays first on mobile */
  .stage--2 .stage__col--deco {
    order: 2;
  }

  /* Deco block: full width so data card can stretch */
  .stage__deco-block {
    width: 100%;
  }

  /* Data card: full width, compact */
  .data-card {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem 1.4rem 1.1rem;
  }

  /* Stage grid: tighter padding on mobile */
  section.stage .stage__grid {
    padding: var(--space-lg) var(--space-sm) var(--space-md);
    gap: var(--space-md);
  }
}

/* ========================================
   HERO BADGES — GSAP replaces CSS float
   ======================================== */
.hero__badge {
  animation: none;  /* float handled by GSAP */
  opacity: 0;       /* GSAP fades in */
}

/* ========================================
   TEAM — upgraded visuals
   ======================================== */
.team {
  position: relative;
  overflow: hidden;
}

.team__bg-text {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 18vw, 24rem);
  line-height: 0.88;
  color: transparent;
  -webkit-text-stroke: 1px rgba(32, 31, 31, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  opacity: 0; /* GSAP reveals */
}

.team__inner {
  position: relative;
}

.team__grid {
  position: relative;
  z-index: 1;
}

.team .section-label,
.team .section-title,
.team__sub {
  position: relative;
  z-index: 1;
}

/* Per-card accent color */
.team-card {
  position: relative;
  overflow: hidden;
}
.team-card:nth-child(1) { --tc-accent: var(--spicy-bold); }
.team-card:nth-child(2) { --tc-accent: var(--deep-spark); }
.team-card:nth-child(3) { --tc-accent: var(--lime-flash); }
.team-card:nth-child(4) { --tc-accent: var(--spicy-bold); }

/* Accent top bar — revealed by GSAP via scaleX */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tc-accent, var(--spicy-bold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card.bar-in::before {
  transform: scaleX(1);
}

/* Card number label */
.team-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--tc-accent, var(--spicy-bold));
  opacity: 0.75;
  margin-bottom: 0.6rem;
}

/* ========================================
   ABOUT — upgraded visuals
   ======================================== */

/* Bigger, more impactful title */
.about__fun-title {
  font-size: clamp(3.8rem, 9vw, 9rem) !important;
  letter-spacing: -0.02em;
  line-height: 1 !important;
  margin-bottom: var(--space-lg) !important;
  perspective: 800px;
}

/* SplitText char wrapper */
.about-word {
  display: inline-block;
  white-space: nowrap;
}

.about-char {
  display: inline-block;
  transform-style: preserve-3d;
}

/* Horizontal accent line before stats */
.about__accent-line {
  width: 56px;
  height: 2px;
  background: var(--spicy-bold);
  margin: 0 auto calc(var(--space-xl) - 1rem);
  transform-origin: center;
  transform: scaleX(0); /* GSAP reveals */
}

/* Stat vertical separators */
.about__stats .stat {
  position: relative;
}
.about__stats .stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(240, 238, 234, 0.08);
}

@media (max-width: 767px) {
  .team__bg-text { display: none; }
  .about__fun-title { font-size: clamp(2.8rem, 12vw, 5rem) !important; }
  .about__stats .stat + .stat::before { display: none; }

  /* Stage name: never overflow on mobile */
  .stage__name {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    word-break: break-word;
  }

  /* Stage que: slightly smaller on mobile */
  .stage__que {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem);
  }

  /* About stats: keep 3-col grid but smaller */
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .stat__number {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
}

/* ========================================
   TEAM — dark override for orbital
   ======================================== */
.team {
  background: var(--black-punch) !important;
}
.team .section-title {
  color: var(--soft-whisper) !important;
}
.team__sub {
  color: var(--color-muted) !important;
}
.team__bg-text {
  -webkit-text-stroke: 1px rgba(240, 238, 234, 0.04) !important;
}
/* Mobile cards on dark bg */
.team-card {
  background: rgba(240, 238, 234, 0.04) !important;
  border: 1px solid rgba(240, 238, 234, 0.08) !important;
}
.team-card__role {
  color: var(--soft-whisper) !important;
}
.team-card__desc {
  color: var(--color-muted) !important;
}

/* ========================================
   ORBITAL NEURONAL — team section
   ======================================== */
.orbital-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: var(--space-xl);
}

/* SVG connection lines */
.orbital-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Central core */
.orbital-core-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.orbital-core {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--black-punch);
  border: 2px solid rgba(223, 253, 82, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbital-core-pulse 2.4s ease-in-out infinite;
  position: relative;
  z-index: 3;
}
@keyframes orbital-core-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 99, 60, 0.5), 0 0 0 0 rgba(103, 91, 190, 0.3); }
  50%       { box-shadow: 0 0 0 18px rgba(233, 99, 60, 0), 0 0 0 32px rgba(103, 91, 190, 0); }
}
.orbital-core__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  /* SVG has its own lime-flash fill via currentColor */
}
.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 238, 234, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbital-ring--outer { width: 430px; height: 430px; }
.orbital-ring--inner { width: 200px; height: 200px; border-color: rgba(240, 238, 234, 0.04); }

/* Node elements */
.orbital-node {
  position: absolute;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 10;
  transition: z-index 0s;
}
.orbital-node__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(240, 238, 234, 0.04);
  border: 1.5px solid rgba(240, 238, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.orbital-node:hover .orbital-node__dot,
.orbital-node.active .orbital-node__dot {
  background: rgba(240, 238, 234, 0.08);
  border-color: var(--nd-color, rgba(240, 238, 234, 0.6));
  box-shadow: 0 0 24px var(--nd-color, rgba(240, 238, 234, 0.3));
  transform: scale(1.35);
}
.orbital-node__label {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: rgba(240, 238, 234, 0.4);
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
  transition: color 0.3s;
}
.orbital-node.active .orbital-node__label {
  color: var(--nd-color, rgba(240, 238, 234, 0.8));
}

/* Orbital info card */
.orbital-info {
  position: absolute;
  width: 340px;
  background: rgba(20, 20, 20, 0.97);
  border: 1px solid rgba(240, 238, 234, 0.12);
  border-top: 2.5px solid var(--nd-color, var(--spicy-bold));
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem 1.7rem;
  backdrop-filter: blur(24px);
  z-index: 30;
  opacity: 0;
  transform: scale(0.88) translateY(6px);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.orbital-info.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.orbital-info__num {
  font-size: 0.62rem;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  color: var(--nd-color, var(--spicy-bold));
  opacity: 0.85;
  margin-bottom: 0.45rem;
}
.orbital-info__icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.orbital-info__role {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--soft-whisper);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}
.orbital-info__desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.72;
  margin-bottom: 0;
}

/* Mobile: show plain grid, hide orbital */
@media (min-width: 768px) {
  .team__grid--mobile { display: none !important; }
}
@media (max-width: 767px) {
  .orbital-wrap { display: none !important; }
  .team__grid--mobile {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
}

/* (Evervault effect removed) */
/* ============================================================
   BRAND MANUAL ALIGNMENT — Color Blocks
   Manual de Identidad Dalema / Versión 2026
   ============================================================ */

/* ── STAGE 2 — LIME FLASH full background (como "Quiénes somos?" del manual) ── */
.stage--2 {
  background: var(--lime-flash);
}

/* Remove the subtle glow — not needed on solid color bg */
.stage--2::after {
  display: none;
}

/* Stage 2: typography adapts to lime bg → dark text */
.stage--2 .stage__label {
  color: var(--black-punch);
  opacity: 0.6;
}

.stage--2 .stage__accent-line {
  background: var(--black-punch);
}

.stage--2 .stage__que {
  color: rgba(32, 31, 31, 0.55);
}

.stage--2 .stage__name {
  color: var(--black-punch);
}

.stage--2 .stage__desc {
  color: rgba(32, 31, 31, 0.65);
}

.stage--2 .stage__channels {
  color: rgba(32, 31, 31, 0.55);
}

.stage--2 .stage__ch-sep {
  color: rgba(32, 31, 31, 0.3);
}

/* Watermark on lime bg */
.stage--2 .stage__watermark {
  color: var(--black-punch) !important;
  opacity: 0.08 !important;
  -webkit-text-stroke: 1px rgba(32, 31, 31, 0.12);
}

/* Data card on lime bg → dark surface */
.stage--2 .data-card {
  background: var(--black-punch);
  border-color: rgba(32, 31, 31, 0.12);
}

.stage--2 .data-card__divider {
  background: rgba(240, 238, 234, 0.08);
}

.stage--2 .data-card__metric-val {
  color: var(--soft-whisper);
}

.stage--2 .data-card__metric-lbl {
  color: var(--color-muted);
}

.stage--2 .data-card__progress-wrap {
  background: rgba(240, 238, 234, 0.08);
}

/* ── STAGE 3 — DEEP SPARK full background (como "Misión & Visión" del manual) ── */
.stage--3 {
  background: var(--deep-spark);
}

/* Remove subtle glow */
.stage--3::after {
  display: none;
}

/* Stage 3: text adapts to purple bg → white text */
.stage--3 .stage__label {
  color: var(--lime-flash);
}

.stage--3 .stage__accent-line {
  background: var(--lime-flash);
}

.stage--3 .stage__que {
  color: rgba(240, 238, 234, 0.55);
}

.stage--3 .stage__name {
  color: var(--soft-whisper);
}

.stage--3 .stage__desc {
  color: rgba(240, 238, 234, 0.72);
}

.stage--3 .stage__process {
  color: rgba(240, 238, 234, 0.6);
}

.stage--3 .stage__arr {
  color: var(--lime-flash);
}

/* Watermark on deep spark bg */
.stage--3 .stage__watermark {
  color: var(--soft-whisper) !important;
  opacity: 0.08 !important;
  -webkit-text-stroke: 1px rgba(240, 238, 234, 0.12);
}

/* Data card on deep spark bg → slightly translucent dark */
.stage--3 .data-card {
  background: rgba(32, 31, 31, 0.25);
  border-color: rgba(240, 238, 234, 0.15);
  backdrop-filter: blur(20px);
}

.stage--3 .data-card__divider {
  background: rgba(240, 238, 234, 0.12);
}

/* Stage nav dot on colored bg */
.stages-nav__item[data-stage="1"].active .stages-nav__dot { background: var(--black-punch); }
.stages-nav__item[data-stage="2"].active .stages-nav__dot { background: var(--lime-flash); }

/* Panel counter text on colored panels */
.panel-counter.on-lime {
  color: rgba(32, 31, 31, 0.35);
}
.panel-counter.on-lime .panel-counter__current {
  color: rgba(32, 31, 31, 0.6);
}

/* ── CONTACT — Spicy Bold full-width section ── */
.contact {
  background: var(--spicy-bold);
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: var(--space-2xl) var(--space-md);
}

.contact__block {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.contact__block::before,
.contact__block::after {
  display: none;
}

.contact__title {
  color: var(--soft-whisper);
}

.contact__desc {
  color: rgba(240, 238, 234, 0.8);
}

/* WhatsApp button on orange bg — WhatsApp green */
.contact__wa {
  background: #25D366;
  color: white;
}

.contact__wa:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ── HERO — stage nav visibility fix on lime/purple panels ── */
.stage--2 .stages-nav__label,
.stage--3 .stages-nav__label {
  /* These are fixed, not scoped to stages — handled via JS class */
}

/* ── ABOUT — section with Soft Whisper bg (breathing room) ── */
.about {
  background: var(--soft-whisper);
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.about .section-label {
  color: var(--spicy-bold);
}

.about__fun-title {
  color: var(--black-punch) !important;
}

.about__desc {
  color: rgba(32, 31, 31, 0.6) !important;
}

/* Stats on light bg */
.about__stats .stat + .stat::before {
  background: rgba(32, 31, 31, 0.08);
}

/* Dots on light bg — keep brand colors, look great */

/* Stat labels on light bg */
.stat__label {
  color: rgba(32, 31, 31, 0.5);
}

/* Accent line on light bg */
.about__accent-line {
  background: var(--spicy-bold);
}

/* Footer on Black Punch — stays dark, creates good contrast after about's light bg */
.footer {
  background: var(--black-punch);
  max-width: 100%;
  width: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  margin: 0;
}

/* ── SECTION LABELS — "/" prefix pattern from manual ── */
/* Already applied via HTML in some places. Global style stays. */

/* ── CLIENTS marquee — on light bg when placed after about ── */
.clients {
  background: var(--black-punch);
  border-color: rgba(240, 238, 234, 0.06);
}

/* ── NAVBAR — ensure visibility across colored sections ── */
.navbar {
  background: rgba(32, 31, 31, 0.9);
  border-bottom-color: rgba(240, 238, 234, 0.08);
}

/* ── STAGE 1 — reinforce Black Punch feel (accentuate with Spicy Bold) ── */
.stage--1 {
  background: var(--black-punch);
}

/* Boost stage 1 glow for drama */
.stage--1::after {
  opacity: 0.18;
}


/* ── Full-width color block fixes ── */
/* About, Contact, Footer, Clients need to span 100% width for their bg colors */
.about,
.contact,
.footer,
.clients {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Inner content constrains, not the section itself */
.about > *,
.contact > .contact__block {
  /* contact__block already has max-width: 800px */
}

/* About inner content max-width */
.about__fun-title,
.about__desc,
.about__dots,
.about__stats,
.about__accent-line,
.about .section-label {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Fix about__stats centering */
.about__stats {
  margin-left: auto;
  margin-right: auto;
}

/* ── Floating WhatsApp button ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
  color: white;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65);
}
.wa-float.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.75) translateY(12px);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
