/* ==========================================================================
   CALYCINE — NEUBRUTALISM v3 (CRIMSON, GOLDEN YELLOW, ROYAL BLUE & LIME)
   Color Reference: Vibrant Pop Crimson (#FF2A55), Golden Yellow (#FFC700),
                    Cobalt Blue (#1D58B8), Neon Lime (#D2FF00) & Stark White (#FFFFFF)
   Borders: 3.5px Solid Black strokes with hard offset drop shadows.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & PALETTE FROM REFERENCE
   -------------------------------------------------------------------------- */
:root {
  /* Tangerine & Teal Color Palette */
  --color-tangerine: #FF6600;       /* Electric Tangerine */
  --color-rust: #D84315;            /* Burnt Orange/Rust */
  --color-apricot: #FFA800;         /* Golden Apricot */
  --color-teal: #00A896;            /* Deep Cyber Teal (opposite contrast color) */
  --color-peach: #FFECE0;           /* Soft Creamy Peach */

  /* Dark Theme Colors */
  --bg-page: #000000;               /* Pure AMOLED Black (#000000) */
  --bg-canvas-subtle: #050505;      /* Ultra-deep Carbon */
  --bg-card: rgba(8, 8, 10, 0.75);   /* Pure AMOLED Dark Glass */
  
  --color-crimson: var(--color-rust);
  --color-crimson-dark: #5E1F0A;
  --color-yellow: var(--color-tangerine);
  --color-yellow-light: var(--color-apricot);
  --color-blue: var(--color-teal);
  --color-lime: var(--color-peach);
  --color-lime-hover: #FFD2BC;
  --color-black: #000000;
  --color-white: #FFFFFF;

  /* Typography (High legibility on dark background) */
  --text-headline: #F8FAFC;        /* Bright silver-white */
  --text-body: #E2E8F0;            /* Crisp silver-grey */
  --text-muted: #94A3B8;           /* Muted slate-grey */
  --text-dim: #64748B;             /* Dim grey */
  --text-on-dark: #FFFFFF;

  /* Sharp Neubrutalist Borders (Kept as legacy pointers or rewritten as fine) */
  --brutal-border-xs: 1px solid rgba(255, 255, 255, 0.08);
  --brutal-border-sm: 1px solid rgba(255, 255, 255, 0.08);
  --brutal-border: 1px solid rgba(255, 255, 255, 0.08);
  --brutal-border-thick: 1px solid rgba(255, 255, 255, 0.12);

  /* Specular Highlight Borders */
  --border-fine: 1px solid rgba(255, 255, 255, 0.08);
  --border-fine-glow: 1px solid rgba(255, 102, 0, 0.25);

  /* Soft Ambient Diffused Shadows */
  --brutal-shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.3);
  --brutal-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --brutal-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --brutal-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --brutal-shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.6);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 102, 0, 0.15);

  /* Geometry */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', 'SF Mono', Consolas, monospace;

  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;

  /* Transitions (Organic Springs) */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL BASE & HIGH-IMPACT CANVAS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--color-tangerine);
  color: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #000000;
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: #000000;
  background-image: 
    radial-gradient(circle at 50% 12%, rgba(0, 168, 150, 0.05) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 0 L56 16.166 L56 48.5 L28 64.666 L0 48.5 L0 16.166 Z M28 97 L56 80.834 L56 48.5 L28 64.666 L0 48.5 L0 80.834 Z' fill='none' stroke='rgba(0, 245, 160, 0.045)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: auto, 56px 97px;
  background-attachment: fixed;
  color: var(--text-body);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: -5%;
  left: 10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.035) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  filter: blur(120px);
}

body::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 5%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.025) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  filter: blur(140px);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

section {
  scroll-margin-top: 96px;
}

/* 120 FPS Butter-Smooth Rendering & Layout Culling */
section:not(.hero-matrix-section) {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.hero-visual-card,
.site-header,
.mobile-bottom-island,
.stage-card,
.module-card,
.product-repo-card,
.solution-card,
.team-member-card,
.case-card {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & NEUBRUTALIST BADGES
   -------------------------------------------------------------------------- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-fine);
  box-shadow: var(--shadow-sm);
  color: var(--color-tangerine);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.section-badge:hover {
  transform: translateY(-1.5px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.08);
}

.section-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.65;
  font-weight: 600;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-desc {
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   4. NEUBRUTALIST BUTTONS
   -------------------------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
  position: relative;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  cursor: pointer;
  user-select: none;
  text-transform: uppercase;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--brutal-shadow-lg);
}

.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px #000000;
}

/* Reference Golden Yellow Primary Action */
.btn-primary {
  background: var(--color-yellow) !important;
  color: #000000 !important;
}

.btn-primary:hover {
  background: var(--color-lime) !important;
}

.btn-secondary {
  background: #FFFFFF;
  color: #000000;
}

.btn-secondary:hover {
  background: var(--color-blue);
  color: #FFFFFF;
}

.btn-outline {
  border: var(--brutal-border-sm);
  color: #000000;
  background: #FFFFFF;
  box-shadow: var(--brutal-shadow-sm);
}

.btn-outline:hover {
  background: var(--color-lime);
}

/* --------------------------------------------------------------------------
   5. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-smooth);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  padding: 0 !important;
}

.brand-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.brand-logo:hover {
  transform: scale(1.02) !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* 2026 Style: Capsule CTA button with Electric Tangerine background & black text */
.site-header .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px !important;
  border-radius: var(--radius-full) !important;
  padding: 0 2rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  border: none !important;
  background: var(--color-yellow) !important; /* Electric Tangerine */
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15) !important;
  transform: none !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast) !important;
}

