@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600;1,700;1,800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-syne: 'Syne', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-script: 'Caveat', cursive;
  --dark-bg: #08090A;
  --dark-card: #111315;
  --light-bg: #FFFFFF;
  --light-card: #F8FAFC;
  --light-border: #E2E8F0;
  --text-dark: #F5F5F5;
  --text-muted: #8A8F98;
  --blue-brand: #2563EB;
  --accent-blue: #2563EB;
  --accent-light: #EFF6FF;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: #08090A;
  color: #F5F5F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Global Signature Brand Typography for Page Banners and Hero Headlines */
h1,
.font-syne,
.page-banner-hero h1,
.page-banner-content h1,
.hero-title,
header h1 {
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif !important;
}

.font-mono {
  font-family: 'Space Grotesk', monospace !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* SEO-Safe Scroll Animation System (Progressively Enhanced) */
.tas-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.tas-reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
  .tas-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  background-color: #0C0D0F;
  color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* Script handwriting font for "Technology That Works For People" */
.font-handwriting {
  font-family: var(--font-script);
}

/* Hero Section Styling (Dark) */
.hero-section-dark {
  background: radial-gradient(circle at 75% 30%, #152238 0%, #0A0E17 65%);
  position: relative;
}

/* Floating Laptop Perspective Mockup */
.hero-perspective {
  perspective: 1000px;
}

.hero-laptop-frame {
  transform: rotateX(6deg) rotateY(-8deg) rotateZ(1deg);
  transition: transform 0.4s ease;
  box-shadow: -15px 30px 60px -10px rgba(0, 0, 0, 0.8), 0 0 35px -5px rgba(37, 99, 235, 0.25);
}

.hero-laptop-frame:hover {
  transform: rotateX(3deg) rotateY(-4deg) rotateZ(0deg);
}

/* Floating Growth Card in Hero */
.hero-growth-card {
  position: absolute;
  top: 15%;
  right: -20px;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.875rem;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
  z-index: 20;
}

/* Floating Feature List on Far Right */
.hero-floating-list {
  position: absolute;
  top: 25%;
  right: -95px;
  z-index: 15;
}

/* Pill Badges */
.pill-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pill-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
}

/* Buttons (Matching Reference Design) */
.btn-white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #0A0E17 !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1.7rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 15px -2px rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-white-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px -2px rgba(255, 255, 255, 0.4);
  background: #F8FAFC;
}

.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-light-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: #0F172A !important;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid #CBD5E1;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-light-outline:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
}

.btn-dark-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #0F172A;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-dark-solid:hover {
  background: #1E293B;
  transform: translateY(-1px);
}

/* Service Card (Light) */
.service-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1.125rem;
  padding: 1.5rem;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
  border-color: #93C5FD;
}

/* Featured Project Card (Dark) */
.project-card-dark {
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.125rem;
  overflow: hidden;
  transition: all 0.25s ease;
}

.project-card-dark:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.7);
}

/* Process Step Card (Light) */
.process-step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s ease;
}

.process-step-card:hover {
  transform: translateY(-2px);
  border-color: #93C5FD;
}

/* Industry Dark Card */
.industry-dark-box {
  background: #101624;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.875rem;
  padding: 1.1rem;
  text-align: center;
  transition: all 0.2s ease;
}

.industry-dark-box:hover {
  background: #162035;
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

/* Testimonial Card (Light) */
.testimonial-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1.125rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

/* Blog Card (Light) */
.blog-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1.125rem;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.blog-card-light:hover {
  transform: translateY(-3px);
  border-color: #93C5FD;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
}

/* Starry Mountain Night Banner */
.night-sky-banner {
  background: 
    linear-gradient(180deg, rgba(10, 14, 23, 0.7) 0%, rgba(10, 14, 23, 0.95) 100%),
    url('../img/bg-network-globe.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dropdown Menu (Fast & Light) */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  background: #0E1524;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.875rem;
  padding: 0.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  display: block !important;
}

/* Mobile Drawer */
#mobile-menu-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0E17;
  overflow-y: auto;
}

#mobile-menu-drawer.is-open {
  display: block !important;
}


/* ==========================================================================
   EXACT 3D DARK LUXURY SYSTEM MATCHING MOCKUP MEDIA_1788967960374.PNG
   ========================================================================== */

