:root {
  /* --- 🌌 2026 DEEP NAVY UNIVERSE --- */
  --bg-deep: #05050a;
  --bg-void: #020205;
  /* --- 🌌 2026 DEEP NAVY UNIVERSE (OKLCH ENHANCED) --- */
  /* Deepest Void: Almost pure black but with a hint of blue for richness */
  --bg-deep: oklch(10% 0.02 260);
  --bg-void: oklch(5% 0.02 260);

  /* Accents: Electric Blue to Violet */
  --color-accent: oklch(65% 0.2 250);
  /* #3B82F6 equivalent but poppier */
  --color-accent-glow: oklch(65% 0.2 250 / 0.15);
  --color-accent-electric: oklch(80% 0.2 230);
  /* Cyan-ish electric */

  /* Text: Crisp Whites */
  --color-text-primary: oklch(98% 0 0);
  --color-text-muted: oklch(70% 0.05 250);
  --color-text-faint: oklch(50% 0.05 250);

  /* --- 💎 UNIFIED PROTECTIVE GLASS FRAME (EVOLVED) --- */
  --glass-bg: oklch(100% 0 0 / 0.03);
  --glass-border: oklch(100% 0 0 / 0.06);
  --glass-blur: blur(20px);
  /* Smooth gaussian */
  --glass-shadow: 0 20px 40px -15px oklch(0% 0 0 / 0.6);
  --glass-highlight: inset 0 1px 0 oklch(100% 0 0 / 0.08);

  /* Compatibility aliases */
  --highlight: var(--color-accent);
  --text-muted: var(--color-text-muted);
  --text-faint: var(--color-text-faint);
  --accent-primary: var(--color-text-primary);

  /* Typography & Layout */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-tech: 'Space Grotesk', sans-serif;
  /* Added for alignment with Portfolio */
  --container-max: 1440px;
  /* Slightly wider for 2026 */
  --section-gap: clamp(40px, 6vh, 80px);

  /* --- 🎭 MOTION 2026 --- */
  --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-snap: cubic-bezier(0.6, 0.01, -0.05, 0.95);
}

/* Base Reset & Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  background-color: #05050a;
  scroll-behavior: smooth;
  font-size: clamp(14px, 0.2vw + 14px, 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.65;
  min-width: 320px;
}

/* --- 🧊 LAYOUT UTILS --- */
.content-wrap,
.content-wrap--wide {
  width: 100%;
  max-width: 100%;
  /* Safety for mobile */
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
  position: relative;
  z-index: 2;
}

.content-wrap {
  max-width: 1100px;
}

.content-wrap--wide {
  max-width: 1400px;
}

section {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
  /* Standard containment */
}

/* Local perspective for specific 3D containers only (Desktop Only) */
@media (min-width: 1025px) {

  .hero,
  .stats-grid,
  .horizontal-scroll,
  .industries-grid {
    perspective: 1500px;
  }
}

/* --- 🧊 GHOST MINIMALIST FRAME (Layer 2) --- */
.identity-card,
.stat-card,
.exp-card,
.industry-card,
.ipad-mockup {
  background: rgba(255, 255, 255, 0.01) !important;
  /* Ghostly transparency */
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: none !important;
  /* REMOVED FRAMES */
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
  /* Soft Ambient Shadow */
  border-radius: 32px;
  /* Rounder, organic look */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
  position: relative;
}

/* Dynamic Reflection Overlay (Layer 2.5) - Adaptive Lighting */
.identity-card::after,
.stat-card::after,
.exp-card::after,
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--reflect-x, 50%) var(--reflect-y, 50%),
      rgba(120, 180, 255, 0.06),
      /* Reduced from 0.12 for subtlety */
      transparent 45%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
  mix-blend-mode: overlay;
}

/* Enable 3D only on non-touch devices for stability */
@media (hover: hover) and (min-width: 1025px) {

  .identity-card,
  .stat-card,
  .exp-card,
  .industry-card {
    transform-style: preserve-3d;
  }

  .id-header,
  .id-visual,
  .stat-number,
  .stat-label,
  .exp-year,
  .industry-icon {
    transform: translateZ(40px);
  }

  .identity-card:hover,
  .stat-card:hover,
  .exp-card:hover,
  .industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
  }
}