.site-header .btn:hover {
  background: var(--color-crimson) !important; /* Rust hover */
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4) !important;
}

.site-header .btn:active {
  transform: translateY(1px) !important;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.15) !important;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: none !important;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
  transform: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: #FFFFFF;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  border-radius: var(--radius-xs);
  padding: 8px;
}

.mobile-toggle span {
  width: 22px;
  height: 3px;
  background: #000000;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 90vh;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5.5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-headline);
  margin-bottom: 1.75rem;
}

.hero-headline span.highlight {
  display: inline-block;
  background: var(--color-yellow);
  color: #000000;
  padding: 0.2rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 0.4rem;
  text-shadow: none;
}

.hero-subhead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 600;
  min-height: 4.8rem;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--color-yellow);
  font-weight: 900;
  margin-left: 2px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Hero Telemetry Status Bar */
.hero-telemetry-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.telemetry-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #FFFFFF;
  border: 1.5px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.telemetry-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0px #000000;
}

.telemetry-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-canvas-subtle);
  border: 1.5px solid #000000;
  box-shadow: 1.5px 1.5px 0px #000000;
  border-radius: var(--radius-sm);
  color: var(--color-crimson);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.telemetry-item:hover .telemetry-icon-wrap {
  background: var(--color-yellow);
  color: #000000;
  transform: translate(-1px, -1px);
  box-shadow: 2.5px 2.5px 0px #000000;
}

.telemetry-svg {
  width: 24px;
  height: 24px;
}

.telemetry-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.telemetry-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
  margin-bottom: 0.15rem;
  display: block;
}

.telemetry-value {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.2;
}

/* Animations for 3 Icons */
@keyframes cursorBlink {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 1; }
}
.icon-cursor {
  animation: cursorBlink 1.2s infinite;
}

@keyframes radarSweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.icon-scanner {
  transform-origin: 12px 12px;
  animation: radarSweep 4s linear infinite;
}
.telemetry-item:hover .icon-scanner {
  animation-duration: 1.5s;
}

@keyframes nodePulse {
  0%, 100% { transform: scale(0.85); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 1; }
}
.icon-node-1 {
  transform-origin: 8px 12px;
  animation: nodePulse 1.2s infinite ease-in-out;
}
.icon-node-2 {
  transform-origin: 12px 15px;
  animation: nodePulse 1.2s infinite ease-in-out 0.4s;
}
.icon-node-3 {
  transform-origin: 16px 11px;
  animation: nodePulse 1.2s infinite ease-in-out 0.8s;
}

/* Hero 3D Card */
.hero-visual-card {
  position: relative;
  width: 100%;
  height: 520px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.hero-visual-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

#canvas3d-container {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   CYBER HUD TERMINAL OVERLAY
   -------------------------------------------------------------------------- */
.cyber-hud-overlay {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  width: 240px;
  background: rgba(0, 0, 0, 0.88);
  border: var(--brutal-border-sm);
  border-radius: var(--radius-md);
  color: var(--color-lime);
  font-family: var(--font-mono);
  padding: 1rem;
  box-shadow: var(--brutal-shadow-xs);
  pointer-events: none;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  text-align: left;
}

.cyber-hud-overlay.visible {
  opacity: 1 !important; /* Visible when node is touched/hovered */
}

.cyber-hud-overlay.scanning {
  border-color: #10B981 !important;
  color: #10B981 !important;
}

.hud-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hud-dot {
  width: 8px;
  height: 8px;
  background-color: currentColor;
  border-radius: 50%;
  animation: hudPulse 1.2s infinite;
}

@keyframes hudPulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.hud-title {
  text-transform: uppercase;
}

.hud-body {
  font-size: 0.72rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hud-row {
  display: flex;
  justify-content: space-between;
}

.hud-label {
  opacity: 0.75;
}

.hud-val {
  font-weight: 900;
}

.status-secure {
  color: #10B981 !important;
}

.status-scan {
  color: #06B6D4 !important; /* Clean Cyan */
}

.status-info {
  color: #38BDF8 !important; /* Sky Blue/Cobalt */
}

.hud-footer {
  margin-top: 0.65rem;
  border-top: 1px dotted currentColor;
  padding-top: 0.5rem;
  font-size: 0.68rem;
  text-align: center;
  opacity: 0.9;
  font-weight: 900;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .hero-visual-card {
    height: 480px !important;
    position: relative !important;
  }
  .cyber-hud-overlay {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    width: 210px !important;
    border: var(--brutal-border-sm) !important;
    box-shadow: var(--brutal-shadow-xs) !important;
    border-radius: var(--radius-md) !important;
    padding: 0.75rem !important;
  }
}

@media (max-width: 400px) {
  .hero-visual-card {
    height: 420px !important;
  }
  .cyber-hud-overlay {
    width: 185px !important;
    padding: 0.6rem !important;
    top: 0.75rem !important;
    left: 0.75rem !important;
  }
  .hud-body {
    font-size: 0.65rem !important;
  }
  .hud-header {
    margin-bottom: 0.45rem !important;
    padding-bottom: 0.35rem !important;
  }
}

#canvas3d-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
}

/* --------------------------------------------------------------------------
   7. SLANTED MARQUEE TICKER TAPES
   -------------------------------------------------------------------------- */
.neubrutal-marquee-wrapper {
  position: relative;
  margin: 3.5rem -4vw 4.5rem;
  overflow: hidden;
  z-index: 10;
  padding: 1.5rem 0;
}

.marquee-ribbon {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  border-top: var(--brutal-border);
  border-bottom: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  padding: 1rem 0;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #000000;
}

.ribbon-purple {
  background: var(--color-blue);
  color: #FFFFFF;
}

.ribbon-lime {
  background: var(--color-yellow);
  color: #000000;
}

.marquee-content {
  display: flex;
  gap: 2.5rem;
  animation: marqueeLoop 24s linear infinite;
  flex-shrink: 0;
}

.marquee-reverse {
  animation: marqueeLoopReverse 22s linear infinite;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

/* --------------------------------------------------------------------------
   8. CORE EXPERTISE EXPLORER
   -------------------------------------------------------------------------- */
.expertise-section {
  padding: 4.5rem 0;
  position: relative;
}

.expertise-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.expertise-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.tab-btn {
  text-align: left;
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow-sm);
  color: #000000;
  font-size: 1rem;
  font-weight: 900;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.tab-btn .tab-index {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 900;
  background: #000000;
  color: #FFFFFF;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-xs);
}

.tab-btn:hover {
  background: var(--color-yellow);
  transform: translate(-3px, -3px);
  box-shadow: var(--brutal-shadow);
}

.tab-btn.active {
  background: var(--color-blue) !important;
  color: #FFFFFF !important;
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-lg);
}

.tab-btn.active .tab-index {
  background: var(--color-yellow);
  color: #000000;
}

.expertise-display-card {
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-lg);
  padding: 3rem;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-panel {
  display: none;
  width: 100%;
}

.expertise-panel.active {
  display: block;
  animation: brutalPop 0.2s ease forwards;
}

@keyframes brutalPop {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hide everything except description inside panels as requested */
.expertise-panel .panel-header,
.expertise-panel .spec-grid,
.expertise-panel .panel-blueprint-box {
  display: none !important;
}

.panel-desc {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--text-headline);
  margin: 0;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  text-align: left;
}

/* --------------------------------------------------------------------------
   9. STRUCTURED METHODOLOGY (5 STAGE CARDS LIKE REFERENCE CARDS)
   -------------------------------------------------------------------------- */
.methodology-section {
  padding: 4.5rem 0;
  position: relative;
}

.methodology-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.stage-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  padding: 2.25rem 1.5rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.stage-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-lg);
}