:root {
  --bg-space: #060911;
  --bg-card: rgba(14, 20, 34, 0.7);
  --bg-card-hover: rgba(20, 28, 48, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(56, 189, 248, 0.4);
  --cyan-glow: rgba(56, 189, 248, 0.15);
}

/* Base Body Background */
body {
  background-color: #060911 !important;
  color: #F1F5F9;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* Subtle atmospheric ambient glow (zero grid lines!) */
.ambient-glow-top {
  position: absolute;
  top: 0;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(6, 9, 17, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-blue {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(6, 9, 17, 0) 70%);
  pointer-events: none;
}

/* 3D Glass Card Container */
.glass-card-3d {
  background: linear-gradient(145deg, rgba(20, 28, 46, 0.6) 0%, rgba(10, 15, 26, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.glass-card-3d:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.85), 0 0 25px -5px rgba(56, 189, 248, 0.2);
}

/* 3D Glossy Icon Box */
.icon-box-3d {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.glass-card-3d:hover .icon-box-3d {
  transform: scale(1.05);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.3);
}

/* The Signature Circular Plus Button */
.btn-plus-3d {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.glass-card-3d:hover .btn-plus-3d {
  background: #FFFFFF;
  color: #060911;
  border-color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Process Step Circular 3D Embossed Node */
.process-node-3d {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #162035 0%, #0A0F1D 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
  position: relative;
}

.process-node-3d:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.8), 0 0 25px rgba(56, 189, 248, 0.25);
}

/* Industry Squircle 3D Card */
.squircle-card-3d {
  background: linear-gradient(145deg, rgba(20, 27, 43, 0.7) 0%, rgba(10, 15, 25, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.squircle-card-3d:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(26, 36, 58, 0.8) 0%, rgba(14, 20, 34, 0.95) 100%);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.15);
}

/* Floating Glass Pill Tags on Hero */
.floating-glass-tag {
  background: rgba(14, 20, 34, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.floating-glass-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(20, 29, 48, 0.95);
}

/* Mountain Summit Parallax Banner */
.mountain-summit-banner {
  background: linear-gradient(90deg, rgba(6, 9, 17, 0.85) 0%, rgba(6, 9, 17, 0.3) 50%, rgba(6, 9, 17, 0.85) 100%),
              url('../img/mountain-peak-climber.jpg');
  background-size: cover;
  background-position: center 30%;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9);
}

/* Subtle corner label typography */
.corner-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

/* Video Modal */
#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 6, 11, 0.85);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#video-modal.is-active {
  display: flex !important;
}


/* ==========================================================================
   AGLOWX EXACT LUXURY DESIGN SYSTEM (https://www.aglowx.my/)
   ========================================================================== */

:root {
  --font-syne: 'Syne', sans-serif;
  --font-space: 'Space Grotesk', sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', sans-serif;
  
  --color-dark: #050505;
  --color-cyan: #3BD8D9;
  --color-purple: #8A46BB;
  --color-pink: #FF5D93;
}

body {
  background-color: #050505 !important;
  color: #FFFFFF;
  font-family: var(--font-space), var(--font-jakarta), sans-serif;
  overflow-x: hidden;
  selection-background-color: #3BD8D9;
  selection-color: #000000;
}

::selection {
  background: #3BD8D9 !important;
  color: #000000 !important;
}

.font-display {
  font-family: var(--font-syne), var(--font-space), sans-serif;
}

.font-tech {
  font-family: var(--font-space), monospace;
}

/* Text Stroke Cyan like AglowX */
.text-stroke-cyan {
  -webkit-text-stroke: 1px rgba(59, 216, 217, 0.4);
  color: transparent;
}

/* AglowX Multi-gradient highlight */
.text-aglowx-gradient {
  background: linear-gradient(90deg, #3BD8D9 0%, #FFFFFF 50%, #FF5D93 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Atmospheric Glow Orbs */
.glow-orb-cyan {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 216, 217, 0.12) 0%, rgba(5, 5, 5, 0) 70%);
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-purple {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(138, 70, 187, 0.14) 0%, rgba(5, 5, 5, 0) 70%);
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

/* Glass Card with Glowing Border */
.aglowx-card {
  background: rgba(12, 14, 20, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.aglowx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 216, 217, 0.4);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(59, 216, 217, 0.15);
}

/* 180-DEGREE CURVED 3D CAROUSEL (Exact AglowX Arc Wheel) */
.perspective-stage {
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.arc-cylinder-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arc-card-3d {
  position: absolute;
  width: 320px;
  height: 400px;
  transform-style: preserve-3d;
  border-radius: 1.25rem;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  cursor: pointer;
  user-select: none;
}

/* Interactive Inquiry Tags */
.inquiry-pill {
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.inquiry-pill:hover {
  border-color: #3BD8D9;
  color: #3BD8D9;
  background: rgba(59, 216, 217, 0.08);
}

.inquiry-pill.active {
  background: #3BD8D9;
  color: #000000;
  border-color: #3BD8D9;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(59, 216, 217, 0.4);
}

/* Pulsing Custom Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.animate-pulseGlow {
  animation: pulseGlow 6s ease-in-out infinite;
}


/* ==========================================================================
   FANTASY.CO EXACT LUXURY DIGITAL AGENCY DESIGN SYSTEM
   ========================================================================== */

:root {
  --font-fantasy: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --bg-pitch: #FFFFFF;
  --bg-card: #F8FAFC;
  --border-light: rgba(0, 0, 0, 0.08);
  --accent-cyan: #0284C7;
}

html.dark {
  --bg-pitch: #050505;
  --bg-card: #0c0c0e;
  --border-light: rgba(255, 255, 255, 0.1);
  --accent-cyan: #3BD8D9;
}

body {
  background-color: #07080A;
  color: #F8FAFC;
  font-family: var(--font-fantasy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.dark body {
  background-color: #07080A;
  color: #F8FAFC;
}

::selection {
  background: #2563EB !important;
  color: #FFFFFF !important;
}

html.dark ::selection {
  background: #FFFFFF !important;
  color: #000000 !important;
}

/* Fantasy Typography */
.font-fantasy {
  font-family: var(--font-fantasy);
}

.heading-massive {
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #0F172A;
  transition: color 0.3s ease;
}

html.dark .heading-massive {
  color: #FFFFFF;
}

.heading-section {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #0F172A;
  transition: color 0.3s ease;
}

html.dark .heading-section {
  color: #FFFFFF;
}

.eyebrow-fantasy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748B;
  transition: color 0.3s ease;
}

html.dark .eyebrow-fantasy {
  color: rgba(255, 255, 255, 0.5);
}

/* Fantasy Case Study Card */
.fantasy-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.fantasy-card:hover {
  transform: translateY(-4px);
  border-color: #93C5FD;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

html.dark .fantasy-card {
  background: #0d0d11;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

html.dark .fantasy-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9);
}

/* Interactive Accordion / Capability Strip */
.capability-row {
  border-top: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.capability-row:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

html.dark .capability-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html.dark .capability-row:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Start a Project Modal */
#project-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}

html.dark #project-modal {
  background: rgba(0, 0, 0, 0.85);
}

#project-modal.is-open {
  display: flex !important;
  pointer-events: auto !important;
}

.modal-content {
  background: #0D0E12;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.95);
  position: relative;
  color: #FFFFFF;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

html.dark .modal-content {
  background: #0D0E12;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.95);
  color: #FFFFFF;
}

/* Tag Choice Buttons */
.brief-choice-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.brief-choice-btn:hover {
  border-color: #2563EB;
  color: #2563EB;
}

.brief-choice-btn.active {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  font-weight: 700;
}

html.dark .brief-choice-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
}

html.dark .brief-choice-btn:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

html.dark .brief-choice-btn.active {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}


/* ==========================================================================
   FANTASY.CO ANIMATIONS & LUXURY INTERACTIONS
   ========================================================================== */

/* Custom Magnetic Cursor (Desktop only) */
@media (hover: hover) and (pointer: fine) {
  #custom-cursor {
    width: 8px;
    height: 8px;
    background: #0F172A;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, transform 0.05s linear;
  }

  html.dark #custom-cursor {
    background: #FFFFFF;
  }

  #cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(15, 23, 42, 0.25);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s cubic-bezier(0.2, 0, 0.2, 1), width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  }

  html.dark #cursor-follower {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  body.cursor-hover #custom-cursor {
    width: 24px;
    height: 24px;
    background: rgba(15, 23, 42, 0.9);
    mix-blend-mode: difference;
  }

  html.dark body.cursor-hover #custom-cursor {
    background: rgba(255, 255, 255, 0.9);
  }

  body.cursor-hover #cursor-follower {
    width: 60px;
    height: 60px;
    border-color: rgba(15, 23, 42, 0.6);
    background: rgba(15, 23, 42, 0.04);
  }

  html.dark body.cursor-hover #cursor-follower {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
  }
}

