@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:ital,wght@0,100..900;1,100..900&family=Outfit:wght@200;300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700&display=swap');

/* Brand Design Tokens & Variables (v9.3 Flame Coral & Serif Executive System) */
:root {
  --background: #040814;               /* Ultra-Deep Obsidian Canvas */
  --surface-deep: #080E1E;             /* Deep Slate Panel Canvas */
  --surface-card: rgba(22, 34, 59, 0.75); /* Velvet Midnight Navy Glass */
  --surface-card-hover: rgba(30, 46, 78, 0.88);
  --coral: #FF5A36;                    /* Official Flame Coral Emblem Accent */
  --flame-coral: #FF5A36;
  --terracotta: #E24A2B;               /* Shadow Depth Accent */
  --peach-coral: #FF8A70;              /* Warm Display Highlight */
  --midnight-navy: #16223B;            /* Structural Base */
  --electric-cyan: #38BDF8;            /* Secondary Tech Accent */
  --platinum-canvas: #F8FAFC;          /* Crisp Display Typography */
  --coral-dark: #E24A2B;
  --coral-glow: rgba(255, 90, 54, 0.35);
  --navy: #16223B;                     /* Executive Blazeway Navy */
  --azure: #38BDF8;                    /* Electric Azure Cyan */
  --azure-glow: rgba(56, 189, 248, 0.25);
  --amber: #F59E0B;                    /* Luminous Gold Amber */
  --emerald: #10B981;                  /* Verification Emerald Green */
  --blue-light: #94A3B8;               /* Muted Slate Highlight */
  --border-color: rgba(255, 255, 255, 0.12); /* Hairline Glass Border */
  --border-glow: rgba(255, 90, 54, 0.35);
  --white: #FFFFFF;
  --gray: #64748B;                     /* Slate Grey */
  --text-main: #FFFFFF;                /* Crisp White Display Headings */
  --text-muted: #CBD5E1;               /* High-Readability Slate Paragraphs */
  --text-light: #FFFFFF;
  --border-radius: 0.75rem;            /* Refined rounded corners (12px) */
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --shadow-tactile: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Base Reset & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  background-color: #040814;
  background: radial-gradient(circle at 50% 20%, rgba(16, 32, 95, 0.35) 0%, rgba(6, 12, 32, 0.75) 60%, #040814 100%), #040814;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0 !important;
}

/* Deep Executive Navy GPU Fluid Liquid Mesh Canvas visibility */
#webgl-interactive-bg {
  opacity: 0.45;
  transition: opacity 0.5s ease;
}

/* Fine Architectural Spatial Dot Grid Overlay (AI Studio Replica) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: -2;
  pointer-events: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.65;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--white);
}

.font-serif-elegant {
  font-family: var(--font-serif);
}

.text-flame-coral {
  color: var(--flame-coral);
}

.bg-flame-coral {
  background-color: var(--flame-coral);
}

.text-glow-coral {
  text-shadow: 0 0 30px rgba(255, 90, 54, 0.45);
}

.text-gradient-coral {
  background: linear-gradient(135deg, #FF5A36 0%, #FF8A70 50%, #E24A2B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Img 1 Uniform Hero Section Typography System */
.hero-architectural-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px dotted rgba(255, 255, 255, 0.45);
  padding-bottom: 14px;
  margin-bottom: 36px;
  font-family: monospace;
  font-size: 11px;
  color: var(--electric-cyan);
  position: relative;
  z-index: 15;
}

.hero-h1-img1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(28px, 3.4vw, 46px) !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
  background: linear-gradient(90deg, #FF5A36 0%, #FFFFFF 35%, #FFFFFF 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  position: relative;
  z-index: 15;
}

.hero-h2-img1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(20px, 2.4vw, 32px) !important;
  color: #38BDF8 !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.45) !important;
  text-align: left !important;
  margin-bottom: 24px !important;
  position: relative;
  z-index: 15;
}

.hero-p-img1 {
  font-size: 15px !important;
  color: #CBD5E1 !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
  text-align: left !important;
  margin: 0 !important;
  position: relative;
  z-index: 15;
}

.hero-desc-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1.5px dotted rgba(255, 255, 255, 0.45);
  padding-top: 24px;
  text-align: left;
  position: relative;
  z-index: 15;
}