.stage-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 1.5rem;
}

/* Alternating Card Top Colors from Reference (Blue, Yellow, Red) */
.stage-card:nth-child(1) .stage-number { background: var(--color-blue); color: #FFFFFF; }
.stage-card:nth-child(2) .stage-number { background: var(--color-yellow); color: #000000; }
.stage-card:nth-child(3) .stage-number { background: var(--color-crimson); color: #FFFFFF; }
.stage-card:nth-child(4) .stage-number { background: var(--color-blue); color: #FFFFFF; }
.stage-card:nth-child(5) .stage-number { background: var(--color-yellow); color: #000000; }

.stage-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 0.75rem;
}

.stage-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.stage-checklist {
  list-style: none;
  border-top: var(--brutal-border-sm);
  padding-top: 1rem;
}

.stage-checklist li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-headline);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
}

.stage-checklist li::before {
  content: '⚡';
  color: var(--color-yellow);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   10. FLAGSHIP PLATFORM — MEDCARE APPLICATION
   -------------------------------------------------------------------------- */
.securesight-section {
  padding: 4.5rem 0;
  position: relative;
}

.securesight-hero-banner {
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-lg);
  padding: 3.75rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  transition: all var(--transition-fast);
}

.securesight-hero-banner:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-xl);
}

.securesight-banner-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.securesight-banner-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.securesight-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.securesight-meta-tag {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(0, 168, 150, 0.1);
  border: 1px solid rgba(0, 168, 150, 0.2);
  color: var(--color-blue);
  font-weight: 700;
  transition: all var(--transition-fast);
}

.securesight-meta-tag:nth-child(even) {
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.2);
  color: var(--color-yellow);
}

.securesight-telemetry-stream {
  margin-top: 1.75rem;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-sm);
  background: #FAFAFA;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-headline);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.securesight-telemetry-stream .stream-caret {
  color: #000000;
  font-weight: 900;
}

.securesight-action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.core-status-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.core-status-label .status-active {
  background: var(--color-lime);
  color: #000000;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  border: var(--brutal-border-sm);
  font-weight: 900;
}

/* 4 Specialized Clinical Modules Grid */
.securesight-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.module-card {
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  padding: 2.25rem 1.6rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.module-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-lg);
}

.module-badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 900;
  color: #FFFFFF;
  background: var(--color-blue);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.module-card:nth-child(2) .module-badge { background: var(--color-yellow); color: #000000; }
.module-card:nth-child(3) .module-badge { background: var(--color-crimson); color: #FFFFFF; }
.module-card:nth-child(4) .module-badge { background: var(--color-blue); color: #FFFFFF; }

.module-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.module-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.module-specs {
  list-style: none;
  border-top: var(--brutal-border-sm);
  padding-top: 1rem;
}

.module-specs li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-headline);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.module-specs li::before {
  content: '✦';
  color: var(--color-yellow);
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   11. PROPRIETARY PRODUCTS & CYBERSECURITY PROJECTS
   -------------------------------------------------------------------------- */
.products-section {
  padding: 4.5rem 0;
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-repo-card {
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  padding: 2.5rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-repo-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-lg);
}

.repo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.repo-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.repo-icon {
  width: 24px;
  height: 24px;
  color: var(--color-yellow);
  flex-shrink: 0;
}

.repo-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-headline);
  text-decoration: none;
}

.repo-badge-public {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 900;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-lime);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  color: #000000;
}