/* Infinite Marquee Ticker */
@keyframes marqueeScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  width: 200%;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Image Card Hover Zoom & Vignette */
.card-media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
  background-color: #F1F5F9;
}

html.dark .card-media-wrapper {
  background-color: #0d0d12;
}

.card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.95) contrast(1.02);
}

html.dark .card-media-img {
  filter: brightness(0.85) contrast(1.05);
}

.fantasy-card:hover .card-media-img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.08);
}

/* Modal Spring Animation */
#project-modal.is-open .modal-content {
  animation: modalSpring 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSpring {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Parallax Banner */
.parallax-banner-bg {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.95) 100%),
              url('../img/mountain-peak-climber.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


/* Unconditional non-blocking pointer events for cursor */
#custom-cursor, #cursor-follower {
  pointer-events: none !important;
  user-select: none;
}


/* ==========================================================================
   OFFICIAL STUDIO FREIGHT LENIS SMOOTH SCROLL INTEGRATION
   ========================================================================== */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden !important;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body.modal-open {
  overflow: hidden !important;
}


/* ==========================================================================
   PARALLEL SCROLLING ENGINE & RESPONSIVE REFINEMENTS
   ========================================================================== */

/* Parallax Typography Watermark */
.parallax-watermark {
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

/* Parallel Columns on Desktop */
@media (min-width: 1024px) {
  .parallax-col-fast,
  .parallax-col-slow {
    will-change: transform;
  }
}

/* Card Media Container for Parallax Image Scrolling */
.card-media-wrapper {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.card-media-wrapper .card-media-img {
  will-change: transform;
  transform: scale(1.1);
  transition: filter 0.6s ease;
}

/* Responsive Mobile Typography Clamp Adjustments */
@media (max-width: 640px) {
  .heading-massive {
    font-size: clamp(2rem, 9.5vw, 3.2rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
    word-break: break-word;
  }

  .heading-section {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }

  .eyebrow-fantasy {
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
  }
}

/* Mobile Slide-Out Drawer Smooth Touch Scrolling */
#mobile-nav-drawer {
  -webkit-overflow-scrolling: touch;
}
/* ==========================================================================
   INFINITE DUAL-ROW LOGO MARQUEE (Row 1 Left / Row 2 Right)
   ========================================================================== */
@keyframes logoMarqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes logoMarqueeRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.animate-marquee-left {
  display: flex;
  width: max-content;
  animation: logoMarqueeLeft 38s linear infinite;
  will-change: transform;
}

.animate-marquee-right {
  display: flex;
  width: max-content;
  animation: logoMarqueeRight 38s linear infinite;
  will-change: transform;
}

.animate-marquee-left:hover,
.animate-marquee-right:hover {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .animate-marquee-left,
  .animate-marquee-right {
    animation-duration: 24s;
  }
}

.client-logo-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  height: 5rem;
  min-width: 175px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .client-logo-card {
    height: 5.75rem;
    min-width: 210px;
    padding: 1rem 2rem;
    border-radius: 1.125rem;
  }
}

.client-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 25px -3px rgba(37, 99, 235, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
}

.client-logo-card img {
  max-height: 2.35rem;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease, filter 0.25s ease;
  filter: grayscale(10%) contrast(102%);
}

@media (min-width: 640px) {
  .client-logo-card img {
    max-height: 2.75rem;
    max-width: 160px;
  }
}

.client-logo-card:hover img {
  filter: grayscale(0%) contrast(105%);
}

/* ==========================================================================
   LIGHT / DARK THEME SURFACE & UTILITY HELPERS
   ========================================================================== */

/* Theme smooth transitions for key structural elements */
header, footer, .fantasy-card, .modal-content, .capability-row, #mobile-nav-drawer {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Form input styling */
.tas-input {
  background-color: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  transition: all 0.2s ease;
}

.tas-input:focus {
  background-color: #FFFFFF;
  border-color: #2563EB;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

html.dark .tas-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

html.dark .tas-input:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #3BD8D9;
  box-shadow: 0 0 0 3px rgba(59, 216, 217, 0.2);
}

/* Light theme subtle badge */
.tas-badge-subtle {
  background-color: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
}

html.dark .tas-badge-subtle {
  background-color: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   OMNIX STUDIO (https://omnixstudio.co) EXACT LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  --bg-page: #F4F4F2;
  --bg-surface: #FFFFFF;
  --bg-muted: #EBEBE7;
  --border-subtle: rgba(0, 0, 0, 0.07);
  --border-card: rgba(0, 0, 0, 0.08);
  --text-primary: #111827;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --accent-coral: #2563EB;
  --accent-cyan: #2563EB;
  --accent-wa: #25D366;
}

.font-syne {
  font-family: 'Syne', -apple-system, sans-serif;
}

.font-display {
  font-family: 'Syne', -apple-system, sans-serif;
}

.text-coral {
  color: #2563EB;
}

.bg-coral {
  background-color: #2563EB;
}

.border-coral {
  border-color: #2563EB;
}

/* Ensure any cyan-300 / rgb(103 232 249) text color resolves to #2563EB */
.text-cyan-300 {
  color: #2563EB !important;
}

.group:hover .group-hover\:text-cyan-300,
.group-hover\:text-cyan-300:hover,
.hover\:text-cyan-300:hover {
  color: #2563EB !important;
}

/* Omnix / Webcros Studio Action Buttons */
.omnix-btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 9999px;
  color: #FFFFFF !important;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 600;
  background: #2563EB;
  box-shadow: 0 4px 25px rgba(37, 99, 235, 0.35);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.omnix-btn-coral:hover {
  transform: translateY(-2px);
  background: #1D4ED8;
  box-shadow: 0 8px 35px rgba(37, 99, 235, 0.5);
}

.omnix-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 9999px;
  color: #FFFFFF !important;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 600;
  border: none;
  background: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.omnix-btn-wa:hover {
  background: #1EBE5D;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.omnix-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9999px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.omnix-btn-ghost:hover {
  background: #F8F8F6;
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

/* Omnix / Webcros Crisp Elevated Cards */
.omnix-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.omnix-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.09), 0 0 25px -5px rgba(37, 99, 235, 0.12);
}

/* Omnix Logo Marquee Card (Light) */
.omnix-logo-card {
  width: 220px;
  height: 80px;
  margin-left: 8px;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.omnix-logo-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Radial Atmospheric Spotlight (Light Mode) */
.radial-spotlight {
  background: radial-gradient(circle at 50% -10%, rgba(37, 99, 235, 0.08) 0%, transparent 65%), #F4F4F2;
}

/* Webcros Light Background (Clean - No Grid Lines) */
.webcros-light-bg {
  background-color: #F4F4F2;
  background-image: none !important;
}

/* Digital Engineering Background (Clean - No Grid Lines) */
.digital-grid-bg {
  background-color: #07080A;
  background-image: none !important;
}

.noise-overlay {
  background-image: none !important;
}

/* ==========================================================================
   OMNIX STUDIO HERO 3D PERSPECTIVE PROJECT GRID
   ========================================================================== */
.hero-3d-wrapper {
  position: absolute;
  inset: -15% -15% -15% -15%;
  pointer-events: none;
  z-index: 1;
  perspective: 1200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-3d-grid {
  display: grid;
  grid-template-columns: repeat(5, 270px);
  gap: 20px;
  transform: rotateX(15deg) rotateY(-8deg) rotateZ(2deg) scale(1.18);
  transform-style: preserve-3d;
  opacity: 0.32;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-3d-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-3d-card {
  height: 175px;
  border-radius: 14px;
  overflow: hidden;
  background: #111315;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-3d-grid {
    grid-template-columns: repeat(5, 210px);
    gap: 14px;
    transform: rotateX(12deg) rotateY(-6deg) rotateZ(1.5deg) scale(1.1);
  }
  .hero-3d-col {
    gap: 14px;
  }
  .hero-3d-card {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .hero-3d-grid {
    grid-template-columns: repeat(5, 160px);
    gap: 10px;
    transform: rotateX(10deg) rotateY(-4deg) rotateZ(1deg) scale(1.05);
  }
  .hero-3d-col {
    gap: 10px;
  }
  .hero-3d-card {
    height: 110px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .hero-3d-grid {
    grid-template-columns: repeat(5, 125px);
    gap: 8px;
    transform: rotateX(8deg) rotateY(-3deg) rotateZ(1deg) scale(1);
  }
  .hero-3d-col {
    gap: 8px;
  }
  .hero-3d-card {
    height: 85px;
    border-radius: 8px;
  }
}

.hero-3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.02);
}

.hero-3d-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 244, 242, 0.02) 0%, rgba(244, 244, 242, 0.25) 100%);
}