/* Velvet Glass Card Utility Class */
.velvet-card {
  background: linear-gradient(135deg, rgba(22, 34, 59, 0.75) 0%, rgba(4, 8, 20, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.velvet-card:hover {
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 25px 60px rgba(4, 8, 20, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Founder Badge Assurance Note */
.founder-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.founder-badge-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--flame-coral);
}

/* Spatial Crosshair Markers */
.spatial-crosshair {
  display: none !important;
  position: absolute;
  font-family: monospace;
  font-size: 11px;
  color: rgba(56, 189, 248, 0.35);
  user-select: none;
  pointer-events: none;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-light {
  background: linear-gradient(135deg, #FFFFFF 40%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- TACTILE MIDNIGHT GLASS PRE-LAUNCH BADGE --- */
.badge-pill-prelaunch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 24px;
  background: rgba(14, 22, 38, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  z-index: 1;
}

.badge-pill-prelaunch:hover {
  border-color: rgba(246, 113, 96, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 20px rgba(246, 113, 96, 0.2);
  transform: translateY(-1px);
}

.prelaunch-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(226, 85, 67, 0.18);
  animation: pulse-coral 2.2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-coral {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 85, 67, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(226, 85, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 85, 67, 0);
  }
}

.prelaunch-bold {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1px;
}

/* Moving Electric Blue Border Beam */
.badge-pill-prelaunch::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 9999px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    rgba(0, 240, 255, 0.15) 0%,
    #00F0FF 25%,
    #38BDF8 38%,
    rgba(37, 99, 235, 0.5) 50%,
    rgba(0, 240, 255, 0.15) 75%,
    #00F0FF 90%,
    rgba(0, 240, 255, 0.15) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: drift-border-glow 5s linear infinite;
}

/* Atmospheric Outer Drifting Aura Blur */
.badge-pill-prelaunch::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%,
    rgba(0, 240, 255, 0.7) 25%,
    rgba(56, 189, 248, 0.9) 38%,
    transparent 50%,
    rgba(0, 240, 255, 0.7) 90%,
    transparent 100%
  );
  filter: blur(10px);
  opacity: 0.75;
  z-index: -1;
  pointer-events: none;
  animation: drift-border-glow 5s linear infinite;
}

@keyframes drift-border-glow {
  0% {
    --glow-angle: 0deg;
  }
  100% {
    --glow-angle: 360deg;
  }
}

.badge-pill-prelaunch:hover {
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.45), inset 0 0 18px rgba(0, 240, 255, 0.25);
}

.prelaunch-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00F0FF;
  box-shadow: 0 0 10px #00F0FF, 0 0 20px #00F0FF;
  animation: pulse-blue 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.8);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

.prelaunch-bold {
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1px;
}

/* Hero Capability Badges */
.capability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.capability-badge:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(246, 113, 96, 0.5);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* --- DOTTED HAIRLINE GRID & MOTION REVEAL ENGINE (ZAJNO EXACT REPLICA) --- */

.hairline-dotted-h {
  position: relative;
  width: 100%;
  height: 1px;
  border-bottom: 1.5px dotted rgba(255, 255, 255, 0.55);
  margin: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
}

.hairline-dotted-h::before {
  content: '';
  position: absolute;
  top: -12px;
  right: 0;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.7);
  border-top: 1.5px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.plus-marker-inline {
  position: absolute;
  top: -14px;
  left: -28px;
  font-size: 26px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  user-select: none;
  line-height: 1;
}

/* Sweep Horizontal Animation */
@keyframes line-sweep-horizontal {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.animate-line-sweep {
  animation: line-sweep-horizontal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Text Rise Up Mask Animation */
.mask-reveal-container {
  overflow: hidden;
  display: block;
}

@keyframes text-rise-up {
  0% {
    transform: translateY(105%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.mask-reveal-container > * {
  animation: text-rise-up 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Horizontal Text Drift Animation */
@keyframes text-drift-right {
  0% {
    transform: translateX(-35px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-text-drift {
  animation: text-drift-right 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Tier Plus-Sign Expansion Animation */
@keyframes plus-marker-expand {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.4) rotate(90deg);
  }
  100% {
    transform: scale(1) rotate(45deg);
  }
}

.tier-plus-marker {
  display: inline-block;
  font-size: 26px;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.hero-dock-card:hover .tier-plus-marker {
  transform: scale(1.3) rotate(90deg);
  color: var(--coral);
}

/* Ambient Lighting Helper Classes */
.ambient-glow-coral {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(246, 113, 96, 0.18) 0%, rgba(8, 12, 20, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-navy {
  position: absolute;
  bottom: 0%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 37, 66, 0.45) 0%, rgba(8, 12, 20, 0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

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

/* Glassmorphism Cards */
.glass-panel {
  background: var(--surface-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.glass-panel:hover {
  background: var(--surface-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--coral-glow);
  transform: translateY(-4px);
}

/* Header/Nav - Fluid Midnight Glass Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  transform: translateZ(9999px);
  will-change: transform;
  isolation: isolate;
  padding: 16px 0;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  background: rgba(8, 12, 20, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(246, 113, 96, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.nav-version-tag {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 14px;
  letter-spacing: 0.05em;
  user-select: none;
  display: inline-block;
  vertical-align: middle;
}

header.scrolled .nav-version-tag {
  color: rgba(255, 255, 255, 0.6);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wordmark {
  height: 48px;
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease, max-height 0.3s ease;
}

header.scrolled .logo-wordmark {
  height: 40px;
  max-height: 40px;
}

.logo-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.nav-logo-icon {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(246, 113, 96, 0.35));
  transition: transform 0.3s ease;
}

.logo-brand-link:hover .nav-logo-icon {
  transform: scale(1.08);
}

.logo-brand-link:hover {
  transform: translateY(-1px);
}

.logo-brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1;
  text-transform: uppercase;
}

.logo-brand-tagline {
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--flame-coral);
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-version-tag {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--electric-cyan);
  text-transform: uppercase;
}

.nav-menu-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-main);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link.active {
  color: #FFFFFF;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--flame-coral);
  border-radius: 2px;
}

.nav-btn {
  display: inline-flex;
  text-decoration: none;
  font-size: 14px;
}

/* Executive Swirling Electric Green-to-Amber Perimeter Glowing CTA Button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #34D399;
  padding: 14px 30px;
  border-radius: 9999px;
  background: rgba(4, 10, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6), inset 0 0 14px rgba(16, 185, 129, 0.15);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  isolation: isolate;
  z-index: 1;
}

.btn-primary i, .btn-primary svg {
  color: #34D399;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Swirling Perimeter Glow Frame */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  padding: 2px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    rgba(16, 185, 129, 0.2) 0%,
    #10B981 22%,
    #34D399 40%,
    #F59E0B 65%,
    #10B981 88%,
    rgba(16, 185, 129, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: drift-border-glow 4s linear infinite;
  z-index: -1;
}

/* Outer Atmospheric Glow Aura */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    rgba(16, 185, 129, 0.05) 0%,
    rgba(16, 185, 129, 0.45) 30%,
    rgba(245, 158, 11, 0.45) 65%,
    rgba(16, 185, 129, 0.05) 100%
  );
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -2;
  animation: drift-border-glow 4s linear infinite;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.btn-primary:hover {
  background: rgba(8, 20, 38, 0.95);
  color: #FFFFFF;
  border-color: rgba(52, 211, 153, 0.85);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75), 0 0 30px rgba(16, 185, 129, 0.5);
}

.btn-primary:hover i, .btn-primary:hover svg {
  color: #FFFFFF;
  transform: translateX(4px);
}

.btn-primary:hover::after {
  opacity: 0.95;
  filter: blur(14px);
}

.btn-secondary, .btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  padding: 12px 26px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover, .btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

/* Hero Deep Galaxy Background & Cosmic Depth Architecture */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0) 100%);
}

.hero-space-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.88;
  filter: contrast(1.2) brightness(0.95) saturate(1.15);
  z-index: 0;
  animation: galaxy-slow-drift 45s ease-in-out infinite alternate;
}

@keyframes galaxy-slow-drift {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-48%, -51%) scale(1.05) rotate(0.6deg);
  }
  100% {
    transform: translate(-51%, -49%) scale(1.08) rotate(-0.4deg);
  }
}

/* Galaxy Feathered Gradient Edge Masks (Ultra-Translucent Atmosphere — Reveals Full-Width Bright Image) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 65% 85% at 15% 50%, rgba(8, 12, 20, 0.65) 0%, rgba(8, 12, 20, 0.35) 55%, transparent 100%),
    linear-gradient(90deg, rgba(8, 12, 20, 0.55) 0%, rgba(8, 12, 20, 0.25) 45%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}

/* Neural Node Interactive Background Canvas Overlay (Absolute Positioned) */
#neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-bottom-fade {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8, 12, 20, 0.3) 40%, rgba(8, 12, 20, 0.7) 70%, transparent 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  z-index: 2;
}

.hero-immersive .hero-container-far-left,
.subpage-hero .container {
  position: relative;
  z-index: 3;
}

/* Hero Section - Immersive Design & Extreme Far-Left Alignment */
.hero-immersive {
  position: relative;
  background: transparent;
  padding-top: 150px;
  padding-bottom: 90px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

/* Extreme Far-Left Desktop Layout Container */
.hero-container-far-left {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.hero-immersive-content {
  max-width: 840px;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

.hero-line-single {
  display: block;
  white-space: nowrap;
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .hero-line-single {
    white-space: normal;
  }
}

/* Desktop Hero Full-Width Bottom Docked Cards Strip (Img 1 Layout) */
.hero-dock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  position: relative;
  z-index: 4;
}

.hero-dock-card {
  background: rgba(14, 22, 38, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 24px 28px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.hero-dock-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 113, 96, 0.5);
  background: rgba(22, 34, 58, 0.95);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.8), 0 0 25px rgba(246, 113, 96, 0.25);
}

.hero-dock-card .dock-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-dock-card .dock-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.hero-dock-card .dock-desc {
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.5;
}

/* Mobile 2x2 Quick Tile Dock (Img 1 Phone Layout) */
.hero-mobile-tile-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  width: 100%;
}

.hero-mobile-tile {
  background: rgba(14, 20, 34, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.hero-mobile-tile:active, .hero-mobile-tile:hover {
  background: rgba(22, 32, 54, 0.95);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.hero-mobile-tile i {
  color: var(--coral);
  width: 22px;
  height: 22px;
}

.hero-mobile-tile span {
  font-size: 11.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-immersive-card {
  max-width: 720px;
  padding: 48px;
  background: var(--surface-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glow);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--coral-glow);
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.text-gradient-light {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--coral) 80%, var(--azure) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: rgba(246, 113, 96, 0.12);
  border: 1px solid rgba(246, 113, 96, 0.4);
  border-radius: 8px;
  color: #F8FAFC;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
  z-index: 9999;
}

.mobile-nav-toggle:hover, .mobile-nav-toggle:active {
  background: rgba(246, 113, 96, 0.25);
  border-color: rgba(246, 113, 96, 0.8);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(246, 113, 96, 0.35);
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: #F8FAFC;
  stroke-width: 2.4px;
  display: block;
}

header.scrolled .mobile-nav-toggle {
  background: rgba(16, 37, 66, 0.15);
  border-color: rgba(16, 37, 66, 0.3);
  color: var(--navy);
}

header.scrolled .mobile-nav-toggle svg {
  stroke: var(--navy);
}

/* Mobile Nav Menu Overlay */
.mobile-nav-overlay, .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 80px 24px 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-overlay.open, .mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--coral);
}

.mobile-nav-btn {
  margin-top: 16px;
}

/* Problem Section Styles */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.problem-card {
  padding: 32px;
  border-radius: var(--border-radius);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--coral-glow);
  border-color: rgba(246, 113, 96, 0.35);
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.problem-card h3 svg {
  color: var(--coral);
  width: 20px;
  height: 20px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* How We Help Bridge Paragraph */
.bridge-section {
  background: var(--surface-deep);
  color: var(--text-muted);
  text-align: center;
}

.bridge-content {
  max-width: 800px;
  margin: 0 auto;
}

.bridge-content h2 {
  color: var(--text-main);
  font-size: 32px;
  margin-bottom: 24px;
}

.bridge-content p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}

/* Tools Section Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.tool-card {
  position: relative;
  padding: 24px;
  border-radius: 12px;
  background: rgba(11, 16, 28, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.22);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: visible;
}

/* Atmospheric Ambient Light Spill Backlight */
.tool-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--spill-color, rgba(246, 113, 96, 0.35)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
}

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

.tool-card:hover {
  transform: translateY(-6px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--spill-glow, rgba(246, 113, 96, 0.25));
  border-color: rgba(246, 113, 96, 0.5);
}

/* Interactive Visual Viewport inside Tool Showcase Cards */
.tool-viewport {
  width: 100%;
  height: 140px;
  background: #080C14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-viewport-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.viewport-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--coral);
  z-index: 2;
  backdrop-filter: blur(8px);
}

/* Micro-UI Viewport Mockups for Tool Cards */
.tool-viewport-ui {
  width: 100%;
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(100% 100% at 50% 0%, rgba(15, 23, 42, 0.95) 0%, #080C14 100%);
  position: relative;
  z-index: 1;
}

.vp-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vp-brief-prompt {
  background: rgba(246, 113, 96, 0.12);
  border: 1px solid rgba(246, 113, 96, 0.3);
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  color: #F8FAFC;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.vp-brief-beam {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
  animation: scanBeam 2s infinite linear;
  margin-top: 6px;
}

@keyframes scanBeam {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Sign Micro-UI */
.vp-sign-doc {
  background: rgba(16, 25, 46, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.vp-sign-svg {
  stroke: #10B981;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: signTrace 3s infinite ease-in-out;
}

@keyframes signTrace {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 0.3; }
}

/* Pulse Micro-UI */
.vp-pulse-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.vp-pulse-metrics {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #38BDF8;
}

.vp-pulse-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}

.vp-bar {
  flex: 1;
  background: linear-gradient(180deg, #38BDF8 0%, rgba(56, 189, 248, 0.25) 100%);
  border-radius: 2px 2px 0 0;
  animation: pulseBar 1.6s infinite ease-in-out alternate;
}

@keyframes pulseBar {
  0% { height: 25%; }
  100% { height: 95%; }
}

/* Circle Micro-UI */
.vp-circle-tenants {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.vp-tenant-chip {
  flex: 1;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Slots Micro-UI */
.vp-slots-grid {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.vp-slot-btn {
  flex: 1;
  padding: 6px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #A855F7;
}

.vp-slot-btn.active {
  background: #A855F7;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Pay Micro-UI */
.vp-pay-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 113, 96, 0.08);
  border: 1px solid rgba(246, 113, 96, 0.25);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  margin-top: auto;
}

.tool-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tool-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(246, 113, 96, 0.12);
  color: var(--coral);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(246, 113, 96, 0.25);
}

.tool-card-icon svg {
  width: 18px;
  height: 18px;
}

.tool-card h4 {
  font-size: 18px;
  margin: 0;
  color: #F8FAFC;
  font-weight: 700;
}

.tool-card p {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Services Grid & Cards */
.services-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--surface-deep) 100%);
  border-top: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
}

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

.service-card {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  background: rgba(16, 37, 66, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(246, 113, 96, 0.1);
  border-radius: var(--border-radius);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-action {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* Pricing Table Matrix */
.pricing-section {
  background: var(--background);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(16, 37, 66, 0.01);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.pricing-table th, .pricing-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  background-color: var(--surface-deep);
  color: var(--text-main);
  font-weight: 700;
  font-size: 15px;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background-color: rgba(16, 37, 66, 0.02);
}

.pricing-tier-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.pricing-tier-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--coral);
}

.pricing-tier-monthly {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Ingress Bot Split-Screen Interface */
.ingress-section {
  background: radial-gradient(100% 100% at 50% 100%, rgba(246,113,96,0.06) 0%, rgba(8,12,20,0) 80%);
}

.ingress-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

/* ── LEFT PANEL: Chat Interface ── */
.chat-interface {
  height: 540px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(246, 113, 96, 0.35);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-interface:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(246, 113, 96, 0.18), 0 8px 30px rgba(246, 113, 96, 0.18);
}

/* Tab Strip sits above the chat box */
.contact-tabs {
  display: flex;
  background: rgba(8, 12, 20, 0.9);
  border-bottom: 1px solid rgba(246, 113, 96, 0.18);
  padding: 6px 6px 0;
  gap: 4px;
  border-radius: 12px 12px 0 0;
}

.tab-btn {
  flex: 1;
  padding: 11px 14px 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 8px 8px 0 0;
  color: rgba(248, 250, 252, 0.45);
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  letter-spacing: 0.01em;
}

.tab-btn:hover:not(.active) {
  color: rgba(248, 250, 252, 0.9);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.tab-btn.active {
  color: #F8FAFC;
  border-bottom-color: var(--coral);
  background: rgba(246, 113, 96, 0.12);
  box-shadow: inset 0 1px 0 rgba(246, 113, 96, 0.35), 0 2px 10px rgba(246, 113, 96, 0.15);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Chat Header Bar */
.chat-header {
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 16, 28, 0.95);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 1.5s infinite;
}

.chat-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: 0.01em;
}

/* Messages Scroll Area */
.chat-messages {
  flex-grow: 1;
  padding: 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #0C1120;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 113, 96, 0.3) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(246, 113, 96, 0.35);
  border-radius: 4px;
}

/* Bot message: clearly anchored glass card */
.message {
  max-width: 88%;
  padding: 13px 17px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.6;
}

.message.bot {
  background: rgba(16, 25, 46, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.22);
  border-left: 3px solid var(--coral);
  color: #E2E8F4;
  align-self: flex-start;
  border-top-left-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

/* User message: solid coral, crisp white text */
.message.user {
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 55%, #E25543 100%);
  color: #fff;
  align-self: flex-end;
  border-top-right-radius: 2px;
  box-shadow: 0 4px 16px rgba(246, 113, 96, 0.4);
}

/* Chat Input Row */
.chat-input-area {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 20, 0.97);
}

.chat-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input, .form-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #F8FAFC;
  padding: 11px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
}

.chat-input::placeholder {
  color: rgba(248, 250, 252, 0.55);
}

.form-input::placeholder {
  color: rgba(248, 250, 252, 0.3);
}

.chat-input:focus, .form-input:focus {
  outline: none;
  border-color: rgba(246, 113, 96, 0.65);
  box-shadow: 0 0 0 3px rgba(246, 113, 96, 0.12), 0 0 20px rgba(246, 113, 96, 0.08);
  background: rgba(255, 255, 255, 0.09);
}

.btn-send {
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 100%);
  border: none;
  padding: 0 20px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(246, 113, 96, 0.45);
  flex-shrink: 0;
}

.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246, 113, 96, 0.6);
}

.btn-send svg {
  width: 17px;
  height: 17px;
  stroke: #FFFFFF;
}

/* ── RIGHT PANEL: Real-Time Requirements Summary ── */
.audit-preview {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #0D1424;
  border: 2px solid rgba(246, 113, 96, 0.35);
  border-radius: 12px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.audit-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(246, 113, 96, 0.18), 0 8px 30px rgba(246, 113, 96, 0.18);
}

.preview-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(246, 113, 96, 0.2);
}

.preview-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-row:last-of-type {
  border-bottom: none;
}

.preview-label {
  font-size: 13px;
  color: rgba(248, 250, 252, 0.5);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.preview-value {
  font-size: 13px;
  color: #F8FAFC;
  font-weight: 600;
  text-align: right;
  max-width: 58%;
}

.preview-value:empty::before {
  content: 'Pending…';
  color: rgba(248, 250, 252, 0.22);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
}

/* Compiled brief preview area */
.preview-brief {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 18px;
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  color: #A8B8D4;
  white-space: pre-wrap;
  height: 160px;
  overflow-y: auto;
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 113, 96, 0.25) transparent;
}

.preview-brief:empty::before {
  content: 'Scoping brief will be compiled here…';
  color: rgba(248, 250, 252, 0.18);
  font-family: var(--font-main);
  font-style: italic;
  font-size: 13px;
}

/* ── ATTACHMENT DROPZONE ── */
.attachment-zone {
  margin-top: 18px;
  border: 2px dashed rgba(246, 113, 96, 0.3);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.attachment-zone:hover,
.attachment-zone.drag-over {
  border-color: rgba(246, 113, 96, 0.7);
  background: rgba(246, 113, 96, 0.06);
}

.attachment-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.attachment-zone-icon {
  color: rgba(246, 113, 96, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attachment-zone-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.65);
  text-align: center;
  line-height: 1.4;
}

.attachment-zone-label span {
  color: var(--coral);
  font-weight: 700;
}

/* Security notice — mechanical monospace style */
.attachment-security-note {
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: 10.5px;
  color: rgba(248, 250, 252, 0.28);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.5;
  padding-top: 2px;
}

.attachment-security-note strong {
  color: rgba(246, 113, 96, 0.55);
  font-weight: 700;
}

/* Attached file chip */
.attachment-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 25, 46, 0.9);
  border: 1px solid rgba(246, 113, 96, 0.3);
  border-radius: 6px;
  padding: 9px 14px;
  margin-top: 10px;
  width: 100%;
}

.attachment-chip-icon {
  color: var(--coral);
  flex-shrink: 0;
}

.attachment-chip-info {
  flex-grow: 1;
  min-width: 0;
}

.attachment-chip-name {
  font-size: 13px;
  font-weight: 600;
  color: #F8FAFC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attachment-chip-size {
  font-size: 11px;
  color: rgba(248, 250, 252, 0.4);
  font-family: 'Courier New', monospace;
  margin-top: 1px;
}

.attachment-chip-remove {
  background: none;
  border: none;
  color: rgba(246, 113, 96, 0.6);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
  transition: color 0.18s ease;
  flex-shrink: 0;
}

.attachment-chip-remove:hover {
  color: var(--coral);
}

/* Inline error */
.attachment-error {
  font-size: 12px;
  color: #FF7B6B;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 6px 0 2px;
  animation: fadeInUp 0.2s ease;
}

/* Submit Button */
.btn-submit-brief {

  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(246, 113, 96, 0.35);
  color: rgba(246, 113, 96, 0.55);
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 14px;
  border-radius: 8px;
  cursor: not-allowed;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-submit-brief.active {
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 55%, #E25543 100%);
  border-color: transparent;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(246, 113, 96, 0.4);
}

.btn-submit-brief.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(246, 113, 96, 0.55);
}

/* Compiled brief monospace scroll */
.preview-brief::-webkit-scrollbar {
  width: 4px;
}
.preview-brief::-webkit-scrollbar-thumb {
  background: rgba(246, 113, 96, 0.3);
  border-radius: 4px;
}

/* Quick Message Form */
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.form-input, .form-textarea {
  background: rgba(11, 15, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #F8FAFC;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 14.5px;
  transition: all 0.25s ease-in-out;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(248, 250, 252, 0.55);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(246, 113, 96, 0.2), 0 0 20px rgba(246, 113, 96, 0.15);
  background: rgba(16, 22, 36, 0.98);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Scoping Requirements Multiselect Array Grid */
.scoping-array-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.scoping-category-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scoping-category-header {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 6px;
}

.scoping-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.scoping-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.scoping-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 113, 96, 0.4);
}

.scoping-tile input[type="checkbox"] {
  accent-color: var(--coral);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.scoping-tile-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.3;
}

.scoping-tile.selected {
  background: rgba(246, 113, 96, 0.12);
  border-color: rgba(246, 113, 96, 0.6);
  box-shadow: 0 0 12px rgba(246, 113, 96, 0.15);
}

.scoping-tile.selected .scoping-tile-label {
  color: #FFFFFF;
}

@media (max-width: 576px) {
  .scoping-tiles-grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Option layout */
.whatsapp-card {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.whatsapp-icon-wrapper {
  width: 72px;
  height: 72px;
  background: #25d366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  margin-bottom: 8px;
}

.whatsapp-icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.btn-whatsapp {
  background: #25d366;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Testimonial / Proof Layout */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
  padding-top: 28px !important;
}

.testimonial-card {
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
}

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

/* Dedicated Subpage Hero Architectures (Exo Ape Visual Diversity) */
.subpage-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 90px;
  min-height: 52vh;
  display: flex;
  align-items: center;
}

/* 1. Services Asymmetric Schematic Hero */
.hero-services-asymmetric {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.schematic-glass-card {
  padding: 32px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.35);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(246, 113, 96, 0.25);
  backdrop-filter: blur(20px);
}

.schematic-node-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.schematic-node-step:hover {
  border-color: rgba(246, 113, 96, 0.5);
  transform: translateX(6px);
  background: rgba(246, 113, 96, 0.1);
}

/* 2. Custom Work Obsidian Matrix Hero */
.hero-custom-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.matrix-window-card {
  background: rgba(8, 12, 20, 0.92);
  border: 1px solid rgba(96, 221, 246, 0.35);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(96, 221, 246, 0.25);
  overflow: hidden;
}

.matrix-window-header {
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: monospace;
  font-size: 12px;
  color: var(--text-muted);
}

/* 3. Proof Impact Data Visualization Hero */
.hero-proof-impact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.impact-chart-card {
  padding: 32px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(246, 113, 96, 0.3);
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

/* 4. About Exo Ape Display Typography Hero */
.hero-about-exo {
  text-align: left;
  max-width: 900px;
}

.exo-display-title {
  font-size: 58px !important;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Line Reveal Mask Utilities */
.mask-reveal-line {
  overflow: hidden;
  display: block;
}

.mask-reveal-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mask-reveal-line.revealed > span {
  transform: translateY(0%);
}

.subpage-services-hero {
  background-image: none !important;
  background: transparent !important;
}

.subpage-custom-hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.94) 0%, rgba(11, 15, 25, 0.85) 100%), url('assets/automation_hero_bg.png');
}

.subpage-about-hero {
  background-image: none;
}

.subpage-proof-hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 20, 0.94) 0%, rgba(11, 15, 25, 0.85) 100%), url('assets/seo_hero_bg.png');
}

.subpage-contact-hero {
  background-image: none;
}

.subpage-insights-hero {
  background-image: none;
}

.subpage-hero-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 48px;
  background: var(--surface-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glow);
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--coral-glow);
  width: 100%;
}

