/* css/globals.css — FourNine Theme (Pure CSS Fixed) */

/* ============================================================================
   YOUR BRAND COLORS & THEME
============================================================================ */
:root {
  --brand-cyan: #00c8e0;
  --brand-blue: #0058e0;
  --brand-dark: #232526;
  --surface: #e4ecee;
  --border-subtle: rgba(0, 200, 224, 0.1);
}

/* Tailwind custom colors */
@layer base {
  html {
    scroll-behavior: smooth;
    font-feature-settings:
      "rlig" 1,
      "calt" 1;
    font-size: 16px;
    /* Reduced base for better mobile scaling */
  }

  body {
    /* overflow-x: hidden removed; fix wide children instead */
    width: 100%;
    font-family: 'Montserrat', sans-serif;
  }
}

/* ============================================================================
   SICK GRADIENTS & TEXTURES
============================================================================ */
@layer utilities {
  /* Mesh gradient hero */
  .bg-mesh-hero {
    position: relative;
    background: transparent;
    overflow: hidden;
  }

  .bg-mesh-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.15)
    );

    z-index: 0;
  }

  .bg-mesh-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleY(-1);
    z-index: -1;
  }

  .bg-mesh-hero > .container {
    position: relative;
    z-index: 1;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 8rem) !important;
    text-shadow:
      0 10px 40px rgba(0, 0, 0, 0.25),
      0 0 20px rgba(0, 200, 224, 0.2);
    line-height: 1.1;
  }

  /* CTA gradient */
  .bg-gradient-brand {
    background: linear-gradient(to right, var(--brand-cyan), var(--brand-blue));
  }

  /* Subtle section gradient */
  .bg-mesh-subtle {
    background-image:
      radial-gradient(circle at 10% 20%, var(--brand-cyan) 0%, transparent 70%),
      radial-gradient(circle at 90% 80%, var(--brand-blue) 0%, transparent 70%);
  }

  /* Bold Diamond Grid Background (Tilted Checks) */
  .bg-diamond-grid {
    background-image:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 49px,
        rgba(0, 200, 224, 0.4) 49px,
        rgba(0, 200, 224, 0.4) 51px
      ),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 49px,
        rgba(0, 200, 224, 0.4) 49px,
        rgba(0, 200, 224, 0.4) 51px
      ) !important;
    background-size: auto !important;
  }

  /* Glassy Cyan Gradient Background with High-Definition Micro-Dot Texture */
  .bg-glass-cyan {
    background:
      /* High-Definition Micro-Dot Grid */
      radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 0),
      linear-gradient(
        165deg,
        rgba(37, 150, 190, 0.9) 0%,
        rgba(37, 150, 190, 0.7) 40%,
        rgba(20, 80, 100, 0.95) 100%
      );
    background-size:
      24px 24px,
      100% 100%;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  /* Modern Mobile Menu Styles */
  #mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: var(--brand-cyan) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 80px 24px 40px 24px !important;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1) !important;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto !important;
  }

  #mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #mobile-menu .menu-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  @media (min-width: 1024px) {
    #mobile-menu {
      display: none !important;
    }
  }

  /* Staggered Animation for Menu Items */
  #mobile-menu ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }

  #mobile-menu.active ul li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i, 0) + 0.3s);
  }

  /* Burger Icon Animation */
  #mobile-menu-toggle span {
    background-color: var(--brand-dark) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  #mobile-menu-toggle.active span {
    background-color: var(--brand-dark) !important;
  }

  #mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  #mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  #mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Close button inside mobile menu */
  #mobile-menu-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 1000001 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  #mobile-menu-close span {
    position: absolute !important;
    width: 28px !important;
    height: 2.5px !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
    transition: background-color 0.2s ease !important;
  }

  #mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg) !important;
  }

  #mobile-menu-close span:nth-child(2) {
    transform: rotate(-45deg) !important;
  }

  #mobile-menu-close:hover span {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }

  .no-scroll {
    overflow: hidden !important;
  }
}

/* ============================================================================
   GRAIN TEXTURE OVERLAY (5% opacity)
============================================================================ */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='.4'/%3E%3C/svg%3E");
  animation: grain-shift 20s linear infinite;
}

@keyframes grain-shift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, 5%);
  }

  20% {
    transform: translate(-10%, 15%);
  }

  30% {
    transform: translate(5%, -5%);
  }

  40% {
    transform: translate(-5%, 15%);
  }

  50% {
    transform: translate(-10%, 5%);
  }

  60% {
    transform: translate(5%, 0%);
  }

  70% {
    transform: translate(-5%, 10%);
  }

  80% {
    transform: translate(-10%, -5%);
  }

  90% {
    transform: translate(5%, 5%);
  }
}

/* ============================================================================
   TYPOGRAPHY (Premium Agency Feel)
============================================================================ */
@layer base {
  h1,
  h2,
  h3 {
    font-weight: 900;
    letter-spacing: -0.025em;
  }

  h1 {
    font-size: 3rem;
  }

  @media (min-width: 768px) {
    h1 {
      font-size: 4.5rem;
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 6rem;
    }
  }

  h2 {
    font-size: clamp(1.75rem, 5vw, 3rem) !important;
  }

  h3 {
    font-size: 1.875rem;
  }

  @media (min-width: 768px) {
    h3 {
      font-size: 2.25rem;
    }
  }

  p {
    line-height: 1.625;
    color: rgba(35, 37, 38, 0.8);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================================
   ANIMATIONS (Slow, Premium Pulse)
============================================================================ */
@keyframes pulse-premium {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.animate-pulse-premium {
  animation: pulse-premium 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-slower {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.01);
  }
}

.animate-pulse-slower {
  animation: pulse-slower 20s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================================================
   GLASSMORPHISM COMPONENTS — defined below in @layer components
============================================================================ */

/* FULL-WIDTH PERSISTENT NAVBAR */
.glass-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 60px !important;
  z-index: 10000 !important;
  display: block !important;

  /* Initial state: Transparent to show background */
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: auto !important;
}

.glass-nav .container {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  max-width: 1600px !important;
}

@media (min-width: 768px) {
  .glass-nav {
    height: 90px !important;
  }
}

/* Subtle glass effect on scroll to maintain readability while keeping background visible */
.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.05) !important; /* Extremely subtle */
  backdrop-filter: blur(12px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
  height: 56px !important; /* Slight shrink on scroll */
}

@media (min-width: 768px) {
  .glass-nav.scrolled {
    height: 80px !important;
  }
}

.glass-nav.nav-hidden {
  transform: translate(
    -50%,
    -150%
  ) !important; /* Hide it if needed, but not currently used */
}

/* Force links to be visible */
.glass-nav .nav-link {
  color: #232526;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-link {
  color: #232526 !important;
  font-size: clamp(2.5rem, 8vw, 4rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  display: inline-block !important;
  position: relative !important;
  text-transform: capitalize !important;
}

/* Removed .link-num styles as numbering is deleted */

.mobile-nav-link:hover {
  color: var(--brand-cyan) !important;
  transform: translateX(10px);
}

.mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--brand-cyan);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.mobile-submenu-link {
  color: rgba(35, 37, 38, 0.6) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.mobile-submenu-link:hover {
  color: var(--brand-cyan) !important;
}

.mobile-menu-footer {
  margin-top: 3rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid rgba(35, 37, 38, 0.1) !important;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: 0.8s;
}

.mobile-menu-footer p.text-white\/40 {
  color: rgba(35, 37, 38, 0.4) !important;
}

.mobile-menu-footer a.text-white {
  color: #232526 !important;
}

.mobile-menu-footer p.text-white\/70 {
  color: rgba(35, 37, 38, 0.7) !important;
}

#mobile-menu.active .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   RESPONSIVE UTILITIES
============================================================================ */
@layer utilities {
  .container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  @media (min-width: 375px) {
    .container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }

  @media (min-width: 640px) {
    .container {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  @media (min-width: 1920px) {
    .container {
      max-width: 1720px;
    }
  }

  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  @media (min-width: 640px) {
    .section-padding {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  }

  @media (min-width: 768px) {
    .section-padding {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }
  }
}

/* ============================================================================
   GLOBAL ALIGNMENT FIX
   Ensures Tailwind's text-center always wins over inherited block styles
============================================================================ */
.text-center {
  text-align: center !important;
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 20px;
  font-weight: 600;
  color: #00c8e0;
}

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

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

/* .logo-slider mask merged into the full definition below */

.outline-text {
  color: #111;
  text-shadow:
    -2px -2px 0 #f5f5f5,
    2px -2px 0 #f5f5f5,
    -2px 2px 0 #f5f5f5,
    2px 2px 0 #f5f5f5,
    -3px 0 0 #f5f5f5,
    3px 0 0 #f5f5f5,
    0 -3px 0 #f5f5f5,
    0 3px 0 #f5f5f5;
}

.editorial-stroke {
  color: #111;
  text-shadow:
    -1px -1px 0 #f5f5f5,
    /* Subtle stroke */ 2px 2px 10px rgba(0, 0, 0, 0.2),
    /* Soft sharp shadow */ 0 10px 40px rgba(0, 0, 0, 0.25),
    /* Wide ambient shadow */ 0 0 20px rgba(0, 200, 224, 0.2);
  /* Cyan brand glow */
}

/* css/components.css */

/* BUTTONS */
@layer components {
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, var(--brand-cyan), #00d5f5);
    color: var(--brand-dark);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
      0 12px 32px rgba(0, 200, 224, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset,
      0 0 20px rgba(0, 200, 224, 0.6);
  }

  .btn-primary:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent
    );
    animation: shine-sweep 0.6s ease-out forwards;
    z-index: 1;
  }

  .btn-primary span {
    position: relative;
    z-index: 10;
    color: inherit;
  }
}

/* Closing the initial @layer components block if it exists */

/* .btn-cyan removed — use .btn-primary instead */

@layer components {
  /* Rest of the components block */

  /* Ensure footer button text stays electric cyan */
  footer .btn-primary span {
    color: var(--brand-cyan) !important;
  }

  /* Footer: make only the button “black” while keeping footer text black */
  footer .btn-primary {
    background: var(--brand-dark);
    color: var(--brand-cyan);
    border-color: rgba(255, 255, 255, 0.4);
  }

  footer .btn-primary:hover {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    border: 2px solid var(--brand-cyan);
    transition: all 0.3s ease;
    background: transparent;
    color: var(--brand-cyan);
  }

  .btn-secondary:hover {
    background: var(--brand-cyan);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 200, 224, 0.3);
  }

  .btn-primary-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid white;
    position: relative;
    overflow: hidden;
    background: white;
    color: var(--brand-dark);
  }

  .btn-primary-white:hover {
    transform: translateY(-2px);
    box-shadow:
      0 12px 32px rgba(255, 255, 255, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset,
      0 0 20px rgba(255, 255, 255, 0.4);
    background: #f8f8f8;
  }

  .btn-primary-white:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 200, 224, 0.2),
      transparent
    );
    animation: shine-sweep 0.6s ease-out forwards;
    z-index: 1;
  }

  .btn-primary-white span {
    position: relative;
    z-index: 10;
    color: inherit;
  }
}

/* BUTTON SHINE */

@keyframes shine-sweep {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* GLASS CARDS */

@layer components {
  .glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6); /* 60% opaque white */
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
  }

  .glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(
      45deg,
      var(--brand-cyan),
      var(--brand-blue),
      var(--brand-cyan)
    );

    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);

    mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .glass-card:hover::before {
    opacity: 0 !important;
  }

  .glass-card:hover {
    box-shadow: none;
    border-color: transparent !important;
  }

  .glass-card-dark {
    position: relative;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(25px) saturate(100%);
    border-radius: 2rem;
    padding: 0.4rem;
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .glass-card-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03),
      transparent 40%,
      transparent 60%,
      rgba(255, 255, 255, 0.03)
    );
    pointer-events: none;
    z-index: 1;
  }

  .glass-card-dark .relative.h-\[600px\],
  .glass-card-dark .relative.h-full {
    height: 100% !important;
  }

  .hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding-bottom: 6px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.8),
      inset 0 0 10px rgba(255, 255, 255, 0.05);
    opacity: 0.9;
    z-index: 20;
    cursor: pointer;
  }

  .hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow:
      0 15px 45px rgba(0, 0, 0, 0.9),
      0 0 15px rgba(0, 200, 224, 0.15);
    border-color: rgba(0, 200, 224, 0.4);
    opacity: 1;
  }

  #work-hero-prev {
    left: 24px !important;
    color: #ffffff !important;
    padding-right: 4px;
  }

  #work-hero-next {
    right: 24px !important;
    color: #ffffff !important;
    padding-left: 4px;
  }

  @media (min-width: 768px) {
    #work-hero-prev {
      left: 80px !important;
    }

    #work-hero-next {
      right: 80px !important;
    }
  }

  .hero-nav-btn.prev {
    left: 24px;
    padding-right: 4px;
  }

  .hero-nav-btn.next {
    right: 24px;
    padding-left: 4px;
  }

  .hero-visual {
    height: 16rem;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
  }

  /* Make hero glass card fully transparent so the background video shows through */
  .hero-visual.glass-card {
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.3;

    background:
      radial-gradient(circle at 20% 20%, var(--brand-cyan), transparent 60%),
      radial-gradient(circle at 80% 80%, var(--brand-blue), transparent 60%);
  }

  /* TV-style slideshow frame */
  .tv-frame {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    box-shadow:
      0 25px 60px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.06),
      inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
  }

  #image-slideshow.tv-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(
        circle at 30% 20%,
        rgba(255, 255, 255, 0.18),
        transparent 55%
      ),
      radial-gradient(
        circle at 70% 30%,
        rgba(255, 255, 255, 0.12),
        transparent 60%
      ),
      linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0) 50%
      );
    mix-blend-mode: screen;
  }

  /* TV stand */
  .tv-frame::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7rem;
    height: 1.2rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  }

  /* Tablet Camera Notch */
  .tablet-camera {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 80px;
    background: #0a0a0a;
    border-radius: 5px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 8px 0;
    box-shadow:
      inset 0 0 3px rgba(255, 255, 255, 0.05),
      0 0 10px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.03);
  }

  .tablet-camera::before,
  .tablet-camera::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #151515;
    box-shadow: inset 0 0 2px #000;
  }

  .tablet-camera::before {
    background: radial-gradient(circle at center, #222, #000);
    opacity: 0.8;
  }

  /* Make sure the image stays inside rounded corners */
  .tv-frame img {
    border-radius: 1.5rem !important;
  }

  .glass-card img {
    border-radius: inherit !important;
  }

  #work-hero-slideshow {
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  }

  .ambient-bg {
    position: absolute;
    inset: -15%;
    width: 130%;
    height: 130%;
    background-size: cover;
    background-position: center;
    filter: blur(80px) brightness(0.8) saturate(2.5);
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
    transition:
      background-image 0.8s ease-in-out,
      opacity 0.8s ease-in-out;
    border-radius: inherit;
  }

  /* Ensure the foreground image is above the ambient glow */
  #work-hero-slideshow-img,
  .work-image,
  .carousel-track img {
    position: relative;
    z-index: 2;
  }

  /* PREMIUM MEDIA FRAME (Bezel-less & Deep Shadow) */
  .media-frame-premium {
    position: relative;
    border-radius: 2.5rem;
    overflow: visible;
    transition: all 0.7s cubic-bezier(0.15, 1, 0.3, 1);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 720px;
    /* Slightly wider to better accommodate 16:9 */
    aspect-ratio: 16 / 9;
    height: auto !important;
  }

  /* Inner container to keep image clipping */
  .media-frame-premium .media-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    box-shadow:
      0 40px 80px -15px rgba(0, 0, 0, 0.4),
      0 20px 40px -20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Ambient Glow / Bloom */
  .media-frame-premium::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(
      circle at center,
      var(--brand-cyan),
      transparent 70%
    );
    opacity: 0;
    filter: blur(60px);
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
    z-index: 0;
    pointer-events: none;
  }

  .media-frame-premium:hover {
    transform: translateY(-15px) scale(1.02);
  }

  .media-frame-premium:hover::before {
    opacity: 0.3;
    transform: scale(1.2);
  }

  .media-frame-premium .media-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 3;
  }

  .media-frame-premium img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1);
    z-index: 1;
    display: block;
  }

  .media-frame-premium:hover img {
    transform: scale(1.1);
  }
}