.hero-3d-card-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 10, 0.45);
}

.hero-vignette-center {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(ellipse 72% 62% at 50% 50%, rgba(244, 244, 242, 0.96) 0%, rgba(244, 244, 242, 0.88) 35%, rgba(244, 244, 242, 0.35) 68%, transparent 95%);
}

.hero-vignette-edges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  background:
    linear-gradient(to bottom, #F4F4F2 0%, transparent 18%, transparent 82%, #F4F4F2 100%),
    linear-gradient(to right, #F4F4F2 0%, transparent 12%, transparent 88%, #F4F4F2 100%);
}

/* Cinematic Dark Hero Stage Vignettes (Strengthened for High Text Contrast) */
.hero-vignette-center-dark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(ellipse 68% 60% at 50% 48%, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.82) 40%, rgba(7, 8, 10, 0.25) 75%, transparent 100%);
}

.hero-vignette-edges-dark {
  display: none !important;
  background: none !important;
}

/* ==========================================================================
   FLAGSHIP CINEMATIC FLOATING DEVICE FRAME (HERO SHOWCASE)
   ========================================================================== */
.cinematic-device-frame {
  position: relative;
  border-radius: 1.5rem;
  background: #0D1117;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.9), 0 0 50px -10px rgba(37, 99, 235, 0.25);
  transform: perspective(1200px) rotateX(3deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-device-frame:hover {
  transform: perspective(1200px) rotateX(0deg) translateY(-6px);
  box-shadow: 0 45px 100px -15px rgba(0, 0, 0, 0.95), 0 0 70px -10px rgba(37, 99, 235, 0.4);
  border-color: rgba(37, 99, 235, 0.4);
}

@media (max-width: 768px) {
  .cinematic-device-frame {
    transform: none;
    border-radius: 1rem;
  }
  .cinematic-device-frame:hover {
    transform: none;
  }
}

/* Cinematic Utilities */
.cinema-spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.22), rgba(55, 214, 253, 0.08) 45%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 2;
}

