/* ═══════════════════════════════════════════════════════════════
   HD DIGITAL SOLUTIONS — style.css (COMPREHENSIVE MASTER BUILD)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --dark:      #060604;
  --white:     #FEFEFE;
  --lilac-bg:  #EEEAEF;
  --plum:      #60336A;
  --dusty:     #6D4D73;
  --orchid:    #AF8FB8;
  --ease-k:    cubic-bezier(0.25, 1, 0.5, 1);
  --ease-w:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-s:    cubic-bezier(0.76, 0, 0.24, 1);
  --grid:      rgba(109, 77, 115, 0.22);
  
  /* HIGH-END SCI-FI NEON EMISSION MATRIX */
  --neon-glow: 0 0 10px #ff00bb, 0 0 25px #ff00bb, 0 0 50px rgba(255, 0, 187, 0.4);
}

/* ── RESET, BASE MECHANICS ────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
}
body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Instrument Sans', Inter, system-ui, sans-serif;
  overflow-x: hidden;
  cursor: none;
}
img, canvas { display: block; }

/* Global Section Size Token */
#hero,
#marquee-section,
.solutions-spotlight-section,
#manifesto,
#metrics,
.parallax-grid-section,
#cta {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

/* ── CUSTOM KINETIC CURSOR SYSTEM ───────────────────────────── */
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--orchid); border-radius: 50%;
  pointer-events: none; z-index: 9990;
  transform: translate(-50%, -50%);
  transition: width .45s var(--ease-k), height .45s var(--ease-k),
              border-color .3s ease, background-color .3s ease,
              border-radius .4s var(--ease-k);
  mix-blend-mode: exclusion;
}
#cursor-dot {
  position: fixed; width: 5px; height: 5px;
  background: var(--orchid); border-radius: 50%;
  pointer-events: none; z-index: 9991;
  transform: translate(-50%, -50%);
}
body.cursor-hover #cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--white);
  background: rgba(175, 143, 184, .08);
}
body.cursor-service #cursor-ring {
  width: 76px; height: 76px; border-radius: 4px;
  border-color: var(--plum);
  background: rgba(96, 51, 106, .08);
}

/* ── PRELOADER TIMING SHIELD ────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2.5rem;
  transition: clip-path .95s var(--ease-s);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#preloader.slide-out {
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.pre-logo {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1rem, 3vw, 1.8rem);
  letter-spacing: .35em; text-transform: uppercase; color: var(--white);
}
.pre-logo em { color: var(--orchid); font-style: normal; }
.pre-bar-wrap {
  width: min(300px, 70vw); height: 1px;
  background: rgba(175, 143, 184, .15); position: relative; overflow: hidden;
}
.pre-bar {
  position: absolute; inset: 0; background: var(--orchid);
  transform: scaleX(0); transform-origin: left;
  will-change: transform;
}
.pre-counter {
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .2em; color: var(--dusty);
}

/* ── SYSTEM ARCH GRID PATTERNS & NOISE ──────────────────────── */
.arch-grid {
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 80px 80px;
}
body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000; opacity: .45;
}

/* ── ADAPTIVE GLOBAL NAVIGATION STRIP ───────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.75rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .6s var(--ease-k), border-bottom .5s ease, padding .4s var(--ease-k);
}

/* Dynamic Scroll States */
#main-nav.scrolled {
  background: rgba(6, 6, 4, 0.9);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: .5px solid var(--grid);
  padding: 1.25rem 2.5rem;
}
#main-nav.scrolled.on-light {
  background: rgba(254, 254, 254, 0.9);
  border-bottom: .5px solid rgba(109, 77, 115, 0.15);
}

/* Nav Typography Tokens */
.nav-brand {
  font-family: 'Space Mono', monospace;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  transition: color .4s ease;
}
.nav-brand em { font-style: normal; color: var(--orchid); transition: color .4s ease; }

