
/* ═══════════════════════════════════════════════════════════════
   STRIPE & SCALE AI QUALITY LIGHT DESIGN SYSTEM (#FAFAF9 / #0A0E1A)
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg-warm: #FAFAF9;
  --bg-card: #FFFFFF;
  --text-primary: #0A0E1A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --accent-blue: #0284C7;
  --accent-gold: #D97706;
  --border-subtle: #E2E0D8;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html, body {
  background-color: var(--bg-warm) !important;
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Texture background grid */
.bg-grid-pattern {
  background-image: radial-gradient(rgba(10, 14, 26, 0.05) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
}

/* Masterpiece Section Spacing */
.section-spacious {
  padding: 110px 0 !important;
  width: 100%;
}

.container-1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* Light Theme Navigation Header */
nav.navbar-masterpiece {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 100;
  background: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(12px);
}

/* Hero Section Styles */
.mp-hero-section {
  position: relative;
  padding: 90px 0 70px;
  background: var(--bg-warm);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.mp-hero-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
}

.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: var(--accent-blue);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

.mp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 1100px;
}
.mp-hero-title span.accent-blue {
  color: var(--accent-blue);
}

.mp-hero-desc {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 860px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Counter Metrics Bar */
.mp-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}
.mp-counter-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.mp-counter-label {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Trust & Compliance Strip */
.mp-trust-strip {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}
.mp-trust-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.mp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Interactive India Map Section */
.mp-map-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 110px 0;
}
.mp-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mp-map-svg-box {
  width: 100%;
  position: relative;
  background: #FAFAF9;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(10, 14, 26, 0.03);
}

/* Pulsing Dot Animations */
.mp-pulse-dot {
  width: 14px;
  height: 14px;
  background: var(--accent-blue);
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.5);
  animation: mpPulse 2s infinite;
  transition: transform 0.2s;
}
.mp-pulse-dot:hover {
  transform: scale(1.4);
  z-index: 50;
}
@keyframes mpPulse {
  0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(2, 132, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.mp-map-tooltip {
  position: absolute;
  background: #0A0E1A;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  pointer-events: none;
  display: none;
  z-index: 100;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* Narrative Case Study Section */
.mp-casestudy-section {
  background: var(--bg-warm);
  padding: 110px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mp-casestudy-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(10, 14, 26, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mp-casestudy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 14, 26, 0.07);
}

@media (max-width: 1024px) {
  .mp-map-grid, .mp-casestudy-card { grid-template-columns: 1fr; }
  .mp-counter-grid { grid-template-columns: 1fr; gap: 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   SITE-WIDE UNIFORM LIGHT THEME SYSTEM (#F5F4F0 / #0F172A / #D97706)
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg: #F5F4F0;
  --card-bg: #FFFFFF;
  --card-border: #E2E0D8;
  --border-light: #E2E0D8;
  --neon-blue: #0F172A;
  --accent-gold: #D97706;
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
}

html, body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background-color: #F5F4F0 !important;
  color: #334155 !important;
  font-family: var(--font-body), 'IBM Plex Sans', sans-serif;
}



/* Light Theme Marquee Ticker */
.gl-marquee-wrapper {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E0D8;
  border-top: 1px solid #E2E0D8;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.gl-marquee-item {
  color: #64748B;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 24px;
}
.gl-marquee-item span.highlight {
  color: #D97706;
}

/* Light Theme Carousel & Cards */
.labs-carousel-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E0D8 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.labs-carousel-card h3 {
  color: #0F172A !important;
}
.labs-carousel-card p {
  color: #475569 !important;
}

/* Light Theme Footer */
footer.labs-footer-light {
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #E2E0D8;
  padding: 70px 0 40px;
  color: #64748B;
  font-size: 13.5px;
}
footer.labs-footer-light .footer-title {
  color: #0F172A !important;
  font-weight: 800;
}
footer.labs-footer-light a {
  color: #475569;
  text-decoration: none;
}
footer.labs-footer-light a:hover {
  color: #D97706;
}


/* ═══════════════════════════════════════════════════════════════
   PART 1 — FORCE-FIX SITE-WIDE VISIBILITY & LABS CONTAINER
   ═══════════════════════════════════════════════════════════════ */


.hero, .hero-badge, .hero h1, .hero-desc, .hero-actions, .hero-stats,
.gl-homepage-hero, .gl-hero-pill, .gl-hero-h1, .gl-hero-desc,
.bp-card, .campaign-card, .dt-grid, .section {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Consistent Max-Width Content Wrapper */
.container-labs {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   BLUE PROJECTS - AI DATA SUBDOMAIN GLOBAL STYLESHEET
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #F5F4F0;
  --card-bg: #FFFFFF;
  --card-border: #E2E0D8;
  --border-light: #E2E0D8;
  
  /* Warm Studio Accents */
  --neon-blue: #0F172A;
  --neon-blue-glow: rgba(15, 23, 42, 0.06);
  --neon-purple: #D97706;
  --neon-purple-glow: rgba(217, 119, 6, 0.12);
  --accent-gold: #D97706;
  --success: #059669;
  --success-glow: rgba(5, 150, 105, 0.08);
  --warning: #D97706;
  --alert: #DC2626;
  --alert-glow: rgba(220, 38, 38, 0.08);
  
  /* Text */
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(rgba(217, 119, 6, 0.05) 1.5px, transparent 1.5px),
    radial-gradient(rgba(15, 23, 42, 0.03) 2px, transparent 2px);
  background-size: 32px 32px, 48px 48px;
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Header */
nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  text-decoration: none;
}
.nav-logo-img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  display: block;
}
.logo-bar {
  width: 4px;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--neon-purple-glow);
}
.logo-bar-1 { height: 10px; opacity: 0.3; }
.logo-bar-2 { height: 16px; opacity: 0.6; }
.logo-bar-3 { height: 22px; opacity: 0.8; }
.logo-bar-4 { height: 28px; opacity: 1; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-main);
  margin-left: 8px;
  letter-spacing: -0.01em;
}
.logo-sub {
  color: var(--text-muted);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold);
}
.btn-nav {
  background: #0F172A;
  border: 1px solid #0F172A;
  color: #FFFFFF !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
}
.btn-nav:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px var(--neon-purple-glow);
}