.cinema-glow-blue {
  box-shadow: 0 0 35px -5px rgba(37, 99, 235, 0.35);
}

.cinema-border-glass {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   ADAPTIVE MORPHING NAVIGATION HEADER (DARK / LIGHT CINEMATIC THEMES)
   ========================================================================== */
#main-header {
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#main-header.header-theme-dark {
  background-color: rgba(7, 8, 10, 0.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#main-header.header-theme-dark .nav-item {
  color: #94A3B8;
}

#main-header.header-theme-dark .nav-item:hover {
  color: #FFFFFF;
}

#main-header.header-theme-dark .nav-item.active {
  color: #2563EB;
}

#main-header.header-theme-dark .header-action-btn {
  background-color: #FFFFFF !important;
  color: #07080A !important;
}

#main-header.header-theme-dark .header-action-btn:hover {
  background-color: #2563EB !important;
  color: #FFFFFF !important;
}

#main-header.header-theme-dark .header-mobile-toggle {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

#main-header.header-theme-light {
  background-color: rgba(244, 244, 242, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

#main-header.header-theme-light .nav-item {
  color: #334155;
}

#main-header.header-theme-light .nav-item:hover {
  color: #111827;
}

#main-header.header-theme-light .nav-item.active {
  color: #2563EB;
}