.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-status-wrap { display: flex; align-items: center; gap: .75rem; }
.nav-dot {
  width: 6px; height: 6px; background: var(--orchid);
  border-radius: 50%; animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(175, 143, 184, 0.7); }
  50%      { opacity: .6; box-shadow: 0 0 0 6px rgba(175, 143, 184, 0); }
}
.nav-status {
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .15em; color: var(--orchid); opacity: .75;
  transition: color .4s ease;
}

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--white); text-decoration: none; padding: .5rem 1.1rem;
  border: .5px solid rgba(175, 143, 184, .35);
  transition: background .4s var(--ease-k), border-color .4s ease, color .3s ease;
}
.nav-cta:hover { background: var(--plum) !important; border-color: var(--plum) !important; color: var(--white) !important; }

/* Inverted Nav Over Light Hero Backdrop */
#main-nav.on-light .nav-brand { color: var(--dark); }
#main-nav.on-light .nav-brand em { color: var(--plum); }
#main-nav.on-light .nav-status { color: var(--plum); }
#main-nav.on-light .nav-cta { color: var(--dark); border-color: rgba(96, 51, 106, 0.35); }

/* ── IMMERSIVE FULL-SCREEN HERO LAYER ───────────────────────── */
#hero {
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 0 2.5rem; gap: 3rem;
  background-color: var(--white) !important;
  background-image:
    linear-gradient(rgba(109, 77, 115, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 77, 115, 0.14) 1px, transparent 1px) !important;
  background-size: 80px 80px;
  overflow: visible !important; 
}

.hero-left { 
  display: flex; 
  flex-direction: column; 
  gap: 2.5rem; 
  position: relative; 
  width: 55%;
  z-index: 10;
}

.hero-headline {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: .9; letter-spacing: -.03em;
  text-transform: lowercase; 
  color: var(--dark) !important;
}
.hero-headline span { display: inline-block; will-change: transform, opacity; }
.hl-outline { color: transparent; -webkit-text-stroke: 1.5px var(--plum); }
.hl-plum     { color: var(--plum); }
.hl-indent  { display: block; padding-left: clamp(1rem, 5vw, 4rem); }
.hl-indent2 { display: block; padding-left: clamp(.5rem, 2vw, 1.5rem); }
.hl-block   { display: block; }

.hero-body {
  max-width: 460px; font-size: .875rem; line-height: 1.8; font-weight: 300;
  color: rgba(6, 6, 4, 0.65) !important;
  border-top: .5px solid rgba(109, 77, 115, 0.15); padding-top: 1.5rem;
}
.hero-cta-row { display: flex; align-items: center; gap: 2.5rem; }
.hero-link {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: 'Space Mono', monospace;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--plum) !important; text-decoration: none;
  position: relative; padding-bottom: .3rem;
}
.hero-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0%; height: .5px; background: var(--plum);
  transition: width .6s var(--ease-k);
}
.hero-link:hover::after { width: 100%; }
.link-arrow { display: inline-block; transition: transform .5s var(--ease-k); }
.hero-link:hover .link-arrow { transform: translateX(5px); }
.hero-coord {
  font-family: 'Space Mono', monospace;
  font-size: .57rem; letter-spacing: .2em; color: rgba(109, 77, 115, .4);
}

.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  pointer-events: none;
}

/* ThreeJS Canvas Core Scaling Mechanics */
#three-canvas-wrap {
  width: 100%; height: 520px; position: relative;
  background: transparent !important;
  transform-origin: center center;
  will-change: transform, width, height, right, top;
  z-index: 999;
  pointer-events: none;
}
#three-canvas-wrap canvas { width: 100% !important; height: 100% !important; object-fit: cover; pointer-events: none; }

.canvas-label {
  position: absolute; bottom: 2.5rem; right: 0;
  font-family: 'Space Mono', monospace;
  font-size: .54rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(109, 77, 115, .4);
  transition: opacity .4s ease;
}
.hero-rule {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 77, 115, .15) 40%, rgba(96, 51, 106, .25) 60%, transparent);
  transition: opacity .4s ease;
}

