@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  --bg-dark: #05020c;
  --bg-darker: #020105;
  --text-main: #ffffff;
  --text-muted: #8c8994;
  --text-dark: #120f1a;
  
  /* Vibrant Brand Colors */
  --color-purple: #9d4edd;
  --color-magenta: #ff007f;
  --color-pink: #ff70a6;
  --color-blue: #00f0ff;
  
  /* Gradation Tokens */
  --grad-primary: linear-gradient(135deg, var(--color-purple) 0%, var(--color-magenta) 50%, var(--color-pink) 100%);
  --grad-cyber: linear-gradient(90deg, var(--color-blue) 0%, var(--color-purple) 100%);
  --grad-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  --grad-text-glow: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
  
  /* Glowing drop-shadows */
  --glow-purple: 0 0 35px rgba(157, 78, 221, 0.45);
  --glow-magenta: 0 0 35px rgba(255, 0, 127, 0.45);
  --glow-blue: 0 0 30px rgba(0, 240, 255, 0.35);
  
  /* Poppins Font Set */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  /* Cursor size */
  --cursor-size: 20px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-dark);
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(157, 78, 221, 0.25);
  border-radius: 10px;
  border: 2px solid var(--bg-darker);
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-purple);
}

/* Selection */
::selection {
  background: var(--color-magenta);
  color: #fff;
}

/* ==========================================================================
   PREMIUM SCROLL PROGRESS LOADER
   ========================================================================== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.02);
  z-index: 9999;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-blue), var(--color-purple), var(--color-magenta), var(--color-pink));
  box-shadow: 0 0 12px var(--color-purple);
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   AMBIENT NEBULAE & GLOW PARTICLES
   ========================================================================== */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.45;
  mix-blend-mode: screen;
}

.orb-1 {
  top: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.45) 0%, rgba(255, 0, 127, 0.1) 60%, transparent 100%);
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-2 {
  bottom: -10%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.35) 0%, rgba(0, 240, 255, 0.1) 70%, transparent 100%);
  animation: floatOrb 30s infinite alternate-reverse ease-in-out;
}

.orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(157, 78, 221, 0.05) 60%, transparent 100%);
  animation: floatOrb 28s infinite alternate ease-in-out;
}

/* Floating dust particles styling */
.dust-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: -1;
  animation: floatDust infinite alternate ease-in-out;
}

/* Cyber grid overlay */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 55px 55px;
  opacity: 0.85;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, -6%) scale(1.1); }
  100% { transform: translate(-6%, 6%) scale(0.95); }
}

@keyframes floatDust {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.1;
  }
  50% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-90px) translateX(60px) scale(0.8);
    opacity: 0.1;
  }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 50%, #9d4edd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Stunning shifting animated text gradient for Hero */
.text-gradient-purple-pink {
  background: linear-gradient(120deg, var(--color-blue), var(--color-purple), var(--color-magenta), var(--color-pink), var(--color-blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGradient 7s linear infinite;
}

@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.wireframe-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.07);
  position: relative;
  line-height: 0.9;
  user-select: none;
}

/* ==========================================================================
   CUSTOM CURSOR & CLICK RIPPLES
   ========================================================================== */
/* Custom cursor styles removed */

/* Ripple wave generated on clicking */
.click-ripple {
  position: fixed;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid rgba(157, 78, 221, 0.65);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: rippleEffect 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 9998;
}

@keyframes rippleEffect {
  to {
    width: 90px;
    height: 90px;
    opacity: 0;
    border-color: rgba(255, 0, 127, 0);
  }
}



/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 100;
  padding: 30px 8%;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid transparent;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
  top: 20px;
  width: 90%;
  max-width: 1200px;
  padding: 12px 30px;
  background: rgba(5, 2, 12, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-svg, .logo-img {
  height: 42px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo:hover .logo-svg, .logo:hover .logo-img {
  transform: scale(1.04);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-column {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.nav-column.left {
  justify-content: flex-end;
  margin-right: 90px; /* Pushed further to the left to create a spacious center branding zone */
}

.nav-column.right {
  justify-content: flex-start;
  margin-left: 90px; /* Pushed further to the right to create a spacious center branding zone */
}

.header-logo-img {
  height: 72px; /* Enlarged corporate logo to wow the user */
  width: auto;
  filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.22));
  transition: var(--transition-smooth);
}

.header-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 25px rgba(157, 78, 221, 0.45));
}

.footer-logo-img {
  height: 52px; /* Enlarged footer logo for balanced branding */
  width: auto;
  filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.15));
  transition: var(--transition-smooth);
}

.footer-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.35));
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  color: var(--text-main);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background-color 0.4s ease;
  z-index: 1;
}

.header-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-btn:hover {
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(157, 78, 221, 0.25), 0 0 12px rgba(157, 78, 221, 0.1);
  transform: translateY(-2px);
}

.header-btn:hover::before {
  opacity: 1;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 991px) {
  header.scrolled {
    width: 94%;
    padding: 10px 24px;
  }

  #header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
  }

  .header-logo-img {
    height: 50px; /* Scaled down slightly on mobile to maintain perfect header pill height */
  }

  .hamburger {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(2, 1, 5, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 105;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-column {
    display: contents;
  }

  nav .logo {
    display: none;
  }
  
  .header-btn {
    width: 80%;
    text-align: center;
  }
}

/* ==========================================================================
   BUTTONS (OVAL SIGNATURE CAPSULE)
   ========================================================================== */
.capsule-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 6px 6px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.capsule-btn .btn-text {
  margin-right: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.capsule-btn .btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.18);
}

.capsule-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 35px rgba(157, 78, 221, 0.25);
  transform: translateY(-3px);
}

.capsule-btn:hover .btn-icon {
  transform: scale(1.05) rotate(15deg);
  background: var(--color-magenta);
  color: #fff;
  box-shadow: var(--glow-magenta);
}

.capsule-btn:active {
  transform: translateY(-1px);
}

/* ── Hero Signature CTA Button Upgrades ───────────────── */
#hero-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 8px 8px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4), 
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* breathing glowing shadow halo behind the button */
#hero-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-magenta));
  filter: blur(14px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  animation: heroButtonGlowPulse 4.5s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroButtonGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; filter: blur(12px); }
  50% { transform: scale(1.06); opacity: 0.58; filter: blur(18px); }
}

/* Holographic auto-shimmer sweep light glare */
#hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  transform: skewX(-28deg);
  pointer-events: none;
  z-index: 2;
  animation: heroButtonAutoShimmer 7s infinite ease-in-out;
  transition: all 0.5s ease;
}

@keyframes heroButtonAutoShimmer {
  0% { left: -150%; }
  22%, 100% { left: 150%; }
}

/* Hover State overrides */
#hero-cta:hover {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 127, 0.15) 100%);
  border-color: rgba(255, 0, 127, 0.45);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

#hero-cta:hover::before {
  transform: scale(1.15);
  opacity: 0.75;
  filter: blur(22px);
  animation-play-state: paused;
}