/* Ensure icons are bright enough to catch the light */
.signal {
  filter: grayscale(100%) brightness(1.2) contrast(1.1);
}

.bg-void-layer {

  position: fixed;

  inset: 0;

  background: radial-gradient(circle at 50% 0%, #0f0f2d 0%, #05050a 100%);

  z-index: -12;

}



.bg-ambient-glow {



  position: fixed;



  inset: -20%;



  background:



    radial-gradient(1200px 900px at 15% 15%, rgba(59, 130, 246, 0.15), transparent 70%),



    radial-gradient(1100px 800px at 85% 85%, rgba(123, 44, 191, 0.1), transparent 65%),



    radial-gradient(1000px 800px at 50% 50%, rgba(59, 130, 246, 0.08), transparent 75%);



  filter: blur(80px);



  opacity: 0.8;



  z-index: -11;



  pointer-events: none;



}







.bg-micro-dust {



  position: fixed;



  inset: 0;



  background-image: radial-gradient(white 1px, transparent 1px);



  background-size: 100px 100px;



  background-repeat: repeat;



  opacity: 0.03;



  z-index: -10.5;



  animation: dustDrift 120s linear infinite;



  pointer-events: none;



}







@keyframes dustDrift {



  from {
    transform: translate(0, 0);
  }



  to {
    transform: translate(-100px, 100px);
  }



}



.bg-glass-haze {

  position: fixed;

  inset: 0;

  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 70%);

  mix-blend-mode: overlay;

  opacity: 0.3;

  z-index: -10;

  pointer-events: none;

}



.bg-vignette {

  position: fixed;

  inset: 0;

  background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);

  z-index: -9;

  pointer-events: none;

}

.nebula-host {
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bg-ambient-glow {
    filter: blur(40px);
    opacity: 0.7;
  }

  .bg-glass-haze {
    opacity: 0.25;
  }

  .sig-sm {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }

  .sig-md {
    width: 26px;
    height: 26px;
    font-size: 26px;
  }

  .sig-lg {
    width: 38px;
    height: 38px;
    font-size: 38px;
  }

  .signal img,
  .signal i {
    opacity: 0.18;
  }
}

/* --- 🌫️ NEBULA MOTION --- */
.social-nebula {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}

.signal {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  filter: grayscale(100%) blur(0.5px);
  transition: opacity 1s ease, transform 0.4s ease;
  /* Specific transitions */
  will-change: transform, opacity;
}

.signal img,
.signal i {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.2;
  /* Extremely subtle */
}

body.ai-open .signal {
  animation-play-state: paused;
}

@keyframes motionRise {
  0% {
    transform: translateY(110vh) rotate(0deg);
    opacity: 0;
  }

  20% {
    opacity: 0.15;
  }

  80% {
    opacity: 0.15;
  }

  100% {
    transform: translateY(-10vh) rotate(10deg);
    opacity: 0;
  }
}