.repo-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.repo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: var(--brutal-border-sm);
}

.repo-lang {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-headline);
}

.lang-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid #000000;
}

.lang-dot.python { background-color: var(--color-blue); }
.lang-dot.typescript { background-color: var(--color-yellow); }
.lang-dot.java { background-color: var(--color-crimson); }
.lang-dot.c { background-color: var(--color-lime); }

.repo-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-headline);
  font-weight: 900;
}

.repo-stat-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --------------------------------------------------------------------------
   12. ENTERPRISE SOLUTIONS
   -------------------------------------------------------------------------- */
.solutions-section {
  padding: 4.5rem 0;
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.solution-card {
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-lg);
  padding: 3.25rem;
  transition: all var(--transition-fast);
  position: relative;
}

.solution-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-xl);
}

.solution-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-yellow);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  margin-bottom: 1.75rem;
}

.solution-card:nth-child(2) .solution-icon-wrap { background: var(--color-blue); color: #FFFFFF; }
.solution-card:nth-child(3) .solution-icon-wrap { background: var(--color-crimson); color: #FFFFFF; }
.solution-card:nth-child(4) .solution-icon-wrap { background: var(--color-yellow); color: #000000; }

.solution-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 0.85rem;
}

.solution-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.solution-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #000000;
  background: var(--color-lime);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   13. TEAM & INSTITUTIONAL GOVERNANCE
   -------------------------------------------------------------------------- */
.team-section {
  padding: 4.5rem 0;
  position: relative;
}

.team-desc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.team-desc-card {
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-lg);
  padding: 3.5rem;
  transition: all var(--transition-fast);
}

.team-desc-card h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 1.25rem;
}

.team-desc-card p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.team-practices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.team-practice-pod {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: #FAFAFA;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
}

.pod-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background: var(--color-blue);
  border: var(--brutal-border-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.pod-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 0.35rem;
}

.pod-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.team-governance-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: var(--brutal-border-sm);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}

.stat-label {
  color: var(--text-dim);
  font-weight: 800;
}

.stat-val {
  font-family: var(--font-mono);
  color: var(--text-headline);
  font-weight: 900;
}

.team-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.team-pillar-card {
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  padding: 2.25rem;
  transition: all var(--transition-fast);
}

.team-pillar-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-lg);
}

.pillar-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: var(--color-yellow);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 1rem;
}

.pillar-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. CASE STUDIES
   -------------------------------------------------------------------------- */
.case-studies-section {
  padding: 4.5rem 0;
  position: relative;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.case-card {
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-lg);
  padding: 3rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-xl);
}

.case-category {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: rgba(0, 168, 150, 0.1);
  border: 1px solid rgba(0, 168, 150, 0.2);
  color: var(--color-blue);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
  margin-bottom: 1rem;
  font-weight: 700;
}

.case-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.case-block {
  margin-bottom: 1.25rem;
}

.case-block-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 900;
}

.case-block-content {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.case-impact-metric {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: var(--brutal-border-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.metric-number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
}

.metric-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-lime);
  color: #000000;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  line-height: 1;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. SECURITY POSTURE DIAGNOSTIC CALCULATOR
   -------------------------------------------------------------------------- */
.posture-calc-section {
  padding: 4.5rem 0;
  position: relative;
}

.calc-container {
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.calc-info h3 {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.calc-info p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.calc-privacy-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 800;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text-headline);
}

.calc-select, .calc-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: #FAFAFA !important;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-sm);
  color: #000000;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  outline: none;
  transition: all var(--transition-fast);
}

.calc-select:focus, .calc-input:focus {
  background: #FFFFFF !important;
  transform: translate(-3px, -3px);
  box-shadow: var(--brutal-shadow);
}

.calc-result-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #FFFFFF !important;
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  display: none;
}

.calc-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.score-badge {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
}

.score-low { background: var(--color-crimson); color: #FFFFFF; }
.score-med { background: var(--color-yellow); color: #000000; }
.score-high { background: var(--color-lime); color: #000000; }

/* --------------------------------------------------------------------------
   16. CONSULTATION / CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 4.5rem 0;
  position: relative;
}

.contact-card {
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-xl);
  padding: 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4.5rem;
}

.contact-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-direct-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.direct-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.direct-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--color-yellow);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  flex-shrink: 0;
}

.direct-meta h5 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 0.25rem;
}

.direct-meta p, .direct-meta a {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-weight: 700;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--text-headline);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: #FAFAFA !important;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-sm);
  color: #000000;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: #FFFFFF !important;
  transform: translate(-3px, -3px);
  box-shadow: var(--brutal-shadow);
}

/* --------------------------------------------------------------------------
   SECRET EASTER EGG: 6-SECOND GLOBE HOLD INDICATOR & MODAL
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   SECRET GLOBE HINT BUTTON WITH POINTER ARROW
   -------------------------------------------------------------------------- */
.globe-secret-hint {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid rgba(0, 245, 160, 0.35);
  border-radius: 24px;
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 25;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), 0 0 12px rgba(0, 245, 160, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  user-select: none;
  touch-action: manipulation;
}

.globe-secret-hint:hover,
.globe-secret-hint:focus-visible {
  border-color: #00F5A0;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 245, 160, 0.35);
  transform: translateY(-2px);
}

.globe-secret-hint.active {
  border-color: var(--color-tangerine);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.45);
  transform: scale(1.04);
}

.hint-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00F5A0;
  box-shadow: 0 0 8px #00F5A0;
  animation: pulseGlow 1.4s infinite alternate;
}

.globe-secret-hint.active .hint-pulse-dot {
  background: var(--color-tangerine);
  box-shadow: 0 0 8px var(--color-tangerine);
}

.hint-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hint-arrow-svg {
  color: #00F5A0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.globe-secret-hint:hover .hint-arrow-svg {
  transform: translateX(2px);
}

.globe-secret-hint.active .hint-arrow-svg {
  color: var(--color-tangerine);
  transform: translateX(3px);
}

.hint-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.08);
}