#hero-cta:hover::after {
  animation: none;
  left: 150%;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Arrow micro-interaction slide-out and slide-in */
#hero-cta:hover .btn-icon svg {
  animation: heroArrowSlide 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroArrowSlide {
  0% { transform: translateX(0); opacity: 1; }
  49% { transform: translateX(18px); opacity: 0; }
  50% { transform: translateX(-18px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

#hero-cta .btn-icon {
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.22);
}

#hero-cta:hover .btn-icon {
  transform: scale(1.05);
  background: #fff;
  color: var(--color-magenta);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
}

/* ==========================================================================
   LAYOUT UTILITIES & ON-SCROLL REVEALS
   ========================================================================== */
section {
  padding: 120px 8% 100px 8%;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

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

/* Elegant Scroll Revelations */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   HERO LANDING SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
}

.hero-centered {
  position: relative;
  min-height: 100vh;
  background-image: url('assets/hero-mobile.webp'); /* Mobile Optimized WebP */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Medium & Desktop Screens (4K Optimized WebP) */
@media (min-width: 768px) {
  .hero-centered {
    background-image: url('assets/hero-4k.webp');
  }
}

/* Retina / Ultra-HD Screens (8K Premium Optimized WebP) */
@media (min-width: 1400px) and (-webkit-min-device-pixel-ratio: 1.5),
       (min-width: 1400px) and (min-resolution: 144dpi) {
  .hero-centered {
    background-image: url('assets/hero-8k.webp');
  }
}

.hero-centered::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent; /* No opacity mask or dimming, background is displayed directly at 100% brightness */
  z-index: 1;
  pointer-events: none;
}

/* Soft bottom fade — hero background bleeds down into the next section */
.hero-centered::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(5, 2, 12, 0.55) 55%,
    rgba(5, 2, 12, 0.88) 80%,
    #05020c 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* ── Redesigned Hero Two-Column Layout ── */
.hero-two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* Left side empty for crystal focal point, right side for content */
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 120px); /* Vertical viewport centering excluding header space */
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-focal-column {
  /* Keeps space open on the left so the background crystal is 100% visible */
  pointer-events: none;
  min-height: 300px;
}

.hero-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-left: 100px; /* Shunted further right for generous off-center layout */
}

.hero-content-wrapper {
  max-width: 620px;
  margin-top: -100px; /* Shunted further up for premium airy alignment */
  animation: heroContentFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Subtle fade-in animation */
@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Refined micro brand logo container as a high-end eyebrow */
#hero .hero-brand-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 135px; /* Perfectly aligned to eyebrow proportions */
  margin: 0 0 24px 0;
  position: relative;
}

#hero .hero-brand-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: invert(1) hue-rotate(180deg) brightness(1.15) contrast(1.15);
  mix-blend-mode: screen;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#hero .hero-brand-container:hover .hero-brand-img {
  transform: scale(1.03);
}

/* Micro flyout emblem anim style ratioed to eyebrow bounds */
#hero .hero-emblem-anim {
  position: absolute;
  right: 15%;
  top: 55%;
  width: 6px;
  height: 6px;
  z-index: 1;
  opacity: 0;
  transform: scale(0.1) rotate(0deg);
  filter: invert(1) hue-rotate(180deg) brightness(1.1) contrast(1.15);
  mix-blend-mode: screen;
  transition: right 1.2s cubic-bezier(0.25, 1, 0.3, 1),
              top 1.2s cubic-bezier(0.25, 1, 0.3, 1),
              width 1.2s cubic-bezier(0.25, 1, 0.3, 1),
              height 1.2s cubic-bezier(0.25, 1, 0.3, 1),
              opacity 1.2s cubic-bezier(0.25, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
  pointer-events: none;
}

#hero .hero-brand-container:hover .hero-emblem-anim {
  right: -20%; /* Flees perfectly right of the 'p' letter */
  top: 15%; /* Vertically centered */
  width: 25px; /* Shrunk from 76px to look incredibly sharp at eyebrow size */
  height: 25px;
  opacity: 1;
  transform: scale(1) rotate(360deg);
  z-index: 3;
  animation: emblemShineBurst 1.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Large bold headline (2 lines max on desktop) */
.title-gradient-highlight {
  background: linear-gradient(135deg, #c084fc 0%, #e879f9 50%, #00f0ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #fff;
  text-shadow: 0 0 35px rgba(232, 121, 249, 0.35);
  font-weight: 950;
  display: inline-block;
}

#hero .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.8vw, 4.4rem); /* Prestigious massive title */
  font-weight: 950;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: capitalize; /* Clean agency typography style */
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: left;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Short supporting description */
#hero .hero-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 2.2vw, 17.5px);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 40px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.text-glow-highlight {
  font-weight: 700;
  background: linear-gradient(120deg, #c084fc 0%, #e879f9 50%, #00f0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  text-shadow: 0 0 15px rgba(232, 121, 249, 0.35);
}

/* Redesigned CTA Button Alignment */
#hero .hero-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 10;
}

/* Secondary CTA link button */
.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.secondary-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-purple, #9d4edd);
  transition: width 0.3s ease;
}

.secondary-link:hover {
  color: #fff;
}

.secondary-link:hover::after {
  width: 100%;
}

.secondary-link .link-icon {
  transition: transform 0.3s ease;
}

.secondary-link:hover .link-icon {
  transform: translateX(4px);
}

/* Subtle Dark Overlay Gradient on the Right for enhanced readability */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 15%, rgba(5, 2, 12, 0.45) 45%, rgba(5, 2, 12, 0.82) 75%, #05020c 100%);
  z-index: 2;
  pointer-events: none;
}

/* Soft floating particles container inside hero */
.hero-ambient-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* Tablet and mobile collapse layout overrides */
@media (max-width: 991px) {
  .hero-two-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    min-height: auto;
  }

  .hero-focal-column {
    min-height: auto;
    display: none;
  }

  .hero-content-column {
    align-items: center;
    text-align: center;
    padding-left: 0 !important;
  }

  .hero-content-wrapper {
    margin-top: 0 !important;
    max-width: 100%;
    width: 100%;
  }

  #hero .hero-brand-container {
    justify-content: center !important;
    max-width: 220px !important;
    margin: 0 auto 20px auto !important;
  }

  #hero .hero-headline {
    text-align: center;
    font-size: clamp(1.9rem, 7.5vw, 2.75rem);
  }

  #hero .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 6px;
  }

  .hero-centered {
    background-position: center 18%;
  }

  #hero .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  #hero .hero-actions .capsule-btn {
    width: 100%;
    justify-content: center;
  }

  #hero .hero-brand-container:hover .hero-emblem-anim {
    right: 50% !important;
    top: 5% !important;
    width: 50px !important;
    height: 50px !important;
    transform: translateX(50%) scale(1) rotate(360deg) !important;
  }

  .hero-overlay-gradient {
    background: radial-gradient(circle, rgba(5, 2, 12, 0.4) 0%, rgba(5, 2, 12, 0.88) 100%);
  }
}


/* Controls / Indicators Footer */
.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 35px;
  width: 100%;
}