#main-header.header-theme-light .header-action-btn {
  background-color: #111827 !important;
  color: #FFFFFF !important;
}

#main-header.header-theme-light .header-action-btn:hover {
  background-color: #2563EB !important;
  color: #FFFFFF !important;
}

#main-header.header-theme-light .header-mobile-toggle {
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: #111827 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================================================
   ACT 3: CINEMATIC SCREENING ROOM CASE STUDY SHOWCASE
   ========================================================================== */
.case-study-screening-dark {
  background-color: #08090C !important;
  color: #F8FAFC !important;
}

.case-study-screening-dark .case-study-pill {
  color: #CBD5E1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.case-study-screening-dark .case-study-pill:hover {
  color: #37D6FD;
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.25);
}

.case-study-screening-dark .case-study-step-btn .step-num {
  color: #64748B;
}

.case-study-screening-dark .case-study-step-btn.active .step-num {
  color: #37D6FD;
}

.case-study-screening-dark .case-study-thumb-item {
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: #111315;
}

.case-study-screening-dark .case-study-thumb-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.case-study-screening-dark .case-study-thumb-item.active {
  border-color: #2563EB;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.45);
}

.custom-thumb-scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.custom-thumb-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
}
.custom-thumb-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
}
.custom-thumb-scroll::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}

/* ==========================================================================
   OMNIX STUDIO LIGHT LUXURY CASE STUDY SHOWCASE (WEBCROS INSPIRED)
   ========================================================================== */
.case-study-editorial {
  position: relative;
}

.case-study-pill {
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #334155;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F8F8F6;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.25s ease;
}

.case-study-pill:hover {
  color: #2563EB;
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

.case-study-step-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  transition: all 0.25s ease;
  opacity: 0.75;
}

.case-study-step-btn:hover {
  opacity: 1;
}

.case-study-step-btn.active {
  opacity: 1;
}

.case-study-step-btn .step-line {
  display: inline-block;
  width: 0px;
  height: 2px;
  background: #2563EB;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.case-study-step-btn.active .step-line {
  width: 18px;
}

.case-study-step-btn .step-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.case-study-step-btn.active .step-num {
  font-size: 14px;
  font-weight: 700;
  color: #2563EB;
}

.case-study-thumb-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #F8F8F6;
  aspect-ratio: 16 / 10;
  position: relative;
}

.case-study-thumb-item:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.25);
}