/* ── MARQUEE RIBBON ─────────────────────────────────────────── */
#marquee-section {
  border-top: .5px solid var(--grid); border-bottom: .5px solid var(--grid);
  background: var(--dark); 
  z-index: 0;
  display: flex; align-items: center; height: auto !important; min-height: 80px;
  position: relative;
}
.mq-track { display: flex; width: max-content; animation: mq-run 30s linear infinite; }
.mq-track:hover { animation-play-state: paused; }
@keyframes mq-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-chunk { display: flex; align-items: center; gap: 1.75rem; padding: 0 1.75rem; white-space: nowrap; }
.mq-text {
  font-family: 'Space Mono', monospace;
  font-size: .67rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(175, 143, 184, .45);
}
.mq-slash { font-family: 'Space Mono', monospace; font-size: .7rem; color: rgba(96, 51, 106, .55); letter-spacing: .05em; }

/* ── SOLUTIONS SPOTLIGHT SYSTEM ─────────────────────────────── */
.solutions-spotlight-section {
  position: relative;
  z-index: 2;
  background-color: var(--dark);
  width: 100%;
  border-top: .5px solid var(--grid);
  padding: 160px 0; /* Expanded padding creates premium layout isolation */
  overflow: visible;
}
.solutions-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}
.laser-track-container {
  position: absolute;
  top: 150px; /* Offsets path line down to start below masked header zone */
  left: 0;
  width: 100%;
  height: calc(100% - 150px);
  pointer-events: none;
  z-index: 1;
}
#laser-svg { width: 100%; height: 100%; overflow: visible; }
#laser-path {
  fill: none; stroke: var(--orchid); stroke-width: 3px; stroke-linecap: round;
  filter: url(#neon-glow); will-change: stroke-dashoffset, transform, opacity;
}

/* Header masking stops background trace lines slicing layout text */
.solutions-header {
  text-align: center;
  margin-bottom: 140px;
  position: relative;
  z-index: 10;
  background: var(--dark);
  display: inline-block;
  padding: 0 40px;
  left: 50%;
  transform: translateX(-50%);
}
.solutions-header span {
  font-family: 'Space Mono', monospace; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(175, 143, 184, 0.8);
}
.solutions-header h2 {
  font-family: 'Instrument Sans', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); margin: 12px 0 0 0; font-weight: 700; letter-spacing: -.02em;
}

.solutions-display-grid {
  display: flex;
  flex-direction: column;
  gap: 120px; /* Reduced spacing constraint to keep sequential flow compact */
  position: relative;
  z-index: 5;
  margin: 40px auto 0 auto;
  max-width: 1100px; /* Centers and constrains layout width cleanly */
  padding: 0 60px;   /* Pulls the cards tighter towards the center */
}

/* PREMIUM DISTINCT CYBER GLASSMORPHIC CARDS */
.solution-display-card {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(255, 0, 187, 0.08) 0%, transparent 60%), 
              linear-gradient(145deg, rgba(25, 20, 35, 0.8) 0%, rgba(10, 8, 15, 0.98) 100%);
  border: 2px solid rgba(255, 0, 187, 0.25); /* Sleek neon bounding rim */
  border-radius: 48px 16px 48px 16px; /* Playful asymmetric organic corners */
  padding: 55px 65px; /* Wider padding ratio for landscape look */
  max-width: 640px;   /* Scaled down width by ~10% for ultra-compact premium landscape shape */
  width: 100%;
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85), 
              inset 0 1px 0 rgba(255, 255, 255, 0.08), 
              inset 0 0 20px rgba(255, 0, 187, 0.03);
  overflow: hidden; /* Captures volumetric projection ray safely */
  opacity: 0;
  will-change: transform, opacity;
  transition: border-color 0.4s var(--ease-k), box-shadow 0.4s var(--ease-k);
}
.solution-display-card:hover {
  border-color: rgba(255, 0, 187, 0.6);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.95), 
              0 0 35px rgba(255, 0, 187, 0.25), 
              inset 0 0 15px rgba(255, 0, 187, 0.08);
}
/* AMBIENT BACKGROUND MEDIA HOVER */
.card-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  overflow: hidden;
}
.card-bg-media img,
.card-bg-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%) brightness(0.6);
  mix-blend-mode: overlay;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.08);
}
.solution-display-card:hover .card-bg-media {
  opacity: 0.16;
}
.solution-display-card:hover .card-bg-media img,
.solution-display-card:hover .card-bg-media video {
  transform: scale(1.0);
}
.solution-display-card.card-left { align-self: flex-start; }
.solution-display-card.card-right { align-self: flex-end; }