.subpage-hero-card h1 {
  font-size: 44px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.subpage-hero-card p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
  align-items: center;
}

.subpage-text h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.subpage-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.subpage-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--border-radius);
  filter: drop-shadow(0 15px 30px rgba(16, 37, 66, 0.08));
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(16, 37, 66, 0.01);
}

.process-step-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
}

/* Footer Section — Compact & Sleek Layout */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05080E;
  color: var(--text-muted);
  padding: 36px 0 20px 0;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}

.footer-brand h2 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 700;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 360px;
}

.footer-links h3 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F8FAFC;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(148, 163, 184, 0.75);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
}

.footer-engineered {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.footer-engineered-icon {
  height: 16px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Cookie Consent Banner Styling */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#cookie-banner.show {
  transform: translateY(0);
}

#cookie-banner p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

#cookie-banner a {
  color: var(--coral);
  text-decoration: underline;
}

#cookie-banner a:hover {
  color: var(--white);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn-accept {
  flex: 1;
  background-color: var(--coral);
  color: var(--text-light);
  border: none;
  padding: 10px;
  border-radius: var(--border-radius);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  text-align: center;
}

.cookie-btn-accept:hover {
  background-color: var(--white);
  color: var(--surface-deep);
}

/* Keyframes & Animations */
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Typing Indicator Bouncing Dots */
.typing-indicator-bubble {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border-radius: 50%;
  display: inline-block;
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing-bounce {
  0%, 80%, 100% { 
    transform: scale(0.6);
    opacity: 0.4;
  } 
  40% { 
    transform: scale(1.2);
    opacity: 1;
  }
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF !important;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover {
  background: var(--coral) !important;
  border-color: var(--coral) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(246, 113, 96, 0.45);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF !important;
}

/* --- RSC CASE STUDY HOVER LIGHTING & GALLERY STYLES --- */
.rsc-impact-card {
  background: rgba(16, 37, 66, 0.45);
  border: 1px solid rgba(246, 113, 96, 0.25);
  padding: 22px 20px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.rsc-impact-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--coral) !important;
  background: rgba(24, 52, 90, 0.85) !important;
  box-shadow: 0 16px 36px rgba(246, 113, 96, 0.3), 0 0 25px rgba(246, 113, 96, 0.2) !important;
}

.rsc-gallery-tab {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.7);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rsc-gallery-tab:hover,
.rsc-gallery-tab.active {
  background: rgba(246, 113, 96, 0.18);
  border-color: var(--coral);
  color: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 1250px) {
  /* Breakpoint for dense menu collapsing to hamburger */
  .nav-menu-container {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
}

@media (max-width: 992px) {
  .hero-title { font-size: 38px !important; }
  .hero-immersive { min-height: auto; padding-top: 140px; padding-bottom: 80px; }
  .hero-immersive-card { padding: 32px; }
  .problem-grid { grid-template-columns: 1fr; gap: 20px; }
  .ingress-split { grid-template-columns: 1fr; gap: 32px; }
  .chat-interface { height: 450px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .subpage-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .subpage-hero { padding-top: 140px; padding-bottom: 60px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 48px 0; }
  .pricing-table-wrapper { margin-top: 24px; }
  .process-flow { gap: 16px; }
}

@media (max-width: 576px) {
  .hero-immersive-card .hero-title { font-size: 32px !important; }
  .hero-immersive-card .hero-description { font-size: 16px; }
  .section-title { font-size: 26px; }
  .service-card { padding: 24px; }
  .subpage-hero-card h1 { font-size: 30px !important; }
  .subpage-hero-card p { font-size: 15px; }
  #cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 16px; }
}

/* Founder Badge Hover Shift Effect */
.founder-badge {
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, background-color 0.3s ease !important;
}

.founder-badge:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 6px 12px var(--coral-glow);
  background-color: var(--coral) !important;
  color: var(--white) !important;
}

/* Card Hover Shift Effects */
.problem-card, 
.tool-card, 
.service-card, 
.testimonial-card, 
.whatsapp-card {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.problem-card:hover, 
.tool-card:hover, 
.service-card:hover, 
.testimonial-card:hover, 
.whatsapp-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 24px var(--coral-glow) !important;
  border-color: rgba(246, 113, 96, 0.35) !important;
}

/* Floating Background Blur Blobs */
.bg-blur-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -2; /* Under WebGL canvas but above base background */
  opacity: 0.12; /* Soft pastel watercolor wash */
  mix-blend-mode: normal;
  will-change: transform;
}

.bg-blob-orange {
  background: radial-gradient(circle, rgba(246, 113, 96, 0.6) 0%, rgba(246, 113, 96, 0) 70%);
  width: 1000px;
  height: 1000px;
}

.bg-blob-amber {
  background: radial-gradient(circle, rgba(255, 163, 90, 0.5) 0%, rgba(255, 163, 90, 0) 70%);
  width: 850px;
  height: 850px;
}

.bg-blob-teal {
  background: radial-gradient(circle, rgba(163, 184, 204, 0.6) 0%, rgba(163, 184, 204, 0) 70%);
  width: 600px;
  height: 600px;
}

@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 60px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatBlob3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Range Slider Styling for Revenue Calculator */
.calculator-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transition: background 0.3s ease;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7B6B 0%, #F67160 100%);
  border: 2px solid #FFFFFF;
  cursor: pointer;
  box-shadow: 0 0 12px var(--coral-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 0 22px var(--coral-glow);
}


.active-toggle {
  background: rgba(246, 113, 96, 0.22) !important;
  border-color: rgba(246, 113, 96, 0.6) !important;
  color: #FFFFFF !important;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — NEW PRICING ARCHITECTURE (v5.7)
═══════════════════════════════════════════════════════════ */

/* Outcome Pillars */
.outcome-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.outcome-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  flex: 1;
  min-width: 160px;
}

.outcome-pillar:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(246,113,96,0.4);
  transform: translateY(-2px);
}