/* NAVBAR */

@layer components {
  /* [RECURRING SECTION DELETED - MOVED TO TOP OF FILE] */

  .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-dark);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    color: white;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;

    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-blue));

    transition: width 0.3s ease;
  }

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

/* SECTION COMPONENTS */

@layer components {
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;

    margin-bottom: 3rem;
    padding-bottom: 2rem;

    border-bottom: 1px solid var(--border-subtle);
  }

  .section-header.section-header--center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .section-header.section-header--center .section-title {
    font-size: 2rem !important;
    font-weight: 900;
  }

  .section-header.section-header--center .section-subtitle {
    font-size: 1rem;
  }

  .section-header.section-header--center .section-divider {
    width: 100%;
    height: 2px;
    margin-top: 1.5rem;
    background: linear-gradient(
      to right,
      rgba(0, 200, 224, 0),
      rgba(0, 200, 224, 0.35),
      rgba(0, 200, 224, 0)
    );
  }

  .section-title {
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 900;
    color: var(--brand-dark);
  }

  .section-subtitle {
    font-size: 0.875rem;
    color: rgba(35, 37, 38, 0.6);
    max-width: 24rem;
    line-height: 1.6;
  }

  .grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .grid-cards {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 1024px) {
    .grid-cards {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }

  .capability-card {
    transition: all 0.5s ease;
  }

  .capability-card:hover {
    box-shadow: 0 20px 60px rgba(0, 200, 224, 0.15);
  }

  /* PREMIUM SERVICE CARDS */
  .service-card-premium {
    position: relative;
    background: #0f171acc;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
    z-index: 1;
  }

  .service-card-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
      from 180deg at 50% 50%,
      transparent 0deg,
      transparent 150deg,
      var(--brand-cyan) 180deg,
      transparent 210deg,
      transparent 360deg
    );
    animation: rotate-border 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
  }

  .service-card-premium::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #0f171a;
    border-radius: calc(2rem - 2px);
    z-index: -1;
  }

  .service-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(0, 200, 224, 0.2);
  }

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

  .service-card-premium h3 {
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
  }

  .service-card-premium:hover h3 {
    -webkit-text-fill-color: var(--brand-cyan);
    text-shadow: 0 0 20px rgba(0, 200, 224, 0.3);
  }

  .service-card-premium p {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.5s ease;
    margin: 0;
  }

  .service-card-premium:hover p {
    color: rgba(255, 255, 255, 0.9);
  }

  .service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 200, 224, 0.1);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--brand-cyan);
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(0, 200, 224, 0.2);
  }

  .service-card-premium:hover .service-icon-box {
    background: var(--brand-cyan);
    color: #0f171a;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 200, 224, 0.4);
  }

  @keyframes rotate-border {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }
}

/* CLIENT PILLS */

@layer components {
  .client-pill {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;

    border: 2px solid var(--border-subtle);

    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);

    font-size: 0.875rem;
    font-weight: 500;

    color: rgba(35, 37, 38, 0.8);

    display: flex;
    align-items: center;
    gap: 0.5rem;

    transition: all 0.3s ease;
  }

  .client-pill:hover {
    border-color: rgba(0, 200, 224, 0.5);
    color: var(--brand-cyan);
  }
}

/* CTA SECTION */

@layer components {
  .cta-section {
    padding: 8rem 0;
    position: relative;
  }

  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
  }

  .footer-cta {
    position: relative;
    z-index: 10;

    max-width: 64rem;
    margin: auto;

    text-align: center;

    padding: 3rem;
  }

  .footer-cta::before {
    content: "";
    position: absolute;

    top: -20%;
    right: -10%;

    width: 300px;
    height: 300px;

    background: radial-gradient(circle, var(--brand-cyan) 0%, transparent 70%);

    filter: blur(80px);
    opacity: 0.3;

    animation: pulse-premium 8s ease-in-out infinite;

    z-index: -1;
  }

  .footer-cta::after {
    content: "";
    position: absolute;

    bottom: -15%;
    left: -10%;

    width: 250px;
    height: 250px;

    background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%);

    filter: blur(60px);
    opacity: 0.2;

    animation: pulse-slower 12s ease-in-out infinite reverse;

    z-index: -1;
  }
}

/* UTILITIES */

@layer utilities {
  .container {
    max-width: 80rem;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .text-glow {
    font-size: 16px !important;
    font-weight: 430 !important;
    text-shadow:
      0 2px 4px rgba(0, 200, 224, 0.2),
      0 0 20px rgba(0, 200, 224, 0.1);
  }

  footer .text-glow {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
  }

  .glass-card {
    padding: 1.5rem;
  }
}

/* ANIMATIONS */

@keyframes pulse-premium {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

@keyframes pulse-slower {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.01);
  }
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 0.5rem 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  animation: scrollLogos 72s linear infinite;
}

.logo-track img {
  height: 100px;
  width: 140px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.5s ease;
}

@media (max-width: 768px) {
  .logo-track {
    gap: 60px;
  }

  .logo-track img {
    height: 40px;
    width: 90px;
    object-fit: contain;
  }
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

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

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

/* OUR WORK FLIP CARD - Replaced with Cyan Theme Card */

/* Perspective wrapper — applied to each card's direct parent in the grid */
.card-3d-wrap {
  perspective: 800px;
  perspective-origin: center center;
}

.card {
  overflow: visible;
  width: 100%;
  height: 280px;
  max-width: 540px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.4s ease;
}

/* Glow shadow that deepens as the card tilts */
.card:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 200, 224, 0.18);
}

@media (max-width: 768px) {
  .card {
    height: 220px;
    /* Disable 3D tilt on touch devices — flip still works */
    will-change: auto;
  }
}

.content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  box-shadow: 0px 0px 10px 1px #000000ee;
  border-radius: 14px;
}

.front,
.back {
  background-color: #111;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
}

.back {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 160% 160% at 50% 50%,
      rgba(0, 200, 224, 0.18) 0%,
      transparent 65%
    ),
    #111;
}

.back::before {
  position: absolute;
  content: " ";
  display: block;
  width: 160px;
  height: 300%;
  background: linear-gradient(
    90deg,
    transparent,
    #00c8e0,
    #00c8e0,
    #00c8e0,
    #00c8e0,
    transparent
  );
  animation: rotation_481 5000ms infinite linear;
}

.back-content {
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: rgba(17, 17, 17, 0.9);
  border-radius: 12px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 1.2rem;
  text-align: center;
}

.back-content strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.card:hover .content {
  transform: rotateY(180deg);
}

@keyframes rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.front {
  transform: rotateY(180deg);
  color: white;
}

.front .front-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.front-content .badge {
  background-color: #00000055;
  padding: 2px 10px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  width: fit-content;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}

.description {
  box-shadow: 0px 0px 10px 5px #00000088;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
  border-radius: 5px;
  text-align: center;
}

.title {
  font-size: 1.8rem;
  max-width: 100%;
  display: flex;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 6px;
}

.glow-title {
  color: white;
  text-shadow: 0 0 12px rgba(0, 200, 224, 0.75);
}

.title p {
  width: 100%;
}

.card-footer {
  color: white;
  margin-top: 5px;
  font-size: 0.85rem;
}

.front .img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(2px);
}

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #00c8e0;
  position: relative;
  filter: blur(8px);
  animation: floating 2600ms infinite linear;
}

#bottom {
  background-color: #0058e0;
  left: 50px;
  top: 0px;
  width: 150px;
  height: 150px;
  animation-delay: -800ms;
}

#right {
  background-color: #232526;
  left: 160px;
  top: -80px;
  width: 30px;
  height: 30px;
  animation-delay: -1800ms;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.contact-bg {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 200, 224, 0.35),
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 88, 224, 0.35), transparent 40%),
    radial-gradient(circle at 40% 60%, rgba(0, 200, 224, 0.2), transparent 50%),
    linear-gradient(to bottom right, #ffffff, #f5f9fa);

  position: relative;
  overflow: hidden;
}

/* floating glow orbs */

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 12s infinite ease-in-out;
}

.orb1 {
  width: 350px;
  height: 350px;
  background: #00c8e0;
  top: -120px;
  left: -100px;
}

.orb2 {
  width: 300px;
  height: 300px;
  background: #0058e0;
  bottom: -120px;
  right: -120px;
  animation-delay: 3s;
}

.orb3 {
  width: 250px;
  height: 250px;
  background: #00c8e0;
  top: 40%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

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

/* input glow */

.form-input {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #00c8e0;
  box-shadow: 0 0 0 2px rgba(0, 200, 224, 0.25);
}

textarea.form-input {
  resize: none;
}

.floating-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c8e0, #0058e0);
  filter: blur(60px);
  opacity: 0.3;
  animation: floaty 8s ease-in-out infinite;
}

@keyframes floaty {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* WORK CARDS */

.work-card,
.showcase-card {
  position: relative;
  border-radius: 2.2rem;
  /* Clean iPhone-style curvature */
  background: #000;
  border: 6px solid #1a1a1a;
  /* Ultra-thin, realistic bezel */
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.7s cubic-bezier(0.15, 1, 0.3, 1);
  z-index: 1;
  overflow: hidden;
  height: 500px;
}

/* Dynamic Island Style Notch - Floating & Slim */
.work-card::before {
  content: "";
  position: absolute;
  top: 14px;
  /* Floating from the top */
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  /* Capsule shape */
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Internal Camera Dot for Dynamic Island */
.work-card::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% - 25px);
  width: 6px;
  height: 6px;
  background: #0f0f0f;
  border-radius: 50%;
  box-shadow: inset 0 0 3px rgba(0, 200, 224, 0.5);
  z-index: 31;
  opacity: 0.6;
}

.work-card:hover,
.showcase-card:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: #222;
  box-shadow:
    0 60px 120px -20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 200, 224, 0.25);
}

.card-slideshow-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
  /* Remove rounding, handled by parent overflow:hidden */
}

/* Glass Shine Sweep */
.card-slideshow-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-25deg);
  transition: 1s cubic-bezier(0.15, 1, 0.3, 1);
  z-index: 5;
  pointer-events: none;
}

.work-card:hover .card-slideshow-container::after,
.showcase-card:hover .card-slideshow-container::after {
  left: 150%;
}

.card-ambient {
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(0.6) saturate(2.5);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
  transition: background-image 1.2s ease-in-out;
}

.work-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  opacity: 0;
  transition:
    opacity 1s ease-in-out,
    transform 1.5s cubic-bezier(0.15, 1, 0.3, 1);
  transform: scale(1.1);
}

.work-image.active {
  opacity: 1;
  transform: scale(1);
}

.work-info {
  position: absolute;
  inset: 0;
  z-index: 10;
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 35%,
    transparent 70%
  );
  transition: all 0.6s ease;
  pointer-events: none;
}

.work-card:hover .work-info {
  padding-bottom: 4rem;
}