.solution-display-card h3 {
  font-family: 'Instrument Sans', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white); margin: 0 0 16px 0; font-weight: 600; letter-spacing: -.01em;
  position: relative;
  z-index: 3;
}
.solution-display-card h3 span {
  font-family: 'Space Mono', monospace; 
  color: var(--orchid); 
  font-size: .75rem; 
  letter-spacing: .12em; 
  margin-right: 12px;
  background: rgba(255, 0, 187, 0.12);
  padding: 6px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 187, 0.35);
  display: inline-block;
  margin-bottom: 12px;
}
.solution-display-card p { 
  color: rgba(238, 234, 239, 0.7); font-size: 1.02rem; line-height: 1.85; font-weight: 300; 
  position: relative;
  z-index: 3;
}

/* DYNAMIC FIXTURE GRAPHIC PROPERTIES */
.bulb-fixture-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.bulb-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* VOLUMETRIC HOLOGRAM EMISSION CONE */
.hologram-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 150%;
  height: 160%;
  background: linear-gradient(to bottom, rgba(255, 0, 187, 0.15) 0%, rgba(255, 0, 187, 0.03) 45%, rgba(0, 0, 0, 0) 100%);
  clip-path: polygon(42% 0%, 58% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(42% 0%, 58% 0%, 100% 100%, 0% 100%);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

/* ── TILTED PARALLAX COLUMN SYSTEM ──────────────────────────── */
.parallax-grid-section {
  z-index: 10; background-color: #050505; 
  display: flex; align-items: center; justify-content: center;
  min-height: 120vh; 
  overflow: hidden; 
}
.skewed-grid-container {
  position: absolute; width: 140%; height: 160%; top: -20%; left: -20%;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  transform: rotate(-30deg) skewX(10deg); opacity: 0.35; pointer-events: none;
}
.parallax-column { display: flex; flex-direction: column; gap: 30px; will-change: transform;}
.grid-item-box { position: relative; width: 100%; height: 400px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 4px; background: #111; }
.grid-item-box img {
  width: 160%; height: 160%; object-fit: cover; position: absolute;
  top: -30%; left: -30%; transform: skewX(-10deg) rotate(30deg);
  filter: grayscale(40%) contrast(110%);
}
.grid-content-overlay { position: relative; z-index: 20; width: 90%; max-width: 1200px; display: flex; flex-direction: column; gap: 120px; pointer-events: auto; }
.overlay-card {
  max-width: 480px; background: rgba(5, 5, 5, 0.75); padding: 40px; border-radius: 12px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(175, 143, 184, 0.15);
}
.text-left { align-self: flex-start; }
.text-right { align-self: flex-end; text-align: right; }
.overlay-card span { font-size: 12px; letter-spacing: 3px; color: #BA8DBF; font-weight: 700; display: block; margin-bottom: 10px; }
.overlay-card h2 { font-size: 38px; color: #ffffff; margin: 0 0 15px 0; font-weight: 800; }
.overlay-card p { font-size: 16px; color: #b0b0b0; line-height: 1.6; margin: 0; }

/* ── EDITORIAL MANIFESTO PANEL ──────────────────────────────── */
#manifesto {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: .5px solid rgba(109, 77, 115, .2);
  background: var(--lilac-bg); z-index: 10; padding: 0 !important;
  height: 60vh; min-height: 400px;
}
.mani-col {
  padding: 0 3rem 0 2.5rem;
  border-right: .5px solid rgba(109, 77, 115, .2);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mani-col:last-child { border-right: none; padding-left: 3rem; padding-right: 2.5rem; }
.mani-tag { font-family: 'Space Mono', monospace; font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--dusty); }
.mani-title {
  font-family: 'Instrument Sans', sans-serif; font-size: clamp(.9rem, 1.8vw, 1.25rem);
  font-weight: 700; color: var(--plum); text-transform: uppercase; letter-spacing: -.01em;
}
.mani-text { font-size: .875rem; line-height: 1.85; font-weight: 300; color: rgba(6, 6, 4, .62); }

/* ── DATA CAPTURE TRACKING (RAW MINIMALIST TECH) ──────────────────────────── */
.data-tracking-section {
  position: relative; background: #000000; z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 120px 0; min-height: auto !important; overflow: hidden;
}
.data-bg-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.15;
  background-image: radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 40px 40px; transform: scale(1.05); transition: transform 0.6s ease;
}
.data-tracking-section:hover .data-bg-grid { transform: scale(1.0); }
.data-container {
  max-width: 1400px; margin: 0 auto; padding: 0 4rem; position: relative; z-index: 5;
}
.data-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px;
}
.data-label {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; letter-spacing: 0.25em;
  color: #a0a0a0; text-transform: uppercase;
}
.data-status {
  font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em;
  color: #ff00bb; text-transform: uppercase;
  animation: blink 2s step-start infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.data-metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.data-metric {
  padding: 40px 30px; position: relative; border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s ease;
}
.data-metric:last-child { border-right: none; }
.data-metric:hover { background: rgba(255, 255, 255, 0.03); }
.data-metric-top { display: flex; justify-content: space-between; margin-bottom: 40px; }
.data-metric-id {
  font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em;
  color: #606060; border: 1px solid rgba(255,255,255,0.1); padding: 4px 8px; border-radius: 2px;
}
.data-metric-coord {
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: #505050;
}
.data-metric-value {
  font-family: 'Instrument Sans', sans-serif; font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400; letter-spacing: -0.04em; color: #ffffff; line-height: 1; margin-bottom: 20px;
}
.data-metric-label {
  font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em;
  color: #a0a0a0; text-transform: uppercase; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px;
}
.data-metric-desc {
  font-family: 'Instrument Sans', sans-serif; font-size: 0.8rem; font-weight: 300;
  color: #707070; line-height: 1.6; margin: 0;
}

/* ── KINETIC SPLIT TRACK (ANTI-AI LAYOUT) ───────────────────────── */
.kinetic-split-track {
  position: relative; background: #000000; padding: 120px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden; z-index: 10; min-height: 140vh;
}
.kinetic-container {
  max-width: 1400px; margin: 0 auto; padding: 0 4rem; position: relative; z-index: 5;
}
.kinetic-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.kinetic-column {
  display: flex; flex-direction: column; gap: 120px; will-change: transform;
}
.kinetic-card {
  position: relative; width: 100%; border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px; background: rgba(20, 20, 20, 0.4);
}
.kinetic-card img {
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover;
  filter: grayscale(100%) contrast(1.1); transition: filter 0.5s ease;
}
.kinetic-card:hover img { filter: grayscale(0%) contrast(1.0); }
.card-caption {
  position: absolute; bottom: -30px; left: 0; font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.4);
}

/* ── TRUST BANNER ─────────────────────────────────────────────── */
.trust-banner-section {
  background: var(--dark);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  z-index: 6;
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.trust-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 3rem;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  perspective: 1000px;
}
.trust-logo.glass-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-block;
  will-change: transform, box-shadow;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.trust-logo.glass-tag:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

/* ── KINETIC LATTICE CANVAS BRIDGE ────────────────────────────────── */
.kinetic-lattice-container {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  z-index: 5;
}
.kinetic-lattice-canvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}
.solutions-lattice-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}
.cta-lattice-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