.social-links {
  display: flex;
  gap: 26px;
}

.social-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--color-purple);
  text-shadow: var(--glow-purple);
  transform: translateY(-3px);
}

/* Instagram SVG icon link variant */
.social-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-link-icon svg {
  display: block;
  transition: var(--transition-fast);
}

.social-link-icon:hover {
  color: var(--color-purple);
  filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.6));
  transform: translateY(-3px);
}


/* Circular spinning scroll trigger */
.scroll-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 115px;
  height: 115px;
  cursor: pointer;
}

.scroll-prompt svg {
  width: 100%;
  height: 100%;
  animation: spinSlow 22s linear infinite;
}

.scroll-prompt .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transition: var(--transition-fast);
  animation: bounceDown 2s infinite ease-in-out;
}

.scroll-prompt:hover .arrow {
  color: var(--color-purple);
  transform: translate(-50%, -30%) scale(1.2);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, -45%); }
  50% { transform: translate(-50%, -18%); }
}

.nav-arrows {
  display: flex;
  gap: 16px;
}

.nav-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-arrow:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

@media (max-width: 991px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 75vh;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    z-index: 10;
  }
  
  .hero-visual {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 85vw;
    height: 85vw;
    opacity: 0.22;
    z-index: 0;
  }
  
  .hero-description {
    margin: 0 auto 40px auto;
  }
  
  .hero-footer {
    flex-direction: column;
    gap: 30px;
    z-index: 10;
  }
}

/* ==========================================================================
   ABOUT AGENCY SECTION
   ========================================================================== */
.about {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

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

.about-visual .fluid-art-wrapper {
  max-width: 520px;
  filter: drop-shadow(0 20px 50px rgba(255, 0, 127, 0.28));
}

.about-content {
  position: relative;
}

/* ── About: Eyebrow tag ───────────────────────── */
.about-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.about-eyebrow-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  padding-left: 14px;
  border-left: 2px solid var(--color-purple);
  line-height: 1;
}

/* ── About: Split editorial headline ─────────── */
.about-headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 22px;
  line-height: 1.1;
}

.ah-light {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.02em;
}

.ah-bold {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ah-italic {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.01em;
}

/* ── About: Manifesto line ────────────────────── */
.about-manifesto {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  padding-left: 2px;
}

/* ── About: Keyword chips ────────────────────── */
.about-keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.about-kw {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.about-kw:hover {
  color: var(--color-purple);
  border-color: rgba(157, 78, 221, 0.35);
  background: rgba(157, 78, 221, 0.06);
}

.about-kw-dot {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

/* ── About: Body copy ────────────────────────── */
.about-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
}

.about-body strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}


.page-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  user-select: none;
}

.page-indicator .line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.page-indicator .line-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 25%;
  background: var(--grad-primary);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ==========================================================================
   SERVICES SECTIONS & SPOTLIGHT MASK GLOWS
   ========================================================================== */
.services {
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-blue);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Highly advanced spotlight-glass service cards */
.service-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.05), transparent 45%),
              rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 50px 38px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s ease, 
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(350px circle at var(--mouse-x) var(--mouse-y), rgba(157, 78, 221, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(157, 78, 221, 0.1);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(157, 78, 221, 0.18);
}

.service-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.service-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition-smooth);
}

.service-card-link svg {
  transition: var(--transition-fast);
}

/* Spotlight Hover Mechanics */
.service-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.035);
  border-color: rgba(157, 78, 221, 0.28);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45), 0 0 35px rgba(157, 78, 221, 0.08);
}

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

.service-card:hover .service-card-icon {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-purple);
  transform: scale(1.06) rotate(6deg);
}

.service-card:hover .service-card-title {
  color: var(--color-purple);
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card-link:hover {
  color: var(--color-magenta);
}

.service-card:hover .service-card-link:hover svg {
  transform: translateX(5px);
}

/* ==========================================================================
   PROCESS ROADMAP TIMELINE
   ========================================================================== */
.process {
  background: var(--bg-darker);
  overflow: hidden;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-purple) 0%, var(--color-magenta) 50%, var(--color-blue) 100%);
  transform: translateX(-50%);
  opacity: 0.18;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
  width: 100%;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 4px solid var(--color-purple);
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 16px var(--color-purple);
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-dot {
  border-color: var(--color-magenta);
  box-shadow: 0 0 16px var(--color-magenta);
}

.timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 38px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
}

.timeline-number {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  display: block;
}

.timeline-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.35);
  background: #fff;
  box-shadow: 0 0 25px #fff;
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
    transform: none;
  }
  
  .timeline-item, .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 55px;
    margin-bottom: 50px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-item:hover .timeline-dot {
    transform: scale(1.25);
  }
}

/* ==========================================================================
   CONTACT FORMS & GLOWING INPUTS
   ========================================================================== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-minimal-layout {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.contact-minimal-form-card {
  width: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(255, 0, 127, 0.03), transparent 50%),
              rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 50px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
  margin-bottom: 40px;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.contact-minimal-form-card:hover {
  border-color: rgba(255, 0, 127, 0.25);
  box-shadow: 0 45px 85px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 0, 127, 0.04);
}

.form-row-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.contact-minimal-footer-bar {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.minimal-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.minimal-footer-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.minimal-footer-link .dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
  display: inline-block;
  animation: pulseDot 1.8s infinite ease-in-out;
}

.contact-minimal-footer-bar .divider-line {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-info {
  z-index: 5;
}

.contact-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 450px;
}

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: #00ff88;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.05);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.contact-details-minimal {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.contact-detail-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  transition: border-color 0.4s ease;
}

.contact-detail-line:hover {
  border-color: rgba(157, 78, 221, 0.35);
}

.contact-detail-line .detail-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.contact-detail-line .detail-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.contact-detail-line:hover .detail-value {
  color: var(--color-purple);
  transform: translateX(4px);
}

.method-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.contact-method-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--color-purple);
  background-color: rgba(255, 255, 255, 0.035);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45), 0 0 25px rgba(157, 78, 221, 0.06);
}

.contact-method-card:hover .method-glow {
  opacity: 0.6;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-method-card:hover .contact-icon {
  transform: scale(1.08) rotate(4deg);
  box-shadow: var(--glow-purple);
  color: #fff;
  background: var(--grad-primary);
  border-color: transparent;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.contact-value:hover {
  color: var(--color-purple);
}

.method-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.method-status {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Glassmorphic Contact Form Wrapper */
.contact-form-wrapper {
  background: radial-gradient(circle at 100% 0%, rgba(255, 0, 127, 0.04), transparent 50%),
              rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 50px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  z-index: 5;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.contact-form-wrapper:hover {
  border-color: rgba(255, 0, 127, 0.25);
  box-shadow: 0 45px 85px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 0, 127, 0.04);
}

.contact-form-wrapper > form {
  transform: translateZ(25px);
  transform-style: preserve-3d;
}

/* Contact Form Card Header Stylings */
.form-card-header {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card-title {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.form-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.4s ease;
}

.form-label {
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              font-size 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s ease;
}

/* Float Label when placeholder is NOT shown */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-26px);
  font-size: 11px;
  color: var(--color-purple);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input-focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-magenta));
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.4);
}