.work-info h3 {
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: white !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.work-info p {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

/* NEON GLOW UTILITY */

.neon-glow {
  box-shadow:
    0 0 6px rgba(0, 200, 224, 0.8),
    0 0 20px rgba(0, 200, 224, 0.5),
    0 0 50px rgba(0, 200, 224, 0.25);
}

.neon-glow-text {
  color: var(--brand-cyan);
  text-shadow:
    0 0 6px rgba(0, 200, 224, 0.9),
    0 0 20px rgba(0, 200, 224, 0.6),
    0 0 50px rgba(0, 200, 224, 0.3);
}

/* RENDERING UTILITIES */

.card-glass-content {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  text-align: left;
}

/* ============================================
   CS-CARD — Perfect Case Study Card
   A (glass bubble) + B (dark→bright) + E (zoom out)
   ============================================ */

.cs-card {
  position: relative;
  height: 500px;
  border-radius: 2.2rem;
  overflow: hidden;
  background: #fff;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    border-color 0.6s ease,
    box-shadow 0.6s ease,
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Images inside the slideshow container: start zoomed-in + dim */
.cs-card .card-slideshow-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cs-card .work-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.35);
  filter: brightness(0.55);
  transition:
    opacity 1s ease-in-out,
    transform 1.2s cubic-bezier(0.15, 1, 0.3, 1),
    filter 0.9s ease;
}

.cs-card .work-image.active {
  opacity: 1;
}

/* Frosted glass bubble — neutral white, bottom of card */
.cs-card .cs-bubble {
  position: absolute;
  bottom: 28px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 22px 26px;
  color: white;
  z-index: 10;
  transform: translateY(8px);
  opacity: 0.85;
  transition:
    transform 0.6s cubic-bezier(0.15, 1, 0.3, 1),
    opacity 0.6s ease,
    background 0.6s ease;
  pointer-events: none;
}

.cs-card .cs-bubble h3 {
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cs-card .cs-bubble p {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

/* HOVER — border brightens, image zooms out to full brightness, bubble lifts */
.cs-card:hover {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 60px 120px -20px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(255, 255, 255, 0.15),
    0 0 60px rgba(255, 255, 255, 0.08);
}

.cs-card:hover .work-image.active {
  transform: scale(1);
  filter: brightness(1);
}

.cs-card:hover .cs-bubble {
  transform: translateY(0);
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
}

/* Glass sweep shine on hover */
.cs-card .card-slideshow-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: skewX(-25deg);
  transition: 1s cubic-bezier(0.15, 1, 0.3, 1);
  z-index: 5;
  pointer-events: none;
}

.cs-card:hover .card-slideshow-container::after {
  left: 150%;
}

/* CATEGORY TAGS & FILTERING */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2.2rem;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  backdrop-filter: blur(25px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.filter-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
  border-color: rgba(0, 200, 224, 0.4);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.filter-btn.active {
  background: var(--brand-cyan);
  color: var(--brand-dark);
  border-color: var(--brand-cyan);
  box-shadow:
    0 0 30px rgba(0, 200, 224, 0.4),
    0 15px 35px rgba(0, 0, 0, 0.3);
}

.cs-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 200, 224, 0.15);
  border: 1px solid rgba(0, 200, 224, 0.3);
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  transition: all 0.4s ease;
}

.cs-card:hover .cs-tag {
  background: var(--brand-cyan);
  color: var(--brand-dark);
  box-shadow: 0 0 15px rgba(0, 200, 224, 0.4);
}

.project-modal {
  position: fixed;
  inset: 0;
  background: #111;

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 100;
}

.project-container {
  width: 90%;
  height: 85%;

  display: grid;
  grid-template-columns: 2fr 1fr;

  background: #111;
}

.project-gallery {
  position: relative;

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

.project-gallery img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.gallery-btn.prev {
  left: 20px;
}

.gallery-btn.next {
  right: 20px;
}

.project-info {
  padding: 50px;
  color: white;
  overflow: auto;
}

.close-modal {
  margin-top: 40px;

  padding: 12px 24px;

  background: #00c8e0;
  border: none;

  cursor: pointer;
}

/* ===== CINEMATIC SLIDESHOW ===== */

#image-slideshow.tv-frame {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;

  position: relative;

  border-radius: 28px;

  background: #000;

  overflow: hidden;

  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

/* IMAGE */

.slideshow-img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transform: scale(1.08);

  transition:
    opacity 1.2s ease,
    transform 6s ease;
}

.slideshow-img.active {
  opacity: 1;
  transform: scale(1);
}

/* SCREEN REFLECTION */

.screen-glow {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 255, 255, 0.15),
      transparent 40%
    );

  mix-blend-mode: screen;
}

/* AMBIENT GLOW */

#image-slideshow::after {
  content: "";

  position: absolute;

  inset: -60px;

  background: radial-gradient(
    circle at center,
    rgba(0, 200, 224, 0.25),
    transparent 60%
  );

  filter: blur(60px);

  z-index: -1;
}

/* PROJECT MODAL REVAMP */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(35, 37, 38, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-modal.active {
  display: flex;
  opacity: 1;
}

.project-container {
  display: flex;
  width: 98%;
  max-width: 1840px;
  /* Increased from 1600px (approx 15%) */
  height: calc(100vh - 4rem);
  background: rgba(245, 249, 250, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-modal.active .project-container {
  transform: scale(1);
}

/* LEFT GALLERY */
.project-gallery {
  flex: 1.5;
  /* Increased from 1.1 to show larger images */
  position: relative;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  /* Reduced padding */
}

.project-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    transparent 40%,
    rgba(0, 50, 60, 0.1) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: visible;
}

.modal-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  /* Reduced padding to maximize image area */
  box-sizing: border-box;
}

html,
body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

.carousel-track img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
  border-radius: 40px;
  /* Premium multi-layered shadow */
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.1),
    0 20px 50px rgba(0, 163, 184, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 200, 224, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 20;
  padding: 0;
  margin: 0;
  opacity: 0.95;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 200, 224, 0.4);
}

.gallery-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  background: var(--brand-cyan);
  color: var(--brand-dark);
  box-shadow:
    0 20px 45px rgba(0, 200, 224, 0.5),
    0 0 40px rgba(0, 200, 224, 0.8);
}

.gallery-btn.prev {
  left: 1.5rem;
}

.gallery-btn.next {
  right: 1.5rem;
}

/* RIGHT INFO */
.project-info {
  flex: 1;
  /* Restored to 1 to give text more space in the wider container */
  padding: 2rem;
  /* Slightly more compact padding */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: transparent;
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.project-info::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.project-info h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.1;
}

.project-meta {
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.project-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(35, 37, 38, 0.9);
  margin-bottom: 1rem;
  max-width: none;
  /* Reset paragraph max-width */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Divider before Overview */
  padding-top: 1rem;
}

.case-section {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.case-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.case-section h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.case-section p {
  color: rgba(35, 37, 38, 0.8);
  margin: 0;
  max-width: 100%;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Divider after meta */
}

/* Hide overflow case study cards until the user expands the grid */
.cs-card.collapsed-card {
  display: none !important;
}

.project-stats div {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: default;
  padding: 1rem;
  border-radius: 1.5rem;
  background: #080808;
  border: 3px solid rgba(0, 200, 224, 0.9);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(0, 200, 224, 0.14);
}

.project-stats div::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.14) 48%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 100%
  );
  transform: rotate(12deg);
  opacity: 0.22;
  animation: shine-sweep-slow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.project-stats div > * {
  position: relative;
  z-index: 1;
}

.project-stats div::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 42%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.12) 54%,
    transparent 100%
  );
  transform: rotate(12deg);
  opacity: 0.35;
  animation: shine-sweep-slow 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.project-stats div:nth-child(2)::after {
  animation-delay: 2s;
}

.project-stats div:nth-child(3)::after {
  animation-delay: 4s;
}

.project-stats strong {
  font-size: 1.95rem;
  font-weight: 900;
  color: #00f5ff;
  display: inline-block;
  line-height: 1;
  margin-bottom: 0.25rem;
  animation: number-pulse 6s ease-in-out infinite;
}

.project-stats span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.82);
  animation: label-glow 10s ease-in-out infinite;
}

.project-stats div:hover {
  background: linear-gradient(180deg, #151515 0%, #070707 100%);
  border-color: rgba(0, 200, 224, 0.55);
  box-shadow:
    0 18px 40px rgba(0, 200, 224, 0.16),
    inset 0 0 0 1px rgba(0, 200, 224, 0.14);
}

@keyframes shine-sweep-slow {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes number-pulse {
  0%,
  100% {
    color: #00f5ff;
    transform: translateY(0);
  }

  50% {
    color: #8effff;
    transform: translateY(-2px);
  }
}

@keyframes label-glow {
  0%,
  100% {
    color: rgba(255, 255, 255, 0.82);
  }

  50% {
    color: rgba(255, 255, 255, 0.96);
  }
}

.modal-close-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--brand-cyan);
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.modal-close-x:hover {
  background: var(--brand-dark);
  color: var(--brand-cyan);
  transform: rotate(90deg);
}

/* SERVICE CATEGORY PILLS */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.service-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-pill.pill-atl {
  background: rgba(0, 200, 224, 0.15);
  color: #00c8e0;
  border: 1px solid rgba(0, 200, 224, 0.35);
}

.service-pill.pill-btl {
  background: rgba(180, 40, 40, 0.15);
  color: #e05555;
  border: 1px solid rgba(220, 60, 60, 0.45);
}

.service-pill.pill-ttl {
  background: rgba(160, 100, 255, 0.15);
  color: #b07aff;
  border: 1px solid rgba(160, 100, 255, 0.35);
}

/* RESPONSIVE MODAL */
@media (max-width: 1024px) {
  .project-container {
    flex-direction: column;
    height: calc(100vh - 4rem);
  }

  .project-gallery {
    flex: 1;
  }

  .project-info {
    flex: 1.2;
    padding: 1.5rem;
  }

  .project-info h2 {
    font-size: 1.8rem;
  }

  .project-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-stats div {
    padding: 1rem;
  }

  .project-modal {
    padding: 1rem;
  }
}

/* 3D HOVER CARD FOR SERVICES */
.service-3d-wrap {
  perspective: 1000px;
}

.service-3d-card {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: #0f171a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 200, 224, 0.15);
  /* Intense base shadow */
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.billboard-slide-content h3 {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.billboard-track .bg-white\/10 {
  transition: all 0.4s ease;
}

.billboard-slide-content:hover .bg-white\/10 {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 200, 224, 0.3);
  transform: translateY(-5px);
}

.service-3d-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(0, 200, 224, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(0, 88, 224, 0.15) 0%,
      transparent 50%
    );
  transform: translate(-50%, -50%);
  opacity: 0.3;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  pointer-events: none;
  animation: floating-orb 15s ease-in-out infinite;
}

.service-3d-card:hover .service-3d-bg-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

@keyframes floating-orb {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-45%, -55%) rotate(180deg);
  }
}

/* ABSTRACT GEOMETRIC ACCENTS */
.service-3d-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(0, 200, 224, 0);
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: 1;
}

.service-3d-card:hover::before {
  inset: 15px;
  border-color: rgba(0, 200, 224, 0.2);
  box-shadow: 0 0 20px rgba(0, 200, 224, 0.1);
}

/* Scanning Light Beam (Holographic Swipe) */
.service-3d-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  transform: rotate(-45deg);
  pointer-events: none;
  z-index: 5;
  transition: none;
}

.service-3d-card:hover::after {
  animation: holographic-sweep 1.5s ease-out forwards;
}

@keyframes holographic-sweep {
  0% {
    transform: rotate(-45deg) translate(-20%, -20%);
  }
  100% {
    transform: rotate(-45deg) translate(20%, 20%);
  }
}