/* ── THE STATUS QUO (BEFORE STATE) ────────────────────────────── */
.before-state-section {
  background: var(--dark);
  padding: 180px 0;
  position: relative;
  z-index: 5;
}
.before-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
.before-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #ff00bb;
  display: block;
  margin-bottom: 1rem;
}
.before-divider {
  width: 100%;
  height: 1px;
  background: rgba(168, 85, 247, 0.2);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
  margin-bottom: 3rem;
  transform-origin: left;
}
.before-headline {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.before-text-wrap {
  overflow: hidden;
}
.before-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-bottom: 3rem;
}
.deep-dive-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: #ff00bb;
  text-decoration: none;
  letter-spacing: 0.1em;
  display: inline-block;
  border: 1px solid rgba(255, 0, 187, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}
.deep-dive-btn:hover {
  background: rgba(255, 0, 187, 0.1);
  color: #ffffff;
}
.char-span {
  display: inline-block;
}

/* ── CREDIBILITY & FRAMEWORK (SWISS GRID ACCENT) ──────────────── */
.credibility-section {
  background: transparent;
  padding: 160px 0;
  position: relative;
}
.credibility-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
.cred-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--orchid);
  display: block;
  margin-bottom: 4rem;
}
.credibility-swiss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.cred-card {
  background: transparent;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.cred-card:last-child {
  border-right: none;
}
.cred-text-mask {
  overflow: hidden;
  position: relative;
}
.cred-quote {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
  transform: translateY(105%);
  will-change: transform;
}
.cred-author-mask {
  overflow: hidden;
  position: relative;
}
.cred-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  transform: translateY(105%);
  will-change: transform;
}
/* Hairline drawing lines */
.swiss-line-v1, .swiss-line-v2 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}
.swiss-line-v1 { left: 33.333%; }
.swiss-line-v2 { left: 66.666%; }