.form-input:focus ~ .form-input-focus-line {
  width: 100%;
}

/* Subtle Backglow behind input on focus */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.form-group:focus-within::after {
  opacity: 1;
}

textarea.form-input {
  min-height: 100px;
  resize: none;
}

.success-message {
  margin-top: 15px;
  color: #00ff88;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.success-message.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-form-wrapper {
    padding: 38px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 8% 40px 8%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 35px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ==========================================================================
   360° SVG SELECTOR WHEEL
   ========================================================================== */
.wheel-services-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.wheel-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wheel-wrapper {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-outer-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.06) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.wheel-main {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wheel-center {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #05020c;
  border: 1.5px solid rgba(157, 78, 221, 0.3);
  box-shadow: 0 0 35px rgba(157, 78, 221, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.wheel-center-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.12) 0%, transparent 80%);
}

.wheel-center-logo {
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 8px var(--color-purple));
}

.wheel-svg-logo {
  width: 100%;
  height: 100%;
}

.wheel-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 8;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.node-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.node-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: var(--transition-smooth);
  background: rgba(5, 2, 12, 0.7);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wheel-node:hover .node-dot {
  border-color: var(--color-blue);
  box-shadow: var(--glow-blue);
  transform: scale(1.25);
}

.wheel-node:hover .node-label {
  color: #fff;
  border-color: rgba(0, 240, 255, 0.25);
}

.wheel-node.active .node-dot {
  background: #fff;
  border-color: var(--color-magenta);
  box-shadow: var(--glow-magenta);
  transform: scale(1.4);
}

.wheel-node.active .node-label {
  color: #fff;
  font-weight: 800;
  border-color: rgba(255, 0, 127, 0.35);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 127, 0.15) 100%);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.12);
}

/* Glass Detail Card */
.detail-card {
  padding: 50px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  justify-content: center;
}

.detail-glow-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-primary);
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(157, 78, 221, 0.1);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(157, 78, 221, 0.15);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.05);
  transition: var(--transition-smooth);
}

.detail-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.12);
  user-select: none;
}

.detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 6px 0;
}

.detail-features li {
  font-size: 14.5px;
  color: var(--text-muted);
  position: relative;
  padding-left: 26px;
}

.detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

.detail-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-stat .stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  text-shadow: var(--glow-blue);
}

.detail-stat .stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes detailsReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-card.update-anim {
  animation: detailsReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   STATS DASHBOARD SECTION (Futuristic Telemetry Console)
   ========================================================================== */
.dashboard {
  position: relative;
  overflow: hidden;
}

.console-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.console-metrics-pane {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.console-lead-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
}

.console-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.console-stat-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
}

.console-stat-card > * {
  transform: translateZ(20px);
}

.console-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(157, 78, 221, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.console-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 78, 221, 0.25);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), var(--glow-purple);
}

.console-stat-card .stat-value {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.console-stat-card .stat-unit {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-left: 2px;
}

.console-stat-lbl {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.45;
}

/* Console Screen Pane Styling */
.console-screen-pane {
  width: 100%;
  display: flex;
  justify-content: center;
}

.console-screen-card {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  background: rgba(5, 2, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55), 0 0 40px rgba(157, 78, 221, 0.04);
  overflow: hidden;
}

.console-screen-header {
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.console-screen-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.console-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-magenta);
  box-shadow: var(--glow-magenta);
  animation: telemetryPulse 1.5s infinite ease-in-out;
}

@keyframes telemetryPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.console-screen-body {
  padding: 30px;
}