.hint-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00F5A0, var(--color-tangerine));
  box-shadow: 0 0 8px var(--color-tangerine);
  transition: width 0.08s linear;
}

@media (max-width: 768px) {
  .globe-secret-hint {
    bottom: 0.85rem;
    right: 0.85rem;
    padding: 0.4rem 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   IN-PLACE CYBER DEFENSE GAME (HERO GLOBE REPLACEMENT)
   -------------------------------------------------------------------------- */
.in-place-game-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 10, 0.96);
  border: 1.5px solid var(--border-fine);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 245, 160, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 50;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateZ(0) scale(1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  touch-action: manipulation;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.in-place-game-wrapper.hidden {
  opacity: 0 !important;
  transform: scale(0.92) !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.game-terminal-header {
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--font-mono);
}

.game-window-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot-red, .dot-yellow, .dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.game-term-title {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-left: 0.4rem;
  font-weight: 700;
}

.game-return-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.game-return-btn:hover {
  background: var(--color-tangerine);
  border-color: var(--color-tangerine);
  color: #000000;
}

.game-hud-stats-bar {
  padding: 0.45rem 1rem;
  background: rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-mono);
}

.game-hud-stats-bar .game-hud-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.game-hud-stats-bar .hud-stat-lbl {
  font-size: 0.58rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.game-hud-stats-bar .hud-stat-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
}

.game-hud-stats-bar .hud-stat-val.highlight {
  color: var(--color-tangerine);
}

.game-shield-nodes {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.shield-node {
  width: 14px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.shield-node.active {
  background: #00F5A0;
  border-color: #00F5A0;
  box-shadow: 0 0 8px rgba(0, 245, 160, 0.6);
}

.shield-node.spent {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
}

.game-quiz-content {
  width: 100%;
  max-width: 480px;
  padding: 0.5rem;
}

.quiz-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.25);
}

.quiz-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulseGlow 1s infinite alternate;
}

.quiz-lives-indicator {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.quiz-lives-count {
  color: #00F5A0;
  font-weight: 700;
}

.quiz-question-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 1rem;
  text-align: center;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.75rem;
}

@media (max-width: 540px) {
  .quiz-options-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

.quiz-option-btn {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #E2E8F0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 0.75rem;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quiz-option-btn:hover {
  background: rgba(0, 216, 246, 0.15);
  border-color: #00D8F6;
  color: #FFFFFF;
}

.quiz-option-btn.correct {
  background: rgba(0, 245, 160, 0.25) !important;
  border-color: #00F5A0 !important;
  color: #00F5A0 !important;
  box-shadow: 0 0 16px rgba(0, 245, 160, 0.4);
}

.quiz-option-btn.wrong {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: #EF4444 !important;
  color: #EF4444 !important;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.4);
}

.quiz-status-feedback {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  min-height: 1.2rem;
}

.in-place-game-wrapper .game-canvas-frame {
  flex-grow: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #000000;
  overflow: hidden;
  display: block;
}

.in-place-game-wrapper #cyber-game-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
  background: transparent;
  touch-action: none;
}

.game-overlay-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 30;
  pointer-events: auto;
  touch-action: manipulation;
  text-align: center;
  transition: opacity 0.3s ease;
}

.game-overlay-screen.hidden {
  display: none !important;
  pointer-events: none !important;
}

.btn-game-action {
  pointer-events: auto !important;
  cursor: pointer !important;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 102, 0, 0.4);
  touch-action: manipulation !important;
  z-index: 35 !important;
}

.game-overlay-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-icon-glow {
  color: var(--color-tangerine);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 16px rgba(255, 102, 0, 0.6));
}

.game-overlay-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.game-overlay-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.game-controls-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.legend-key {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-body);
}

.game-over-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
  margin-bottom: 0.75rem;
}

.game-over-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
  margin: 1.25rem 0 1.5rem 0;
}

.go-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
}

.go-stat-lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 0.25rem;
}

.go-stat-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.game-over-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.game-mobile-touch-bar {
  display: none;
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 25;
  pointer-events: auto;
  touch-action: manipulation;
}

@media (max-width: 768px) {
  .game-mobile-touch-bar {
    display: flex;
  }
}

.game-touch-btn {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(12px);
  user-select: none;
  touch-action: manipulation;
}

.game-touch-btn:active {
  background: rgba(0, 245, 160, 0.25);
  border-color: #00F5A0;
}

.game-touch-btn.boost-btn {
  width: 100%;
  flex-grow: 1;
  font-size: 0.95rem;
  background: rgba(0, 245, 160, 0.15);
  border: 1.5px solid rgba(0, 245, 160, 0.4);
  color: #00F5A0;
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.game-touch-btn.boost-btn:active {
  background: var(--color-lime);
  color: #000000;
  transform: scale(0.98);
  box-shadow: 0 0 25px rgba(0, 245, 160, 0.4);
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 5rem 0 3rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 600;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-crimson);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: var(--brutal-border-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text-headline);
}

/* --------------------------------------------------------------------------
   18. MOBILE FLOATING BOTTOM ISLAND
   -------------------------------------------------------------------------- */