.service-3d-card h3 {
  color: white !important;
  font-size: 3.5rem !important; /* Larger for better 'fullness' without icons */
  letter-spacing: -0.04em !important;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(40px);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-3d-card:hover h3 {
  color: var(--brand-cyan) !important;
  transform: translateZ(80px);
  text-shadow: 0 20px 40px rgba(0, 200, 224, 0.3);
}

@media (max-width: 639px) {
  .service-3d-card h3 {
    font-size: 2.2rem !important;
  }
}

.service-3d-title-tag {
  color: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  transform: translateZ(0);
  transition:
    transform 0.5s,
    opacity 0.5s;
  font: 700 0.75rem monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.3;
  pointer-events: none;
}

.service-3d-card:hover .service-3d-title-tag {
  transform: translateZ(50px);
  opacity: 1;
  color: var(--brand-cyan);
}

.service-3d-content {
  transform-style: preserve-3d;
  transition: transform 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-3d-card:hover .service-3d-content {
  transform: translateZ(40px);
}

.service-3d-card:hover .service-icon-box {
  background: var(--brand-cyan);
  color: #0f171a;
  transform: translateZ(70px) rotate(10deg) scale(1.1);
  box-shadow: 0 0 30px rgba(0, 200, 224, 0.4);
}

.service-3d-card h3 {
  color: white !important;
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.5s ease;
  transform: translateZ(0);
}

.service-3d-card p {
  color: rgba(255, 255, 255, 0.7) !important;
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.5s ease;
  transform: translateZ(0);
}

.service-3d-card:hover h3 {
  color: var(--brand-cyan) !important;
  transform: translateZ(60px);
  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 200, 224, 0.2);
}

.service-3d-card:hover p {
  color: white !important;
  transform: translateZ(30px);
}

/* ============================================================================
   UTILITY CLASSES — replaced inline styles
============================================================================ */

/* Footer logo — replaces style="height: 102.4px" */
.footer-logo-img {
  height: 260px;
}

/* Featured carousel — replaces style="max-width: 1400px" */
.featured-carousel {
  max-width: 1400px;
}

/* Floating shape position variants — agency.html hero decorations */
.floating-shape--tl {
  top: -80px;
  left: -80px;
}

.floating-shape--br {
  bottom: -80px;
  right: -80px;
}

.floating-shape--tr {
  top: 0;
  right: 10%;
}

/* Brand section divider bar — replaces inline div style in work.html */
.brand-divider-bar {
  width: 100px;
  height: 4px;
  background-color: #000;
  border-radius: 999px;
}

/* INTENSE TEXT GLOWS */
.intense-glow-cyan,
.intense-glow-dark {
  text-shadow:
    0 10px 40px rgba(0, 0, 0, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.services-gradient {
  /* VIBRANT WHITE-TO-CYAN BLOCK */
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 40%,
    #00c8e0 100%
  ) !important;
  border: none !important;
}

.services-gradient .section-title,
.services-gradient .section-subtitle,
.services-gradient p {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  /* Subtle definition */
}

/* Footer list item row spacing */
footer ul li + li {
  margin-top: 1rem !important;
}

/* Footer social / contact icon links */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.25s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.footer-social-link:hover {
  opacity: 1;
  color: #00c8e0;
  border-bottom-color: rgba(0, 200, 224, 0.5);
}

.footer-social-link svg,
.footer-social-link img {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer-social-link:hover svg,
.footer-social-link:hover img {
  transform: scale(1.15);
}

/* BILLBOARD STYLES */
.billboard-container {
  width: 100%;
  max-width: 1300px;
  height: auto;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
}

@media (max-width: 1024px) {
  .billboard-container {
    max-width: 90%;
    perspective: 1500px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .billboard-container {
    max-width: 100%;
    perspective: 1000px;
    padding: 20px 10px;
  }
}

.billboard-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border-radius: 12px;
  box-shadow:
    0 40px 100px -20px rgba(255, 255, 255, 0.35),
    0 20px 40px -10px rgba(255, 255, 255, 0.2);
  transition:
    transform 0.1s ease-out,
    opacity 0.5s ease;
  transform-origin: center;
  will-change: transform, opacity;
}

/* [BILLBOARD FLOOR SHADOW REMOVED] */

.billboard-bezel {
  position: absolute;
  inset: -4px;
  border: 12px solid #1a1b1c;
  border-radius: 16px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.billboard-bezel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 5;
}

.billboard-supports {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: -1;
}

.support {
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, #111, #222, #111);
  border-radius: 4px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

.spotlight {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 200, 224, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 10;
}

.slideshow-wrapper {
  background: #000;
}

.billboard-content {
  z-index: 2;
}

.billboard-lights {
  position: absolute;
  top: -55px;
  /* Mounted above the frame */
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  justify-content: space-around;
  padding: 0 15%;
  z-index: 100;
  pointer-events: none;
}

.light-fixture {
  width: 50px;
  height: 18px;
  background: linear-gradient(#444, #111);
  border-radius: 6px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Structural Mounting Bracket */
.bracket {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 55px;
  /* Extends down into the frame */
  background: linear-gradient(to right, #222, #444, #222);
  border-radius: 4px;
  z-index: -1;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Intense Light Beam */
.light-fixture::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 650px;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .billboard-bezel {
    border-width: 6px;
    border-radius: 8px;
  }

  .light-fixture::after {
    width: 150px;
    height: 400px;
  }

  .billboard-lights {
    padding: 0 5%;
    top: -40px;
  }

  .bracket {
    height: 40px;
    top: 10px;
  }

  .support {
    width: 20px;
    bottom: -40px;
    height: 40px;
  }
}

/* Vibrant gradient wrapper for billboard */
.bg-subtle-vignette {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100vh;
  /* Restored for desktop burial effect */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(
    135deg,
    var(--brand-cyan) 0%,
    var(--brand-blue) 100%
  );
  overflow: hidden;
}

@media (max-width: 768px) {
  .bg-subtle-vignette {
    min-height: auto;
    height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.bg-subtle-vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  /* Removed dark vignette */
  z-index: 5;
}

/* ============================================================================
   GLOBAL CUSTOM CURSOR (FourNine Brand)
============================================================================ */
/* Do NOT hide the cursor globally. It breaks accessibility. */
/* Only hide it on the body when the custom cursor is confirmed active via JS */
body.custom-cursor-active {
  cursor: none;
}
body.custom-cursor-active a,
body.custom-cursor-active button {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  /* ALWAYS VISIBLE on all colors */
  transition:
    width 0.3s cubic-bezier(0.15, 1, 0.3, 1),
    height 0.3s cubic-bezier(0.15, 1, 0.3, 1),
    background 0.3s ease,
    opacity 0.3s ease;
  display: block;
}

@media (pointer: coarse) {
  #custom-cursor,
  #cursor-follower {
    display: none !important;
  }

  *,
  *::before,
  *::after,
  :root *[class],
  :root *[id],
  :root body * {
    cursor: auto !important;
  }
}

#cursor-follower {
  display: none !important;
}

/* Hover States for Interactive Elements */
.cursor-hover #custom-cursor {
  width: 40px;
  height: 40px;
}

.cursor-hover #cursor-follower {
  display: none !important;
}

/* ============================================
   BLOG CARDS — Boxy Premium Style
   ============================================ */

.blog-card {
  background: linear-gradient(
    150deg,
    rgba(248, 252, 255, 1) 0%,
    rgba(255, 255, 255, 1) 45%,
    rgba(235, 245, 255, 1) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.15, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: fit-content;
  position: relative;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(255, 255, 255, 0) 0%,
    rgba(79, 112, 164, 0.08) 65%,
    rgba(0, 0, 0, 0.15) 100%
  );
  mix-blend-mode: normal;
  opacity: 0.78;
}

.blog-card > * {
  position: relative;
  z-index: 1;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.15),
    0 18px 36px -18px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 200, 224, 0.3);
}

.blog-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.15, 1, 0.3, 1);
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  font-size: 0.7rem;
  font-weight: 800;
  color: #00c8e0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #232526;
  line-height: 1.2;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: #00c8e0;
}

.blog-snippet {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}

.blog-card.expanded .blog-full-text {
  display: none;
  /* Modal takes over now */
}

/* ============================================
   BLOG MODAL — Cinematic Full-Page View
   ============================================ */

.blog-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 40, 0.85);
  z-index: 11000000;
  /* Above navbar (10,000,000) to ensure interactivity. Cinematic view covers navbar. */
  display: none;
  overflow-y: auto;
}

.blog-modal-content {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 48px;
}

.blog-modal.active {
  display: block;
  animation: blogFadeIn 0.5s cubic-bezier(0.15, 1, 0.3, 1) forwards;
}

.blog-modal-container {
  max-width: 1400px; /* Wider reading width */
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  padding: 60px 30px;
}

.blog-modal-content {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 48px;
}

.blog-modal-close {
  position: fixed;
  top: 30px;
  right: 40px;
  width: 60px;
  height: 60px;
  font-size: 2.5rem;
  font-weight: 300;
  color: #232526;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  z-index: 11000001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-modal-close:hover {
  transform: rotate(90deg);
  background: #00c8e0;
  color: #fff;
}

.blog-modal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
}

.blog-modal-header-info {
  flex: 0 1 45%;
  min-width: 280px;
}

.blog-modal-header-image {
  flex: 0 1 50%;
  min-width: 280px;
  max-height: 430px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-modal-header-image img {
  width: 100%;
  aspect-ratio: 16 / 9; /* Wide aspect */
  object-fit: cover;
  display: block;
}

.blog-modal-body {
  width: 100%;
  max-width: 100%;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 24px;
  color: #2b2e33;
}

.blog-modal-title {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 900;
  color: #232526;
  line-height: 1.08;
  margin-bottom: 12px;
  margin-top: 4px;
}

.blog-modal-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00c8e0;
  margin-bottom: 10px;
}

.blog-modal-text {
  font-size: 1.3rem; /* Larger comfortable reading size */
  line-height: 1.9;
  font-weight: 400;
  max-width: 100%;
  margin: 0;
}

/* Zig-Zag Layout System for Blog Sections */
.blog-modal-text .blog-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .blog-modal-text .blog-section {
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 80px;
  }

  /* Alternate text right, image left for even sections */
  .blog-modal-text .blog-section:nth-child(even) > *:first-child {
    order: 2; /* Move text to right */
  }
  .blog-modal-text .blog-section:nth-child(even) > *:last-child {
    order: 1; /* Move image container to left */
  }
}

.blog-modal-text img {
  max-width: 100%;
  max-height: 75vh;
  /* Prevent images from taking up too much vertical screen space */
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  margin: 3rem auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}

.blog-modal-text img:hover {
  transform: scale(1.015);
}

.blog-modal-text p {
  margin-bottom: 2rem;
  font-size: 1.35rem; /* Larger paragraph size */
  color: #3b3d3f;
}

@keyframes blogFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .blog-modal-container {
    width: 95%;
    padding: 100px 30px;
  }

  .blog-modal-header {
    flex-direction: column-reverse;
    /* Put image on top for tablets if space is tight? Or keep row? */
    gap: 40px;
  }

  .blog-modal-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .blog-modal-header {
    gap: 30px;
  }

  .blog-modal-title {
    font-size: 2.2rem;
  }

  .blog-modal-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

.blog-full-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.15, 1, 0.3, 1);
}

.blog-full-text p {
  font-size: 1.25rem;
  color: #444;
  line-height: 1.9;
  margin-top: 15px;
}

.blog-card.expanded .blog-full-text {
  max-height: 1000px;
  /* Large enough for content */
  opacity: 1;
  margin-bottom: 20px;
}

.blog-card.expanded .blog-snippet {
  display: none;
}

.expand-btn {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 800;
  color: #232526;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.expand-btn::after {
  content: "+";
  font-size: 1.2rem;
  color: #00c8e0;
  transition: transform 0.3s ease;
}

.blog-card.expanded .expand-btn::after {
  content: "−";
}

@media (max-width: 768px) {
  .blog-card {
    height: auto;
  }
}

/* ============================================================================
   CLOCK COMPONENT (Footer)
   ============================================================================ */
.clocks-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 1rem 0;
  background: transparent;
}

.clock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.clock-item:hover {
  transform: translateY(-5px);
}

.clock-city {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00c8e0;
  margin-bottom: 0.5rem;
}

.clock-time {
  font-size: 1.5rem;
  font-weight: 800;
  color: #232526;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.clock-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

@media (max-width: 1024px) {
  .clock-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .clocks-container {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
    border-radius: 16px;
  }

  .clock-item:last-child {
    grid-column: span 2;
  }

  .clock-time {
    font-size: 1.25rem;
  }
}

/* ============================================================================
   IRL TOOLTIP COMPONENT
   ============================================================================ */
.irl-tooltip-trigger {
  position: relative;
  cursor: help;
  transition: color 0.3s ease;
}

.irl-tooltip-trigger:hover {
  color: var(--brand-cyan);
}

.irl-tooltip {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 20px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  padding: 1.5rem 2.5rem;
  border-radius: 1.8rem;
  width: max-content;
  min-width: 280px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 25px 60px -15px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.03);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1000;
  pointer-events: none;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
}

.irl-tooltip-trigger:hover .irl-tooltip {
  bottom: 125%;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.irl-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.45) transparent transparent transparent;
}

@media (max-width: 768px) {
  .irl-tooltip {
    min-width: 240px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ============================================================================
   OOH / DOOH PAGE CSS
============================================================================ */

/* -------- SECTION 1: HERO -------- */
.ooh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 14rem;
  overflow: hidden;
  background: #f5f9fa;
}

.ooh-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

.ooh-hero-orb--1 {
  top: -15%;
  left: -10%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(0, 200, 224, 0.18) 0%,
    rgba(0, 200, 224, 0.04) 45%,
    transparent 70%
  );
  animation: pulse-slower 14s ease-in-out infinite;
}

.ooh-hero-orb--2 {
  bottom: -20%;
  right: -10%;
  width: 75vw;
  height: 75vw;
  max-width: 850px;
  max-height: 850px;
  background: radial-gradient(
    circle at 60% 60%,
    rgba(0, 88, 224, 0.14) 0%,
    rgba(0, 88, 224, 0.03) 50%,
    transparent 70%
  );
  animation: pulse-slower 18s ease-in-out infinite reverse;
}

.ooh-hero-orb--3 {
  top: 25%;
  left: 40%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 200, 224, 0.1) 0%,
    transparent 65%
  );
  filter: blur(50px);
  animation: pulse-premium 10s ease-in-out infinite;
}

.ooh-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 200, 224, 0.12) 1px, transparent 0);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.ooh-hero-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 200, 224, 0.2),
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.ooh-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #f5f9fa);
  pointer-events: none;
  z-index: 1;
}

.ooh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #232526;
}

.ooh-overline {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 1.5rem;
  text-align: center !important;
  display: block;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.ooh-overline--sm {
  font-size: 0.65rem;
}

.ooh-hero-h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #232526;
  margin-bottom: 1.5rem;
}

.ooh-gradient-text {
  background: linear-gradient(130deg, #00c8e0, #00e5f7 45%, #0058e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ooh-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(35, 37, 38, 0.65);
  max-width: 38rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.ooh-hero-cta {
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
}

/* -------- SECTION 2: STAT STRIP -------- */
.ooh-stat-strip {
  background: #0a0c14;
  padding: 5rem 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.ooh-stat-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 224, 0.04) 0%,
    transparent 50%,
    rgba(0, 88, 224, 0.04) 100%
  );
  pointer-events: none;
}

.ooh-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .ooh-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ooh-stat-card {
  padding: 3rem 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease;
}

.ooh-stat-card:last-child {
  border-right: none;
}

.ooh-stat-card:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .ooh-stat-card {
    border-bottom: none;
  }

  .ooh-stat-card:last-child {
    border-right: none;
  }
}

.ooh-stat-card:hover {
  background: rgba(0, 200, 224, 0.04);
}

.ooh-stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.ooh-stat-number--cyan {
  color: var(--brand-cyan);
  text-shadow: 0 0 40px rgba(0, 200, 224, 0.3);
}

.ooh-stat-number--blue {
  color: #5ba4f5;
  text-shadow: 0 0 40px rgba(0, 88, 224, 0.3);
}

.ooh-stat-divider {
  width: 32px;
  height: 3px;
  background: var(--brand-cyan);
  margin: 0.75rem auto;
  border-radius: 99px;
}

.ooh-stat-divider--blue {
  background: #5ba4f5;
}

.ooh-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 14rem;
  margin: 0 auto;
  text-align: center;
}

/* -------- SECTION 3: SERVICES GRID -------- */
.ooh-services {
  background: #020811; /* Changed to deeper black */
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.ooh-section-header {
  text-align: center;
  margin-bottom: 5rem; /* Increased from 2.5rem to give numbers space */
}

.ooh-overline-dark {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin: 0 auto 1.25rem !important; /* Force auto centering */
  text-align: center !important;
  display: block;
  width: 100%;
  text-indent: 0.35em; /* Compensate for letter spacing so it's truly centered */
}

.ooh-section-h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0;
}

.ooh-section-h2-white {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0;
}

.ooh-section-divider {
  width: 60px;
  height: 4px;
  background: var(--brand-cyan);
  margin: 1.5rem auto 0;
  border-radius: 99px;
}