.console-chart-legend {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.legend-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legend-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.legend-value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.legend-channels {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.channel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.channel-dot.Reels { background: var(--color-purple); }
.channel-dot.Ads { background: var(--color-magenta); }

.console-chart-wrapper {
  margin: 15px 0 25px 0;
  position: relative;
  width: 100%;
}

.console-grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.engagement-chart {
  width: 100%;
  height: auto;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.chart-stroke-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.chart-stroke-path.animate-path {
  animation: drawChartPath 3.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawChartPath {
  to { stroke-dashoffset: 0; }
}

.console-screen-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 22px;
}

.footer-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-metric .label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-metric .val {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-metric .val.positive {
  color: #00ff88;
}

.footer-metric .val.highlight {
  color: var(--color-blue);
  text-shadow: var(--glow-blue);
}

@media (max-width: 991px) {
  .console-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}

@media (max-width: 580px) {
  .console-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .console-screen-card {
    padding: 10px;
  }
  
  .console-screen-body {
    padding: 20px;
  }
}

/* ==========================================================================
   PORTFOLIO SHOWCASE SECTION
   ========================================================================== */
.portfolio {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.portfolio-filters {
  margin-bottom: 50px;
  gap: 14px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.filter-btn.active {
  background: #fff;
  color: var(--bg-dark);
  border-color: #fff;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.12);
}

.portfolio-constellation-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.portfolio-showcase-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.portfolio-deck-wrapper {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.portfolio-deck-card {
  position: absolute;
  width: 320px;
  height: 240px;
  padding: 30px;
  border-radius: 24px;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.035), rgba(255,255,255,0.005)),
              rgba(5, 2, 12, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  cursor: pointer;
  user-select: none;
}

.portfolio-deck-card > * {
  transform: translateZ(20px);
}

.card-deck-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.card-deck-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-deck-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.card-deck-visual-glow {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 4px;
  filter: blur(10px);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

/* 3D Stack positions */
.portfolio-deck-card.pos-0 {
  transform: translate3d(0, 0, 120px) rotateY(-5deg);
  opacity: 1;
  z-index: 10;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(157, 78, 221, 0.12);
}

.portfolio-deck-card.pos-1 {
  transform: translate3d(60px, -20px, 40px) rotateY(-10deg) scale(0.92);
  opacity: 0.85;
  z-index: 8;
  border-color: rgba(255, 255, 255, 0.12);
}

.portfolio-deck-card.pos-2 {
  transform: translate3d(120px, -40px, -40px) rotateY(-15deg) scale(0.84);
  opacity: 0.55;
  z-index: 6;
  border-color: rgba(255, 255, 255, 0.06);
}

.portfolio-deck-card.pos-prev {
  transform: translate3d(-100px, 30px, -60px) rotateY(15deg) scale(0.85);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.portfolio-deck-card.pos-hidden {
  transform: translate3d(180px, -60px, -120px) rotateY(-20deg) scale(0.76);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.portfolio-deck-card.pos-filtered {
  transform: translate3d(0, 100px, -200px) scale(0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* Interactive hover animations on active card */
.portfolio-deck-card.pos-0:hover {
  transform: translate3d(0, -10px, 160px) rotateY(0deg);
  border-color: var(--card-color);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.75), 0 0 50px rgba(157, 78, 221, 0.25);
}

.portfolio-deck-card.pos-0:hover .card-deck-visual-glow {
  opacity: 1;
}

#portfolio-constellation-canvas:active {
  cursor: grabbing;
}

.constellation-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.08) 0%, rgba(255, 0, 127, 0.02) 55%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .portfolio-constellation-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .portfolio-constellation-pane {
    order: 2;
  }
  
  .portfolio-detail-pane {
    order: 1;
  }
  
  .portfolio-constellation-wrapper {
    transform: scale(0.95);
    margin: -20px auto;
  }
}

@media (max-width: 580px) {
  .portfolio-constellation-wrapper {
    transform: scale(0.75);
    margin: -45px auto;
  }
}

/* Dimmed node state for filter exclusions */
.campaign-planet.dimmed {
  opacity: 0.15;
  scale: 0.8;
  pointer-events: none;
}

/* Active Detailed Case Study Dashboard card styling */
.portfolio-detail-card {
  padding: 50px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  justify-content: center;
}

.portfolio-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-purple), var(--color-magenta));
  transition: background 0.6s ease;
}

.portfolio-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-badge-index {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.12);
  user-select: none;
}

.portfolio-badge-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-detail-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  transition: color 0.4s ease;
}

.portfolio-detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Simulated interactive graphics inside case cards */
.portfolio-simulation-box {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px 24px;
  margin: 8px 0;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sim-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sim-growth {
  font-size: 13px;
  font-weight: 700;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.sim-graphic-wrapper {
  position: relative;
  width: 100%;
}

.sim-svg-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.portfolio-svg-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

.portfolio-svg-path.animate-path {
  animation: drawChartPath 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.portfolio-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-detail-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.portfolio-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portfolio-stat-pill .stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  text-shadow: var(--glow-blue);
}

.portfolio-stat-pill .stat-lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-detail-card.update-anim {
  animation: detailsReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 991px) {
  .portfolio-galaxy-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .portfolio-galaxy-pane {
    order: 2;
  }
  
  .portfolio-detail-pane {
    order: 1;
  }
  
  .portfolio-galaxy-wrapper {
    transform: scale(0.95);
    margin: -20px auto;
  }
}

@media (max-width: 580px) {
  .portfolio-galaxy-wrapper {
    transform: scale(0.75);
    margin: -45px auto;
  }
  
  .portfolio-detail-card {
    padding: 35px 28px;
  }
}

/* Category filter counter tags default count styling */
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  margin-left: 8px;
  transition: var(--transition-fast);
}

.filter-btn:hover .filter-count {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.filter-btn.active .filter-count {
  background: var(--bg-dark);
  color: #fff;
}

/* Filtering state transitions */
.portfolio-item.filtered-out {
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}

/* ==========================================================================
   BRIEF & BUDGET TAGS IN CONTACT FORM
   ========================================================================== */
.form-brief-selection {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 10px;
}

.brief-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.brief-tags, .budget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brief-tag, .budget-tag {
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.brief-tag:hover, .budget-tag:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.brief-tag.selected {
  color: #fff;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 127, 0.15) 100%);
  border-color: var(--color-magenta);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

.budget-tag.selected {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
  border-color: var(--color-blue);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

/* ==========================================================================
   WHEEL & GRID RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
  .wheel-services-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .wheel-pane {
    order: 2;
  }
  
  .detail-pane {
    order: 1;
  }
  
  .wheel-wrapper {
    width: 100%;
    max-width: 380px;
    height: 380px;
  }
  
  .wheel-main {
    width: 300px;
    height: 300px;
  }
  
  .wheel-center {
    width: 90px;
    height: 90px;
  }
  
  .wheel-center-logo {
    width: 38px;
    height: 38px;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .dashboard-visual-wrapper {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .stats-counter-grid {
    grid-template-columns: 1fr;
  }
  
  .wheel-wrapper {
    transform: scale(0.85);
    margin: -30px 0;
  }
  
  .detail-card {
    padding: 35px 28px;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM UPGRADES: CANVAS & 3D PERSPECTIVE HOLOGRAPHIC CARDS
   ========================================================================== */
/* Obsolete canvas art wrapper and marquee ticker styles removed */

/* 3D Holographic Card Cluster for About visual section */
.about-card-cluster {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 420px;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.about-card {
  position: absolute;
  border-radius: 24px;
  padding: 28px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  pointer-events: auto;
}

.card-glow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.cluster-card-1 {
  width: 320px;
  height: 180px;
  z-index: 3;
  transform: translate3d(30px, 40px, 60px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 0, 127, 0.22);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.cluster-card-2 {
  width: 280px;
  height: 140px;
  z-index: 2;
  transform: translate3d(-60px, -30px, 20px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(157, 78, 221, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cluster-card-3 {
  width: 250px;
  height: 90px;
  z-index: 1;
  transform: translate3d(60px, -90px, -20px);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(0, 240, 255, 0.14);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Force 3D layers hierarchy inside cards */
.about-card > * {
  transform: translateZ(20px);
}

.cluster-card-1:hover {
  transform: translate3d(30px, 40px, 95px) scale(1.03);
  border-color: var(--color-magenta);
  box-shadow: 0 30px 60px rgba(255, 0, 127, 0.18), var(--glow-magenta);
}

.cluster-card-2:hover {
  transform: translate3d(-60px, -30px, 55px) scale(1.03);
  border-color: var(--color-purple);
  box-shadow: 0 25px 50px rgba(157, 78, 221, 0.18), var(--glow-purple);
}

.cluster-card-3:hover {
  transform: translate3d(60px, -90px, 15px) scale(1.03);
  border-color: var(--color-blue);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15), var(--glow-blue);
}

/* Responsiveness for holographic tilt cluster */
@media (max-width: 991px) {
  .about-card-cluster {
    height: 380px;
    margin-bottom: 40px;
  }
  .cluster-card-1 {
    transform: translate3d(20px, 30px, 40px);
    width: 290px;
  }
  .cluster-card-2 {
    transform: translate3d(-50px, -20px, 15px);
    width: 250px;
  }
  .cluster-card-3 {
    transform: translate3d(50px, -70px, -15px);
    width: 220px;
  }
}

@media (max-width: 580px) {
  .about-card-cluster {
    height: 360px;
    transform: scale(0.9);
  }
}

/* ==========================================================================
   FUTURISTIC INTERACTIVE GALAXY ORBIT STEPPER (PROCESS)
   ========================================================================== */
.cyber-process-layout {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 60px;
}

.cyber-stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.cyber-step-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              background-color 0.4s ease,
              box-shadow 0.4s ease;
}

.cyber-step-pill .pill-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.cyber-step-pill .pill-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.cyber-step-pill .pill-indicator-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--grad-primary);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 3px 3px 0 0;
}

/* Hover State */
.cyber-step-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 78, 221, 0.25);
  background-color: rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 15px rgba(157, 78, 221, 0.04);
}

.cyber-step-pill:hover .pill-title {
  color: #fff;
}

/* Active State */
.cyber-step-pill.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-magenta);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 127, 0.1);
}

.cyber-step-pill.active .pill-num {
  color: #fff;
  -webkit-text-stroke-color: transparent;
  text-shadow: var(--glow-magenta);
}

.cyber-step-pill.active .pill-title {
  color: #fff;
  font-weight: 800;
}

.cyber-step-pill.active .pill-indicator-bar {
  width: 60%;
}

/* Connectors between pills */
.cyber-step-line-connector {
  flex: 1 1 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 15px;
  position: relative;
  overflow: hidden;
}

.cyber-step-line-connector .connector-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-blue), var(--color-purple), var(--color-magenta));
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px var(--color-purple);
}

/* Connectors fill based on step class on row */
.cyber-stepper-row.active-step-1 .cyber-step-line-connector:nth-of-type(1) .connector-progress { width: 100%; }
.cyber-stepper-row.active-step-2 .cyber-step-line-connector:nth-of-type(1) .connector-progress,
.cyber-stepper-row.active-step-2 .cyber-step-line-connector:nth-of-type(2) .connector-progress { width: 100%; }
.cyber-stepper-row.active-step-3 .cyber-step-line-connector:nth-of-type(1) .connector-progress,
.cyber-stepper-row.active-step-3 .cyber-step-line-connector:nth-of-type(2) .connector-progress,
.cyber-stepper-row.active-step-3 .cyber-step-line-connector:nth-of-type(3) .connector-progress { width: 100%; }

/* Mobile adaptation for process stepper */
@media (max-width: 991px) {
  .cyber-stepper-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .cyber-step-pill {
    width: 100%;
    min-width: unset;
  }
  
  .cyber-step-line-connector {
    width: 2px;
    height: 30px;
    margin: -10px 0;
  }
  
  .cyber-step-line-connector .connector-progress {
    height: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--color-blue), var(--color-purple), var(--color-magenta));
    transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .cyber-stepper-row.active-step-1 .cyber-step-line-connector:nth-of-type(1) .connector-progress { height: 100%; }
  .cyber-stepper-row.active-step-2 .cyber-step-line-connector:nth-of-type(1) .connector-progress,
  .cyber-stepper-row.active-step-2 .cyber-step-line-connector:nth-of-type(2) .connector-progress { height: 100%; }
  .cyber-stepper-row.active-step-3 .cyber-step-line-connector:nth-of-type(1) .connector-progress,
  .cyber-stepper-row.active-step-3 .cyber-step-line-connector:nth-of-type(2) .connector-progress,
  .cyber-stepper-row.active-step-3 .cyber-step-line-connector:nth-of-type(3) .connector-progress { height: 100%; }
}