.outcome-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-pillar-icon svg {
  width: 18px;
  height: 18px;
}

.outcome-pillar-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.2;
}

.outcome-pillar-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: monospace;
}

/* ── Tier Cards Grid ── */
.pricing-cards-section {
  background: #070B13;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(11, 17, 30, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.pricing-card:hover {
  border-color: rgba(246,113,96,0.5);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 25px rgba(246,113,96,0.15);
}

.pricing-card-featured {
  border-color: rgba(255,163,90,0.55);
  background: linear-gradient(180deg, rgba(30, 20, 35, 0.92) 0%, rgba(11, 17, 30, 0.94) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(255,163,90,0.3), 0 20px 60px rgba(0,0,0,0.7);
  transform: scale(1.02);
}

.pricing-card-featured:hover {
  border-color: rgba(255,163,90,0.85);
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 0 30px rgba(255,163,90,0.25), 0 24px 64px rgba(0,0,0,0.7);
}

.pricing-card-command {
  border-color: rgba(96,221,246,0.35);
  background: linear-gradient(180deg, rgba(10, 24, 42, 0.92) 0%, rgba(11, 17, 30, 0.94) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pricing-card-command:hover {
  border-color: rgba(96,221,246,0.65);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 30px rgba(96,221,246,0.15);
}

.pricing-card-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FFA35A, #F67160);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 18px;
  border-radius: 0 0 10px 10px;
}

.pricing-card-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid;
  margin-bottom: 14px;
}

.pricing-card-name {
  font-size: 26px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 6px;
  line-height: 1.1;
}

.pricing-card-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.45;
}