.ooh-section-divider--dark {
  width: 60px;
  height: 4px;
  background: #020811;
  margin: 1.5rem auto 0;
  border-radius: 99px;
  display: block;
}

.ooh-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ooh-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ooh-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ooh-service-card {
  position: relative;
  background: #060e1c; /* Restoring dark background */
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border */
  border-radius: 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  cursor: default;
}

.ooh-service-card:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: rgba(0, 200, 224, 0.4);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 200, 224, 0.3);
}

.ooh-service-media {
  position: relative;
  height: 13rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ooh-service-media {
    height: 14rem;
  }
}

.ooh-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.ooh-service-card:hover .ooh-service-media img {
  transform: scale(1.08);
}

.ooh-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 8, 17, 0.95) 0%,
    rgba(2, 8, 17, 0.6) 42%,
    rgba(2, 8, 17, 0.15) 100%
  );
  pointer-events: none;
}

.ooh-service-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem 2rem 2.25rem;
}

@media (min-width: 1024px) {
  .ooh-service-body {
    padding: 2.25rem 2.25rem 2.5rem;
  }
}

.ooh-service-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 200, 224, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ooh-service-card:hover .ooh-service-glow {
  opacity: 1;
}

.ooh-service-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at center,
    rgba(0, 200, 224, 0.2),
    /* Increased from 0.12 */ transparent 75%
  );
  filter: blur(50px); /* Slightly more blur for an atmospheric feel */
  z-index: 1;
  pointer-events: none;
}

.ooh-service-card--featured {
  background: linear-gradient(135deg, #f0fbfd, #ffffff);
  border-color: rgba(0, 200, 224, 0.2);
}

.ooh-service-card--dark {
  background: linear-gradient(135deg, #071428, #0a1830);
  border-color: rgba(255, 255, 255, 0.08);
}

.ooh-service-card--dark:hover {
  box-shadow: 0 30px 70px rgba(0, 200, 224, 0.25);
  border-color: rgba(0, 200, 224, 0.4);
}

.ooh-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1.2rem;
  background: rgba(0, 200, 224, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 200, 224, 0.15);
  transition: box-shadow 0.4s ease;
}

.ooh-service-card:hover .ooh-service-icon {
  box-shadow: 0 12px 30px rgba(0, 200, 224, 0.3);
}

.ooh-service-icon--blue {
  background: rgba(0, 88, 224, 0.1);
  color: #5ba4f5;
  box-shadow: 0 8px 20px rgba(0, 88, 224, 0.15);
}

.ooh-service-icon--glow {
  background: rgba(0, 200, 224, 0.15);
  color: var(--brand-cyan);
  box-shadow: 0 8px 25px rgba(0, 200, 224, 0.3);
}

.ooh-service-tag {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: rgba(0, 200, 224, 0.5);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ooh-service-tag--blue {
  color: rgba(91, 164, 245, 0.5);
}

.ooh-service-tag--glow {
  color: rgba(0, 200, 224, 0.8);
}

.ooh-service-title {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff; /* White text for dark cards */
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ooh-service-title--white {
  color: #ffffff;
}

.ooh-service-desc {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65); /* Light grey text for dark cards */
  line-height: 1.7;
  max-width: none;
  margin: 0;
}

.ooh-service-desc--white {
  color: rgba(255, 255, 255, 0.6);
}

.ooh-service-glow {
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.08), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.ooh-service-card:hover .ooh-service-glow {
  opacity: 1;
}

.ooh-service-glow--blue {
  background: radial-gradient(circle, rgba(0, 88, 224, 0.1), transparent 70%);
}

.ooh-service-glow-dark {
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.15), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* -------- SECTION 4: CURRENCY SI -------- */
.ooh-currency {
  position: relative;
  background: #020811;
  padding: 7rem 0;
  overflow: hidden;
  z-index: 10;
}

.ooh-currency-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.ooh-currency-orb--1 {
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 88, 224, 0.12), transparent 60%);
}

.ooh-currency-orb--2 {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.1), transparent 60%);
}

.ooh-currency-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ooh-currency-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ooh-currency-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.ooh-currency-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.ooh-currency-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: none;
  margin-bottom: 2.5rem;
}

.ooh-currency-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ooh-currency-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.ooh-currency-metric-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 8px rgba(0, 200, 224, 0.5);
  flex-shrink: 0;
}

.ooh-currency-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.ooh-currency-chart-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 2rem;
}

.ooh-si-bar-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* ooh-si-bar-row/name/track: upgraded definitions below at "Bar upgrades" */

.ooh-si-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: var(--si-color, #00c8e0);
  box-shadow: 0 0 12px var(--si-color, #00c8e0);
  transition: width 2.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aos-animate .ooh-si-bar-fill {
  width: var(--si-pct, 0%);
}

.ooh-si-bar-pct {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

/* ══════════════════════════════════════════════════════
   CURRENCY SI — SCI-FI UPGRADE
   ══════════════════════════════════════════════════════ */

/* Animated grid drift */
@keyframes currencyGridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}
.ooh-currency .ooh-currency-grid-overlay {
  animation: currencyGridDrift 10s linear infinite;
  background-image:
    linear-gradient(rgba(0, 200, 224, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 224, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Purple mid-field orb */
.ooh-currency-orb--3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.07),
    transparent 55%
  );
}

/* Particle canvas */
.ooh-currency-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── HUD Badge (replaces plain overline) ── */
.ooh-currency-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

@keyframes badgePipPulse {
  0%,
  100% {
    opacity: 1;
    box-shadow:
      0 0 8px #00c8e0,
      0 0 18px rgba(0, 200, 224, 0.4);
  }
  50% {
    opacity: 0.35;
    box-shadow: 0 0 3px #00c8e0;
  }
}
.ooh-currency-badge-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c8e0;
  flex-shrink: 0;
  animation: badgePipPulse 1.9s ease-in-out infinite;
}

.ooh-currency-badge-label {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: #00c8e0;
  text-transform: uppercase;
}

.ooh-currency-badge-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 200, 224, 0.45), transparent);
}

/* ── Metric rings (pulsing) ── */
.ooh-currency-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.ooh-currency-metric-ring {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes ringExpand {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  60% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.ooh-currency-metric-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #00c8e0;
  animation: ringExpand 2.6s ease-out infinite;
}

.ooh-currency-metric-ring .ooh-currency-metric-dot {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
}

/* ── Chart panel — HUD redesign ── */
.ooh-currency-chart {
  position: relative;
  background: rgba(0, 8, 20, 0.6);
  border: 1px solid rgba(0, 200, 224, 0.18);
  border-radius: 1rem;
  padding: 2.5rem;
  backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 200, 224, 0.06),
    inset 0 0 60px rgba(0, 200, 224, 0.03),
    0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Corner targeting brackets */
.ooh-chart-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 10;
}
.ooh-chart-corner--tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(0, 200, 224, 0.7);
  border-left: 2px solid rgba(0, 200, 224, 0.7);
  border-top-left-radius: 3px;
}
.ooh-chart-corner--tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(0, 200, 224, 0.7);
  border-right: 2px solid rgba(0, 200, 224, 0.7);
  border-top-right-radius: 3px;
}
.ooh-chart-corner--bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(0, 200, 224, 0.7);
  border-left: 2px solid rgba(0, 200, 224, 0.7);
  border-bottom-left-radius: 3px;
}
.ooh-chart-corner--br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(0, 200, 224, 0.7);
  border-right: 2px solid rgba(0, 200, 224, 0.7);
  border-bottom-right-radius: 3px;
}

/* Sweep scan line */
@keyframes chartScan {
  0% {
    top: 0%;
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.ooh-chart-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 200, 224, 0.25) 20%,
    rgba(0, 200, 224, 0.9) 50%,
    rgba(0, 200, 224, 0.25) 80%,
    transparent 100%
  );
  animation: chartScan 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

/* Chart header row */
.ooh-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

/* Label with status pip */
.ooh-currency-chart-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00c8e0;
  margin-bottom: 0;
}

@keyframes statusPipBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.ooh-chart-status-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c8e0;
  display: inline-block;
  flex-shrink: 0;
  animation: statusPipBlink 1.4s ease-in-out infinite;
}

/* LIVE badge */
.ooh-chart-sys-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 200, 224, 0.6);
  border: 1px solid rgba(0, 200, 224, 0.25);
  padding: 0.22rem 0.6rem;
  border-radius: 3px;
  background: rgba(0, 200, 224, 0.06);
}

@keyframes blinkStep {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
.ooh-chart-blink-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00c8e0;
  display: inline-block;
  animation: blinkStep 0.9s step-end infinite;
  box-shadow: 0 0 6px #00c8e0;
}

/* ── Bar upgrades ── */
.ooh-si-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 46px;
  align-items: center;
  gap: 1rem;
}

.ooh-si-bar-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ooh-si-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: visible;
  position: relative;
}

/* Segmented tick marks on track */
.ooh-si-bar-track::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 9px,
    rgba(255, 255, 255, 0.045) 9px,
    rgba(255, 255, 255, 0.045) 10px
  );
  border-radius: inherit;
}

.ooh-si-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--si-color, #00c8e0);
  box-shadow: 0 0 18px var(--si-glow, rgba(0, 200, 224, 0.5));
  transition: width 2.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* Dark-to-color gradient overlay on bar fill */
.ooh-si-bar-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

/* Glowing hot tip at the right edge of bar fill */
.ooh-si-bar-fill::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  bottom: -3px;
  width: 5px;
  background: var(--si-color, #00c8e0);
  filter: blur(5px);
  opacity: 0.95;
  pointer-events: none;
}

.ooh-si-bar-pct {
  font-size: 0.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  letter-spacing: 0.04em;
}

/* ── Chart footer ── */
.ooh-chart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ooh-chart-footer-label {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.ooh-chart-footer-val {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #00c8e0;
  text-shadow: 0 0 12px rgba(0, 200, 224, 0.5);
}

/* -------- SECTION 5: TARGETING (REDESIGNED) -------- */
.ooh-targeting {
  background: #f8fbff;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 200, 224, 0.12), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(0, 88, 224, 0.08), transparent 18%),
    radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.8), transparent 40%);
  padding: 4rem 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* Ambient background orbs */
.ooh-tgt-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.ooh-tgt-orb--1 {
  top: -10%;
  left: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 88, 224, 0.14), transparent 60%);
}

.ooh-tgt-orb--2 {
  bottom: -10%;
  right: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.11), transparent 60%);
}

.ooh-tgt-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* 4-column grid on desktop */
.ooh-tgt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ooh-tgt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .ooh-tgt-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* Individual card wrapper */
.ooh-tgt-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(0, 0, 0, 0.85);
  border-radius: 2rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 0 30px rgba(0, 0, 0, 0.08);
  padding: 2.2rem 1.8rem;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
  overflow: hidden;
  min-height: 18.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform;
}

.ooh-tgt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 224, 0.08),
    rgba(0, 88, 224, 0.03) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  border-radius: 2rem;
}

.ooh-tgt-card::after {
  display: none;
}

.ooh-tgt-card:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: rgba(0, 200, 224, 0.55);
  background: rgba(255, 255, 255, 1);
  box-shadow:
    0 28px 80px rgba(0, 200, 224, 0.22),
    0 0 32px rgba(0, 0, 0, 0.08);
}

.ooh-tgt-card:hover::before {
  opacity: 1;
}

.ooh-tgt-card:hover::after {
  width: 5rem;
}

.ooh-tgt-card:hover .ooh-tgt-card-inner {
  transform: translateY(-6px);
}

.ooh-tgt-card:hover .ooh-tgt-image-wrap {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 200, 224, 0.14);
}

.ooh-tgt-card:hover .ooh-tgt-image {
  transform: scale(1.12);
}

.ooh-tgt-card:hover .ooh-tgt-title {
  color: #00c8e0;
}

.ooh-tgt-card:hover .ooh-tgt-desc {
  color: rgba(2, 8, 17, 0.85);
}

.ooh-tgt-card-inner {
  width: 100%;
  position: relative;
  padding: 0;
  text-align: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.45s ease;
}

.ooh-tgt-image-wrap {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 224, 0.16),
    rgba(0, 88, 224, 0.1)
  );
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ooh-tgt-image {
  width: 80%;
  height: 80%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ooh-tgt-card-inner:hover .ooh-tgt-title {
  color: #0058e0;
}

/* ooh-tgt-title/desc: upgraded definitions below at "Title & description" */

/* Large stylistic number */
.ooh-tgt-number {
  position: absolute;
  top: -1rem; /* Slightly adjusted position */
  left: -0.5rem;
  font-size: 9rem; /* Slightly larger */
  font-weight: 950;
  color: #00c8e0;
  line-height: 0.7;
  opacity: 1; /* Even better visibility */
  font-family: var(--font-sans);
  pointer-events: none;
  z-index: 0;
  text-shadow: 0 5px 25px rgba(0, 200, 224, 0.15); /* Defining shadow */
}

.ooh-tgt-card-inner:hover .ooh-tgt-number {
  opacity: 0.85; /* Strong pop on interaction */
  transform: translateX(12px) translateY(-5px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Icon container - kept subtle */
.ooh-tgt-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem 0; /* Left align */
  transition: all 0.4s ease;
}

.ooh-tgt-icon-wrap--cyan {
  background: rgba(0, 200, 224, 0.1);
  color: var(--brand-cyan);
  box-shadow: 0 8px 24px rgba(0, 200, 224, 0.2);
}

.ooh-tgt-icon-wrap--blue {
  background: rgba(0, 88, 224, 0.12);
  color: #82b8ff;
  box-shadow: 0 8px 24px rgba(0, 88, 224, 0.2);
}

.ooh-tgt-card-inner:hover .ooh-tgt-icon-wrap--cyan {
  box-shadow: 0 12px 35px rgba(0, 200, 224, 0.4);
  transform: scale(1.08);
}

.ooh-tgt-card-inner:hover .ooh-tgt-icon-wrap--blue {
  box-shadow: 0 12px 35px rgba(0, 88, 224, 0.4);
  transform: scale(1.08);
}

/* Title & description */
.ooh-tgt-title {
  position: relative;
  z-index: 2;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  color: #020811;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease, transform 0.45s ease;
}

.ooh-tgt-desc {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(2, 8, 17, 0.6);
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

/* Radial glow inside card - disabled for solid design */
/* Connector line between cards (desktop only) */
.ooh-tgt-connector {
  display: none;
}

@media (min-width: 1024px) {
  .ooh-tgt-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    position: relative;
  }

  .ooh-tgt-connector span {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }

  .ooh-tgt-connector span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00c8e0, transparent);
    animation: flow-glow 3s infinite;
  }

  @keyframes flow-glow {
    0% {
      left: -100%;
    }
    50% {
      left: 100%;
    }
    100% {
      left: 100%;
    }
  }

  .ooh-tgt-connector span::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid rgba(255, 255, 255, 0.6);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
}