/* Stable placement indices along elliptical tracks */
.planet-node[data-step="0"] { top: 38%; left: 74%; }
.planet-node[data-step="1"] { top: 18%; left: 24%; }
.planet-node[data-step="2"] { top: 72%; left: 16%; }
.planet-node[data-step="3"] { top: 68%; left: 82%; }

.planet-body {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
  position: relative;
  z-index: 2;
}

.planet-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: var(--transition-fast);
  background: rgba(5, 2, 12, 0.7);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-top: 8px;
}

.planet-node:hover .planet-body {
  transform: scale(1.2);
  border-color: var(--color-blue);
  box-shadow: var(--glow-blue);
}

.planet-node:hover .planet-label {
  color: #fff;
  border-color: rgba(0, 240, 255, 0.25);
}

.planet-node.active .planet-body {
  background: #fff;
  transform: scale(1.35);
}

/* Individual planet color cues */
.planet-node[data-step="0"].active .planet-body { border-color: #fff; box-shadow: 0 0 15px #fff; }
.planet-node[data-step="1"].active .planet-body { border-color: var(--color-purple); box-shadow: var(--glow-purple); }
.planet-node[data-step="2"].active .planet-body { border-color: var(--color-magenta); box-shadow: var(--glow-magenta); }
.planet-node[data-step="3"].active .planet-body { border-color: var(--color-blue); box-shadow: var(--glow-blue); }

.planet-node.active .planet-label {
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.planet-node[data-step="0"].active .planet-label { border-color: rgba(255,255,255,0.22); }
.planet-node[data-step="1"].active .planet-label { border-color: rgba(157,78,221,0.35); }
.planet-node[data-step="2"].active .planet-label { border-color: rgba(255,0,127,0.35); }
.planet-node[data-step="3"].active .planet-label { border-color: rgba(0,240,255,0.35); }

/* Details pane glassmorphism */
.process-detail-card {
  padding: 45px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  height: 100%;
  justify-content: center;
}

.process-glow-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-blue), var(--color-purple));
}

.process-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.12);
  line-height: 0.9;
  user-select: none;
}

.process-step-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.process-step-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

.process-step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0;
}

.process-step-features li {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  padding-left: 26px;
}

.process-step-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-magenta);
  font-weight: 700;
  font-size: 18px;
  line-height: 0.8;
}

.process-step-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.process-meta-info {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-detail-card.update-anim {
  animation: detailsReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .galaxy-process-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .galaxy-pane {
    order: 2;
  }
  
  .process-detail-pane {
    order: 1;
  }
  
  .galaxy-wrapper {
    transform: scale(0.95);
    margin: -20px auto;
  }
}

@media (max-width: 580px) {
  .galaxy-wrapper {
    transform: scale(0.75);
    margin: -45px auto;
  }
  
  .process-detail-card {
    padding: 35px 28px;
  }
}


/* ==========================================================================
   JOURNEY GRID — Editorial Numbered Process Cards
   ========================================================================== */

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
}

.journey-card {
  position: relative;
  padding: 52px 48px 40px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  cursor: default;
  transition: background 0.4s ease, border-color 0.4s ease;

  /* Default accent is purple */
  --accent: var(--color-purple);
  --accent-rgb: 157, 78, 221;
}

/* Hover state */
.journey-card:hover {
  background: rgba(var(--accent-rgb), 0.04);
  border-color: rgba(var(--accent-rgb), 0.18);
}

/* Bottom accent line that animates in on hover */
.journey-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px var(--accent);
}

.journey-card:hover::after {
  transform: scaleX(1);
}

/* Giant ghost step number */
.journey-ghost-num {
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: rgba(var(--accent-rgb), 0.06);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
  letter-spacing: -0.04em;
}

.journey-card:hover .journey-ghost-num {
  color: rgba(var(--accent-rgb), 0.10);
}

/* Inner content wrapper */
.journey-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Top row: dot + phase label */
.journey-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.journey-phase-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
}

.journey-card:hover .journey-phase-dot {
  box-shadow: 0 0 16px var(--accent), 0 0 30px rgba(var(--accent-rgb), 0.5);
}

.journey-phase-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0.85;
}

/* Main title */
.journey-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.journey-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

/* Description */
.journey-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Feature list */
.journey-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
  flex: 1;
}

.journey-features li {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.journey-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* Footer row */
.journey-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  margin-top: auto;
}

.journey-week {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--accent-rgb), 0.6);
  transition: all 0.3s ease;
}

.journey-card:hover .journey-arrow {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.25);
  transform: translateX(3px);
}