.pricing-card-price-block {
  margin-top: 16px;
}

.pricing-card-price {
  font-size: 15px;
  color: rgba(248,250,252,0.6);
  font-weight: 500;
}

.pricing-card-price span {
  font-size: 32px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.03em;
}

.pricing-card-monthly {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.pricing-card-tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-tool-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248,250,252,0.45);
}

.pricing-tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: default;
}

.tool-chip:hover {
  transform: translateY(-2.5px) scale(1.05);
  box-shadow: 0 6px 16px rgba(246, 113, 96, 0.25);
}

.tool-chip svg {
  width: 10px;
  height: 10px;
}

.tool-chip-active {
  background: rgba(246,113,96,0.12);
  border-color: rgba(246,113,96,0.35);
  color: #F89B8D;
}

.tool-chip-active:hover {
  border-color: rgba(246, 113, 96, 0.65);
  background: rgba(246, 113, 96, 0.22);
  box-shadow: 0 6px 18px rgba(246, 113, 96, 0.35);
}

.tool-chip-locked {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: rgba(148,163,184,0.5);
}

.tool-chip-locked:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}

/* Electric Green Framed Service Pills */
.tool-chip-electric-green,
.tool-chip-green {
  background: rgba(16, 185, 129, 0.08);
  border: 1px dashed rgba(16, 185, 129, 0.4);
  border-style: solid;
  border-color: #10B981;
  color: #34D399;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.18);
}

.tool-chip-electric-green:hover,
.tool-chip-green:hover {
  background: rgba(16, 185, 129, 0.22);
  border-color: #34D399;
  color: #A7F3D0;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.45);
  transform: translateY(-2.5px) scale(1.05);
}

.alacarte-card,
.standalone-tool-card {
  scroll-margin-top: 130px;
}

.pricing-card-compound {
  border: 1px solid rgba(96,221,246,0.25);
  border-radius: 10px;
  padding: 14px;
  background: rgba(96,221,246,0.05);
}

.pricing-card-ideal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(148,163,184,0.8);
}

.pricing-card-ideal svg {
  width: 15px;
  height: 15px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 14px;
  padding: 13px 20px;
}

.pricing-card-cta-cyan {
  border-color: rgba(96,221,246,0.4);
  color: #60DDF6;
}

.pricing-card-cta-cyan:hover {
  background: rgba(96,221,246,0.1);
  border-color: rgba(96,221,246,0.7);
  color: #60DDF6;
}

.pricing-policy-note {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-policy-note svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-policy-note strong {
  color: #F8FAFC;
}

/* ── Standalone Tools Section ── */
.standalone-tools-section {
  background: #05080E;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.standalone-tools-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.standalone-tools-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.standalone-discount-stack {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.standalone-discount-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.2s ease;
}

.standalone-discount-row:hover {
  border-color: rgba(246,113,96,0.3);
}

.standalone-discount-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--coral);
  background: rgba(246,113,96,0.12);
  border: 1px solid rgba(246,113,96,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.standalone-discount-badge-full {
  color: #34D399;
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.3);
}

.standalone-discount-text {
  font-size: 14px;
  color: var(--text-muted);
}

.standalone-discount-text strong {
  color: #F8FAFC;
}

.standalone-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.standalone-tool-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.standalone-tool-card:hover {
  border-color: rgba(246,113,96,0.3);
  transform: translateY(-2px);
}

.standalone-tool-icon {
  margin-bottom: 10px;
}

.standalone-tool-icon svg {
  width: 22px;
  height: 22px;
}

.standalone-tool-name {
  font-size: 14px;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 4px;
}

.standalone-tool-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.standalone-tool-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  font-family: monospace;
}

/* ── À La Carte Section ── */
.alacarte-section {
  background: #070B13;
}

.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.alacarte-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(11, 17, 30, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.alacarte-card:hover {
  border-color: rgba(246, 113, 96, 0.45);
  background: rgba(15, 22, 38, 0.96);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(246, 113, 96, 0.15);
}

.alacarte-card-cta {
  border-color: rgba(246, 113, 96, 0.35);
  background: rgba(18, 17, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.alacarte-icon svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.alacarte-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.2;
}

.alacarte-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.alacarte-from {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  font-family: monospace;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Innovation Pipeline ── */
.pipeline-section {
  background: #05080E;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.pipeline-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(11, 17, 30, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.pipeline-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.pipeline-card-cta-card {
  border-color: rgba(246,113,96,0.25);
  background: rgba(246,113,96,0.04);
}

.pipeline-status {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid;
  display: inline-block;
  width: fit-content;
}

.pipeline-status-beta {
  color: #34D399;
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.3);
}

.pipeline-status-dev {
  color: #FFA35A;
  background: rgba(255,163,90,0.08);
  border-color: rgba(255,163,90,0.3);
}

.pipeline-status-proto {
  color: #A78BFA;
  background: rgba(167,139,250,0.08);
  border-color: rgba(167,139,250,0.3);
}

.pipeline-status-client {
  color: #F43F5E;
  background: rgba(244,63,94,0.1);
  border-color: rgba(244,63,94,0.4);
}

.pipeline-status-roadmap {
  color: #60DDF6;
  background: rgba(96,221,246,0.08);
  border-color: rgba(96,221,246,0.3);
}

.pipeline-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
}

.pipeline-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.2;
}

.pipeline-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Responsive Breakpoints for new sections ── */
@media (max-width: 1100px) {
  .pricing-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .alacarte-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Convert vertical stacking grids to horizontal scroll strips */
  .standalone-tools-grid,
  .alacarte-grid,
  .pipeline-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding-bottom: 12px !important;
    scrollbar-width: none !important;
    grid-template-columns: unset !important;
  }

  .standalone-tools-grid::-webkit-scrollbar,
  .alacarte-grid::-webkit-scrollbar,
  .pipeline-grid::-webkit-scrollbar {
    display: none !important;
  }

  .standalone-tools-grid > *,
  .alacarte-grid > *,
  .pipeline-grid > * {
    flex: 0 0 80% !important;
    min-width: 260px !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
  }

  .standalone-tools-layout { gap: 40px; }
  .outcome-pillars { flex-direction: column; }
  .badge-pill-prelaunch {
    flex-wrap: wrap;
    padding: 10px 16px;
    font-size: 12.5px;
    justify-content: center;
    text-align: center;
  }
  .prelaunch-sep {
    display: none;
  }
}

/* ── Mobile-First Responsive Overhaul & Fluid Typography (v8.3) ── */
.hero-title-responsive {
  font-size: clamp(2rem, 6.5vw, 3.5rem) !important;
  line-height: 1.15;
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-title-responsive {
  font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
  line-height: 1.25;
  word-break: break-word;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
}

.table-responsive table {
  min-width: 600px;
}

@media (max-width: 576px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .container {
    padding: 0 16px !important;
  }

  .hero-immersive {
    padding-top: 130px !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
  }

  .subpage-hero {
    padding-top: 130px !important;
    padding-bottom: 50px !important;
  }

  .hero-immersive-card,
  .subpage-hero-card,
  .glass-panel,
  .service-card,
  .problem-card,
  .testimonial-card,
  .pricing-card,
  .whatsapp-card,
  .tool-card {
    padding: 20px 16px !important;
    border-radius: 12px !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }

  .capability-badge {
    font-size: 12.5px !important;
    padding: 6px 12px !important;
  }

  .chat-interface {
    height: auto !important;
    min-height: 380px !important;
    max-height: 70vh !important;
  }

  .code-matrix-container, pre, code {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

/* Responsive Breakpoint Switch for Hero Dock vs Mobile Tiles */
@media (max-width: 992px) {
  .hero-dock-grid {
    display: none !important;
  }
  .hero-mobile-tile-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 28px !important;
    width: 100% !important;
  }
}

  .hero-container-far-left {
    padding: 0 16px !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    box-sizing: border-box !important;
  }

  .badge-pill-prelaunch {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    padding: 10px 14px !important;
  }

  .prelaunch-sub {
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Prevent text overflowing in cards */
  .problem-card h3, .service-card h3, .pricing-card h3 {
    font-size: 18px !important;
    word-break: break-word;
  }

  .problem-card p, .service-card p, .pricing-card p {
    font-size: 14px !important;
  }

  /* Ensure footer links stack nicely */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Fix cookie banner width on mobile */
  #cookie-banner {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    padding: 16px !important;
  }

  #cookie-banner div {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  #cookie-banner button {
    width: 100% !important;
    margin-top: 10px !important;
  }
}