/* Page Layouts & Headers */
.section {
  padding: 80px 0;
}
.section--ice {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 16px;
  color: var(--text-body);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* Card Styling */
.bp-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.04), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
}
.bp-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0F172A, var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.bp-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(217, 119, 6, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
}
.bp-card:hover::after {
  opacity: 1;
}

/* Buttons */
.btn {
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.btn-primary {
  background: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}
.btn-primary:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.25);
}
.btn-secondary {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--text-main);
}
.btn-secondary:hover {
  background: #F1F5F9;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Tables */
.data-table-container {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: var(--card-bg);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.data-table th {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1.5px solid var(--border-light);
  padding: 14px 16px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #FAF9F6;
}
.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:hover td {
  background: rgba(217, 119, 6, 0.02);
}

/* Lists & Badges */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #0F172A;
  background: #EFECE6;
  border: 1px solid #E2E0D8;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Global Footer */
footer.footer {
  border-top: 1px solid var(--border-light);
  padding: 60px 0;
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 12px;
}
.footer__brand-desc {
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.social-link {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 600;
}
.social-link:hover {
  color: var(--accent-gold);
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--accent-gold);
}
.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}


/* ═══════════════════════════════════════════════════════════════
   HERO DARK BACKGROUND & 1600PX FULL-WIDTH LAYOUT DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */

/* Full-bleed section background base */
.hero, section.hero-section {
  width: 100% !important;
  max-width: 100% !important;
  background: #0B1324 !important;
  background: radial-gradient(circle at 50% 20%, #1E293B 0%, #0B1324 70%, #02060D 100%) !important;
  padding: 90px 0 80px !important;
  border-bottom: 1px solid #1E293B !important;
  color: #F8FAFC !important;
  text-align: center;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid #0284C7;
  color: #38BDF8;
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display), 'Outfit', sans-serif !important;
  font-size: clamp(38px, 5vw, 68px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5) !important;
  max-width: 1100px !important;
  margin: 0 auto 24px !important;
}

.hero h1 em {
  font-style: normal;
  color: #F59E0B !important;
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .hero-desc {
  font-size: clamp(16px, 1.8vw, 20px) !important;
  color: #CBD5E1 !important;
  max-width: 920px !important;
  margin: 0 auto 36px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 1600PX CENTERED CONTENT CONTAINER FOR LARGE DESKTOP & ULTRAWIDE MONITORS */
.container, .container-labs, .samples-content-wrapper {
  width: 100% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

/* Ensure clean base visibility without blanket * transform overrides */
h1, h2, h3, h4, h5, h6, p, a, button, img, div, section, article {
  opacity: 1;
  visibility: visible;
}


/* ═══════════════════════════════════════════════════════════════
   HIGHEST RESOLUTION 1600PX CONTAINER & ENHANCED SAMPLE CARDS
   ═══════════════════════════════════════════════════════════════ */
.container, .container-labs, .container-1600, .samples-content-wrapper {
  width: 100% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

/* Enhanced Sample Cards - Highest Resolution & Spacious Layout */
.gl-carousel-card {
  flex: 0 0 400px !important;
  min-width: 400px !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E0D8 !important;
  border-radius: 20px !important;
  padding: 16px !important;
  box-shadow: 0 4px 20px rgba(10, 14, 26, 0.04) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.gl-carousel-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(10, 14, 26, 0.08) !important;
  border-color: #0284C7 !important;
}

.gl-card-media-box {
  height: 230px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  position: relative !important;
  background: #0A0E1A !important;
}

.gl-card-media {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.gl-card-title {
  font-family: var(--font-display), 'Outfit', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0A0E1A !important;
  margin: 14px 0 8px !important;
  line-height: 1.25 !important;
}

.gl-card-desc {
  font-size: 14px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}


/* ═══════════════════════════════════════════════════════════════
   TARGETED ACQUISITION & CAPABILITIES GRID LAYOUT STYLES
   ═══════════════════════════════════════════════════════════════ */
.dt-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(10, 14, 26, 0.08) !important;
  border-color: #0284C7 !important;
}

.dt-card:hover .dt-item-img {
  transform: scale(1.04) !important;
}


/* ═══════════════════════════════════════════════════════════════
   ONGOING CAMPAIGNS GRID & ACTIVE DRIVE CARDS
   ═══════════════════════════════════════════════════════════════ */
.campaign-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(10, 14, 26, 0.08) !important;
  border-color: #0284C7 !important;
}

.campaign-card:hover .campaign-card__img {
  transform: scale(1.04) !important;
}


/* ═══════════════════════════════════════════════════════════════
   THE GEOMETRY OF PERSPECTIVE: 3D CURVED & CYLINDRICAL INTERFACE
   ═══════════════════════════════════════════════════════════════ */
.gl-3d-cylindrical-section {
  width: 100% !important;
  background: #FAFAF9 !important;
  border-top: 1px solid #E2E0D8;
  border-bottom: 1px solid #E2E0D8;
  padding: 100px 0 110px;
  overflow: hidden;
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 45%;
}

.gl-3d-perspective-stage {
  width: 100%;
  height: 540px;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  transition: transform 0.15s ease-out;
}

.gl-3d-cylindrical-track {
  position: absolute;
  width: 380px;
  height: 480px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gl-3d-card {
  position: absolute;
  width: 380px;
  height: 480px;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  cursor: pointer;
  transform-origin: center center;
}

.gl-3d-card-inner {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #E2E0D8;
  border-radius: 24px;
  padding: 18px;
  box-sizing: border-box;
  box-shadow: 0 12px 36px rgba(10, 14, 26, 0.08), 0 2px 8px rgba(10, 14, 26, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gl-3d-card:hover .gl-3d-card-inner,
.gl-3d-card.gl-3d-active .gl-3d-card-inner {
  border-color: #0284C7;
  box-shadow: 0 20px 48px rgba(2, 132, 199, 0.12), 0 4px 16px rgba(10, 14, 26, 0.06);
}

.gl-3d-media-box {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #0A0E1A;
  transform: translateZ(20px);
}

.gl-3d-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gl-3d-hud-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(2, 132, 199, 0.4);
  color: #38BDF8;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  transform: translateZ(25px);
}

.gl-3d-hud-dot {
  width: 6px;
  height: 6px;
  background: #38BDF8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38BDF8;
}

.gl-3d-card-body {
  padding: 16px 8px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  transform: translateZ(25px);
}

.gl-3d-category-tag {
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  color: #0284C7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.gl-3d-card-title {
  font-family: var(--font-display), 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #0A0E1A;
  margin: 0 0 8px;
  line-height: 1.25;
}

.gl-3d-card-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.gl-3d-card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E2E0D8;
  padding-top: 14px;
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #0284C7;
  transition: transform 0.2s ease;
}

.gl-3d-card:hover .gl-3d-cta-arrow {
  transform: translateX(4px);
}

.gl-3d-card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  opacity: 0.6;
  border-radius: 24px;
}

/* Nav Buttons */
.gl-3d-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0A0E1A;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(10, 14, 26, 0.06);
  transition: all 0.2s ease;
}

.gl-3d-nav-btn:hover {
  background: #0A0E1A;
  color: #FFFFFF;
  border-color: #0A0E1A;
  transform: scale(1.08);
}

/* 3D Indicator Bar */
.gl-3d-indicator-bar {
  width: 220px;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
}

.gl-3d-indicator-track {
  width: 100%;
  height: 4px;
  background: #E2E0D8;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.gl-3d-indicator-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 100%;
  background: #0284C7;
  border-radius: 4px;
  transition: left 0.1s linear;
}


/* ═══════════════════════════════════════════════════════════════
   DATASET SAMPLES SHOWCASE & TAB FILTER STYLES
   ═══════════════════════════════════════════════════════════════ */
.sample-tab-btn {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #475569;
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sample-tab-btn:hover, .sample-tab-btn.active {
  background: #0A0E1A;
  color: #FFFFFF;
  border-color: #0A0E1A;
  transform: translateY(-1px);
}

.sample-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(10, 14, 26, 0.08) !important;
  border-color: #0284C7 !important;
}

.sample-showcase-card:hover .sample-img {
  transform: scale(1.04);
}


/* ═══════════════════════════════════════════════════════════════
   SPECIFIC DATA SAMPLE POPUP MODAL STYLES
   ═══════════════════════════════════════════════════════════════ */
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-modal-dialog {
  background: #FFFFFF;
  border: 1px solid #E2E0D8;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(10, 14, 26, 0.35);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-sizing: border-box;
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.custom-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0A0E1A;
  transition: all 0.2s ease;
}
.custom-modal-close:hover {
  background: #0A0E1A;
  color: #FFFFFF;
}

.btn-sample-specific {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: #0284C7;
  font-family: var(--font-mono), monospace;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-sample-specific:hover {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
  transform: translateY(-1px);
}

.btn-drive-direct {
  background: #FAFAF9;
  border: 1px solid #E2E0D8;
  color: #475569;
  font-family: var(--font-mono), monospace;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-drive-direct:hover {
  background: #0A0E1A;
  color: #FFFFFF;
  border-color: #0A0E1A;
}


/* ═══════════════════════════════════════════════════════════════
   HERO 2-COLUMN GRID & REAL-WORLD SCENARIO VIDEO CARD
   ═══════════════════════════════════════════════════════════════ */
.hero-two-col-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-two-col-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.hero-video-card-wrapper {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E0D8;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(10, 14, 26, 0.08), 0 4px 12px rgba(10, 14, 26, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-video-card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(2, 132, 199, 0.12), 0 8px 20px rgba(10, 14, 26, 0.06);
  border-color: rgba(2, 132, 199, 0.35);
}

.hero-video-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: #0A0E1A;
}

.hero-stream-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-top-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 14, 26, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 3;
}

.hero-video-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, rgba(10, 14, 26, 0) 100%);
  padding: 20px 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
}

.hero-video-spec-chip {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  color: #CBD5E1;
}

.hero-video-footer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px 4px;
}


/* ═══════════════════════════════════════════════════════════════
   FULL-BLEED HERO BACKGROUND VIDEO STYLES
   ═══════════════════════════════════════════════════════════════ */
.hero-full-video-section {
  position: relative;
  overflow: hidden;
  background-color: #0A0E1A;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 100px 0 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-full-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6) contrast(1.15);
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 45%, rgba(10, 14, 26, 0.72) 0%, rgba(10, 14, 26, 0.88) 70%, rgba(10, 14, 26, 0.96) 100%);
  z-index: 2;
}