.mobile-bottom-island {
  display: none !important;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .mobile-bottom-island {
    display: flex !important;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    max-width: 94vw;
    z-index: 9999;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(28px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
      inset 0 1px 1px rgba(255, 255, 255, 0.3),
      0 12px 40px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-smooth);
  }

  .island-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    width: 36px;
    height: 36px;
    transition: all var(--transition-fast) !important;
    position: relative;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .island-item span {
    display: none !important;
  }

  .island-item svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast) !important;
  }

  .island-item:active {
    transform: scale(0.9) translateY(1px);
  }

  .island-item.active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--color-yellow) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: islandPulse 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .island-item.active svg {
    color: var(--color-yellow) !important;
  }

  @keyframes islandPulse {
    0% { transform: scale(0.92); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }

  .hero-headline {
    font-size: 2.4rem !important;
    line-height: 1.15;
    text-align: center;
  }

  .hero-headline span.highlight {
    font-size: 2.1rem !important;
    padding: 0.15rem 0.75rem;
    display: inline-block;
  }

  .hero-subhead {
    font-size: 1.05rem;
    line-height: 1.55;
    text-align: center;
    margin-bottom: 2rem;
    min-height: auto;
  }

  .hero-cta-group {
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .hero-visual-card {
    height: 340px;
    border-width: 3px;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-visual-card.game-active {
    height: 490px !important;
    min-height: 450px !important;
  }

  .game-terminal-header {
    padding: 0.5rem 0.75rem;
  }

  .game-term-title {
    font-size: 0.65rem;
  }

  .game-return-btn {
    font-size: 0.62rem;
    padding: 0.25rem 0.5rem;
  }

  .game-hud-stats-bar {
    padding: 0.35rem 0.75rem;
    gap: 0.5rem;
  }

  .game-hud-stats-bar .hud-stat-lbl {
    font-size: 0.52rem;
  }

  .game-hud-stats-bar .hud-stat-val {
    font-size: 0.78rem;
  }

  .game-health-track {
    width: 50px;
    height: 5px;
  }

  .game-overlay-screen {
    padding: 1rem 0.75rem;
  }

  .game-icon-glow {
    margin-bottom: 0.35rem;
  }

  .game-icon-glow svg {
    width: 30px;
    height: 30px;
  }

  .game-overlay-title {
    font-size: 1.12rem;
    margin-bottom: 0.3rem;
  }

  .game-overlay-desc {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
  }

  .game-controls-legend {
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }

  .legend-key {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
  }

  .btn-game-action {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }

  .game-over-stats-grid {
    gap: 0.35rem;
    margin: 0.65rem 0 0.85rem 0;
  }

  .go-stat-card {
    padding: 0.45rem 0.2rem;
  }

  .go-stat-lbl {
    font-size: 0.58rem;
  }

  .go-stat-val {
    font-size: 1rem;
  }

  .game-mobile-touch-bar {
    bottom: 0.35rem;
    left: 0.35rem;
    right: 0.35rem;
    gap: 0.35rem;
  }

  .game-touch-btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.92rem;
  }

  .game-touch-btn.fire-btn {
    font-size: 0.75rem;
    padding: 0.55rem 0.7rem;
  }

  .hero-telemetry-bar {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  .section-title {
    font-size: 2.1rem !important;
  }

  .section-desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .neubrutal-marquee-wrapper {
    margin: 2.5rem -1.25rem;
  }

  .marquee-ribbon {
    padding: 0.75rem 0;
    font-size: 0.95rem;
  }

  .expertise-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .expertise-tabs {
    flex-direction: row !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0.15rem 0.65rem 0.15rem;
    gap: 0.65rem;
  }

  .expertise-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    padding: 0.8rem 1.15rem;
    font-size: 0.88rem;
    flex-shrink: 0;
    min-width: auto;
  }

  .tab-btn .tab-index {
    display: none;
  }

  .expertise-display-card {
    padding: 1.5rem 1.15rem;
    min-height: 180px;
  }

  .panel-desc {
    font-size: 1.15rem;
    line-height: 1.65;
  }

  .methodology-timeline {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .securesight-section {
    padding: 3.5rem 0 !important;
  }

  .securesight-hero-banner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 2rem 1.25rem;
  }

  .securesight-banner-title {
    font-size: 1.85rem !important;
  }

  .securesight-banner-desc {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .securesight-meta-tag {
    transform: none !important; /* Prevent card clipping on narrow viewports */
  }

  .securesight-action-col {
    align-items: stretch !important;
    text-align: left;
  }

  .securesight-telemetry-stream {
    white-space: normal !important;
    line-height: 1.5;
    font-size: 0.8rem;
  }

  .securesight-modules-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .module-card {
    padding: 1.75rem 1.25rem !important;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .solution-card {
    padding: 2rem 1.25rem;
  }

  .solution-title {
    font-size: 1.45rem !important;
  }

  .team-desc-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .team-desc-card {
    padding: 2rem 1.25rem;
  }

  .team-desc-card h3 {
    font-size: 1.85rem !important;
  }

  .team-practices-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .team-pillars-row {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .case-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .case-card {
    padding: 2rem 1.25rem;
  }

  .case-title {
    font-size: 1.3rem !important;
  }

  .case-impact-metric {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
  }

  .metric-number {
    font-size: 1.8rem !important;
  }

  .calc-container {
    grid-template-columns: 1fr !important;
    gap: 2.25rem;
    padding: 2rem 1.25rem;
  }

  .calc-info h3 {
    font-size: 1.85rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .contact-card {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    padding: 2rem 1.25rem;
  }

  .contact-title {
    font-size: 1.95rem !important;
  }

  .contact-desc {
    font-size: 0.96rem;
  }

  .site-footer {
    padding: 3.5rem 0 calc(6.5rem + env(safe-area-inset-bottom, 20px)) !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   19. BOOK CONSULTATION POPUP MODAL
   -------------------------------------------------------------------------- */
.consult-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.consult-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  display: flex !important;
}

.consult-modal-container {
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.consult-modal-window {
  position: relative;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #FFFFFF !important;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-xl);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-modal-backdrop.open .consult-modal-window {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-crimson);
  color: #FFFFFF;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.modal-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
}

.modal-header {
  margin-bottom: 1.75rem;
  text-align: left;
  padding-right: 2.5rem;
}

.modal-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--color-yellow);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.consult-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  text-align: left;
}

.modal-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.modal-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-input-group label {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--text-headline);
}

.modal-input, .modal-select, .modal-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: #FAFAFA !important;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-sm);
  color: #000000;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  outline: none;
  transition: all var(--transition-fast);
}

.modal-input:focus, .modal-select:focus, .modal-textarea:focus {
  background: #FFFFFF !important;
  transform: translate(-3px, -3px);
  box-shadow: var(--brutal-shadow);
}

.modal-textarea {
  resize: vertical;
  min-height: 70px;
}

.modal-form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: var(--brutal-border-sm);
}

.modal-privacy-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.modal-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
}

/* Success Confirmation State */
.modal-success-state {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-yellow);
  border: var(--brutal-border);
  box-shadow: var(--brutal-shadow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-icon-wrap svg {
  width: 34px;
  height: 34px;
}

.modal-success-state h4 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-headline);
  margin-bottom: 0.65rem;
}