/* -------- SECTION 6: FORMATS TICKER -------- */
.ooh-ticker-section {
  background: #060e1c;
  padding: 1.5rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(0, 200, 224, 0.2);
  border-bottom: 1px solid rgba(0, 200, 224, 0.2);
  border-radius: 0;
  max-width: 100%;
  margin: 0;
}

.ooh-ticker-section::before,
.ooh-ticker-section::after {
  content: none;
}

/* FORMATS badge pill */
.ooh-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(0, 200, 224, 0.15);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  white-space: nowrap;
}

@media (min-width: 640px) {
  .ooh-ticker-label {
    padding: 0 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
  }
}

@media (min-width: 768px) {
  .ooh-ticker-label {
    padding: 0 3.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
  }
}

/* Scrolling area with edge fade masks */
.ooh-ticker {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.ooh-ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
  align-items: center;
}

.ooh-ticker-track span {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 3rem;
}

/* White divider glows between ticker items */
.ooh-ticker-track span::after {
  content: "|";
  display: inline-block;
  margin-left: 3rem;
  color: rgba(255, 255, 255, 0.35);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(0, 200, 224, 0.6),
    0 0 40px rgba(0, 200, 224, 0.3);
  font-weight: 300;
  font-size: 1rem;
}

.ooh-ticker-track span:not(.ooh-ticker-dot):hover {
  color: var(--brand-cyan);
}

.ooh-ticker-dot {
  color: var(--brand-cyan) !important;
  opacity: 0.45;
  font-size: 0.75rem !important;
  vertical-align: middle;
}

/* -------- SECTION 7: SCALE STRIP -------- */
.ooh-scale {
  background: #f5f9fa;
  padding: 7rem 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.ooh-scale-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.ooh-scale-bg-orb--1 {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.07), transparent 70%);
}

.ooh-scale-bg-orb--2 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 88, 224, 0.07), transparent 70%);
}

.ooh-scale-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ooh-scale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ooh-scale-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ooh-scale-card {
  position: relative;
  background: linear-gradient(145deg, #071428, #020811);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  padding: 4rem 2.5rem;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.ooh-scale-card--cyan:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 200, 224, 0.3);
  border-color: rgba(0, 200, 224, 0.3);
}

.ooh-scale-card--blue:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 88, 224, 0.3);
  border-color: rgba(0, 88, 224, 0.3);
}

.ooh-scale-number {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ooh-scale-card--cyan .ooh-scale-number {
  color: var(--brand-cyan);
  text-shadow: 0 0 30px rgba(0, 200, 224, 0.4);
}

.ooh-scale-card--blue .ooh-scale-number {
  color: #5ba4f5;
  text-shadow: 0 0 30px rgba(0, 88, 224, 0.4);
}

.ooh-scale-unit {
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.ooh-scale-detail {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 18rem;
  margin: 0 auto;
}

.ooh-scale-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(0, 200, 224, 0.12),
    transparent 60%
  );
  pointer-events: none;
}

.ooh-scale-card-glow--blue {
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(0, 88, 224, 0.12),
    transparent 60%
  );
}

/* Section Dividers */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 200, 224, 0.3),
    transparent
  );
  position: relative;
  z-index: 10;
}

.section-divider--light {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 88, 224, 0.15),
    transparent
  );
}

.section-divider--dark {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #000000 40%,
    #000000 60%,
    transparent
  );
  position: relative;
  z-index: 99;
  pointer-events: none;
}

.section-divider--thick {
  height: 3px;
}

.section-divider--neon {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9) 40%,
    rgba(255, 255, 255, 0.9) 60%,
    transparent
  );
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.5),
    0 0 50px rgba(255, 255, 255, 0.2);
}

.shimmer-divider {
  position: relative;
  overflow: hidden;
}

.shimmer-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.ooh-section-divider--dark {
  width: 40px;
  height: 4px;
  background: #000000;
  border-radius: 999px;
  margin-top: 1rem;
}

/* ============================================================================
   EXPERIENTIAL PAGE — migrated from inline & page-scoped <style>
============================================================================ */

/* Nav & ticker overrides — hero is now light, so dark nav links */
.exp-page .glass-nav .nav-link {
  color: #232526 !important;
}

.exp-page .glass-nav.scrolled .nav-link {
  color: #232526 !important;
}

.exp-page #mobile-menu-toggle span {
  background-color: #232526 !important;
}

.exp-page .glass-nav.scrolled #mobile-menu-toggle span {
  background-color: #232526 !important;
}

.exp-page .ticker-track span {
  color: #232526 !important;
  font-weight: 900;
}

.exp-page .ticker-track-reverse span {
  font-size: 20px;
  font-weight: 700;
  color: #0058e0;
}

/* Premium Dark Component Overrides */
.exp-page .service-3d-card {
  background: #071428 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 200, 224, 0.1) !important;
}

.exp-page .service-3d-card h3 {
  color: #ffffff !important;
}

.exp-page .service-3d-card p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.exp-page .service-3d-card:hover {
  background: #0d1527 !important;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 200, 224, 0.3) !important;
  border-color: var(--brand-cyan) !important;
}

.exp-page .service-3d-title-tag {
  color: var(--brand-cyan) !important;
  opacity: 0.4 !important;
}

/* Stat Bubbles Overrides */
.exp-page .stat-bubble {
  background: #071428 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.exp-page .stat-bubble-text {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ─── Hero Section ─────────────────────────────────────────── */
#exp-hero {
  min-height: 100vh;
  background:
    /* High-Definition Micro-Dot Grid */
    radial-gradient(rgba(0, 200, 224, 0.35) 2px, transparent 0),
    radial-gradient(rgba(0, 200, 224, 0.45) 1.3px, transparent 0), #f5f9fa;
  background-size:
    24px 24px,
    24px 24px,
    100% 100%;
  animation: dots-scroll 2s linear infinite;
}

@keyframes dots-scroll {
  0% {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      -24px 0,
      -24px 0,
      0 0;
  }
}

.exp-hero__ambient-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(0, 200, 224, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 88, 224, 0.1) 0%,
      transparent 50%
    );
  z-index: 0;
}

.exp-hero__blob-1 {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(0, 88, 224, 0.22) 0%,
    rgba(0, 88, 224, 0.05) 45%,
    transparent 70%
  );
  filter: blur(80px);
  animation: pulse-slower 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.exp-hero__blob-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 75vw;
  height: 75vw;
  max-width: 850px;
  max-height: 850px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 60%,
    rgba(0, 200, 224, 0.15) 0%,
    rgba(0, 200, 224, 0.03) 50%,
    transparent 70%
  );
  filter: blur(100px);
  animation: pulse-slower 18s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.exp-hero__blob-3 {
  position: absolute;
  top: 25%;
  left: 40%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 88, 224, 0.1) 0%,
    transparent 65%
  );
  filter: blur(50px);
  animation: pulse-premium 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.exp-hero__dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 200, 224, 0.15) 1px, transparent 0);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.exp-hero__mid-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 200, 224, 0.15),
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.exp-hero__content {
  position: relative;
  z-index: 2;
  color: #232526;
}

.exp-hero__title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  color: #232526;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.exp-hero__title-gradient {
  background: linear-gradient(130deg, #00c8e0, #00e5f7 45%, #0058e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exp-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(35, 37, 38, 0.65);
  max-width: 38rem;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.exp-hero__stat-pill {
  background: #020811;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 200, 224, 0.4);
  border-radius: 9999px;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff !important;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  width: 380px;
  height: 52px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.exp-hero__stat-pill .stat-num-cyan {
  color: var(--brand-cyan);
  font-size: 1.2rem;
  font-weight: 900;
}

.exp-hero__stat-pill .stat-num-blue {
  color: #60a5fa;
  font-size: 1.2rem;
  font-weight: 900;
}

/* ─── Offerings Section ─────────────────────────────────────── */
#exp-offerings {
  background: #020617;
}

.exp-offerings__blob-tr {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.15), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.exp-offerings__blob-bl {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 88, 224, 0.1), transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}

.exp-offerings__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.exp-offerings__eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 1rem;
}

.exp-offerings__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.exp-offerings__desc-wrap {
  max-width: 30rem;
}

.exp-offerings__desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.exp-offerings__accent-bar {
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-cyan), #0058e0);
  border-radius: 999px;
}

/* Bento Cards */
.exp-card__icon-cyan {
  width: 72px;
  height: 72px;
  border-radius: 1.5rem;
  background: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 200, 224, 0.3);
  margin-bottom: 2.5rem;
  color: white;
}

.exp-card__icon-blue {
  width: 60px;
  height: 60px;
  border-radius: 1.25rem;
  background: #0058e0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 88, 224, 0.3);
  margin-bottom: 2rem;
  color: white;
}

.exp-card__icon-sm-cyan {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: rgba(0, 200, 224, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  box-shadow: inset 0 0 20px rgba(0, 200, 224, 0.05);
}

.exp-card__icon-sm-cyan--no-glow {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: rgba(0, 200, 224, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
}

.exp-card__icon-lg-cyan {
  width: 80px;
  height: 80px;
  border-radius: 1.5rem;
  background: rgba(0, 200, 224, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

.exp-card__title-xl {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.exp-card__title-lg {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.exp-card__title-md {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.exp-card__body-lg {
  font-size: 1.2rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 2rem;
}

.exp-card__body-md {
  font-size: 1.1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 2rem;
}

.exp-card__body-sm {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  font-weight: 500;
}

.exp-card__body-para {
  font-size: 1.15rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  font-weight: 500;
}

.exp-card__list-item-cyan {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

.exp-card__list-item-cyan .exp-bullet {
  color: var(--brand-cyan);
}

.exp-card__list-item-blue {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

.exp-card__list-item-blue .exp-bullet {
  color: #0058e0;
}

.exp-card__stat-box {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.exp-card__stat-num-cyan {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--brand-cyan);
  line-height: 1;
}

.exp-card__stat-num-blue {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0058e0;
  line-height: 1;
}

.exp-card__stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(26, 26, 26, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  line-height: 1.2;
}

.exp-card__stat-label--narrow {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(26, 26, 26, 0.4);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.services-animated {
  transform-origin: center;
  animation: text-pop 0.7s ease-out both;
}

.services-animated:nth-child(1) {
  animation-delay: 0.1s;
}

.services-animated:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes text-pop {
  0% {
    transform: scale(0.88) translateY(14px);
    opacity: 0;
  }
  60% {
    transform: scale(1.05) translateY(-4px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.exp-card__glow-bg {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.08), transparent 70%);
  pointer-events: none;
}

/* Pan-India stat card */
.exp-card__eyebrow-cyan {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 1.5rem;
}

.exp-card__big-num {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #1a1a1a;
}

.exp-card__big-num-sub {
  font-size: 1.1rem;
  color: rgba(26, 26, 26, 0.7);
  margin-top: 1.5rem;
  font-weight: 500;
}

/* ─── Approach Section ──────────────────────────────────────── */
#exp-approach {
  background: #ffffff;
}

.exp-approach__blob-tl {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.1), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-slower 14s ease-in-out infinite;
}

.exp-approach__blob-br {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 88, 224, 0.1), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-slower 18s ease-in-out infinite reverse;
}

.exp-approach__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin: 0 auto 0.75rem;
  text-align: center;
  max-width: none;
}

.exp-approach__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #232526;
  letter-spacing: -0.02em;
}

.exp-approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Approach step cards (dark) */
.exp-step-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition:
    transform 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
}

.exp-step-card--1,
.exp-step-card--3 {
  background: #071428;
}

.exp-step-card--2,
.exp-step-card--4 {
  background: #0d1527;
}

.exp-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.exp-step-card--1:hover,
.exp-step-card--3:hover {
  border-color: rgba(0, 200, 224, 0.4);
}

.exp-step-card--2:hover,
.exp-step-card--4:hover {
  border-color: rgba(0, 88, 224, 0.45);
}

.exp-step-card__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
}

.exp-step-card__accent-bar--cyan {
  background: linear-gradient(to bottom, var(--brand-cyan), #0058e0);
}

.exp-step-card__accent-bar--blue {
  background: linear-gradient(to bottom, #0058e0, var(--brand-cyan));
}

.exp-step-card__num-cyan {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 224, 0.6),
    rgba(0, 200, 224, 0.1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exp-step-card__num-blue {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(0, 88, 224, 0.6),
    rgba(0, 88, 224, 0.1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exp-step-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 0.75rem;
}

.exp-step-card__body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.65;
  margin: 0;
}

/* ─── Formats / Slideshow Section ───────────────────────────── */
.exp-formats__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin: 0 auto 1rem;
  text-align: center;
  max-width: none;
}

.exp-formats__heading {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #232526;
  letter-spacing: -0.02em;
}

.exp-formats__accent-bar {
  width: 60px;
  height: 4px;
  background: var(--brand-cyan);
  margin: 2rem auto;
  border-radius: 999px;
}

.exp-slideshow-wrap {
  max-width: 1400px;
  height: clamp(400px, 60vh, 800px);
}

/* ─── Scale Section ──────────────────────────────────────────── */
#exp-scale {
  background: linear-gradient(135deg, #c8eef5 0%, #b0e4f0 45%, #c0ecf7 100%);
}

.exp-scale__blob-l {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.07), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.exp-scale__blob-r {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 88, 224, 0.07), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.exp-scale__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin: 0 auto 0.75rem;
  text-align: center;
  max-width: none;
}

.exp-scale__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #232526;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.exp-scale__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.exp-scale-card {
  background: linear-gradient(145deg, #071428, #020811);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2.5rem;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.exp-scale-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.exp-scale-card--cyan:hover {
  box-shadow: 0 40px 80px rgba(0, 200, 224, 0.3);
}

.exp-scale-card--blue:hover {
  box-shadow: 0 40px 80px rgba(0, 88, 224, 0.3);
}

.exp-scale-card--teal:hover {
  box-shadow: 0 40px 80px rgba(0, 150, 200, 0.3);
}

.exp-scale-card:not(:hover) {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.exp-scale-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.exp-scale-card__glow--cyan {
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(0, 200, 224, 0.15),
    transparent 60%
  );
}

.exp-scale-card__glow--blue {
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(0, 88, 224, 0.15),
    transparent 60%
  );
}

.exp-scale-card__glow--teal {
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(0, 200, 224, 0.12),
    transparent 60%
  );
}

.exp-scale-card__num-cyan {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-cyan);
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(0, 200, 224, 0.3);
}

.exp-scale-card__num-blue {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: #5ba4f5;
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(0, 88, 224, 0.3);
}

.exp-scale-card__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Mobile toggle override for dark hero ──────────────────── */
.exp-page #mobile-menu-toggle {
  z-index: 10000001 !important;
  pointer-events: auto !important;
}

/* ─── Insights Link Block ──────────────────── */
.insight-block {
  position: relative;
  overflow: hidden;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .insight-block {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}

.insight-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
  border-radius: inherit;
}

.insight-block:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.insight-block:hover {
  border-color: transparent !important;
}

.insight-block:hover .insight-meta {
  color: var(--brand-cyan) !important;
}

.insight-block:hover .insight-title {
  color: #fff !important;
}

.insight-block:hover .insight-icon-btn {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: var(--brand-cyan);
  color: #fff !important;
}

.insight-block:hover .text-dark {
  color: #fff !important;
}

/* ============================================================================
   AGENCY PAGE — dark hero requires white nav links
============================================================================ */

/* White links at top of page (dark hero behind nav) */
/* Logo → white + cyan glow on dark video hero */
.agency-page .glass-nav .nav-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 200, 224, 0.7));
}