.case-study-thumb-item.active {
  border-color: #2563EB;
  opacity: 1;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   PAGE BANNER HERO ARCHITECTURE (STANDARDIZED 600PX HERO BANNER)
   ========================================================================== */
.page-banner-hero {
  position: relative;
  background-color: #07080A !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 600px !important;
  min-height: 600px !important;
  max-height: 600px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 5rem !important; /* Offset for fixed top navbar */
  padding-bottom: 2rem !important;
  box-sizing: border-box !important;
}

header.tech-grid {
  position: relative;
  height: 600px !important;
  min-height: 600px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .page-banner-hero {
    height: auto !important;
    min-height: 600px !important;
    max-height: none !important;
    padding-top: 6.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  header.tech-grid {
    height: auto !important;
    min-height: 600px !important;
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
  }
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.72;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.page-banner-hero:hover .page-banner-bg {
  transform: scale(1.03);
  opacity: 0.80;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.65) 0%, rgba(7, 8, 10, 0.40) 45%, rgba(7, 8, 10, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-banner-grid-overlay {
  display: none !important;
  background-image: none !important;
}

.hero-vignette-edges {
  display: none !important;
  box-shadow: none !important;
  background: none !important;
}

.page-banner-content {
  position: relative;
  z-index: 20 !important;
}

.page-banner-content h1 {
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.page-banner-content p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

/* ==========================================================================
   GLOBAL STICKY WHATSAPP FLOATING WIDGET
/* Sticky Floating Widget Dock (WhatsApp + Inquiry Form Popup) */
.tas-sticky-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tas-sticky-dock.tas-dock-tucked {
  opacity: 0.2;
  transform: translateX(20px) scale(0.92);
}

.tas-sticky-dock.tas-dock-tucked:hover,
.tas-sticky-dock:hover {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

.tas-sticky-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.tas-sticky-whatsapp-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.tas-sticky-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.55), 0 0 0 2px rgba(255, 255, 255, 0.35);
}

/* Floating Form Trigger Button */
.tas-sticky-form-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #FF3D10 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.tas-sticky-form-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.65), 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.tas-form-ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #37D6FD;
  border: 2px solid #0C0D0F;
}

.tas-form-ping-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #37D6FD;
  opacity: 0.8;
  animation: tasPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.tas-whatsapp-ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #0C0D0F;
}

.tas-whatsapp-ping-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #10B981;
  opacity: 0.75;
  animation: tasPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes tasPing {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.tas-sticky-btn-label {
  background: rgba(12, 13, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.tas-sticky-item:hover .tas-sticky-btn-label {
  opacity: 1;
  transform: translateX(0);
}

/* Consolidate sticky dock to single WhatsApp FAB to prevent choice paralysis & CTA collision (Issue 8) */
.tas-sticky-dock > button.tas-sticky-item {
  display: none !important;
}

@media (max-width: 640px) {
  .tas-sticky-dock {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .tas-sticky-whatsapp-btn,
  .tas-sticky-form-btn {
    width: 48px;
    height: 48px;
  }
  .tas-sticky-btn-label {
    display: none;
  }
}

/* Hide floating dock on desktop to reduce visual clutter and choice paralysis (Issue 8 & 9) */
@media (min-width: 641px) {
  .tas-sticky-dock {
    display: none !important;
  }
}

/* Standard Button Hierarchy System (Issue 4) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  background-color: #2563EB;
  color: #FFFFFF;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  background-color: #1D4ED8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background-color: transparent;
  color: #2563EB;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  background-color: rgba(37, 99, 235, 0.08);
  color: #1D4ED8;
}

/* Accessibility & Type Scale Safeguards (Issues 1, 6, 8) */
.text-\[10px\], .text-\[11px\] {
  font-size: 0.75rem !important; /* 12px minimum for readability */
  line-height: 1.35 !important;
}

/* ==========================================================================
   CINEMATIC EXPERIENCE ENGINE
   Quick name-only intro (wordmark fade), animated grain, scroll progress
   reel, title-card hero intro, and curtain-scene reveals. Every effect is a
   progressive enhancement: SEO-extracted content is never hidden, search
   bots & users on reduced motion always see the page instantly.
   ========================================================================== */

/* Opening screen removed */

/* --- Cinematic Film Grain Overlay ---------------------------------------- */
.film-grain {
  position: fixed;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  z-index: 999996;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: filmGrain 8s steps(10) infinite;
  will-change: transform;
}
@keyframes filmGrain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-4%, -7%); }
  20% { transform: translate(-8%, 3%); }
  30% { transform: translate(5%, -4%); }
  40% { transform: translate(-3%, 7%); }
  50% { transform: translate(-6%, 2%); }
  60% { transform: translate(7%, -5%); }
  70% { transform: translate(2%, 6%); }
  80% { transform: translate(-5%, -2%); }
  90% { transform: translate(4%, 4%); }
}

/* --- Cinematic Scroll Progress Reel (top-of-viewport film counter) ------- */
#cinema-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 99990;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, #2563EB, #37D6FD 55%, #2563EB);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.7), 0 0 30px rgba(37, 99, 235, 0.35);
  pointer-events: none;
}

/* --- Hero Title-Card Intro (masked lines, curtain rise) ------------------ */
.cine-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.cine-line-inner {
  display: block;
  will-change: transform;
}

/* Elements the hero intro staggers on load (JS sets the initial state only
   when GSAP is present, so content is always visible without JS) */
.hero-intro-item {
  will-change: transform, opacity;
}

/* --- Curtain Scene Reveals (subtle rise for section content shells) ------ */
.cinema-scene {
  will-change: transform, opacity;
}

/* Prevent film layers from ever intercepting pointer input */
#cinema-preloader, .film-grain, #cinema-progress {
  pointer-events: none !important;
  user-select: none;
}

/* ==========================================================================
   CINEMATIC DRIVER (JS-gated runtime layer)
   Only active when the Cinematic Experience Engine runs — never hides static
   content for no-JS / reduced-motion / bot users.
   ========================================================================== */

/* Butter the progress reel as native scroll jumps reach it */
#cinema-progress {
  transition: transform 0.12s linear;
}