@keyframes motionFade {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.15;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes motionSway {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -20px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.ani-rise {
  animation: motionRise 60s linear infinite;
}

.ani-fade {
  animation: motionFade 15s ease-in-out infinite;
}

.ani-sway {
  animation: motionSway 25s ease-in-out infinite;
}

.ani-drop {
  animation: motionRise 50s linear infinite reverse;
}

.sig-sm {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.sig-md {
  width: 32px;
  height: 32px;
  font-size: 32px;
}

.sig-lg {
  width: 48px;
  height: 48px;
  font-size: 48px;
}

/* --- 📐 TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  /* Increased from 700 */
  letter-spacing: -0.02em;
  color: var(--accent-primary);
}

.section-header {
  margin-bottom: 50px;
  max-width: 800px;
}

.unit-label {
  display: block;
  font-family: var(--font-tech);
  /* 2026 Tech Font */
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Left align overline */
.overline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Left alignment */
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Line only on the right for left alignment */
.overline::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--highlight);
  opacity: 0.5;
}

.overline::before {
  display: none;
  /* Remove left line for alignment */
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Left align items */
  justify-content: flex-start;
  text-align: left;
  /* Left align text */
  margin-bottom: 50px;
  /* Increased breathing room */
  position: relative;
  z-index: 5;
  /* Shift left more as requested */
  margin-left: -70px;
}

.section-header h2 {
  display: block;
  white-space: nowrap;
  font-family: var(--font-display);
  /* Standardized size: 50/100 scale */
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;

  /* Minimal Modern Gradient */
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Layout: Left Align & Extended Width */
  width: 140%;
  max-width: none;
  margin-right: -40%;
  text-align: left;
  margin-bottom: 20px;

  /* Initial State for Motion */
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

/* --- 🎩 HEADER (ULTRA-MODERN 2026 CAPSULE) --- */
.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.1);
  /* Super minimal */
  backdrop-filter: blur(30px);
  padding: 4px;
  border-radius: 100px;
  border: none !important;
  /* REMOVED FRAMES */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* --- 🌫️ STEALTH SCROLL STATE --- */
.site-header.scrolled .header-container {
  background: rgba(0, 0, 0, 0.15);
  /* More transparent */
  padding: 2px;
  /* Ultra-tight padding when scrolled */
  transform: scale(0.88);
  /* Smaller scale for 2026 Sleek look */
  border-color: rgba(255, 255, 255, 0.04);
}

.site-header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.15);
  /* Ghostly opacity */
  padding: 6px 14px;
  /* Even tighter padding when scrolled */
}

.site-header.scrolled .nav-link.active,
.site-header.scrolled .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
  /* Re-appear on hover/active */
}

.header-container:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.45);
}

.header-nav {
  display: flex;
  gap: 2px;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.35);
  /* Muted for contrast */
  font-size: 0.7rem;
  /* Smaller, sleeker */
  letter-spacing: 0.12em;
  /* More breathing room */
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 20px;
  /* Tighter default padding */
  transition: color 0.4s ease, padding 0.5s var(--ease-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link:hover {
  color: #fff;
  background: none;
  /* No more frames */
}

.nav-link.active {
  color: #fff;
  background: none;
  box-shadow: none;
}

/* 2026 Pure Typographic Selection - No dots, no frames */

/* Removal of "Frame within Frame" - Clean layout */

/* System Pulse Indicator */
.growth-pulse {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  background: rgba(0, 210, 255, 0.05);
  border-radius: 100px;
  border: 1px solid rgba(0, 210, 255, 0.1);
  margin-left: 8px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent-electric);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-accent-electric);
  animation: corePulse 2s infinite;
}

.pulse-meta {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--color-accent-electric);
  letter-spacing: 1px;
  font-weight: 700;
}

@keyframes corePulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.header-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.lang-switch-compact {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    padding: 0 12px;
  }

  .header-container {
    width: min(100%, 680px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    padding: 8px 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    cursor: pointer;
  }

  .header-nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(8, 10, 16, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 95;
  }

  .header-nav.mobile-open,
  .header-container.nav-open .header-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .header-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 12px 14px;
  }

  .header-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
  }
}

/* --- 📱 MOBILE NAV OVERLAY --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 90;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- 🚀 HERO SECTION (GLASS COCKPIT) --- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* 2026 Nebula Shield: Softens background icons for better legibility */
  background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
}

/* Subtle Energy Orb behind */
.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 10vw, 120px);
  align-items: center;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 110px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-mission {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-identity {
    margin-top: 0;
  }

  .hero-orb {
    width: 110vw;
    height: 110vw;
    opacity: 0.75;
  }

  .tagline {
    font-size: clamp(1.6rem, 8vw, 2.6rem) !important;
    line-height: 1.25 !important;
  }

  .tagline-line {
    white-space: normal !important;
  }

  .mission-metrics {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
  }

  .metric-divider {
    display: none;
  }
}