.hero-full-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-full-badge {
  font-family: var(--font-mono), monospace;
  font-size: 11.5px;
  font-weight: 700;
  color: #38BDF8;
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.45);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.08em;
}

.hero-full-title {
  font-family: var(--font-display), 'Outfit', sans-serif;
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 22px;
  max-width: 960px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-full-subtitle {
  font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.65;
  color: #E2E8F0;
  margin: 0 0 36px;
  max-width: 760px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF !important;
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, #0369A1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.55);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #FFFFFF !important;
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #38BDF8;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   UNIFIED FULL-VIEWPORT HERO VIDEO (HEADER + HERO + METRICS + TRUST)
   ═══════════════════════════════════════════════════════════════ */
.hero-master-viewport {
  position: relative;
  overflow: hidden;
  background-color: #0A0E1A;
  width: 100%;
  z-index: 10;
}

.hero-master-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.75) contrast(1.1);
  transform: scale(1.01);
}

.hero-master-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(10, 14, 26, 0.5) 0%, 
    rgba(10, 14, 26, 0.35) 30%, 
    rgba(10, 14, 26, 0.55) 75%, 
    rgba(10, 14, 26, 0.95) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-master-content {
  position: relative;
  z-index: 3;
}

/* Frosted Glass Floating Header */
.hero-master-viewport .header {
  background: rgba(10, 14, 26, 0.45) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  position: relative;
  z-index: 100;
}