/* Divider line between top-left and top-right, bottom-left and bottom-right */
.journey-grid .journey-card:nth-child(1),
.journey-grid .journey-card:nth-child(3) {
  border-right-color: rgba(255, 255, 255, 0.06);
}

.journey-grid .journey-card:nth-child(1),
.journey-grid .journey-card:nth-child(2) {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Reveal delay helpers for journey cards */
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 860px) {
  .journey-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    gap: 16px;
    margin-top: 64px;
    border: none;
    border-radius: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0;
    scroll-snap-type: x mandatory;
  }

  .journey-card {
    padding: 40px 32px 32px;
    flex: 0 0 calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
  }

  .journey-card:nth-child(1),
  .journey-card:nth-child(3) {
    border-right-color: unset;
  }

  .journey-card:nth-child(1),
  .journey-card:nth-child(2) {
    border-bottom-color: unset;
  }

  .journey-ghost-num {
    font-size: 100px;
  }

  .journey-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .journey-card {
    padding: 32px 24px 28px;
  }

  .journey-title {
    font-size: 22px;
  }
}

.header-pre-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  background: rgba(157, 78, 221, 0.05);
  border: 1px solid rgba(157, 78, 221, 0.18);
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.04);
}
.pulse-dot-purple {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-purple, #9d4edd);
  box-shadow: 0 0 8px var(--color-purple, #9d4edd);
  animation: pulsePreDot 1.8s infinite ease-in-out;
}
@keyframes pulsePreDot {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50%       { opacity: 1; transform: scale(1.15); }
}
.pre-title-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-purple, #9d4edd);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Left: Services 3D Deck Layout ──────────────────────── */
.services-showcase-pane {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  height: 520px;
  margin: 0 auto;
}

/* Services Watermark Logo Inside Cards */
.card-watermark-logo {
  position: absolute;
  bottom: 12px;
  right: 16px;
  width: 55px;
  height: 55px;
  object-fit: contain;
  opacity: 0.03;
  filter: invert(1);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#services-deck-wrapper .portfolio-deck-card.pos-0:hover .card-watermark-logo {
  opacity: 0.08;
  transform: translateZ(30px) scale(1.1);
}

.services-cockpit {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 40px;
  align-items: center;
  min-height: 700px;
  margin-top: 60px;
}

/* ── Left: Hexagon Universe ──────────────────── */
.hexagon-universe {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Central Nucleus ───────────────────────── */
.crystal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  z-index: 4;
  animation: crystalFloat 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@keyframes crystalFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px);  }
  50%       { transform: translate(-50%, -50%) translateY(-14px); }
}

.crystal-glow-base {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(157, 78, 221, 0.5) 0%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
}

.core-logo-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter:
    invert(1) hue-rotate(180deg)
    drop-shadow(0 0 20px rgba(192, 132, 252, 0.9))
    drop-shadow(0 0 50px rgba(157, 78, 221, 0.5));
}

.crystal-core-pulse {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.08) 0%, transparent 65%);
  animation: corePulse 3.5s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50%       { transform: scale(1.15); opacity: 0.9; }
}

/* ── Hexagon Feature Cards (Large Controls) ──── */
.hex-feature-card {
  position: absolute;
  left: var(--card-x);
  top: var(--card-y);
  transform: translate(-50%, -50%);
  width: 236px;
  height: 132px;
  z-index: 6;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hex-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005)),
              rgba(6, 3, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Header with Icon + Badge */
.hex-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hex-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--color) 12%, transparent);
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--color) 20%, transparent);
  transition: all 0.4s ease;
}

.hex-card-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.hex-card-num-badge {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
}

.service-node:hover .hex-card-num-badge,
.service-node.active .hex-card-num-badge {
  color: var(--color);
}

/* Typography Inside Card */
.hex-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 4px 0;
  transition: color 0.3s ease;
}

.hex-card-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

/* Glowing Reflective Indicator */
.hex-card-visual-glow {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--color);
  filter: blur(4px);
  opacity: 0.4;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Hover and Active State Shifts */
.hex-feature-card:hover {
  transform: translate(-50%, -52%) scale(1.03);
  z-index: 10;
}

.hex-feature-card:hover .hex-card-inner,
.hex-feature-card.active .hex-card-inner {
  border-color: color-mix(in srgb, var(--color) 55%, transparent);
  background-color: rgba(12, 6, 26, 0.75);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
              0 0 20px color-mix(in srgb, var(--color) 15%, transparent);
}

.hex-feature-card:hover .hex-card-icon,
.hex-feature-card.active .hex-card-icon {
  background: var(--color);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 10px var(--color);
}

.hex-feature-card:hover .hex-card-visual-glow,
.hex-feature-card.active .hex-card-visual-glow {
  height: 3px;
  filter: blur(6px);
  opacity: 1;
  width: 90%;
  left: 5%;
}

.hex-feature-card:hover .hex-card-title,
.hex-feature-card.active .hex-card-title {
  color: var(--color);
}

/* Pulse SVG connections */
.workflow-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.flow-line {
  opacity: 0.06;
  stroke-width: 0.8px;
  stroke-dasharray: 4 6;
  filter: url(#wavy-ray-filter);
  transition: opacity 0.6s ease, stroke-width 0.6s ease, stroke 0.6s ease, filter 0.6s ease;
}

.flow-line.active {
  opacity: 0.95;
  stroke-width: 1.5px;
  stroke-dasharray: 6 12;
  animation: flowDash 0.8s linear infinite;
  filter: url(#wavy-ray-filter) drop-shadow(0 0 5px var(--glow-color, #9d4edd));
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -18;
  }
}

/* ── Right: Detail Panel (Telemetry Console) ── */
/* Custom Services Cockpit Horizontal Structure */
.services-cockpit {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 90px; /* Spacing widened between cards and details card for luxurious look */
  align-items: center;
  min-height: 520px;
  margin-top: 60px;
}

.services-showcase-pane {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 380px;
  height: 520px;
  margin: 0;
}

#services-deck-wrapper {
  margin-left: -50px; /* Shift cards slightly to the left */
}

/* Horizontal detail panel styling sharing portfolio class */
#cdp-card.portfolio-detail-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
  max-width: 820px;
  padding: 38px 40px;
}

.cdp-content-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 24px; /* Shift text slightly to the right for elegant spacing */
}

.cdp-content-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Spacer alignment for chips in horizontal layout */
#cdp-card .portfolio-detail-meta {
  margin-top: 5px;
}

/* ── Bottom Section: 4 Value Feature Cards ─────────────────────── */