/* ── Subpage Hero Unframed Left-Aligned Unraveling Motion (v10.0) ── */
@keyframes text-drift-right {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.subpage-hero {
  background: transparent !important;
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
}

.subpage-hero .container > div,
.subpage-hero-card,
.hero-custom-matrix {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  max-width: 880px !important;
}

.subpage-hero h1,
.subpage-hero h2,
.subpage-hero h3,
.subpage-hero p,
.subpage-hero .badge-pill,
.subpage-hero .hero-description,
.subpage-hero .hero-cta-group,
.subpage-hero .outcome-pillars {
  text-align: left !important;
  margin-left: 0 !important;
  animation: text-drift-right 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.subpage-hero .outcome-pillars {
  justify-content: flex-start !important;
}

/* ═══════════════════════════════════════════════════════════ */
/* High-Contrast Black & White Social Buttons with Tooltip     */
/* ═══════════════════════════════════════════════════════════ */
.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #080E1E !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5) !important;
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF !important;
  fill: none;
  transition: all 0.3s ease;
}

.social-icon-btn.fill-svg svg {
  fill: #FFFFFF !important;
  stroke: none !important;
}

.social-icon-btn:hover {
  background: #FF5A36 !important;
  color: #FFFFFF !important;
  border-color: #FF5A36 !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 8px 25px rgba(255, 90, 54, 0.5) !important;
}

.social-icon-btn:hover svg {
  stroke: #FFFFFF !important;
}

.social-icon-btn.fill-svg:hover svg {
  fill: #FFFFFF !important;
}

.social-tooltip-wrapper {
  position: relative !important;
  display: inline-flex !important;
}

.social-tooltip {
  position: absolute !important;
  bottom: calc(100% + 10px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(6px) !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  background: rgba(8, 14, 28, 0.95) !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  color: #FFFFFF !important;
  font-family: monospace, sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8) !important;
  z-index: 999 !important;
}

.social-tooltip::after {
  content: '' !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 5px !important;
  border-style: solid !important;
  border-color: rgba(56, 189, 248, 0.4) transparent transparent transparent !important;
}

.social-tooltip-wrapper:hover .social-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* ═══════════════════════════════════════════════════════════ */
/* Dynamic Atmosphere Engine Styles (Bing / NASA / Unsplash)    */
/* Hero Dynamic Atmosphere Background & Black Blend Layer Engine */
/* Home Page Fixed Atmosphere (100% Clean Hero & 30% Continuous Translucent Glass Parallax) */
.hero-fixed-bg-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: -1 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: background-image 0.8s ease-in-out;
}

.hero-fixed-bg-wrapper video,
.hero-bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  filter: none !important;
  transition: opacity 0.5s ease !important;
}

/* NO Overlay on Hero Background - Clean Pristine Imagery */
.hero-fixed-bg-wrapper::after {
  display: none !important;
}

/* Post-Footer Atmospheric Relaxation Section (Full Viewport View of Pristine Bright Artwork) */
.post-footer-relax-section {
  min-height: 100vh !important;
  width: 100% !important;
  position: relative !important;
  z-index: 5 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 60px 24px 100px !important;
  pointer-events: none !important;
}

.hero-dynamic-atmosphere {
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
}

.hero-section h1,
.hero-section h2,
.hero-section p {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}

.hero-section .container {
  position: relative !important;
  z-index: 10 !important;
}

/* 30% Translucent Section Backdrops for Continuous Background Visibility */
.section-translucent-glass {
  background: rgba(4, 8, 20, 0.30) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  position: relative !important;
  z-index: 5 !important;
  border-top: none !important;
}

/* Video Showcase 4-Card Responsive Grid (3 on Row 1, Card 4 Centered on Row 2) */
.video-showcase-grid-container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 32px !important;
}

.video-showcase-grid-container > .video-frame-card {
  flex: 1 1 350px !important;
  max-width: 400px !important;
  width: 100% !important;
}

.video-frame-card,
.velvet-card,
.bento-card,
.pricing-card {
  background: rgba(8, 14, 28, 0.55) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Black Blend Layer & Protective Contrast Shield (Positioned BEHIND all hero content at z-index: 1) */
.hero-dynamic-atmosphere::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: 
    radial-gradient(ellipse 65% 85% at 15% 50%, rgba(4, 8, 20, 0.45) 0%, rgba(4, 8, 20, 0.20) 50%, transparent 100%),
    linear-gradient(90deg, rgba(4, 8, 20, 0.40) 0%, rgba(4, 8, 20, 0.16) 40%, transparent 75%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

#tools-hero-video {
  top: -5% !important;
  left: 0 !important;
  width: 100% !important;
  height: 110% !important;
  object-fit: cover !important;
}

/* Tools Hero Mobile Background Image Engine (<768px: Displays Img 1) */
.hero-bg-mobile-img {
  display: none !important;
}

@media (max-width: 768px) {
  #tools-hero-video {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
    pointer-events: none !important;
    opacity: 1 !important;
  }

  #tools-hero-mobile-img {
    display: none !important;
  }

  /* Tools Hero Mobile Typography Customizations */
  .hero-tools-subbar .subbar-part1 {
    color: var(--flame-coral) !important;
  }
  .hero-tools-subbar .subbar-part2 {
    color: #FFFFFF !important;
  }
  .hero-tools-h2 {
    color: #FFFFFF !important;
  }
  .hero-tools-p {
    color: #FFFFFF !important;
  }
  .hero-tools-nextgen-span {
    color: var(--flame-coral) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }
}

/* Tools Hero Text Baseline Customizations */
.hero-tools-h2 {
  color: #16223B;
}

.hero-tools-nextgen-span {
  color: #16223B;
  font-weight: 700;
  text-decoration: underline;
}

.hero-tools-p {
  color: #16223B;
  font-weight: 700;
}

/* Contact Page Hero Video Styling */
#contact-hero-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  transition: opacity 0.8s ease-in-out !important;
}

/* Insights Page Hero Video Styling */
#insights-hero-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  transition: opacity 0.8s ease-in-out !important;
}

/* Custom Work Page Hero Video Styling (Universal) */
#custom-hero-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  transition: opacity 0.8s ease-in-out !important;
}

/* Services Page Hero Video Styling (Laptop/Desktop vs Mobile) */
@media (min-width: 769px) {
  #services-hero-desktop-video {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transition: opacity 0.8s ease-in-out !important;
  }
  #services-hero-mobile-video {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #services-hero-desktop-video {
    display: none !important;
  }
  #services-hero-mobile-video {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transition: opacity 0.8s ease-in-out !important;
  }
}

/* Tools Hero Text Color Customizations */
.text-navy-blue {
  color: #16223B !important;
}

.text-dark-coral {
  color: #E24A2B !important;
  background: none !important;
  -webkit-text-fill-color: #E24A2B !important;
}

/* Universal Black Underside Blend Overlay (Fades hero image/video underside down into deep black page body across ALL pages) */
.hero-dynamic-atmosphere::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 250px !important;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, rgba(4, 8, 20, 0.45) 30%, rgba(4, 8, 20, 0.88) 65%, #040814 100%) !important;
  pointer-events: none !important;
  z-index: 4 !important;
}

/* Remove black underside blend overlay when .hero-no-bottom-blend class is present */
.hero-dynamic-atmosphere.hero-no-bottom-blend::after {
  display: none !important;
  content: none !important;
}

/* Hero Content Stack (Text, Headings, Paragraphs, Cards, Badges & Telemetry Chip sit ABOVE at z-index: 10) */
.hero-dynamic-atmosphere > *,
.hero-dynamic-atmosphere .container,
.atmosphere-telemetry-chip {
  position: relative;
  z-index: 10 !important;
}

/* Far-Left Text Alignment & Stage Formatting */
.hero-dynamic-atmosphere .container {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}