/* Subtle dark strip so nav stays readable over bright video frames */
.agency-page .glass-nav {
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.agency-page .glass-nav.scrolled {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body.agency-page .glass-nav .nav-link,
body.agency-page .glass-nav .nav-link:link,
body.agency-page .glass-nav .nav-link:visited {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 1),
    0 2px 12px rgba(0, 0, 0, 0.9) !important;
  opacity: 1 !important;
}

.agency-page .glass-nav .nav-link:hover {
  color: #00c8e0 !important;
  text-shadow: none;
}

/* Hamburger bars → white */
.agency-page #mobile-menu-toggle span {
  background-color: #ffffff !important;
}

/* Once scrolled the glass backing provides enough contrast — keep white */
.agency-page .glass-nav.scrolled .nav-link {
  color: #ffffff !important;
  text-shadow: none;
}

.agency-page .glass-nav.scrolled #mobile-menu-toggle span {
  background-color: #ffffff !important;
}

/* ── ABOUT PAGE: dark video hero navbar ── */
body.about-page .glass-nav {
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.about-page .glass-nav.scrolled {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body.about-page .glass-nav .nav-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 200, 224, 0.7));
}

body.about-page .glass-nav .nav-link,
body.about-page .glass-nav .nav-link:link,
body.about-page .glass-nav .nav-link:visited {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 1),
    0 2px 12px rgba(0, 0, 0, 0.9) !important;
  opacity: 1 !important;
}

body.about-page .glass-nav .nav-link:hover {
  color: #00c8e0 !important;
  text-shadow: 0 0 12px rgba(0, 200, 224, 0.5) !important;
}

body.about-page #mobile-menu-toggle span {
  background-color: #ffffff !important;
}

body.about-page .glass-nav.scrolled .nav-link {
  color: #ffffff !important;
  text-shadow: none;
}

body.about-page .glass-nav.scrolled #mobile-menu-toggle span {
  background-color: #ffffff !important;
}

/* ============================================================================
   ACCESSIBILITY — Reduced Motion
   Stops all animations for users who prefer it (WCAG 2.1 AA)
============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   ABOUT PAGE STYLES
============================================================ */
/* ── ABOUT PAGE CUSTOM STYLES ── */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060809;
  position: relative;
  overflow: clip;
}
.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.about-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 9, 0.45) 0%,
    rgba(6, 8, 9, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Animated counter */
.stat-counter {
  font-variant-numeric: tabular-nums;
}

/* Services pill strip */
.services-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.service-pill {
  padding: 10px 22px;
  border: 1.5px solid rgba(0, 200, 224, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 200, 224, 0.06);
  transition: all 0.3s ease;
}
.service-pill:hover {
  background: rgba(0, 200, 224, 0.18);
  border-color: #00c8e0;
  color: #fff;
  transform: translateY(-2px);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00c8e0, #0058e0);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-dot {
  position: absolute;
  left: -2.85rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00c8e0;
  box-shadow: 0 0 12px #00c8e0;
  border: 2px solid #080b0e;
}

/* Values grid */
.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00c8e0, #0058e0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card:hover {
  background: rgba(0, 200, 224, 0.06);
  border-color: rgba(0, 200, 224, 0.3);
  transform: translateY(-4px);
}

/* mflash strip */
.mflash {
  position: relative;
  background: linear-gradient(90deg, #11181c 0%, #080b0e 100%);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 120px;
  border-top: 1px solid rgba(0, 200, 224, 0.2);
  border-bottom: 1px solid rgba(0, 200, 224, 0.2);
  box-shadow:
    inset 0 0 60px rgba(0, 200, 224, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.5);
}
.mflash::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}
.mflash--cyan {
  background: linear-gradient(90deg, #091316 0%, #030608 100%);
}
.mflash-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 50px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.mflash-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0b1215;
  background: #00c8e0;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.mflash-val {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition:
    opacity 0.4s,
    transform 0.4s;
  white-space: nowrap;
  text-shadow:
    0 5px 20px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 200, 224, 0.15);
}
.mflash-label {
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.mflash-out .mflash-val,
.mflash-out .mflash-label,
.mflash-out .mflash-tag {
  opacity: 0;
  transform: translateY(-20px);
}
.mflash-in .mflash-val,
.mflash-in .mflash-label,
.mflash-in .mflash-tag {
  opacity: 0;
  transform: translateY(20px);
}
.mflash-in .mflash-val {
  transition-delay: 0.05s;
}
.mflash-in .mflash-label {
  transition-delay: 0.1s;
}
.mflash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
}
.mflash-bar {
  height: 100%;
  background: #00c8e0;
  width: 0%;
  transition: none;
  box-shadow:
    0 0 15px #00c8e0,
    0 0 5px #00c8e0;
}
.mflash-bar--cyan {
  background: #fff;
  box-shadow:
    0 0 15px #fff,
    0 0 5px #fff;
}
@media (max-width: 640px) {
  .mflash-body {
    padding: 16px 24px;
    gap: 16px;
  }
  .mflash-tag {
    display: none;
  }
}

/* ============================================================
   OOH PAGE STYLES
============================================================ */
/* ── HERO SECTION BACKGROUND ── */
#ooh-hero {
  background: 
          /* High-Definition Micro-Dot Grid */
    radial-gradient(rgba(0, 200, 224, 0.35) 2px, transparent 0),
    radial-gradient(rgba(0, 200, 224, 0.45) 1.3px, transparent 0), #f5f9fa;
  background-size:
    24px 24px,
    24px 24px,
    100% 100%;
  animation: dots-scroll 2s linear infinite;
}

/* dots-scroll keyframe defined globally above */

/* ── STAT PILL TICKER (CSS DRIVEN) ── */
.exp-hero__stat-pill {
  width: 380px;
  height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  padding: 0;
  background: #020811 !important;
  border: 1px solid rgba(0, 200, 224, 0.4);
  border-radius: 99px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

@media (max-width: 420px) {
  .exp-hero__stat-pill {
    width: 310px;
    height: 48px;
  }
}

/* Ticker Track */
.stat-ticker-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-shrink: 0;
  /* 5 items × 52px = 260px — always keep all rows rendered */
  min-height: 260px;
  animation: ticker-scroll 16s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.stat-ticker-track--slow {
  animation-duration: 20s;
  animation-delay: -2s;
}

.stat-ticker-track--slower {
  animation-duration: 24s;
  animation-delay: -4s;
}

@keyframes ticker-scroll {
  0%,
  20% {
    transform: translateY(0);
  }
  25%,
  45% {
    transform: translateY(-52px);
  }
  50%,
  70% {
    transform: translateY(-104px);
  }
  75%,
  95% {
    transform: translateY(-156px);
  }
  100% {
    transform: translateY(-208px);
  }
}

@media (max-width: 420px) {
  @keyframes ticker-scroll {
    0%,
    20% {
      transform: translateY(0);
    }
    25%,
    45% {
      transform: translateY(-48px);
    }
    50%,
    70% {
      transform: translateY(-96px);
    }
    75%,
    95% {
      transform: translateY(-144px);
    }
    100% {
      transform: translateY(-192px);
    }
  }
}

.stat-unit {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff !important;
}

@media (max-width: 420px) {
  .stat-unit {
    height: 48px;
    font-size: 0.85rem;
  }
}

.stat-num-cyan {
  color: #00c8e0 !important;
  font-weight: 900;
  font-size: 1.25rem;
  margin-right: 6px;
}

.stat-num-blue {
  color: #60a5fa !important;
  font-weight: 900;
  font-size: 1.25rem;
  margin-right: 6px;
}

/* ============================================================
   EXPERIENTIAL PAGE STYLES
============================================================ */
/* ── CASE STUDY GLASS CARD ── */
.case-study-glass {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2.5rem;
  padding: 3rem 4rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ── HEADER — dark section background ── */
#exp-offerings {
  background: #020811;
}

.exp-offerings__eyebrow {
  color: #00c8e0;
}

.exp-offerings__heading {
  color: #ffffff;
}

.exp-offerings__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Bento cards — white style for better contrast on dark section background */
#exp-offerings .rounded-\[2\.5rem\] {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

#exp-offerings .rounded-\[2\.5rem\]:hover {
  border-color: #00c8e0 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

/* text overrides inside white cards */
.exp-card__title-xl {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #232526 !important;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.exp-card__title-lg {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #232526 !important;
  margin-bottom: 1rem;
}

.exp-card__title-md {
  font-size: 1.5rem;
  font-weight: 700;
  color: #232526 !important;
}

.exp-card__body-lg {
  color: rgba(35, 37, 38, 0.7) !important;
  font-size: 1.25rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.exp-card__body-md {
  color: rgba(35, 37, 38, 0.7) !important;
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.exp-card__body-sm {
  color: rgba(35, 37, 38, 0.7) !important;
  font-size: 1.15rem;
  line-height: 1.6;
}

.exp-card__body-para {
  color: rgba(35, 37, 38, 0.7) !important;
  font-size: 1.2rem;
  line-height: 1.7;
}

.exp-card__eyebrow-cyan {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00c8e0 !important;
  margin-bottom: 0.75rem;
}

.exp-card__big-num {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #232526 !important;
  line-height: 1;
  letter-spacing: -0.03em;
}

.exp-card__big-num-sub {
  color: rgba(35, 37, 38, 0.6) !important;
  font-size: 1.15rem;
  margin-top: 0.75rem;
}

.exp-card__list-item-cyan,
.exp-card__list-item-blue {
  color: rgba(35, 37, 38, 0.7) !important;
  font-size: 1.15rem;
  font-weight: 500;
}

.exp-bullet {
  color: #00c8e0;
  margin-right: 8px;
  font-weight: 900;
}

.exp-card__list-item-blue .exp-bullet {
  color: #0058e0;
}

/* Stat boxes in white cards */
.exp-card__stat-box {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-top: auto;
}

.exp-card__stat-num-cyan {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00c8e0 !important;
  line-height: 1;
}

.exp-card__stat-num-blue {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0058e0 !important;
  line-height: 1;
}

.exp-card__stat-label {
  color: rgba(35, 37, 38, 0.6) !important;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.6rem;
}

.exp-card__stat-label--narrow {
  color: rgba(35, 37, 38, 0.6) !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.6rem;
  line-height: 1.2;
}

/* ── CORE SERVICES CARDS (light section) ── */
#exp-core-services {
  background: linear-gradient(175deg, #e8f7ff 0%, #f4fbff 50%, #ffffff 100%);
}

#exp-core-services .exp-core-card {
  background: #ffffff;
  border: 1px solid rgba(0, 146, 184, 0.2);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 14px 32px rgba(0, 40, 80, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

#exp-core-services .exp-core-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 200, 224, 0.35);
}

#exp-core-services .exp-core-card img {
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}

#exp-core-services .exp-core-card h3 {
  color: #0f172a;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

#exp-core-services .exp-core-card p {
  color: rgba(35, 37, 38, 0.75);
}

/* ── CORE CAPABILITIES SECTION (light background) ── */
#exp-core-capabilities {
  background: #ffffff;
}

/* ── APPROACH SECTION — timeline layout ── */
#exp-approach {
  background: #080b0e;
}

.exp-approach-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.exp-approach-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00c8e0, #0058e0);
}

.exp-approach-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.exp-approach-timeline-dot {
  position: absolute;
  left: -2.85rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00c8e0;
  box-shadow: 0 0 12px #00c8e0;
  border: 2px solid #080b0e;
}

/* Step cards — solid dark */
.exp-step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition:
    transform 0.4s,
    border-color 0.4s,
    box-shadow 0.4s;
}

.exp-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 224, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.exp-step-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #232526 !important;
  margin-bottom: 0.75rem;
}

.exp-step-card__body {
  font-size: 1.05rem;
  color: rgba(35, 37, 38, 0.7) !important;
  line-height: 1.65;
}