.feature-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Custom Stacking for Services 3D Deck */
@media (max-width: 1024px) {
  .services-cockpit {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }

  .services-showcase-pane {
    order: 2;
    height: 440px;
    max-width: 100%;
    justify-content: center;
  }

  .crystal-detail-panel {
    order: 1;
    padding: 0 16px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #services-deck-wrapper {
    transform: scale(0.95);
    margin: -10px auto;
  }

  /* Stack horizontal details card vertically on mobile/tablet */
  #cdp-card.portfolio-detail-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
    max-width: 580px;
  }

  #cdp-card .cdp-content-left {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .services-showcase-pane {
    height: 360px;
    touch-action: manipulation;
  }

  #services-deck-wrapper {
    transform: scale(0.75); /* Mathematical pixel-perfect safety on 320px screens */
    margin: -35px auto;
  }

  /* Compact 3D stacked offsets on mobile for BOTH sections to completely prevent overflow */
  #portfolio-deck-wrapper,
  .portfolio-deck-wrapper {
    width: 100%;
    max-width: 320px;
    height: 360px;
    margin: 0 auto;
    overflow: hidden;
    touch-action: manipulation;
    cursor: grab;
  }

  #portfolio-deck-wrapper:active,
  .portfolio-deck-wrapper:active {
    cursor: grabbing;
  }

  #portfolio-deck-wrapper .portfolio-deck-card,
  #services-deck-wrapper .portfolio-deck-card {
    width: 280px;
    height: 210px;
    padding: 22px;
    user-select: none;
    -webkit-user-select: none;
  }

  #portfolio-deck-wrapper .portfolio-deck-card.pos-0,
  #services-deck-wrapper .portfolio-deck-card.pos-0 {
    transform: translate3d(0, 0, 80px) rotateY(-3deg);
  }

  #portfolio-deck-wrapper .portfolio-deck-card.pos-1,
  #services-deck-wrapper .portfolio-deck-card.pos-1 {
    transform: translate3d(24px, -10px, 30px) rotateY(-6deg) scale(0.92);
  }

  #portfolio-deck-wrapper .portfolio-deck-card.pos-2,
  #services-deck-wrapper .portfolio-deck-card.pos-2 {
    transform: translate3d(48px, -20px, -20px) rotateY(-9deg) scale(0.84);
  }

  #portfolio-deck-wrapper .portfolio-deck-card.pos-prev,
  #services-deck-wrapper .portfolio-deck-card.pos-prev {
    transform: translate3d(-50px, 15px, -40px) rotateY(9deg) scale(0.85);
  }

  #portfolio-deck-wrapper .portfolio-deck-card.pos-hidden,
  #services-deck-wrapper .portfolio-deck-card.pos-hidden {
    transform: translate3d(70px, -30px, -60px) rotateY(-12deg) scale(0.76);
  }

  /* Scaled down typography inside cards on mobile */
  .card-deck-title {
    font-size: 22px !important;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE POLISH — overflow fixes & hero logo scale
   ========================================================================== */
@media (max-width: 991px) {
  section {
    padding: 88px 5% 72px;
  }

  header {
    padding: 22px 5%;
  }

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

  .service-card {
    padding: 36px 28px;
  }

  .portfolio-filters {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }

  .portfolio-showcase-pane,
  .services-showcase-pane {
    overflow: hidden;
  }

  .form-row-two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-minimal-form-card {
    padding: 34px 24px;
  }

  .portfolio-detail-card {
    padding: 34px 24px;
  }

  #cdp-card.portfolio-detail-card {
    padding: 28px 22px;
  }
}

@media (max-width: 580px) {
  section {
    padding: 72px 4% 56px;
  }

  header {
    padding: 18px 4%;
  }

  #hero .hero-brand-container {
    max-width: 260px !important;
    margin-bottom: 18px !important;
  }

  #hero .hero-headline {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
    margin-bottom: 14px;
  }

  #hero .hero-description {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .secondary-link {
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(1.85rem, 6.5vw, 2.4rem);
  }

  .about-card-cluster {
    max-width: 100%;
    height: 300px;
    transform: scale(0.8);
    margin: 0 auto -24px;
    overflow: hidden;
  }

  .cluster-card-1 {
    width: 230px;
    transform: translate3d(8px, 22px, 40px);
  }

  .cluster-card-2 {
    width: 200px;
    transform: translate3d(-30px, -12px, 15px);
  }

  .cluster-card-3 {
    width: 180px;
    transform: translate3d(18px, -48px, -15px);
  }

  .about-headline .ah-bold {
    font-size: clamp(2.1rem, 8.5vw, 2.8rem);
  }

  .ah-light {
    font-size: clamp(1.55rem, 5.8vw, 2rem);
  }

  .ah-italic {
    font-size: clamp(1.35rem, 4.8vw, 1.75rem);
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 11.5px;
  }

  .contact-title {
    font-size: clamp(1.75rem, 6.8vw, 2.35rem);
  }

  .minimal-footer-link {
    font-size: 13px;
  }

  .contact-minimal-form-card {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .portfolio-constellation-wrapper,
  .portfolio-galaxy-wrapper,
  .galaxy-wrapper {
    transform: scale(0.68);
    margin: -52px auto;
  }

  #services-deck-wrapper {
    transform: scale(0.66);
    margin: -48px auto;
  }

  .services-showcase-pane {
    height: 300px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

@media (max-width: 480px) {
  #hero .hero-brand-container {
    max-width: 285px !important;
  }

  #hero .hero-headline {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
  }

  #portfolio-deck-wrapper,
  #services-deck-wrapper {
    transform: scale(0.62);
    margin: -55px auto;
  }

  .portfolio-deck-wrapper {
    max-width: 290px;
    height: 330px;
  }

  .capsule-btn {
    font-size: 12px;
    padding: 6px 6px 6px 20px;
  }

  .journey-card {
    padding: 28px 18px 24px;
  }

  .journey-ghost-num {
    font-size: 72px;
  }
}

/* ==========================================================================
   STATS DASHBOARD SECTION (Futuristic Telemetry Console)
   ========================================================================== */
.dashboard {
  position: relative;
  overflow: hidden;
}

/* ── Dashboard Banner ─────────────────────────────────────────── */
.dashboard-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.08) 0%, rgba(255, 0, 127, 0.06) 50%, rgba(0, 240, 255, 0.04) 100%);
  border: 1px solid rgba(157, 78, 221, 0.2);
  border-radius: 28px;
  padding: 48px 56px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.dashboard-banner-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.dashboard-banner-content .section-subtitle {
  margin-bottom: 4px;
}

.dashboard-banner-content .section-title {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  text-align: left;
  margin-bottom: 0;
}

.dashboard-banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 580px;
}

.dashboard-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.dbanner-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.dbanner-tag:hover {
  color: #fff;
  border-color: rgba(157, 78, 221, 0.35);
  background: rgba(157, 78, 221, 0.08);
}

.dashboard-banner-cta {
  flex-shrink: 0;
}

/* ── Full-Width 4-Column Stats Grid ───────────────────────────── */
.console-stats-grid-full {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .console-stats-grid-full {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 580px) {
  .console-stats-grid-full {
    grid-template-columns: 1fr !important;
  }

  .dashboard-banner {
    flex-direction: column;
    padding: 32px;
    gap: 28px;
  }

  .dashboard-banner-cta {
    width: 100%;
  }

  .dashboard-banner-cta .capsule-btn {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .dashboard-banner {
    flex-direction: column;
    padding: 36px 28px;
    gap: 28px;
    align-items: flex-start;
  }
}

/* ── Section Description ──────────────────────────────────────── */
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 12px auto 0 auto;
}