/* ── THE PROCESS & FAQ (INTEGRATION PROTOCOL) ────────────────── */
.process-faq-section {
  background: transparent;
  padding: 160px 0;
  position: relative;
}
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
.process-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--orchid);
  display: block;
  margin-bottom: 1rem;
}
.process-headline {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 5rem;
}
.integration-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.integration-step {
  position: relative;
  width: 100%;
  max-width: 900px;
  opacity: 0.25;
  transition: opacity 0.6s var(--ease-k);
  will-change: opacity;
}
.integration-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.25rem;
  color: var(--orchid);
  margin-right: 1.5rem;
  font-weight: 700;
}
.step-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.25em; /* Default ultra-wide */
  color: #3a3a45; /* Default muted slate */
  text-transform: uppercase;
  will-change: letter-spacing, color;
}
.integration-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08); /* Default faint hairline */
  margin-bottom: 2rem;
  transform: scaleX(1);
  transform-origin: left;
  will-change: background, transform;
}
.integration-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.35); /* Muted defaults */
  padding-left: 5rem;
  max-width: 700px;
  transition: color 0.6s ease;
  will-change: color;
}

/* ── CLOSING INTERACTIVE CTA BLOCK ──────────────────────────── */
#cta {
  background: var(--dark); z-index: 10;
  border-top: .5px solid var(--grid);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 6rem 2.5rem 0.5rem !important;
  height: 80vh;
}
.cta-ghost {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Instrument Sans', sans-serif; font-size: clamp(5rem, 22vw, 20rem); font-weight: 700; letter-spacing: -.06em;
  color: transparent; -webkit-text-stroke: .5px rgba(96, 51, 106, .15);
  white-space: nowrap; pointer-events: none; user-select: none; line-height: 1;
}
.cta-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; width: 100%; margin-top: auto; }
.cta-headline {
  font-family: 'Instrument Sans', sans-serif; font-size: clamp(2.5rem, 8vw, 7rem); font-weight: 700; font-style: italic;
  letter-spacing: -.035em; text-transform: lowercase; color: var(--white); line-height: .9;
}
.cta-outline { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--orchid); }
.cta-contacts { display: flex; flex-direction: column; gap: 2rem; align-items: flex-end; }
.cta-ci { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; }
.cta-type { font-family: 'Space Mono', monospace; font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dusty); }
.cta-val { font-family: 'Instrument Sans', sans-serif; font-size: .9rem; font-weight: 500; color: var(--white); text-decoration: none; transition: color .3s var(--ease-k); }
.cta-val:hover { color: var(--orchid); }

/* ── COMPACT SYSTEM FOOTER ──────────────────────────────────── */
#footer {
  background: var(--dark); border-top: .5px solid var(--grid);
  padding: 1.75rem 2.5rem; display: flex; justify-content: space-between; align-items: center;
  width: 100%; position: relative; z-index: 10;
}
.foot-copy { font-family: 'Space Mono', monospace; font-size: .57rem; letter-spacing: .14em; color: rgba(109, 77, 115, .5); }
.foot-tag { font-family: 'Space Mono', monospace; font-size: .57rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(109, 77, 115, .32); }