/* --- Live film scene tab (bottom-left credit strip, desktop only) --------- */
#cinema-scene-tab {
  position: fixed;
  left: 24px;
  bottom: 22px;
  z-index: 99980;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(7, 8, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(244, 244, 242, 0.75);
  font-family: 'Space Grotesk', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#cinema-scene-tab::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563EB;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.9);
  flex-shrink: 0;
}
html.cinema-ready #cinema-scene-tab {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  #cinema-scene-tab { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  #cinema-scene-tab { display: none !important; }
}

/* ==========================================================================
   TRUSTED-BY SCROLLING HEADLINE BAND (infinite marquee)
   Big display marquee carrying "TRUSTED BY VISIONARY BUSINESSES" and the
   SERVING INDIA, UAE & USA accent line. Purely decorative text animation.
   ========================================================================== */
.tr-marquee-track {
  display: flex;
  width: max-content;
  animation: trMarqueeScroll 32s linear infinite;
  will-change: transform;
}
.tr-marquee-track:hover {
  animation-play-state: paused;
}
.tr-marquee-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 3rem;
}
.tr-phrase {
  font-family: var(--font-syne), 'Syne', sans-serif;
  font-size: clamp(1.6rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.92);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.6);
}
.tr-marquee-light .tr-phrase,
[data-theme="light"] .tr-phrase,
.section-light .tr-phrase {
  color: #0F172A;
  text-shadow: none;
}
.tr-accent {
  background: linear-gradient(90deg, #2563EB, #37D6FD 55%, #E0F2FE);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(37, 99, 235, 0.45));
}
.tr-marquee-light .tr-accent,
[data-theme="light"] .tr-accent,
.section-light .tr-accent {
  background: linear-gradient(90deg, #2563EB, #0284C7 60%, #0369A1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: none;
}
.tr-dot {
  flex-shrink: 0;
  width: 0.5em;
  height: 0.5em;
  margin: 0 1.6rem;
  border-radius: 999px;
  background: #37D6FD;
  box-shadow: 0 0 14px rgba(55, 214, 253, 0.8);
}
.tr-marquee-light .tr-dot,
[data-theme="light"] .tr-dot,
.section-light .tr-dot {
  background: #2563EB;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
}
@keyframes trMarqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .tr-marquee-group { padding-right: 2rem; }
  .tr-dot { margin: 0 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .tr-marquee-track { animation: none; }
  .tr-phrase { text-shadow: none; }
}

/* ==========================================================================
   MILD BIG BACKGROUND BRAND WATERMARK IN FOOTER
   Architectural brand typography placed in the background of the footer.
   Mild subtle opacity (3.8%) ensures zero conflict with foreground text/links.
   ========================================================================== */
.footer-watermark-wrap {
  position: absolute;
  inset-inline: 0;
  bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  z-index: 0;
  line-height: 1;
}

.footer-watermark-text {
  font-family: var(--font-syne), 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 7.8vw, 9.2rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.055);
  transform: none;
  will-change: transform;
}

#main-footer .footer-cta-btn {
  background-color: #FFFFFF !important;
  color: #07080A !important;
}

#main-footer .footer-cta-btn:hover {
  background-color: #2563EB !important;
  color: #FFFFFF !important;
}







/* ==========================================================================
   SUB-SERVICE CARD TAGS (Mobile vs Desktop Typography)
   Desktop: Crisp 11px font size.
   Mobile: Ultra-compact 0.40rem with single-line guarantee.
   ========================================================================== */
.sub-service-tag {
  font-size: 0.6875rem;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .sub-service-tag {
    font-size: 0.40rem !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
}