@media (max-width: 640px) {

  .content-wrap,
  .content-wrap--wide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-badge-row {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-eyebrow,
  .status-indicator {
    font-size: 0.72rem;
  }

  .tagline {
    font-size: clamp(1.45rem, 8.2vw, 2.1rem) !important;
    letter-spacing: -0.02em;
  }

  .mission-metrics {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .m-val {
    font-size: 1.2rem;
  }

  .float-data {
    display: none;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    line-height: 1.2;
  }
}

/* Left: Mission (Typography) */
.hero-mission {
  position: relative;
  z-index: 10;
  padding: 40px;
  border-radius: 32px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.02), transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tech);
  /* 2026 Tech Font */
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-electric);
  background: rgba(59, 130, 246, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(4px);
  margin-bottom: 0;
  white-space: nowrap;
  width: fit-content;
  /* Reset */
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
}

/* --- 📐 KINETIC TYPOGRAPHY (SHARP RGB 2026) --- */
.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem) !important;
  line-height: 1.35 !important;
  /* Increased from 1.1 for better vertical rhythm */
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  display: block !important;
}

.tagline-line {
  display: block !important;
  white-space: nowrap !important;
}

.tagline-sub {
  font-size: 0.7em !important;
  color: var(--color-text-muted) !important;
  opacity: 0.8;
  display: inline-block !important;
}

.tagline .word {
  display: inline-block;
  overflow: visible;
}

.tagline .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  color: #fff;
  filter: blur(0);
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease,
    filter 1s ease;
  will-change: transform, opacity, filter;
}

/* Animation Initial State - Calmer 2026 Entry */
.hero-mission:not(.visible) .tagline .char {
  transform: translateY(15px);
  opacity: 0;
  filter: blur(10px);
}

/* Reveal State */
.hero-mission.visible .tagline .char {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* GPU Optimized Layers */
.identity-card,
.signal,
.bg-ambient-glow,
.bg-void-layer {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.mission-metrics {

  display: flex;

  align-items: center;

  gap: 24px;

  margin-bottom: 24px;
  /* Reduced from 40px */

  padding: 16px 24px;
  /* Reduced from 24px 32px */

  border-radius: 20px;

  background: rgba(12, 16, 24, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(10px);

  transition: all 0.5s var(--ease-smooth);

}



.mission-metrics:hover {

  background: rgba(12, 16, 24, 0.4);

  border-color: rgba(59, 130, 246, 0.2);

  transform: translateY(-3px);

}



.metric-block {

  opacity: 0.6;

  filter: blur(1px);

  transition: all 0.4s ease;

}



.mission-metrics:hover .metric-block {

  opacity: 1;

  filter: blur(0px);

}



.metric-block {

  display: flex;

  flex-direction: column;

}



.m-val {

  font-size: 1.4rem;
  /* Reduced from 1.6rem */

  font-weight: 700;

  color: #fff;

  font-family: var(--font-display);
  line-height: 1;
}

.m-lbl {
  font-size: 0.7rem;
  /* Reduced from 0.75rem */
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-tech);
  /* 2026 Tech Font */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}



.metric-divider {

  width: 1px;

  height: 30px;
  /* Reduced from 40px */

  background: rgba(255, 255, 255, 0.1);

}

.hero-signature-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sig-badge {
  padding: 8px 16px;
  border: var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-faint);
  background: var(--glass-bg);
}

/* Right: Identity (3D Glass Card) */
.hero-identity {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  margin-top: -30px;
}

.identity-card {
  width: 100%;
  max-width: 300px;
  /* Reduced from 320px */
  height: auto;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  padding: 16px;
  /* Reduced from 24px 20px */
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Reduced from 16px */
  position: relative;
}

/* Header: Clean Logo Container */
.id-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.id-logo-large {
  width: 140px;
  /* Reduced from 160px */
  height: auto;
  filter: none;
  /* No effects */
  position: relative;
  z-index: 11;
  display: block;
}

/* Removed light sweep effects to keep logo clean */

/* Visual: Photo Container */
.id-visual {
  width: 100%;
  height: 250px;
  /* Reduced from 270px */
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.avatar-frame {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Image Layer: Breathing Zoom + Flash Sheen */
.avatar-layer {
  position: absolute;
  inset: 0;
  background-image: url("../images/Mohamed.PNG");
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(0.1) contrast(1.1);
  display: block !important;
  opacity: 1 !important;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  /* Effect 1: Live Breathe Zoom */
  transform: scale(1);
  animation: liveBreathe 10s ease-in-out infinite;
}

/* Effect 4: Diagonal Light Sweep (Overlay) */
.avatar-layer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1) 50%, transparent);
  transform: translateX(-100%) skewX(-25deg);
  animation: lightSweep 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

/* --- 🎞️ MIXED ANIMATIONS --- */
@keyframes liveBreathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  /* Slow zoom in/out */
}