/* ── CORE PERFORMANCE SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--plum); }
::-webkit-scrollbar-thumb:hover { background: var(--orchid); }

/* ── RESPONSIVE MASTER MEDIA CASCADE ────────────────────────── */
@media(max-width: 1100px) {
  #hero { flex-direction: column; padding-top: 9rem; height: auto;}
  .hero-left, .hero-right { width: 100%; position: relative; }
  .hero-right { min-height: 360px; }
  #three-canvas-wrap { height: 360px; }
  #manifesto { grid-template-columns: 1fr; height: auto;}
  .mani-col { border-right: none; border-bottom: .5px solid rgba(109, 77, 115, .2); padding: 3.5rem 2rem; }
  .mani-col:last-child { border-bottom: none; }
  .met-grid { grid-template-columns: repeat(2, 1fr); }
  .met-item:nth-child(2) { border-right: none; }
  .met-item:nth-child(3) { border-top: .5px solid rgba(238, 234, 239, .15); border-right: .5px solid rgba(238, 234, 239, .15); }
  .met-item:nth-child(4) { border-top: .5px solid rgba(238, 234, 239, .15); }
  .cta-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cta-contacts { align-items: flex-start; }
  .solutions-display-grid { grid-template-columns: 1fr; gap: 60px; }
  .solution-display-card { width: 100%; margin-bottom: 0 !important; }
}

@media (max-width: 768px) {
  #main-nav { padding: 1.25rem 1.5rem; }
  #main-nav.scrolled { padding: 1rem 1.5rem; }
  #hero { padding: 8rem 1.5rem 3rem; gap: 3rem; }
  #metrics { padding: 4rem 1.5rem; }
  .sec-label { padding-left: 1.5rem; }
  #cta { padding: 5rem 1.5rem 4rem; height: auto;}
  #footer { flex-direction: column; gap: .75rem; text-align: center; }
  
  .solutions-spotlight-section { padding: 100px 0; }
  .solutions-header { margin-bottom: 80px; padding: 0 15px; }
  .laser-track-container { left: 20px; width: 10px; top: 100px; height: calc(100% - 100px); }
  .solution-display-card { padding: 35px 25px; border-radius: 16px; }
  
  .parallax-grid-section { height: auto; }
  .skewed-grid-container { grid-template-columns: 1fr 1fr; width: 160%; }
  #col-right { display: none; }
  .grid-content-overlay { gap: 40px; }
  .overlay-card { max-width: 100%; text-align: left !important; padding: 25px; }
  .overlay-card h2 { font-size: 28px; }
}

@media(max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .met-grid { grid-template-columns: 1fr; }
  .met-item { border-right: none; border-bottom: .5px solid rgba(238, 234, 239, .15); }
  .laser-track-container { display: none; } /* Clear vertical lines on ultra-small viewpoints */
}

/* ── MISSION & VISION EDITORIAL SECTION (RESTYLED TO MANIFESTO) ── */
.editorial-manifesto-section {
  position: relative;
  background-color: #000000; /* Stark black backdrop */
  padding: 240px 0; /* Vast whitespace above and below to let typography breathe */
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
  z-index: 10;
}
.editorial-container {
  max-width: 1100px; /* Centered, restricted layout width */
  margin: 0 auto;
  padding: 0 4rem; /* Generous padding on left/right to pull text inward */
  position: relative;
  z-index: 5;
}
.editorial-stagger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
/* Left column is offset down slightly for asymmetrical feel */
.editorial-column.meth-col {
  margin-top: 80px;
}
.editorial-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: #ffffff; /* Clean white label */
  margin-bottom: 24px;
  display: block;
}
.editorial-header {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff; /* Stark high-contrast white text */
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  will-change: filter, opacity, color;
}
.editorial-text {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: #cccccc; /* stark high-contrast light gray body text */
  margin: 0;
  letter-spacing: -0.01em;
  will-change: filter, opacity, color;
}
.hairline-parallax {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .editorial-manifesto-section {
    padding: 120px 0;
  }
  .editorial-container {
    padding: 0 2rem;
  }
  .editorial-stagger-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .editorial-column.meth-col {
    margin-top: 0;
  }
}