/* ── FORMATS SECTION — light ── */
#exp-formats {
  background: #f5f9fa;
}

.exp-formats__heading {
  color: #232526;
}

/* ── FORMATS TICKER STRIP ── */
.exp-ticker-section {
  background: #020811;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
}

.exp-hero-ticker {
  background: #020811;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0.75rem;
  position: absolute;
  bottom: 3rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  border-radius: 1rem;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.exp-ticker-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00c8e0;
  white-space: nowrap;
}

.exp-ticker-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c8e0;
  box-shadow: 0 0 8px rgba(0, 200, 224, 0.7);
  animation: ooh-pulse 2s ease-in-out infinite;
}

.exp-ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
  align-items: center;
}

.exp-ticker-track span {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exp-ticker-track span:not(.exp-ticker-dot):hover {
  color: #00c8e0;
}

.exp-ticker-dot {
  color: #00c8e0;
  opacity: 0.35;
  font-size: 0.6rem;
  vertical-align: middle;
}

@keyframes ooh-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@media (min-width: 1024px) {
  .exp-ticker-section {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 1280px;
  }
}

/* ── SCALE SECTION — light ── */
#exp-scale {
  background: linear-gradient(135deg, #c8eef5 0%, #b0e4f0 45%, #c0ecf7 100%);
}

.exp-scale__heading {
  color: #232526;
}

.exp-scale-card {
  position: relative;
  overflow: hidden;
  background: #020811;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.75rem;
}

/* ── STAT PILL TICKER (CSS DRIVEN) ── */
.exp-hero__stat-pill {
  width: 380px;
  height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  padding: 0;
  background: #020811 !important;
  border: 1px solid rgba(0, 200, 224, 0.4);
  border-radius: 99px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

@media (max-width: 420px) {
  .exp-hero__stat-pill {
    width: 310px;
    height: 48px;
  }
}

/* Ticker Track */
.stat-ticker-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-shrink: 0;
  /* 5 items × 52px = 260px — always keep all rows rendered */
  min-height: 260px;
  animation: ticker-scroll 16s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.stat-ticker-track--slow {
  animation-duration: 20s;
  animation-delay: -2s;
}

.stat-ticker-track--slower {
  animation-duration: 24s;
  animation-delay: -4s;
}

@keyframes ticker-scroll {
  0%,
  20% {
    transform: translateY(0);
  }

  25%,
  45% {
    transform: translateY(-52px);
  }

  50%,
  70% {
    transform: translateY(-104px);
  }

  75%,
  95% {
    transform: translateY(-156px);
  }

  100% {
    transform: translateY(-208px);
  }
}

@media (max-width: 420px) {
  @keyframes ticker-scroll {
    0%,
    20% {
      transform: translateY(0);
    }

    25%,
    45% {
      transform: translateY(-48px);
    }

    50%,
    70% {
      transform: translateY(-96px);
    }

    75%,
    95% {
      transform: translateY(-144px);
    }

    100% {
      transform: translateY(-192px);
    }
  }
}

.stat-unit {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff !important;
}

@media (max-width: 420px) {
  .stat-unit {
    height: 48px;
    font-size: 0.85rem;
  }
}

.stat-num-cyan {
  color: #00c8e0 !important;
  font-weight: 900;
  font-size: 1.25rem;
  margin-right: 6px;
}

.stat-num-blue {
  color: #60a5fa !important;
  font-weight: 900;
  font-size: 1.25rem;
  margin-right: 6px;
}

/* ── SPOTLIGHT SLIDER ── */
.spotlight-slide {
  transition: opacity 0.5s ease;
}

.spotlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(1, 19, 29, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.spotlight-dot.active {
  background: #ffffff;
  width: 30px;
  border-radius: 10px;
}

#spotlight-prev,
#spotlight-next {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

#spotlight-prev:hover,
#spotlight-next:hover {
  background-color: #00c8e0;
  color: white;
  border-color: #00c8e0;
  transform: scale(1.1);
}

/* ============================================================
   AGENCY PAGE STYLES
============================================================ */
/* ============================================================================
   AGENCY PAGE STYLES — extracted from agency.html inline <style>
============================================================================ */

/* ── NAVBAR: white links for dark video hero ── */
body.agency-page .glass-nav .nav-link,
body.agency-page .glass-nav .nav-link:link,
body.agency-page .glass-nav .nav-link:visited {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 1),
    0 2px 12px rgba(0, 0, 0, 0.9) !important;
  opacity: 1 !important;
}
body.agency-page .glass-nav .nav-link:hover {
  color: #00c8e0 !important;
  text-shadow: 0 0 12px rgba(0, 200, 224, 0.5) !important;
}
body.agency-page #mobile-menu-toggle span {
  background-color: #ffffff !important;
}

/* ── AGENCY HERO ── */
.agency-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060809;
  position: relative;
  overflow: clip;
}
.agency-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.agency-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 9, 0.45) 0%,
    rgba(6, 8, 9, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── DATA FLOW: node hover + connector wave ── */
.flow-node {
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  cursor: default;
  position: relative;
}
.flow-node:hover {
  transform: scale(1.45);
  box-shadow:
    0 0 0 6px rgba(0, 200, 224, 0.3),
    0 0 36px rgba(0, 200, 224, 0.55);
}
.flow-node::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 224, 0.6);
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.flow-node:hover::after {
  opacity: 1;
  transform: scale(1);
  animation: nodeRing 1.2s ease-out infinite;
}
@keyframes nodeRing {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* Traveling pulse on the connector line */
.flow-connector {
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(35, 37, 38, 0.25);
  z-index: 0;
  overflow: visible;
  border-radius: 2px;
}
.flow-connector::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -35%;
  width: 35%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 200, 224, 0.9) 50%,
    transparent 100%
  );
  border-radius: 2px;
  animation: flowWave 2.2s ease-in-out infinite;
}
@keyframes flowWave {
  0% {
    left: -35%;
  }
  100% {
    left: 100%;
  }
}

/* Bouncing ball along the connector */
.flow-ball {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  animation: ballBounce 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 5;
}
.flow-ball:nth-child(1) {
  animation-delay: 0s;
}
.flow-ball:nth-child(2) {
  animation-delay: 0.6s;
}
.flow-ball:nth-child(3) {
  animation-delay: 1.2s;
}
.flow-ball:nth-child(4) {
  animation-delay: 1.8s;
}
.flow-ball:nth-child(5) {
  animation-delay: 2.4s;
}
.flow-ball:nth-child(6) {
  animation-delay: 3s;
}
.flow-ball:nth-child(7) {
  animation-delay: 3.6s;
}
.flow-ball:nth-child(8) {
  animation-delay: 4.2s;
}
.flow-ball:nth-child(9) {
  animation-delay: 4.8s;
}
.flow-ball:nth-child(10) {
  animation-delay: 5.4s;
}
@keyframes ballBounce {
  0% {
    left: 0%;
    transform: translate(-50%, -50%) translateY(0px);
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0);
  }
  16% {
    left: 16%;
    transform: translate(-50%, -50%) translateY(-28px);
    animation-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
  }
  32% {
    left: 33%;
    transform: translate(-50%, -50%) translateY(0px);
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0);
  }
  49% {
    left: 50%;
    transform: translate(-50%, -50%) translateY(-28px);
    animation-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
  }
  66% {
    left: 66%;
    transform: translate(-50%, -50%) translateY(0px);
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0);
  }
  83% {
    left: 83%;
    transform: translate(-50%, -50%) translateY(-28px);
    animation-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
  }
  96% {
    left: 100%;
    transform: translate(-50%, -50%) translateY(0px);
  }
  100% {
    left: 100%;
    transform: translate(-50%, -50%) translateY(0px);
  }
}

/* ── AGENCY TICKER ── */
.agency-ticker-wrap {
  border-top: 1px solid rgba(0, 200, 224, 0.15);
  border-bottom: 1px solid rgba(0, 200, 224, 0.15);
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  padding: 14px 0;
}
.agency-ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.agency-ticker-track span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.agency-ticker-track span b {
  color: #00c8e0;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── TECH CARDS ── */
.tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.tech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 200, 224, 0.1) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.tech-card:hover {
  border-color: rgba(0, 200, 224, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 200, 224, 0.08);
}
.tech-card:hover::after {
  opacity: 1;
}
.tech-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(0, 200, 224, 0.08);
  border: 1px solid rgba(0, 200, 224, 0.2);
}

/* ── CORE CAPABILITIES ── */
@keyframes capCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cap-label {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #00c8e0;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cap-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 200, 224, 0.35), transparent);
}
.cap-bento {
  display: flex;
  flex-direction: column;
}
.cap-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.cap-card {
  position: relative;
  padding: 1.4rem 1.4rem 1.6rem;
  background: linear-gradient(
    145deg,
    rgba(11, 26, 34, 0.85) 0%,
    rgba(6, 12, 20, 0.95) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.1rem;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  animation: capCardIn 0.45s ease forwards;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.cap-card:nth-child(1) {
  animation-delay: 0.05s;
}
.cap-card:nth-child(2) {
  animation-delay: 0.12s;
}
.cap-card:nth-child(3) {
  animation-delay: 0.19s;
}
.cap-card:nth-child(4) {
  animation-delay: 0.26s;
}
.cap-card:nth-child(5) {
  animation-delay: 0.33s;
}
.cap-card--wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
}
.cap-card--wide .cap-card-body {
  flex: 1;
}
.cap-card--wide .cap-card-num-bg {
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 200, 224, 0.18);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  user-select: none;
}
.cap-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle,
    rgba(0, 200, 224, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: opacity 0.35s;
  opacity: 0;
  pointer-events: none;
}
.cap-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00c8e0, rgba(0, 88, 224, 0.6));
  border-radius: 0 0 2px 2px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cap-card:hover {
  border-color: rgba(0, 200, 224, 0.28);
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.35),
    0 0 0 0.5px rgba(0, 200, 224, 0.12);
}
.cap-card:hover::before {
  opacity: 1;
}
.cap-card:hover::after {
  width: 100%;
}
.cap-card-num {
  display: block;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #00c8e0;
  opacity: 0.65;
  margin-bottom: 0.65rem;
}
.cap-card-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
  margin-bottom: 0.45rem;
  transition: color 0.3s;
}
.cap-card--wide .cap-card-title {
  font-size: 1.05rem;
}
.cap-card:hover .cap-card-title {
  color: #fff;
}
.cap-card-desc {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.55;
  transition: color 0.3s;
}
.cap-card:hover .cap-card-desc {
  color: rgba(255, 255, 255, 0.55);
}

/* ── DATA FLOW DIAGRAM ── */
.flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.flow-dot {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 200, 224, 0.1);
  border: 2px solid #00c8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #00c8e0;
  text-align: center;
}
.flow-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #00c8e0, #0058e0);
  margin-left: 23px;
}

/* ── GLOBAL STAT CARDS ── */
.global-stat-card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.global-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 200, 224, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.global-stat-card:hover {
  border-color: rgba(0, 200, 224, 0.5);
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 200, 224, 0.2);
}
.global-stat-card:hover::after {
  opacity: 1;
}
.global-stat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00c8e0, #0058e0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.global-stat-card:hover::before {
  transform: scaleX(1);
}

/* ── CAPABILITY PILL ── */
.cap-pill {
  padding: 9px 20px;
  border: 1.5px solid rgba(0, 200, 224, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 200, 224, 0.05);
  transition: all 0.3s;
}
.cap-pill:hover {
  background: rgba(0, 200, 224, 0.16);
  border-color: #00c8e0;
  color: #fff;
  transform: translateY(-2px);
}

/* ── PROCESS STEPS ── */
.process-step {
  position: relative;
  padding-left: 6rem;
}
.process-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c8e0, #0058e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #060809;
  box-shadow: 0 0 24px rgba(0, 200, 224, 0.4);
}

/* ── MFLASH STATS ROTATOR ── */
.mflash {
  position: relative;
  background: linear-gradient(90deg, #11181c 0%, #080b0e 100%);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 120px;
  border-top: 1px solid rgba(0, 200, 224, 0.2);
  border-bottom: 1px solid rgba(0, 200, 224, 0.2);
  box-shadow:
    inset 0 0 60px rgba(0, 200, 224, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.5);
}
.mflash::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}
.mflash-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 50px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.mflash-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0b1215;
  background: #00c8e0;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.mflash-val {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition:
    opacity 0.4s,
    transform 0.4s;
  white-space: nowrap;
  text-shadow:
    0 5px 20px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 200, 224, 0.15);
}
.mflash-label {
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.mflash-out .mflash-val,
.mflash-out .mflash-label,
.mflash-out .mflash-tag {
  opacity: 0;
  transform: translateY(-20px);
}
.mflash-in .mflash-val,
.mflash-in .mflash-label,
.mflash-in .mflash-tag {
  opacity: 0;
  transform: translateY(20px);
}
.mflash-in .mflash-val {
  transition-delay: 0.05s;
}
.mflash-in .mflash-label {
  transition-delay: 0.1s;
}
.mflash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
}
.mflash-bar {
  height: 100%;
  background: #00c8e0;
  width: 0%;
  transition: none;
  box-shadow:
    0 0 15px #00c8e0,
    0 0 5px #00c8e0;
}
@media (max-width: 640px) {
  .mflash-body {
    padding: 16px 24px;
    gap: 16px;
  }
  .mflash-tag {
    display: none;
  }
}

/* ============================================================================
   GLOBAL AOS ANIMATION OVERRIDE
   Ensures snappy animations regardless of inline settings
============================================================================ */
[data-aos] {
  transition-duration: 450ms !important;
}

/* ============================================================================
   AOS / OVERFLOW FIX
   overflow:hidden creates a scroll-container that clips IntersectionObserver,
   preventing AOS from ever seeing [data-aos] elements as "in view".
   overflow:clip visually clips decorative blobs without creating a scroll
   container, so AOS fires correctly.
============================================================================ */
#exp-hero,
#exp-offerings,
#exp-approach,
#exp-scale {
  overflow: clip;
}