/* Text Rise-Up Animation Engine on Page Landing */
.hero-dynamic-atmosphere .hero-h1-img1,
.hero-dynamic-atmosphere .hero-h2-img1,
.hero-dynamic-atmosphere .hero-p-img1,
.hero-dynamic-atmosphere .exo-display-title,
.hero-dynamic-atmosphere .hero-architectural-bar,
.hero-dynamic-atmosphere .outcome-pillars,
.hero-dynamic-atmosphere h1,
.hero-dynamic-atmosphere h2,
.hero-dynamic-atmosphere p {
  animation: hero-text-rise-up 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hero-text-rise-up {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Telemetry Chip UI (Home Page Only — Positioned centered above Cheetah video stage) */
.atmosphere-telemetry-chip {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: rgba(4, 8, 20, 0.92) !important;
  border: 1.5px solid rgba(56, 189, 248, 0.4) !important;
  border-radius: 9999px !important;
  padding: 8px 16px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(56, 189, 248, 0.2) !important;
  z-index: 20 !important;
  font-family: var(--font-main, sans-serif) !important;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
  margin: 0 auto !important;
}

.atmosphere-telemetry-chip:hover {
  border-color: rgba(56, 189, 248, 0.6) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(56, 189, 248, 0.3) !important;
}

/* Custom Pop-Up Tooltip for NASA Control Chip on Hover */
.atmosphere-btn[data-source="nasa"] {
  position: relative !important;
}

.atmosphere-btn[data-source="nasa"]::after {
  content: "Be patient, NASA is rather slow";
  position: absolute !important;
  bottom: calc(100% + 10px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(4px) !important;
  background: rgba(4, 8, 20, 0.96) !important;
  color: #38BDF8 !important;
  border: 1px solid rgba(56, 189, 248, 0.45) !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
  font-family: monospace !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(56, 189, 248, 0.3) !important;
  z-index: 999 !important;
}

.atmosphere-btn[data-source="nasa"]:hover::after {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* Panel Title Label */
.atmosphere-panel-title {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  color: #38BDF8 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.atmosphere-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #FF5A36 !important;
  box-shadow: 0 0 8px #FF5A36 !important;
  display: inline-block !important;
}

.atmosphere-chip-controls {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}

.atmosphere-btn {
  background: #000000 !important;
  border: 1.5px solid #38BDF8 !important;
  color: #CBD5E1 !important;
  font-family: monospace !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  padding: 5px 14px !important;
  border-radius: 9999px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}

.atmosphere-btn:hover {
  background: rgba(56, 189, 248, 0.15) !important;
  color: #FFFFFF !important;
  border-color: #38BDF8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3) !important;
}

.atmosphere-btn.active {
  background: rgba(56, 189, 248, 0.25) !important;
  border: 1.5px solid #38BDF8 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.65) !important;
}

/* Mobile Responsive Optimization (<768px): Red dot + ATMOSPHERE on top, 4 pills on 2nd line below */
@media (max-width: 768px) {
  .atmosphere-telemetry-chip {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    border-radius: 18px !important;
    padding: 12px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .atmosphere-panel-title {
    margin-right: 0 !important;
    font-size: 11px !important;
  }

  .atmosphere-chip-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    width: 100% !important;
    flex-wrap: wrap !important;
  }

  .atmosphere-btn {
    flex: 1 1 auto !important;
    text-align: center !important;
    padding: 6px 10px !important;
    font-size: 10px !important;
  }
}

/* SeaRM CRM Horizontal Centering on 3-Column Grid */
@media (min-width: 992px) {
  #searm-crm {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: 100% !important;
    max-width: 380px !important;
  }
}

/* Welding Spark Runner Animation along Hero Architectural Hairline */
.welding-spark-runner {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 16px;
  height: 4px;
  box-shadow: 
    0 0 10px #00F0FF,
    0 0 20px #38BDF8,
    0 0 30px rgba(56, 189, 248, 0.85);
  pointer-events: none;
  z-index: 10;
  animation: welding-spark-sweep 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes welding-spark-sweep {
  0% {
    left: 0%;
    opacity: 0;
    transform: scaleX(0.4);
  }
  10% {
    opacity: 1;
    transform: scaleX(1.3);
  }
  85% {
    opacity: 1;
    transform: scaleX(1.3);
  }
  98% {
    left: 96%;
    opacity: 0.8;
    transform: scaleX(0.5);
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ==========================================================================
   FLOATING GLASS DOCK (PERMANENT DESKTOP & MOBILE DOCK)
   ========================================================================== */

.floating-dock-wrapper {
  display: none !important;
}

.floating-dock-wrapper:hover {
  border-color: rgba(255, 90, 54, 0.6) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 90, 54, 0.35) !important;
}

.floating-dock-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  padding: 8px 14px !important;
  border-radius: 9999px !important;
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-family: var(--font-main, sans-serif) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
  position: relative !important;
  white-space: nowrap !important;
}

.floating-dock-item svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #94A3B8 !important;
  transition: all 0.25s ease !important;
}

.floating-dock-item:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-2px) scale(1.05) !important;
}

.floating-dock-item:hover svg {
  stroke: var(--flame-coral, #FF5A36) !important;
}

/* Active Page Indicator for Floating Dock (Bright Electric Orange Underline + Flame Coral Glow) */
.floating-dock-item.active {
  color: #FF5A36 !important;
  background: rgba(255, 90, 54, 0.22) !important;
  border: 1px solid rgba(255, 90, 54, 0.7) !important;
  box-shadow: 0 0 20px rgba(255, 90, 54, 0.55), inset 0 0 10px rgba(255, 90, 54, 0.3) !important;
  transform: translateY(-2px) !important;
  font-weight: 700 !important;
}

/* Bright Electric Orange Underline Line directly below active tab icon/text */
.floating-dock-item.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 15% !important;
  width: 70% !important;
  height: 3px !important;
  background: #FF5A36 !important; /* Bright Electric Flame Coral / Orange */
  border-radius: 99px !important;
  box-shadow: 0 0 10px #FF5A36, 0 0 18px #FF5A36 !important;
  z-index: 10 !important;
}

.floating-dock-item.active svg {
  color: #FF5A36 !important;
  stroke: #FF5A36 !important;
  filter: drop-shadow(0 0 10px rgba(255, 90, 54, 0.95)) !important;
}

.floating-dock-item.active span {
  color: #FF5A36 !important;
  font-weight: 700 !important;
  text-shadow: 0 0 10px rgba(255, 90, 54, 0.7) !important;
}

.floating-dock-cta {
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.3) 0%, rgba(255, 90, 54, 0.15) 100%) !important;
  border: 1px solid rgba(255, 90, 54, 0.5) !important;
  color: var(--flame-coral, #FF5A36) !important;
}

.floating-dock-cta svg {
  stroke: var(--flame-coral, #FF5A36) !important;
}

.floating-dock-cta:hover {
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.45) 0%, rgba(255, 90, 54, 0.25) 100%) !important;
  border-color: var(--flame-coral, #FF5A36) !important;
  box-shadow: 0 0 20px rgba(255, 90, 54, 0.5) !important;
}

/* Mobile Floating Island Adaptation (<768px) */
@media (max-width: 768px) {
  .floating-dock-wrapper {
    position: fixed !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    left: 12px !important;
    right: 12px !important;
    transform: none !important;
    width: calc(100% - 24px) !important;
    border-radius: 9999px !important;
    justify-content: space-around !important;
    padding: 8px 10px !important;
    background: rgba(6, 11, 26, 0.95) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 90, 54, 0.3) !important;
    z-index: 99999999 !important;
    display: flex !important;
  }

  .floating-dock-item {
    padding: 6px 8px !important;
    font-size: 10px !important;
    gap: 2px !important;
  }

  .floating-dock-item svg {
    width: 20px !important;
    height: 20px !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  /* Compact Mobile App Header Bar */
  #main-header .nav-container {
    height: 64px !important;
  }

  .nav-menu-container {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: none !important;
  }
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0 !important;
  }
}

/* ==========================================================================
   MOBILE-FIRST APP TOUCH CAROUSEL & SCROLL REVEAL ENGINE
   ========================================================================== */

.app-touch-carousel {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 24px !important;
  padding-top: 28px !important;
  padding-bottom: 16px !important;
  scrollbar-width: none !important;
  scroll-behavior: smooth !important;
}

.app-touch-carousel::-webkit-scrollbar {
  display: none !important;
}

.app-touch-carousel > * {
  flex: 0 0 calc(33.333% - 16px) !important;
  min-width: 310px !important;
  scroll-snap-align: start !important;
}

@media (max-width: 992px) {
  .app-touch-carousel > * {
    flex: 0 0 calc(50% - 12px) !important;
  }
}

@media (max-width: 768px) {
  .app-touch-carousel {
    gap: 16px !important;
    padding-bottom: 16px !important;
  }

  .app-touch-carousel > * {
    flex: 0 0 86% !important;
    max-width: 86% !important;
  }

  /* Streamlined Mobile Footer (<768px) */
  .footer-scoping-btn {
    display: none !important;
  }

  /* Carousel Scroll Controls Mobile-Only Display (<768px) */
  .carousel-scroll-controls {
    display: flex !important;
  }
}

/* Remove Platform Directory page links matrix from footer (Laptop, Desktop & Mobile) */
.footer-directory-col {
  display: none !important;
}

footer .container > div:first-child {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
}

/* ==========================================================================
   CAROUSEL SCROLL CONTROLS & REACTIVE CIRCLE FILL INDICATORS
   ========================================================================== */

.carousel-scroll-controls {
  display: none !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 20px !important;
  margin-bottom: 32px !important;
  justify-content: flex-start !important; /* Left-aligned matching CubeZoo layout */
}

.carousel-arrow-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.55) !important;
  background: rgba(8, 14, 28, 0.75) !important;
  color: #FFFFFF !important;
  opacity: 0.65 !important; /* 20%+ brighter than previous unlit indicator */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  outline: none !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
}

.carousel-arrow-btn:hover,
.carousel-arrow-btn:active {
  opacity: 0.95 !important;
  border-color: #FFFFFF !important;
  transform: scale(1.06) !important;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.35) !important;
}

.carousel-arrow-btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke-width: 2.5 !important;
}

/* Solid Filled Active Circle Indicator (Scroll Direction Available) */
.carousel-arrow-btn.is-active {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #040814 !important;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.5), 0 4px 16px rgba(255, 90, 54, 0.4) !important;
  opacity: 1 !important;
  cursor: pointer !important;
}

.carousel-arrow-btn.is-active:hover {
  transform: scale(1.1) !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 6px 22px rgba(255, 90, 54, 0.6) !important;
}

.carousel-arrow-btn.is-active:active {
  transform: scale(0.95) !important;
}

/* Unfilled Circle Indicator (Scroll Direction Unavailable) */
.carousel-arrow-btn:disabled,
.carousel-arrow-btn:not(.is-active) {
  opacity: 0.35 !important;
  cursor: default !important;
  transform: none !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: none !important;
}

/* Scroll-Triggered Reveal Physics Engine */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.scroll-reveal-line {
  position: relative;
  overflow: hidden;
}

.scroll-reveal-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.55);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-line.is-visible::after {
  width: 100%;
}

/* ==========================================================================
   BENTO CARDS WHITE LINED FRAME & CURVED CORNERS (REQUEST 2.1 & 2.2)
   ========================================================================== */

.bento-card {
  border-radius: 20px !important;
  background: rgba(8, 14, 28, 0.85) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 32px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 25px 60px rgba(255, 90, 54, 0.25), inset 0 0 30px rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-4px) !important;
}