@keyframes liquidBorder {

  0%,
  100% {
    border-radius: 12px 12px 12px 12px;
  }

  33% {
    border-radius: 16px 10px 14px 12px;
  }

  66% {
    border-radius: 10px 14px 12px 16px;
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-100%) skewX(-25deg);
    opacity: 0;
  }

  40% {
    transform: translateX(200%) skewX(-25deg);
    opacity: 1;
  }

  /* Fast sweep */
  100% {
    transform: translateX(200%) skewX(-25deg);
    opacity: 0;
  }

  /* Wait */
}

/* Reduced Motion Block Removed for Continuous Performance */

/* Floating HUD Data Overlays (Clean & Animated) */
.float-data {
  position: absolute;
  padding: 3px 8px;
  /* Reduced from 4px 10px */
  background: rgba(0, 0, 0, 0.6);
  /* Lighter background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Very subtle border */
  border-radius: 4px;
  font-size: 0.6rem;
  /* Reduced from 0.65rem */
  font-family: monospace;
  color: var(--text-muted);
  /* Muted text color */
  backdrop-filter: blur(10px);
  z-index: 30;
  pointer-events: none;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: none;
  /* Removed heavy glow */
  opacity: 0.7;
  /* Calmer transparency */
}

.d1 {
  top: 15%;
  right: -15px;
  /* Brought closer from -25px */
  animation: floatKSA 10s ease-in-out infinite;
}

.d2 {
  bottom: 15%;
  right: -15px;
  /* Brought closer from -25px */
  animation: floatEGY 10s ease-in-out infinite 1.5s;
}

.d3 {
  top: 45%;
  left: -15px;
  /* Brought closer from -25px */
  animation: float2026 12s ease-in-out infinite;
}

@keyframes floatKSA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

@keyframes floatEGY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float2026 {

  0%,
  100% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(20px);
  }
}

/* --- 📜 STORY SECTION (CALM & ELEGANT) --- */
.story-text {
  text-align: left;
  /* Left align for a professional feel */
}

.story-text p {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  /* Reduced size for high-end look */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  /* Reduced from 2rem */
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  text-wrap: pretty;
  /* Calm Blur Reveal Effect */
  opacity: 0;
  filter: blur(12px);
  transform: translateY(20px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
  position: relative;
}

/* Reveal State - Cinematic Slide Up for all Section Headers */
.section-header.reveal.visible h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* --- 🏛️ ARCHITECTURE BENTO GRID (2026) --- */
.architecture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .architecture-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.arch-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease;
}

.arch-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.arch-card .card-content {
  position: relative;
  z-index: 2;
}

.arch-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 16px 0 0;
}