.hero-master-viewport .nav-link {
  color: #E2E8F0 !important;
  font-weight: 600;
  transition: color 0.2s ease;
}
.hero-master-viewport .nav-link:hover,
.hero-master-viewport .nav-link.active {
  color: #38BDF8 !important;
}

.hero-master-viewport .brand-wordmark {
  color: #FFFFFF !important;
}

/* Translucent Dark Glass Metrics Strip */
.hero-master-viewport .metrics-bar-container {
  background: rgba(10, 14, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 42px 0;
}

.hero-master-viewport .metric-stat-num {
  font-family: var(--font-display), 'Outfit', sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.hero-master-viewport .metric-stat-label {
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.5;
}

/* Translucent Trust Strip */
.hero-master-viewport .trust-strip-container {
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-master-viewport .trust-strip-container span,
.hero-master-viewport .trust-strip-container div {
  color: #CBD5E1 !important;
}


/* ═══════════════════════════════════════════════════════════════
   PERFECT HERO VIDEO VIEWPORT & SEAMLESS TRANSPARENT NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.hero-master-viewport {
  position: relative;
  overflow: hidden;
  background-color: #0A0E1A;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-master-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  filter: brightness(0.72) contrast(1.1);
  transform: scale(1.04);
  transform-origin: center center;
}

.hero-master-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(10, 14, 26, 0.45) 0%, 
    rgba(10, 14, 26, 0.25) 30%, 
    rgba(10, 14, 26, 0.55) 75%, 
    rgba(10, 14, 26, 0.95) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-master-content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Seamless Transparent Floating Navbar - No White Background */
.hero-master-viewport .navbar-masterpiece {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  padding: 20px 0 !important;
}

.hero-master-viewport .header-nav-wrapper {
  background: rgba(10, 14, 26, 0.35) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  width: 100%;
}

.hero-master-viewport .nav-logo span {
  color: #FFFFFF !important;
}
.hero-master-viewport .nav-logo span span {
  color: #94A3B8 !important;
}

.hero-master-viewport .nav-links a {
  color: #E2E8F0 !important;
  transition: all 0.2s ease;
}
.hero-master-viewport .nav-links a:hover,
.hero-master-viewport .nav-links a.active {
  color: #38BDF8 !important;
}


/* ═══════════════════════════════════════════════════════════════
   GLOBAL CONTRAST & ACCESSIBILITY ENFORCEMENT RULES (WCAG AAA)
   ═══════════════════════════════════════════════════════════════ */

/* Universal Form Controls High Contrast */
input, select, textarea {
  color: #0A0E1A;
  background-color: #FFFFFF;
}

input::placeholder, textarea::placeholder {
  color: #94A3B8 !important;
  opacity: 1;
}

/* Dark Section Form Controls */
.dark-section input, 
.dark-section select, 
.dark-section textarea,
.contact-dark-card input,
.contact-dark-card select,
.contact-dark-card textarea {
  color: #FFFFFF !important;
  background-color: #0A0E1A !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Light Background Content Elements */
.bg-light-section h1, .bg-light-section h2, .bg-light-section h3, .bg-light-section h4 {
  color: #0A0E1A !important;
}
.bg-light-section p, .bg-light-section li {
  color: #475569 !important;
}

/* Badges & Status Pills High Contrast */
.mp-badge {
  color: #0284C7 !important;
  background: rgba(2, 132, 199, 0.08) !important;
  border-color: rgba(2, 132, 199, 0.25) !important;
}

.hero-full-badge {
  color: #38BDF8 !important;
  background: rgba(2, 132, 199, 0.25) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
}

/* Ensure all buttons have sharp text contrast */
.btn-primary {
  color: #FFFFFF !important;
}
.btn-secondary {
  color: #0A0E1A !important;
}
.hero-master-viewport .btn-secondary {
  color: #FFFFFF !important;
}

/* Sample Showcase Filter Buttons */
.sample-tab-btn {
  background: #F1F5F9 !important;
  color: #475569 !important;
  border: 1px solid #CBD5E1 !important;
}
.sample-tab-btn.active, .sample-tab-btn:hover {
  background: #0284C7 !important;
  color: #FFFFFF !important;
  border-color: #0284C7 !important;
}

/* Modal Content Contrast */
.custom-modal-dialog {
  background: #FFFFFF !important;
  color: #0A0E1A !important;
}
.custom-modal-dialog label {
  color: #475569 !important;
}
.custom-modal-dialog input,
.custom-modal-dialog select,
.custom-modal-dialog textarea {
  color: #0A0E1A !important;
  background: #FFFFFF !important;
  border-color: #CBD5E1 !important;
}


/* ═══════════════════════════════════════════════════════════════
   HARDWARE CARDS & SPEC TABLE HIGH-CONTRAST FIX (WCAG AAA)
   ═══════════════════════════════════════════════════════════════ */

/* Hardware Cards on Light Theme */
.hw-card, .hardware-card, .bp-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E0D8 !important;
  color: #0A0E1A !important;
}

.device-title, .hw-card h3, .hardware-card h3 {
  color: #0A0E1A !important;
  font-family: var(--font-display), 'Outfit', sans-serif !important;
  font-weight: 700 !important;
}

.device-desc, .hw-card p, .hardware-card p {
  color: #475569 !important;
  line-height: 1.6 !important;
}

/* Spec Tables / Spec Blocks inside Hardware Cards */
.spec-block {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  margin-top: 14px !important;
}

.spec-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 6px 0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
  font-family: var(--font-mono), monospace !important;
  font-size: 11.5px !important;
}
.spec-row:last-child {
  border-bottom: none !important;
}

.spec-lbl {
  color: #64748B !important;
  font-weight: 600 !important;
}

.spec-val {
  color: #0A0E1A !important;
  font-weight: 700 !important;
  text-align: right !important;
}

/* Badges on Hardware Cards */
.badge-tag, .badge-cyan {
  background: rgba(2, 132, 199, 0.1) !important;
  border: 1px solid rgba(2, 132, 199, 0.3) !important;
  color: #0284C7 !important;
  font-weight: 700 !important;
  font-family: var(--font-mono), monospace !important;
  font-size: 10.5px !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  display: inline-block !important;
}



/* ==========================================================================
   GOOGLE LABS EXACT MASTER FOOTER STYLES (UNIVERSAL SITE-WIDE)
   ========================================================================== */
.gl-footer-exact-wrapper {
  width: 100% !important;
  background: #F5F4F0 !important;
  padding: 80px 0 40px;
  overflow: hidden;
  font-family: var(--font-body), 'IBM Plex Sans', sans-serif;
  border-top: 1px solid #E2E0D8;
}

.gl-footer-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP GEOMETRIC GRAPHIC BLOBS BANNER */
.gl-blobs-banner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.gl-blob {
  height: 110px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.gl-blob:hover {
  transform: translateY(-14px) scale(1.05);
  filter: brightness(1.08);
}

.blob-pink-pill { width: 180px; background: #FFB5E8; border-radius: 60px 60px 0 0; }
.blob-blue-circle { width: 130px; background: #4285F4; border-radius: 50% 50% 0 0; }
.blob-green-square { width: 160px; background: #34A853; border-radius: 36px 36px 0 0; }
.blob-yellow-cloud { width: 190px; background: #FBBC05; border-radius: 60px 60px 0 0; }
.blob-orange-wave { width: 170px; background: #EA4335; border-radius: 20px 70px 0 0; }
.blob-mint-leaf { width: 160px; background: #00E676; border-radius: 60px 20px 0 0; }

/* DIVIDER LINE */
.gl-divider-line {
  width: 100%;
  height: 1.5px;
  background: #0F172A;
  margin: 0 0 24px 0;
}

/* SUB-NAV BAR: OTHER TEAMS AND PRODUCT AREAS */
.gl-subnav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 13px;
}
.gl-subnav-label {
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}
.gl-subnav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.gl-subnav-links a {
  color: #0F172A;
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  transition: color 0.2s;
}
.gl-subnav-links a:hover {
  color: #D97706;
}

/* GIANT DISPLAY WORDMARK WITH GRAPHIC SHIMMER & HOVER MORPH */
.gl-giant-wordmark-container {
  width: 100%;
  padding: 20px 0 36px;
  border-bottom: 1.5px solid #0F172A;
  margin-bottom: 48px;
  text-align: left;
  overflow-x: hidden;
}

.gl-giant-wordmark-text {
  font-family: var(--font-display), 'Outfit', sans-serif;
  font-size: clamp(22px, 6.2vw, 110px) !important;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1 !important;
  white-space: nowrap !important;
  color: #0F172A;
  display: inline-block;
  background: linear-gradient(135deg, #0F172A 0%, #D97706 40%, #4285F4 75%, #0F172A 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glWordmarkShimmer 8s ease infinite;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.gl-giant-wordmark-text:hover {
  letter-spacing: -0.02em;
  transform: scale(1.01);
}

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

/* STAY CONNECTED & FOOTER BOTTOM */
.gl-footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.gl-cta-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E0D8;
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  transition: all 0.2s ease;
}
.gl-cta-card-light:hover {
  border-color: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.1);
}

@media (max-width: 900px) {
  .gl-blobs-banner { gap: 8px; }
  .gl-blob { height: 60px; }
  .blob-pink-pill { width: 90px; }
  .blob-blue-circle { width: 60px; }
  .blob-green-square { width: 80px; }
  .blob-yellow-cloud { width: 95px; }
  .blob-orange-wave { width: 85px; }
  .blob-mint-leaf { width: 80px; }
  .gl-subnav-bar { flex-direction: column; align-items: flex-start; }
  .gl-footer-bottom-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE OVERRIDES (< 768px & < 480px ONLY)
   DESKTOP / PC VERSION IS 100% PRESERVED AND UNTOUCHED
   ═══════════════════════════════════════════════════════════════ */

/* GLOBAL MOBILE SAFEGUARDS */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  img, video, iframe, canvas {
    max-width: 100% !important;
    height: auto !important;
  }

  .container-1600, .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* NAVBAR MOBILE STACK & SCROLL */
  nav.navbar-masterpiece, .lab-navbar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 16px 0 !important;
  }

  .nav-links, .lab-nav-links {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px 16px !important;
    align-items: center !important;
  }

  .nav-links a, .lab-nav-links a {
    font-size: 13px !important;
  }

  /* HERO SECTION MOBILE ADAPTATION */
  .mp-hero-section {
    padding: 40px 0 30px !important;
  }

  .mp-hero-title {
    font-size: 32px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 16px !important;
  }

  .mp-hero-desc {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
  }

  /* HERO COUNTER METRICS GRID */
  .mp-counter-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding-top: 24px !important;
    margin-top: 24px !important;
  }

  .mp-counter-num {
    font-size: 34px !important;
  }

  /* TRUST & COMPLIANCE STRIP */
  .mp-trust-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  /* DATASET VAULT COMPACT SUITE MOBILE FIXES */
  #dataset-vault-compact-suite {
    padding: 30px 0 !important;
  }

  #dataset-vault-compact-suite > .container-1600 > div {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  /* Suite Top Header & Buttons */
  #dataset-vault-compact-suite div[style*="display: flex; justify-content: space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  #dataset-vault-compact-suite h2 {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  /* 4 Stat Pills Grid on Mobile */
  #dataset-vault-compact-suite div[style*="grid-template-columns: repeat(auto-fit, minmax(210px, 1fr))"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Horizontal Trade Pill Scroll on Mobile */
  .light-trade-pill {
    font-size: 11px !important;
    padding: 7px 12px !important;
  }

  /* Tab Panel Items */
  .suite-tab-panel {
    padding: 16px !important;
  }

  .suite-tab-panel h3 {
    font-size: 16px !important;
  }

  .suite-tab-panel button {
    width: 100% !important;
    text-align: center !important;
    margin-top: 10px !important;
  }

  /* BYOD Footer Strip */
  #dataset-vault-compact-suite div[style*="margin-top: 20px; background: #F1F5F9"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  /* GRID CARDS MOBILE FIXES */
  .services-grid-premium, .hardware-layout, .privacy-grid, .projects-grid, .samples-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-card-premium, .hw-card {
    padding: 20px 16px !important;
  }

  /* FOOTER MOBILE FIXES */
  .gl-giant-wordmark-text {
    font-size: 36px !important;
  }

  .gl-footer-bottom-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* MODAL POPUP MOBILE FIXES */
  .lead-modal-content, .modal-content {
    width: 92% !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    padding: 24px 16px !important;
  }
}

/* EXTRA SMALL PHONES (< 480px) */
@media (max-width: 480px) {

  .mp-hero-title {
    font-size: 26px !important;
  }

  #dataset-vault-compact-suite div[style*="grid-template-columns: repeat(auto-fit, minmax(210px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }

  .stat-pill-box div {
    font-size: 22px !important;
  }

  .btn {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}


/* Symmetrical Card Grid Alignment Overrides */
@media (max-width: 1024px) {
  .featured-campaigns-grid {
    grid-template-columns: 1fr !important;
  }
  .dt-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .dt-grid {
    grid-template-columns: 1fr !important;
  }
}