/* ==========================================================================
   TOOLS PAGE MOBILE HORIZONTAL SELECTOR STRIP (<768px)
   ========================================================================== */

@media (max-width: 768px) {
  .tools-selector-stack {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding-bottom: 12px !important;
    scrollbar-width: none !important;
    width: 100% !important;
  }

  .tools-selector-stack::-webkit-scrollbar {
    display: none !important;
  }

  .tools-selector-stack > div {
    flex: 0 0 80% !important;
    min-width: 260px !important;
    scroll-snap-align: start !important;
    padding: 14px 16px !important;
  }

  .tools-selector-stack p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
/* ==========================================================================
   PERSISTENT FLOATING NAVIGATION DOCK (LAPTOP & MOBILE)
   ========================================================================== */

.blazeway-floating-dock {
  position: fixed !important;
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
  width: auto !important;
  max-width: calc(100vw - 32px) !important;
}

.dock-container {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: rgba(6, 11, 26, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 9999px !important;
  padding: 6px 12px !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(56, 189, 248, 0.15) !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}

.dock-container::-webkit-scrollbar {
  display: none !important;
}

.dock-item {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 7px 15px !important;
  border-radius: 9999px !important;
  color: rgba(203, 213, 225, 0.75) !important;
  font-family: var(--font-main, sans-serif) !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
  background: transparent !important;
}

.dock-item:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Active Page Highlight: Bold Orange Line + Glow */
.dock-item.active {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  background: rgba(255, 90, 54, 0.15) !important;
}

.dock-indicator {
  position: absolute !important;
  bottom: 2px !important;
  left: 50% !important;
  transform: translateX(-50%) scaleX(0) !important;
  width: 16px !important;
  height: 2.5px !important;
  background: #FF5A36 !important;
  border-radius: 9999px !important;
  box-shadow: 0 0 8px #FF5A36 !important;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.dock-item.active .dock-indicator {
  transform: translateX(-50%) scaleX(1) !important;
}

.dock-contact-item {
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  background: rgba(56, 189, 248, 0.1) !important;
  color: #38BDF8 !important;
  font-weight: 600 !important;
}

.dock-contact-item:hover {
  background: rgba(56, 189, 248, 0.25) !important;
  border-color: #38BDF8 !important;
  color: #FFFFFF !important;
}

/* Mobile Responsive Optimization (<768px) */
@media (max-width: 768px) {
  .blazeway-floating-dock {
    bottom: 14px !important;
    max-width: calc(100vw - 20px) !important;
  }

  .dock-container {
    padding: 4px 8px !important;
    gap: 3px !important;
  }

  .dock-item {
    padding: 6px 11px !important;
    font-size: 10.5px !important;
  }

  .dock-indicator {
    width: 12px !important;
    height: 2px !important;
    bottom: 2px !important;
  }
}
/* ==========================================================================
   MOBILE HORIZONTAL SCROLL MASTER FIX (v19.9)
   Converts all card grids to elegant horizontal swipe strips on mobile.
   This block overrides all previous vertical stacking grid rules.
   ========================================================================== */

/* ── Core App-Touch Carousel Base ── */
.app-touch-carousel {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  gap: 20px !important;
  padding-bottom: 12px !important;
}

.app-touch-carousel::-webkit-scrollbar {
  display: none !important;
}

.app-touch-carousel > * {
  flex-shrink: 0 !important;
  scroll-snap-align: start !important;
}

/* ── Desktop: 3-col wide cards ── */
@media (min-width: 769px) {
  .app-touch-carousel > * {
    flex: 0 0 calc(33.333% - 14px) !important;
    min-width: 280px !important;
  }
}

/* ── Mobile: 85% wide cards for one-at-a-time peek ── */
@media (max-width: 768px) {
  .app-touch-carousel {
    gap: 16px !important;
  }

  .app-touch-carousel > * {
    flex: 0 0 85% !important;
    min-width: 260px !important;
    max-width: 85vw !important;
  }

  /* Pricing cards — slightly narrower so user sees next card */
  .pricing-cards-grid.app-touch-carousel > * {
    flex: 0 0 82% !important;
  }

  /* Services grid cards */
  .services-grid.app-touch-carousel > *,
  .service-grid.app-touch-carousel > * {
    flex: 0 0 85% !important;
  }

  /* Process flow — horizontal pills */
  .process-flow {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    padding-bottom: 8px !important;
  }

  .process-flow::-webkit-scrollbar {
    display: none !important;
  }

  .process-flow > * {
    flex: 0 0 80% !important;
    min-width: 240px !important;
    scroll-snap-align: start !important;
  }

  /* Bento cards — horizontal scroll */
  .bento-grid,
  .bento-card-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    padding-bottom: 12px !important;
  }

  .bento-grid::-webkit-scrollbar,
  .bento-card-grid::-webkit-scrollbar {
    display: none !important;
  }

  .bento-grid > *,
  .bento-card-grid > * {
    flex: 0 0 85% !important;
    min-width: 260px !important;
    scroll-snap-align: start !important;
  }

  /* Tools grid — horizontal scroll */
  .tools-grid,
  .tool-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    padding-bottom: 12px !important;
  }

  .tools-grid::-webkit-scrollbar,
  .tool-grid::-webkit-scrollbar {
    display: none !important;
  }

  .tools-grid > *,
  .tool-grid > * {
    flex: 0 0 82% !important;
    min-width: 250px !important;
    scroll-snap-align: start !important;
  }

  /* Outcome pillars — horizontal strip instead of column stack */
  .outcome-pillars {
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 10px !important;
    padding-bottom: 8px !important;
    flex-wrap: nowrap !important;
  }

  .outcome-pillars::-webkit-scrollbar {
    display: none !important;
  }

  .outcome-pillars > * {
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }

  /* General grid overrides — convert any 1fr collapse to horizontal scroll */
  .services-grid,
  .insight-grid,
  .case-study-grid,
  .testimonial-grid,
  .csr-cycle-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding-bottom: 12px !important;
    grid-template-columns: unset !important;
  }

  .services-grid > *,
  .insight-grid > *,
  .case-study-grid > *,
  .testimonial-grid > *,
  .csr-cycle-grid > * {
    flex: 0 0 85% !important;
    min-width: 260px !important;
    scroll-snap-align: start !important;
  }

/* Global Master Footer Padding & Zero Bottom Space Override */
html {
  height: 100%;
}

body {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding-bottom: 0 !important;
}

footer, .footer {
  margin-top: auto !important;
  padding-top: 56px !important;
  padding-bottom: 95px !important;
  background: #040814 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 10 !important;
}

/* ==========================================================================
   FRAMEWORK CARDS & VIDEO SHOWCASE RESPONSIVE LAYOUT ENGINE (v25.7)
   ========================================================================== */

/* Laptop/Desktop Framework Cards: Centered, Widened & Spaced Apart (Single-Line Matrix Bullets) */
@media (min-width: 992px) {
  .framework-cards-container {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 36px !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .framework-card {
    flex: 1 1 650px !important;
    max-width: 670px !important;
    min-width: 580px !important;
    width: 100% !important;
    padding: 38px 40px !important;
    overflow: hidden !important;
  }

  .matrix-bullet-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }

  .matrix-bullet-label,
  .matrix-bullet-val {
    white-space: nowrap !important;
  }
}

/* Mobile/Tablet Framework Cards (<991px): Fully Reverted to Native Mobile Responsive Behavior */
@media (max-width: 991px) {
  .framework-cards-container {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding-bottom: 16px !important;
    max-width: 100% !important;
  }

  .framework-cards-container::-webkit-scrollbar {
    display: none !important;
  }

  .framework-card {
    flex: 0 0 85% !important;
    min-width: 270px !important;
    max-width: 85vw !important;
    scroll-snap-align: start !important;
    padding: 28px 24px !important;
  }

  .matrix-bullet-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
  }

  .matrix-bullet-label,
  .matrix-bullet-val {
    white-space: normal !important;
  }
}

/* Video Showcase Mobile Horizontal Touch Scroll (<768px: Side-by-Side Cards) */
@media (max-width: 768px) {
  .video-showcase-grid-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding-bottom: 16px !important;
    justify-content: flex-start !important;
  }

  .video-showcase-grid-container::-webkit-scrollbar {
    display: none !important;
  }

  .video-showcase-grid-container > .video-frame-card {
    flex: 0 0 85% !important;
    min-width: 270px !important;
    max-width: 85vw !important;
    scroll-snap-align: start !important;
  }
}

/* Contact Page Locked Video Background & Translucent Canvas Architecture */
html.contact-page,
body.contact-page {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  perspective: none !important;
}

body.contact-page::before,
body.contact-page::after {
  display: none !important;
}

.contact-fixed-bg-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: -9999 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  transform: translateZ(0) !important;
}

.contact-fixed-bg-wrapper video.hero-bg-video,
.contact-fixed-bg-wrapper video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  object-fit: cover !important;
}

.contact-fixed-dark-canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(4, 8, 20, 0.45) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.contact-page .subpage-hero,
.contact-page .subpage-contact-hero,
.contact-page .section-padding,
.contact-page .ingress-split,
.contact-page .container {
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
  background-image: none !important;
}

.contact-page .subpage-hero::before,
.contact-page .subpage-hero::after,
.contact-page .hero-dynamic-atmosphere::before,
.contact-page .hero-dynamic-atmosphere::after {
  display: none !important;
}