/* Blueprint Grid Pattern */
.bg-blueprint {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.highlight-tech {
  font-family: var(--font-tech);
  color: var(--color-accent-electric);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.glass-veil {
  padding: 16px 24px;
  /* Reduced from 24px 32px */
  background: transparent !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 12px;
  border: none !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  margin-bottom: 16px !important;
  /* Slightly wider for 2026 */
  font-size: 1.1rem !important;
  /* Increased by 1 degree */
}

.shiny-premium {
  background: linear-gradient(110deg, #3B82F6, #fff 45%, #fff 55%, #3B82F6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  font-weight: 800;
  display: inline-block;
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3));
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.story-text p.visible,
.text-divider.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.story-text .highlight {
  color: #fff;
  font-weight: 500;
}

/* Stealth Link for the 'M' */
.stealth-link {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s ease;
  cursor: pointer;
}

.stealth-link:hover {
  color: var(--highlight);
}

/* Visual Divider */
.text-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
  margin: 2.5rem 0;
  opacity: 0;
  transition: 1s ease;
}

/* Counter Style */
/* --- 📊 STATS GRID (Bento with Spotlight & Pulse) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(200px, auto));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-smooth);
}

/* Spotlight Effect Layer */
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}

.stat-card:hover::before {
  opacity: 1;
}

/* Effect 2: Data Pulse Graph (Abstract - Full Containment) */
.pulse-graph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.pulse-graph svg {
  width: 100%;
  height: 50%;
  stroke: #3B82F6;
  stroke-width: 1;
  fill: none;
  overflow: visible;
}

.pulse-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
  will-change: stroke-dashoffset, opacity;
}

/* Triggered via JS for Random Organic Rhythms */
.pulse-path.is-pulsing {
  animation-name: drawPulse;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  /* Duration is injected via JS */
}

/* Lighting Follow - Active on Hover */
.stat-card:hover::after,
.identity-card:hover::after,
.exp-card:hover::after,
.industry-card:hover::after,
.future-card:hover::after {
  opacity: 1;
}

@keyframes drawPulse {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }

  10% {
    opacity: 0.2;
    /* Minimal ethereal trace */
  }

  90% {
    opacity: 0.2;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.stat-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.stat-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.stat-card:nth-child(2) {
  grid-column: span 2;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 2;
}

.stat-card:nth-child(1) .stat-number {
  font-size: 3.8rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
  /* Reduced from 700 */
  margin-bottom: 2px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-context {
  font-size: 0.75rem;
  color: var(--text-faint);
  position: relative;
  z-index: 2;
  opacity: 0.8;
}

/* --- 🛠️ MARQUEE (Ultra Smooth Fade) --- */
.marquee-container {
  padding: 12px 0;
  /* Reduced from 40px for tighter layout */
  background: transparent;
  mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
  overflow: hidden;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Hide Scrollbar for Marquee */
.marquee-container::-webkit-scrollbar {
  display: none;
}

.marquee-track {
  display: flex;
  gap: 60px;
  /* Reduced gap slightly for density */
  width: max-content;
  will-change: transform;
  /* Increased base speed (was 40s) for a snappier feel */
  animation: marquee-scroll 20s linear infinite;
}

.client-item {
  font-size: 0.85rem;
  /* Further reduced for ultimate subtlety */
  color: var(--text-faint);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.3;
  /* Even more subtle "ghostly" look */
  letter-spacing: 0.15em;
  /* More tracking for an editorial feel */
}

.skill-chip,
.tool-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.5);
}

.skill-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
  box-shadow: var(--glass-shadow);
  transition: all 0.6s var(--ease-smooth);
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
  will-change: transform, border-color;
}

.skill-card i {
  font-size: 1.2rem;
  color: var(--color-accent);
  opacity: 0.8;
  transition: transform 0.4s var(--ease-smooth);
}

/* Glass Sheen Effect - Refined */
.skill-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.03) 45%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.03) 55%,
      transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease-smooth);
}

.skill-card:hover::after {
  transform: translateX(100%);
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 130, 246, 0.2);
}

.skill-card:hover i {
  transform: rotate(12deg) scale(1.1);
}

/* Skills Marquee System */
.skills-marquee {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  position: relative;
}

.skills-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.skills-marquee:hover .skills-track,
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* Redefine horizontal-scroll for general use if needed, but marquee handles skills now */
.skills-carousel {
  display: none;
  /* Replaced by marquee for movement */
}