.modal-success-state p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 1.75rem;
}

@media (max-width: 640px) {
  .consult-modal-window {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-lg);
  }
  .modal-form-row {
    grid-template-columns: 1fr;
  }
  .modal-title {
    font-size: 1.35rem;
  }
}

/* --------------------------------------------------------------------------
   17. CAREERS & ACADEMY SECTION
   -------------------------------------------------------------------------- */
.careers-section {
  padding: 4.5rem 0;
  position: relative;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.career-card {
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow-lg);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast);
}

.career-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--brutal-shadow-xl);
}

.career-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  margin-bottom: 1.5rem;
}

.career-badge.yellow-badge {
  background: var(--color-yellow);
  color: #000000;
}

.career-badge.blue-badge {
  background: var(--color-blue);
  color: #FFFFFF;
}

.career-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.career-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.career-details {
  background: #FAFAFA;
  border: var(--brutal-border-sm);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.detail-row {
  font-size: 0.95rem;
  color: var(--text-headline);
  margin-bottom: 1rem;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.career-points {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style-type: square;
}

.career-points li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.career-points li:last-child {
  margin-bottom: 0;
}

.career-btn {
  width: 100%;
  justify-content: center;
  padding: 1.05rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .careers-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .career-card {
    padding: 2rem 1.25rem;
  }
  .career-title {
    font-size: 1.45rem !important;
  }
}

/* --------------------------------------------------------------------------
   18. FAQ SECTION (COLLAPSIBLE ACCORDIONS)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 4.5rem 0;
  position: relative;
}

.faq-accordion-group {
  max-width: 900px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #FFFFFF;
  border: var(--brutal-border-thick);
  box-shadow: var(--brutal-shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--brutal-shadow-lg);
}

.faq-trigger {
  width: 100%;
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  font-family: inherit;
  transition: background-color var(--transition-fast);
}

.faq-trigger:hover {
  background-color: var(--bg-canvas-subtle);
}

.faq-question-text {
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--text-headline);
  padding-right: 1.5rem;
  line-height: 1.35;
}

.faq-arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-arrow-icon {
  transform: rotate(180deg);
  color: var(--color-crimson);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 0px solid #000000;
  background: #FAFAFA;
}

.faq-item.open .faq-answer {
  border-top: var(--brutal-border-sm);
}

.faq-answer-inner {
  padding: 2rem 2.25rem;
  text-align: left;
}

.faq-answer-inner p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-warranty-list {
  padding-left: 1.25rem;
  list-style-type: square;
  margin-top: 0.75rem;
}

.faq-warranty-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-warranty-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3.5rem 0;
  }
  .faq-trigger {
    padding: 1.25rem 1.5rem;
  }
  .faq-question-text {
    font-size: 1.05rem;
  }
  .faq-answer-inner {
    padding: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   19. INTEGRATED CAPABILITY TECH STACK BADGES
   -------------------------------------------------------------------------- */
.panel-tech-stack {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: var(--brutal-border-sm);
}

.tech-stack-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.05em;
}

.tech-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  background: #FAFAFA;
  border: var(--brutal-border-sm);
  box-shadow: var(--brutal-shadow-xs);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  color: #000000;
  transition: all var(--transition-fast);
}

.tech-badge:hover {
  background: var(--color-lime);
  transform: translateY(-1.5px);
  box-shadow: var(--brutal-shadow-sm);
}

.tech-badge.highlight {
  background: var(--color-yellow);
}

/* --------------------------------------------------------------------------
   20. INTERACTIVE CURSOR GLOW, CARD SPOTLIGHT & 3D TILT PHYSICS
   -------------------------------------------------------------------------- */
.cursor-ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.18) 0%, rgba(210, 255, 0, 0.08) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 99999;
  mix-blend-mode: color-burn;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform, left, top;
}