/* --- 🎞️ EXPERIENCE CAROUSEL (Ultra Polish) --- */
.carousel-container {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
  /* Clean gradient mask for side fade */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.header-with-nav {
  display: flex;
  justify-content: flex-start;
  /* Group together */
  align-items: center;
  /* Center vertically with title */
  gap: 20px;
  margin-bottom: 20px;
}

.carousel-nav-group {
  display: flex;
  gap: 8px;
  transform: translateY(16px);
  /* Nudged down even more */
}

.nav-btn {
  position: relative;
  width: 30px;
  /* Micro-UI scale */
  height: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  /* Slightly smaller icon */
  cursor: pointer;
  z-index: 50;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

/* Scroll Container - Drag Ready */
/* --- ↔️ HORIZONTAL SCROLL (Consolidated & Optimized) --- */
.horizontal-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  /* Disable native smooth scroll to allow JS momentum to take over completely */
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 5vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: start;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
  /* Improve touch handling */
}

.horizontal-scroll:active {
  cursor: grabbing;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll:active {
  cursor: grabbing;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

/* The Card (Refined) */
.exp-card {
  min-width: 320px;
  height: 320px;
  /* Reduced from 440px */
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  /* Slightly reduced for better proportions */
  padding: 24px;
  /* Reduced from 40px */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-snap-align: center;
  transition: 0.5s var(--ease-smooth);
  will-change: transform, border-color, background;
}

@media (max-width: 768px) {
  .exp-card {
    min-width: 280px;
    height: 280px;
    /* Reduced from 400px */
    padding: 20px;
  }
}

.exp-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.exp-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: auto;
  /* Push to top */
}

.exp-card h3 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  /* Added */
  margin-bottom: 8px;
  line-height: 1.2;
}

.exp-card h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 400;
}

.exp-card p {
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.5;
}

/* Timeline Scrubber (Refined) */
.timeline-scrubber {
  position: relative;
  max-width: 800px;
  margin: 10px auto 0;
  /* Minimal margin to stay close to cards */
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.scrub-track {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  /* Smaller, sleeker */
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.scrub-year {
  cursor: default;
  /* Non-clickable */
  transition: 0.4s ease;
  padding: 8px 12px;
  position: relative;
  z-index: 2;
  user-select: none;
}

.scrub-year:hover {
  color: rgba(255, 255, 255, 0.3);
  /* No change on hover */
}

/* The Moving Indicator */
.scrub-indicator {
  position: absolute;
  top: -2px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 100px;
  box-shadow: 0 0 15px var(--color-accent-glow);
  transition: transform 0.1s linear;
  will-change: transform;
  z-index: 2;
}

.experience-section {
  padding-bottom: calc(var(--section-gap) / 2);
  /* Half the usual gap */
}

/* Industries Served Section Nudge */
.experience-section+.tools-section {
  padding-top: calc(var(--section-gap) / 2);
}

/* --- 🎞️ MARQUEE SECTION (Unique Handling) --- */
.marquee-section {
  padding: 20px 0;
  /* Compact but breathing */
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Tools Protection - Remove unwanted frame */
.tools-section,
.tools-protection {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* --- 🏭 INDUSTRIES (2026 Futural Panels) --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  position: relative;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.01) !important;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Vertical Accent Bar */
.ind-accent-bar {
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--color-accent);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 15px var(--color-accent-glow);
  opacity: 0.3;
  transition: all 0.6s ease;
}

.industry-card:hover .ind-accent-bar {
  top: 10%;
  bottom: 10%;
  opacity: 1;
  background: #fff;
}

/* Icon Wrap & Neural Glow */
.industry-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  z-index: 2;
}

.industry-icon-wrap i {
  font-size: 2rem;
  color: #fff;
  position: relative;
  z-index: 3;
  transition: transform 0.5s var(--ease-smooth);
}

.icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 1;
  transition: all 0.5s ease;
}

.industry-card:hover .icon-glow {
  opacity: 0.8;
  transform: scale(1.3);
}

.industry-card:hover i {
  transform: scale(1.1) rotate(-5deg);
  color: var(--color-accent);
}