/* Card 3D Perspective Container */
.card-tilt-target,
.expertise-card,
.solution-card,
.stage-card,
.case-card,
.team-card,
.faq-item,
.module-card,
.posture-calc-box,
.stat-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.2s ease;
}

/* Dynamic Spotlight Gradient tracking cursor within cards */
.expertise-card::before,
.solution-card::before,
.stage-card::before,
.case-card::before,
.team-card::before,
.module-card::before,
.posture-calc-box::before,
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 199, 0, 0.22),
    rgba(210, 255, 0, 0.08) 35%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 10;
}

.expertise-card:hover::before,
.solution-card:hover::before,
.stage-card:hover::before,
.case-card:hover::before,
.team-card:hover::before,
.module-card:hover::before,
.posture-calc-box:hover::before,
.stat-card:hover::before {
  opacity: 1;
}

/* Specular Glare Layer */
.card-glare-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(0, 0, 0, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 11;
}

/* Magnetic Element Transitions */
.btn-primary,
.btn-secondary,
.brand-logo,
.tech-badge,
.hero-cta-group .btn {
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.15s ease, background-color 0.15s ease;
}

/* --------------------------------------------------------------------------
   21. OBSIDIAN DARK GLASSMORPHIC OVERRIDES (2026 REDESIGN)
   -------------------------------------------------------------------------- */
.expertise-display-card,
.stage-card,
.module-card,
.product-repo-card,
.solution-card,
.team-desc-card,
.team-pillar-card,
.case-card,
.faq-item,
.contact-card,
.modal-content,
.career-card,
.calc-container,
.calc-result-box,
.consult-modal-window,
.telemetry-item,
.securesight-hero-banner,
.team-practice-pod,
.career-details {
  background: var(--bg-card) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Hover glow lift states for all standard cards */
.stage-card:hover,
.module-card:hover,
.product-repo-card:hover,
.solution-card:hover,
.team-pillar-card:hover,
.case-card:hover,
.career-card:hover,
.telemetry-item:hover,
.securesight-hero-banner:hover,
.calc-container:hover,
.team-practice-pod:hover,
.career-details:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.08), 0 0 30px rgba(255, 102, 0, 0.04) !important;
  border-color: rgba(255, 102, 0, 0.25) !important;
}

/* Secondary Button Dark Mode */
.btn-secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all var(--transition-fast) !important;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* Outline Button Dark Mode */
.btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
  transition: all var(--transition-fast) !important;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Forms & Inputs Dark Mode styling */
.form-control,
.contact-section select,
.contact-section textarea,
.contact-section input,
.calc-select,
.calc-input,
.modal-input,
.modal-select,
.modal-textarea {
  background: rgba(15, 20, 35, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.75rem 1rem !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  transition: all var(--transition-fast) !important;
  transform: none !important;
}

.form-control:focus,
.calc-select:focus,
.calc-input:focus,
.modal-input:focus,
.modal-select:focus,
.modal-textarea:focus {
  border-color: var(--color-yellow) !important;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  outline: none !important;
  background: rgba(15, 20, 35, 0.8) !important;
  transform: none !important;
}

/* Expertise Tab bar */
.expertise-tabs {
  background: rgba(15, 20, 35, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0.4rem !important;
  border-radius: var(--radius-lg) !important;
}
.tab-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--text-muted) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  border-radius: var(--radius-md) !important;
  transition: all var(--transition-fast) !important;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3) !important;
}
.tab-btn.active {
  background: var(--color-blue) !important;
  color: #FFFFFF !important;
  border-color: rgba(0, 168, 150, 0.3) !important;
  box-shadow: 0 8px 24px rgba(0, 168, 150, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* SecureSight Telemetry log terminal */
.securesight-telemetry-stream {
  background: rgba(5, 8, 16, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  color: #F8FAFC !important;
}

/* FAQ item expander borders */
.faq-item {
  margin-bottom: 1rem !important;
}
.faq-question {
  color: #FFFFFF !important;
}

/* Modal Headers */
.modal-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

/* Remove neubrutalist block shadows from headers and labels */
.hud-header,
.hud-body {
  border: none !important;
  background: transparent !important;
}
.cyber-hud-overlay {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(7, 10, 19, 0.85) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  border-radius: var(--radius-md) !important;
}

/* Posture Calculator interactive card updates */
.posture-calculator-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius-xl) !important;
}
.calc-input-group label {
  color: var(--text-muted) !important;
}
.calc-result-radial {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(15, 20, 35, 0.5) !important;
}
.calc-slider {
  background: rgba(255, 255, 255, 0.1) !important;
}
.calc-slider::-webkit-slider-thumb {
  background: var(--color-yellow) !important;
  border: 2px solid #070A13 !important;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5) !important;
}

/* Layer main content sections above the floating background */
.hero-section,
.expertise-section,
.methodology-section,
.securesight-section,
.products-section,
.solutions-section,
.team-section,
.case-studies-section,
.careers-section,
.faq-section,
.posture-calc-section,
.contact-section,
.site-header {
  position: relative;
  z-index: 2;
}

/* Shooting Star Space Animation */
.shooting-star {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  height: 2px;
  transform-origin: left center;
  will-change: transform, opacity;
  animation: shootingStarAnim 1.2s ease-out forwards;
}

@keyframes shootingStarAnim {
  0% {
    transform: translate3d(0, 0, 0) rotate(-40deg) scaleX(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
    transform: translate3d(60px, 50px, 0) rotate(-40deg) scaleX(1.3);
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translate3d(360px, 300px, 0) rotate(-40deg) scaleX(0);
    opacity: 0;
  }
}