/* Meta Data Tag */
.ind-meta {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.8;
}

.industry-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 400;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

/* --- 🎥 SHOWREEL GLASS FRAME --- */
.ipad-mockup {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--glass-shadow);
}

/* --- 🔮 FUTURE CARDS (Ultra Modern 2026) --- */
.future-card {
  min-width: 250px;
  height: auto;
  /* Compact Auto Height */
  /* Soft Fused Glass - No Hard Borders */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.02);
  /* Barely visible structure */
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    /* Soft Inner Glow */
    0 10px 20px -5px rgba(0, 0, 0, 0.3);
  /* Reduced Shadow for smaller size */
  border-radius: 50px;
  /* Pill Shape / Chip */
  padding: 12px 24px;
  /* Tight padding */
  display: flex;
  flex-direction: row;
  /* Horizontal Layout */
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.future-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--reflect-x, 50%) var(--reflect-y, 50%),
      rgba(255, 255, 255, 0.1),
      transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.future-card:hover::before {
  opacity: 1;
}

.future-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.5);
}

.future-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  font-family: var(--font-display);
}

.card-icon {
  color: var(--color-accent);
  opacity: 0.9;
}

/* --- 🦶 THE 2026 DYNAMIC DOCK (FOOTER) --- */
.site-footer-2026 {
  margin-top: 160px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 100;
}

.footer-dock {
  background: rgba(10, 12, 20, 0.4) !important;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 100px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  max-width: 95vw;
  width: fit-content;
  transition: all 0.6s var(--ease-smooth);
}

/* Hover effect on dock background removed as per request */

.footer-brand {
  padding: 0 16px 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: 0.4s ease;
}

.footer-dock:hover .footer-logo-img {
  opacity: 1;
  filter: grayscale(0);
}

/* Site Navigation Group */
.footer-nav-group {
  display: flex;
  gap: 4px;
}

.footer-nav-group .dock.m-lbl {
  display: block;
  font-family: var(--font-tech);
  /* 2026 Tech Font */
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav-group .dock-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.4s var(--ease-smooth);
}

.footer-nav-group .dock-link:hover {
  color: #fff;
}

.footer-v-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
}

/* External Actions Group */
.footer-action-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dock-action-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.4s var(--ease-smooth);
}

.dock-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Special CV Download Button */
.cv-download {
  width: auto;
  padding: 0 16px;
  border-radius: 100px;
  gap: 8px;
}

.cv-download span {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* System Status Pill */
.footer-status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.1);
  border-radius: 100px;
  margin-left: 8px;
}

.status-dot-pulse {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.footer-status-pill .status-text {
  font-size: 0.6rem;
  color: #4ade80;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Outro Message Polish */
.footer-outro-message {
  margin-top: 40px;
  text-align: center;
}

.footer-outro-message .main-msg {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
  font-weight: 500;
}

.footer-outro-message .sub-msg {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .footer-dock {
    flex-direction: column;
    padding: 24px;
    border-radius: 32px;
    width: 90%;
    gap: 20px;
  }

  .footer-brand {
    border-right: none;
    padding: 0;
    margin-bottom: 10px;
  }

  .footer-v-divider {
    display: none;
  }

  .footer-status-pill {
    margin-left: 0;
  }

  .footer-action-group {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile/perf-lite motion budget: keep identity, trim heavy effects */
body.mobile-lite .avatar-layer {
  animation-duration: 18s;
}

body.mobile-lite .avatar-layer::after {
  animation: none;
  opacity: 0.35;
}

body.mobile-lite .industry-card:hover,
body.mobile-lite .future-card:hover,
body.mobile-lite .stat-card:hover {
  transform: none;
}

body.mobile-lite .bg-micro-dust {
  animation-duration: 180s;
}

body.perf-lite .bg-ambient-glow {
  filter: blur(52px);
  opacity: 0.6;
}

body.perf-lite .hero-orb {
  filter: blur(50px);
}

body.perf-lite .glass-veil {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}