﻿/* =============================================
   AQLENSO — Complete Stylesheet
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --neon-cyan: #00f3ff;
  --cyber-purple: #bd00ff;
  --deep-space: #050505;
  --font-display: 'Syncopate', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--deep-space);
  color: #fff;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 0.9rem 1.1rem;
  color: #fff;
  border-radius: 10px;
  width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.2); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(0,243,255,.55);
  background: rgba(0,243,255,.04);
  box-shadow: 0 0 0 1px rgba(0,243,255,.12), 0 0 20px rgba(0,243,255,.06);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300f3ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(255,255,255,0.04);
  padding-right: 3rem;
}
select option { background: #0a0a0a; color: #fff; }
h1, h2, h3, .font-display { font-family: var(--font-display); text-transform: uppercase; }

/* ── Lenis ── */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── Utilities ── */
.font-mono { font-family: var(--font-mono); }
.text-cyan { color: var(--neon-cyan); }
.text-dim { color: rgba(255,255,255,.25); }
.uppercase { text-transform: uppercase; }
.max-w { max-width: 1400px; margin: 0 auto; }
.px { padding-left: clamp(1.5rem, 4vw, 4rem); padding-right: clamp(1.5rem, 4vw, 4rem); }
.section-overline { font-family: var(--font-mono); font-size: 10px; letter-spacing: .35em; color: var(--neon-cyan); text-transform: uppercase; }
.pulse-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--neon-cyan); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: none !important;
}
.pulse-dot.small { width: 4px; height: 4px; }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.4 } }

/* ── Buttons ── */
.btn-cyber {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: #000;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 1rem 2rem; border: 2px solid transparent;
  border-radius: 4px; transition: all .3s;
}
.btn-cyber:hover { background: var(--neon-cyan); box-shadow: 0 0 20px rgba(0,243,255,.5); }
.btn-outline {
  background: transparent !important; color: var(--neon-cyan) !important;
  border-color: var(--neon-cyan) !important;
}
.btn-outline:hover { background: var(--neon-cyan) !important; color: #000 !important; }
.btn-solid-mission {
  background: #fff; color: #000;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; border: none; border-radius: 4px;
  padding: .9rem 2rem; cursor: pointer; transition: all .3s;
  display: inline-block;
}
.btn-solid-mission:hover { background: var(--neon-cyan); box-shadow: 0 0 24px rgba(0,243,255,.5); transform: translateY(-2px); }
.premium-glow { text-shadow: 0 0 30px rgba(0,243,255,.3); }

/* ── Header / Nav ── */
#main-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem clamp(1.5rem,4vw,2rem);
  background: rgba(5,5,5,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,243,255,.08);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
  transition: background .4s, box-shadow .4s;
}
#main-nav.scrolled { background: rgba(5,5,5,.98) !important; box-shadow: 0 2px 24px rgba(0,0,0,.9); border-bottom-color: rgba(0,243,255,.12); }
.nav-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: .15em; color: #fff; transition: color .2s; }
.nav-logo:hover { color: var(--neon-cyan); }
.nav-desktop { display: flex; gap: 1.75rem; align-items: center; }
.nav-link { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--neon-cyan); }
.nav-cta {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border: 1px solid rgba(0,243,255,.3); border-radius: 100px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--neon-cyan); transition: all .3s;
}
.nav-cta:hover { background: var(--neon-cyan); color: #000; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px; background: none; border: none; z-index: 200;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 140; opacity: 0; pointer-events: none; transition: opacity .4s; }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.side-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px,85vw); height: 100vh;
  background: rgba(5,5,5,.98); backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0,243,255,.15); z-index: 150;
  display: flex; flex-direction: column; justify-content: center;
  gap: 2rem; padding: 4rem 2.5rem;
  transition: right .4s cubic-bezier(.16,1,.3,1);
}
.side-drawer.open { right: 0; }
.drawer-link { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #fff; border-bottom: 1px solid rgba(255,255,255,.05); padding-bottom: 1.25rem; transition: color .3s; }
.drawer-link:hover { color: var(--neon-cyan); }
.drawer-cta { color: var(--neon-cyan) !important; margin-top: .5rem; }
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ── */
.hero-section { position: relative; width: 100%; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; opacity: .8; transform: scale(1.1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,.1) 0%, rgba(5,5,5,.6) 50%, #050505 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1.5rem 1.5rem; width: 100%; max-width: 1400px; margin: 0 auto; }
.hero-overline { font-family: var(--font-mono); font-size: 10px; letter-spacing: .4em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-h1 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1; margin-bottom: 2rem; }
.hero-h1 .line1 { display: block; font-size: clamp(3.5rem, 10.7vw, 9rem); color: #fff; }
.hero-h1 .line2 { display: block; font-size: clamp(3.5rem, 10.7vw, 9rem); color: var(--neon-cyan); }
.hero-sub { font-size: 1rem; color: #cbd5e1; max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.75; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.hero-proof-item { font-family: var(--font-mono); font-size: 9px; color: var(--neon-cyan); text-transform: uppercase; letter-spacing: .15em; }
.hero-proof-sep { width: 1px; height: 12px; background: rgba(0,243,255,.2); }
.hero-ctas { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 99; }
.scroll-hint span { font-family: var(--font-mono); font-size: 9px; letter-spacing: .25em; color: rgba(255,255,255,.3); text-transform: uppercase; }
.scroll-hint-line { width: 1px; height: 2.5rem; background: linear-gradient(to bottom, rgba(255,255,255,.25), transparent); }

/* ── Marquee ── */
.marquee-section { padding: 1.5rem 0; background: var(--deep-space); overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.marquee-container { overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-flex; animation: marquee 80s linear infinite; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-style: italic; font-size: clamp(1.2rem,5vw,3rem); color: rgba(255,255,255,.55); padding: 1rem 0; }
.marquee-content span { padding: 0 1.5rem; }
.marquee-content-reverse { display: inline-flex; animation: marquee-reverse 100s linear infinite; font-family: var(--font-mono); text-transform: uppercase; font-size: clamp(.65rem,2vw,1.4rem); color: rgba(255,255,255,.4); padding: .75rem 0; }
.marquee-content-reverse span { padding: 0 1.5rem; }
@keyframes marquee { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
@keyframes marquee-reverse { 0% { transform: translateX(-50%) } 100% { transform: translateX(0) } }
@media (prefers-reduced-motion: reduce) { .marquee-content, .marquee-content-reverse { animation: none; } }

/* ── Intro ── */
.intro-section { padding: 6rem clamp(1.5rem,4vw,4rem); background: var(--deep-space); border-top: 1px solid rgba(255,255,255,.05); }
.intro-statement { margin-bottom: 4rem; max-width: 48rem; }
.intro-statement h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,4.5vw,3.75rem); line-height: 1.05; margin-bottom: 1.25rem; }
.intro-statement p { color: #64748b; font-size: .9rem; line-height: 1.85; max-width: 28rem; }
.intro-facts { display: grid; grid-template-columns: 1fr; border-top: 1px solid rgba(255,255,255,.08); }
@media (min-width: 768px) { .intro-facts { grid-template-columns: repeat(3,1fr); } }
.intro-fact { padding: 2rem 2rem 2rem 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: background .3s; }
@media (min-width: 768px) { .intro-fact { border-bottom: none; border-right: 1px solid rgba(255,255,255,.06); } .intro-fact:last-child { border-right: none; } }
.intro-fact:hover { background: rgba(255,255,255,.015); }
.intro-fact-num { font-family: var(--font-mono); font-size: 9px; color: rgba(0,243,255,.4); letter-spacing: .25em; display: block; margin-bottom: 1rem; }
.intro-fact h3 { font-family: var(--font-body); font-weight: 600; font-size: .875rem; color: #fff; margin-bottom: .5rem; transition: color .3s; }
.intro-fact:hover h3 { color: var(--neon-cyan); }
.intro-fact p { color: #64748b; font-size: .875rem; line-height: 1.75; }

/* ── Missions ── */
.missions-section { padding: 6rem 0; background: var(--deep-space); }
.missions-header { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .missions-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.missions-header h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,7vw,5rem); line-height: 1.1; }
.missions-header p { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 20rem; }
@media (min-width: 768px) { .missions-header p { text-align: right; } }
.missions-list { border-top: 1px solid rgba(255,255,255,.08); }
.mission-row {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; transition: background .3s; cursor: pointer;
}
.mission-row:hover { background: rgba(255,255,255,.02); }
.mission-row-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--neon-cyan); transform: scaleY(0); transition: transform .3s; transform-origin: top; }
.mission-row:hover .mission-row-accent { transform: scaleY(1); }
.mission-tag { font-family: var(--font-mono); font-size: 10px; color: rgba(0,243,255,.3); letter-spacing: .25em; width: 2rem; flex-shrink: 0; padding-left: .75rem; padding-top: 2px; }
.mission-body { flex: 1; min-width: 0; }
.mission-title-row { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .25rem; }
@media (min-width: 768px) { .mission-title-row { flex-direction: row; align-items: center; gap: 1.25rem; } }
.mission-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(.9rem,2vw,1.2rem); color: #fff; text-transform: uppercase; transition: color .3s; line-height: 1.2; }
.mission-row:hover .mission-title { color: var(--neon-cyan); }
.mission-subtitle { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .15em; }
.mission-hint { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.55); transition: color .3s; }
.mission-row:hover .mission-hint { color: #94a3b8; }
.mission-explore { font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.38); flex-shrink: 0; padding-top: 2px; transition: all .3s; }
.mission-row:hover .mission-explore { color: var(--neon-cyan); transform: translateX(4px); }
.missions-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .missions-ctas { flex-direction: row; align-items: center; } }
.missions-cta-link { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .15em; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px; transition: all .3s; }
.missions-cta-link:hover { color: var(--neon-cyan); border-color: rgba(0,243,255,.4); }

/* ── About ── */
.about-section {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 80% 20%, rgba(189,0,255,.06) 0%, transparent 55%), radial-gradient(ellipse at 10% 80%, rgba(0,243,255,.04) 0%, transparent 50%), #050505;
}
.about-grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(0,243,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0,243,255,.02) 1px, transparent 1px); background-size: 80px 80px; }
.about-glow-purple { position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: rgba(189,0,255,.08); filter: blur(140px); border-radius: 50%; pointer-events: none; }
.about-glow-cyan { position: absolute; bottom: 0; left: 0; width: 400px; height: 400px; background: rgba(0,243,255,.05); filter: blur(120px); border-radius: 50%; pointer-events: none; }
.about-inner { position: relative; z-index: 10; padding: 7rem clamp(1.5rem,4vw,4rem); }
.about-headline { font-size: 10px; font-family: var(--font-mono); letter-spacing: .35em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1.5rem; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3.5rem; align-items: flex-end; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-h2 { font-family: var(--font-display); font-weight: 700; line-height: .95; }
.about-h2 .l1 { display: block; font-size: clamp(3rem,7vw,6rem); color: #fff; }
.about-h2 .l2 { display: block; font-size: clamp(3rem,7vw,6rem); color: rgba(255,255,255,.25); margin-top: .25rem; }
.about-body p:first-child { color: #e2e8f0; font-size: 1rem; line-height: 1.9; margin-bottom: 1.25rem; }
.about-body p:first-child strong { color: #fff; font-weight: 500; }
.about-body p:last-child { color: #64748b; font-size: .875rem; line-height: 1.85; }
.about-divider { height: 1px; background: linear-gradient(to right, rgba(0,243,255,.5), rgba(255,255,255,.1), transparent); margin-bottom: 3rem; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.08); border-radius: 1rem; overflow: hidden; margin-bottom: 3rem; }
.about-stat { padding: 2rem 2.5rem; background: rgba(255,255,255,.02); border-right: 1px solid rgba(255,255,255,.08); transition: background .3s; }
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: rgba(255,255,255,.04); }
.about-stat-val { font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 700; color: var(--neon-cyan); margin-bottom: .5rem; }
.about-stat-label { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .18em; line-height: 1.4; }
.about-ctas { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .about-ctas { flex-direction: row; align-items: center; } }
.about-cta-note { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.25); text-transform: uppercase; letter-spacing: .15em; }

/* ── Demo ── */
.demo-section { position: relative; overflow: hidden; padding: 6rem 0; background: var(--deep-space); }
.demo-video { position: absolute; inset: 0; }
.demo-video .video-bg { opacity: .2; }
.demo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.8), rgba(0,0,0,.5)); }
.demo-inner { position: relative; z-index: 10; }
.demo-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .demo-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.demo-overline { font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1.5rem; }
.demo-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,6vw,5rem); line-height: 1; margin-bottom: 2rem; text-transform: uppercase; }
.demo-h2 .c1 { color: var(--neon-cyan); }
.demo-h2 .c2 { background: linear-gradient(to right, var(--neon-cyan), var(--cyber-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.demo-h2 .c3 { color: #fff; }
.demo-h2 .c4 { color: rgba(255,255,255,.3); }
.demo-desc { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 22rem; margin-bottom: 2.5rem; }
.demo-ctas { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .demo-ctas { flex-direction: row; align-items: center; } }
.demo-cta-link { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; transition: color .3s; }
.demo-cta-link:hover { color: #fff; }
.demo-steps { border-top: 1px solid rgba(255,255,255,.08); }
.demo-step { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem 1rem; margin: 0 -1rem; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: .75rem; transition: background .3s; }
.demo-step:hover { background: rgba(255,255,255,.02); }
.demo-step-num { font-family: var(--font-mono); font-size: .875rem; font-weight: 700; color: var(--neon-cyan); flex-shrink: 0; margin-top: 2px; }
.demo-step-title { font-family: var(--font-display); font-weight: 700; font-size: .875rem; color: #fff; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .25rem; transition: color .3s; }
.demo-step:hover .demo-step-title { color: var(--neon-cyan); }
.demo-step-desc { color: #64748b; font-size: .75rem; line-height: 1.65; }
.demo-note { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; margin-top: 1.25rem; padding: 0 .25rem; }

/* ── Labs Section (homepage preview) ── */
.labs-section {
  padding: 6rem 0; background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #020202 100%);
  position: relative; overflow: hidden;
}
.labs-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, transparent 0%, rgba(0,243,255,.02) 50%, transparent 100%); background-size: 100% 4px; animation: scanline 10s linear infinite; pointer-events: none; z-index: 1; }
.labs-section::after { content: ''; position: absolute; bottom: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(189,0,255,.06) 0%, transparent 70%); pointer-events: none; }
@keyframes scanline { 0% { transform: translateY(-100%) } 100% { transform: translateY(100%) } }
.labs-header { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3.5rem; position: relative; z-index: 2; }
@media (min-width: 768px) { .labs-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.labs-header h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,7vw,5rem); line-height: 1.1; }
.labs-header p { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 22rem; }
@media (min-width: 768px) { .labs-header p { text-align: right; } }
.labs-col-headers { display: none; position: relative; z-index: 2; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.06); }
@media (min-width: 1024px) { .labs-col-headers { display: grid; grid-template-columns: 2.5rem 12rem 1fr 10rem 1fr; } }
.labs-col-headers span { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .2em; padding: 0 .5rem; }
.labs-col-headers span:first-child { padding-left: 0; }
.labs-list { position: relative; z-index: 2; }
.labs-row { border-bottom: 1px solid rgba(255,255,255,.06); }
.labs-row-desktop { display: none; position: relative; overflow: hidden; }
@media (min-width: 1024px) {
  .labs-row-desktop { display: grid; grid-template-columns: 2.5rem 12rem 1fr 10rem 1fr; align-items: center; padding: 1.75rem clamp(1.5rem,4vw,4rem); transition: background .3s; cursor: default; }
  .labs-row-desktop:hover { background: rgba(255,255,255,.025); }
}
.labs-row-desktop::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--neon-cyan); transform: scaleY(0); transition: transform .3s; transform-origin: top; }
.labs-row-desktop:hover::before { transform: scaleY(1); }
.labs-row-num { font-family: var(--font-mono); font-size: 10px; color: rgba(0,243,255,.35); letter-spacing: .25em; }
.labs-row-cat { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .15em; padding: 0 .5rem; }
.labs-row-project { padding: 0 .5rem; }
.labs-row-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; text-transform: uppercase; transition: color .3s; line-height: 1.2; }
.labs-row-desktop:hover .labs-row-title { color: var(--neon-cyan); }
.labs-row-client { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .15em; margin-top: .25rem; }
.labs-row-metric { padding: 0 .5rem; }
.labs-metric-val { font-family: var(--font-mono); font-size: 1.25rem; font-weight: 700; color: var(--neon-cyan); display: block; line-height: 1; }
.labs-metric-label { font-family: var(--font-mono); font-size: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: .15em; display: block; margin-top: .25rem; line-height: 1.4; }
.labs-row-stack { display: flex; flex-wrap: wrap; gap: .375rem; padding: 0 .5rem; }
.stack-tag { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.65); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 2px 8px; text-transform: uppercase; letter-spacing: .05em; }
.labs-row-mobile { display: block; padding: 1.5rem clamp(1.5rem,4vw,4rem); }
@media (min-width: 1024px) { .labs-row-mobile { display: none; } }
.labs-footer { position: relative; z-index: 2; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .labs-footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.labs-footer-note { font-family: var(--font-mono); font-size: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: .15em; display: flex; align-items: center; gap: .5rem; }
.labs-footer-note span { color: rgba(0,243,255,.5); }
.labs-footer-ctas { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .labs-footer-ctas { flex-direction: row; align-items: center; } }
.labs-footer-note2 { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; }

/* ── FAQ ── */
.faq-section { padding: 4rem 0; background: var(--deep-space); border-top: 1px solid rgba(255,255,255,.05); }
.faq-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .faq-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.faq-header h2 { font-family: var(--font-display); font-weight: 700; line-height: .95; }
.faq-header h2 .l1 { display: block; font-size: clamp(2rem,5vw,3rem); color: #fff; }
.faq-header h2 .l2 { display: block; font-size: clamp(2rem,5vw,3rem); background: linear-gradient(to right, var(--neon-cyan), var(--cyber-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.faq-header-link { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .15em; transition: color .3s; flex-shrink: 0; padding-bottom: .25rem; }
.faq-header-link:hover { color: var(--neon-cyan); }
.faq-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid rgba(255,255,255,.08); }
@media (min-width: 1024px) { .faq-list { grid-template-columns: 1fr 1fr; column-gap: 3rem; } }
.faq-col { }
.faq-col-right { border-top: 1px solid rgba(255,255,255,.08); }
@media (min-width: 1024px) { .faq-col-right { border-top: none; } }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.faq-btn { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1rem 0; text-align: left; background: none; border: none; color: inherit; }
.faq-question { font-family: var(--font-body); font-weight: 500; font-size: .875rem; line-height: 1.5; letter-spacing: .02em; color: rgba(255,255,255,.65); transition: color .2s; }
.faq-question.open { color: var(--neon-cyan); }
.faq-btn:hover .faq-question { color: rgba(255,255,255,.9); }
.faq-icon { font-family: var(--font-mono); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; color: rgba(255,255,255,.2); transition: all .25s; }
.faq-icon.open { color: var(--neon-cyan); transform: rotate(45deg); }
.faq-answer { padding-bottom: 1rem; color: #64748b; font-size: .75rem; line-height: 1.85; padding-right: 1rem; }
.faq-toggle-wrap { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.faq-toggle { display: flex; align-items: center; gap: .625rem; background: none; border: none; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .15em; transition: color .3s; }
.faq-toggle:hover { color: var(--neon-cyan); }
.faq-toggle-line { width: 1rem; height: 1px; background: currentColor; transition: width .3s; }
$19px; color: rgba(255,255,255,.32); text-transform: uppercase; letter-spacing: .15em; }

/* ── Studio ── */
.studio-section {
  padding: 0 0 7.5rem;
  background: radial-gradient(ellipse at 30% 50%, #0a0015 0%, #050505 60%), radial-gradient(ellipse at 70% 20%, #00152a 0%, transparent 50%);
  position: relative; overflow: hidden;
}
.studio-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,243,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,243,255,.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.studio-inner { position: relative; z-index: 1; }
.studio-header { padding: 6rem 1.5rem; text-align: center; }
.studio-header h2 { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1rem; }
.studio-header p.big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,7vw,5rem); text-transform: uppercase; line-height: 1.1; color: #fff; margin-bottom: 1rem; }
.studio-header-line { height: 4px; width: 6rem; background: var(--neon-cyan); margin: 0 auto 2rem; }
.studio-header p.desc { color: #94a3b8; font-size: 1rem; max-width: 40rem; margin: 0 auto; line-height: 1.75; }
.studio-cards-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 0 5vw; max-width: 1400px; margin: 0 auto; }
@media (min-width: 1024px) { .studio-cards-grid { grid-template-columns: repeat(3,1fr); } }
.studio-card { position: relative; border-radius: 1.5rem; background: rgba(8,8,12,.9); border: 1px solid rgba(255,255,255,.06); overflow: hidden; cursor: pointer; transition: border-color .4s, box-shadow .4s; transform-style: preserve-3d; }
.studio-card:hover { border-color: rgba(0,243,255,.35); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.studio-card-accent-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,243,255,.6), transparent); opacity: 0; transition: opacity .4s; }
.studio-card:hover .studio-card-accent-line { opacity: 1; }
.studio-cards-grid > *:nth-child(2) .studio-card-accent-line { background: linear-gradient(90deg, transparent, rgba(189,0,255,.6), transparent); }
.studio-cards-grid > *:nth-child(2) .studio-card-icon { color: var(--cyber-purple) !important; }
.studio-cards-grid > *:nth-child(2) .studio-tag { border-color: rgba(189,0,255,.2); color: rgba(189,0,255,.7); background: rgba(189,0,255,.04); }
.studio-card-inner { padding: 2.5rem 2rem; display: flex; flex-direction: column; min-height: 420px; }
.studio-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.studio-card-icon { font-size: 2rem; color: var(--neon-cyan); display: block; line-height: 1; }
.studio-card-id { font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.2); letter-spacing: .15em; }
.studio-card-subtitle { font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; display: block; margin-bottom: .5rem; }
.studio-card-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem,2.5vw,1.75rem); color: #fff; margin-bottom: 1rem; }
.studio-card-desc { color: #94a3b8; font-size: .875rem; line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.studio-card-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; }
.studio-tag { display: inline-block; padding: .3rem .75rem; border: 1px solid rgba(0,243,255,.2); border-radius: 4px; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .08em; color: rgba(0,243,255,.7); background: rgba(0,243,255,.04); transition: all .3s; }
.studio-card:hover .studio-tag { border-color: rgba(0,243,255,.4); color: var(--neon-cyan); background: rgba(0,243,255,.08); }
.studio-card-glow { position: absolute; inset: 0; border-radius: 1.5rem; background: radial-gradient(circle at 50% 0%, rgba(0,243,255,.05) 0%, transparent 60%); opacity: 0; transition: opacity .5s; pointer-events: none; }
.studio-card:hover .studio-card-glow { opacity: 1; }
.studio-cta { text-align: center; padding: 4rem 1.5rem; }

/* ── Academy ── */
.academy-section {
  padding: 0 0 5rem;
  background: radial-gradient(circle at 50% 0%, #050a05 0%, #020202 100%);
  position: relative; overflow: hidden;
}
.academy-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,243,255,.01) 2px, rgba(0,243,255,.01) 4px); pointer-events: none; }
.academy-inner { position: relative; z-index: 1; }
.academy-header { padding: 6rem clamp(1.5rem,6vw,6rem); max-width: 1400px; margin: 0 auto; text-align: left; }
.academy-header h2 { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1rem; }
.academy-header p.big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,7vw,5rem); text-transform: uppercase; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.academy-header-line { height: 4px; width: 6rem; background: var(--neon-cyan); margin: 0 0 2rem; }
.academy-header p.desc { color: #94a3b8; font-size: 1rem; max-width: 40rem; margin: 0 0 2rem; line-height: 1.75; }
.academy-badge { display: inline-flex; align-items: center; gap: .75rem; padding: .625rem 1.25rem; border: 1px solid rgba(0,243,255,.25); border-radius: 100px; background: rgba(0,243,255,.05); }
.academy-badge span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--neon-cyan); text-transform: uppercase; }
.academy-tracks { display: flex; flex-direction: column; padding: 0 clamp(1.5rem,6vw,6rem); max-width: 1400px; margin: 0 auto 1.5rem; }
.academy-track-row { display: grid; grid-template-columns: 48px 56px 1fr auto 32px; align-items: center; gap: 1.5rem; padding: 2rem 2.5rem; border-top: 1px solid rgba(255,255,255,.05); border-radius: .75rem; cursor: pointer; transition: background .3s, border-color .3s; will-change: transform; }
.academy-track-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,.05); }
.academy-track-row:hover { background: rgba(0,243,255,.03); border-color: rgba(0,243,255,.15); }
.academy-track-row:hover .academy-track-number { color: var(--neon-cyan); }
.academy-track-row:hover .academy-track-icon { color: var(--neon-cyan); text-shadow: 0 0 12px rgba(0,243,255,.6); }
.academy-track-row:hover .academy-track-arrow { opacity: 1; transform: translateX(4px); color: var(--neon-cyan); }
.academy-track-number { font-family: var(--font-display); font-size: .7rem; color: rgba(255,255,255,.2); letter-spacing: .15em; transition: color .3s; }
.academy-track-icon { font-size: 1.4rem; color: rgba(255,255,255,.3); text-align: center; transition: all .3s; }
.academy-track-content { min-width: 0; }
.academy-track-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem,2.5vw,1.5rem); color: #fff; margin-bottom: .25rem; }
.academy-track-tagline { color: #64748b; font-size: .75rem; line-height: 1.65; }
.academy-track-meta { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; flex-shrink: 0; }
.academy-meta-badge { font-family: var(--font-body); font-size: .65rem; letter-spacing: .08em; color: rgba(255,255,255,.35); text-transform: uppercase; border: 1px solid rgba(255,255,255,.08); padding: .2rem .6rem; border-radius: 4px; white-space: nowrap; transition: all .3s; }
.academy-meta-badge.cyan { border-color: rgba(0,243,255,.3); color: rgba(0,243,255,.7); background: rgba(0,243,255,.05); }
.academy-track-row:hover .academy-meta-badge { border-color: rgba(0,243,255,.2); color: rgba(0,243,255,.6); }
.academy-track-arrow { font-size: 1.1rem; opacity: 0; color: rgba(255,255,255,.3); transition: all .3s; flex-shrink: 0; }
.academy-track-desc { padding: 1.25rem clamp(1.5rem,6vw,6rem); padding-left: calc(clamp(1.5rem,6vw,6rem) + 48px + 56px + 3rem); border-bottom: 1px solid rgba(255,255,255,.05); background: rgba(0,243,255,.02); max-width: 1400px; margin: 0 auto; }
.academy-track-desc p { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 40rem; }
.academy-track-desc a { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; color: var(--neon-cyan); text-transform: uppercase; transition: color .3s; }
.academy-track-desc a:hover { color: #fff; }
@media (max-width: 768px) {
  .academy-track-row { grid-template-columns: 40px 1fr auto; gap: 1rem; padding: 1.25rem 1rem; }
  .academy-track-icon { display: none; }
  .academy-track-arrow { display: block; font-size: .875rem; }
  .academy-track-meta { flex-direction: column; gap: .25rem; align-items: flex-end; }
  .academy-track-meta .academy-meta-badge:nth-child(2) { display: none; }
  .academy-track-desc { padding: 1.25rem 1.5rem; }
}
@media (max-width: 480px) {
  .academy-track-row { grid-template-columns: 2rem 1fr 1.5rem; gap: .75rem; padding: 1rem .75rem; }
  .academy-track-meta { display: none; }
  .academy-track-title { font-size: .85rem; }
  .academy-track-tagline { font-size: .65rem; }
}
.academy-cta-block { padding: 0 clamp(1.5rem,6vw,6rem); max-width: 1400px; margin: 2rem auto 0; }
.academy-cta-inner { border: 1px solid rgba(0,243,255,.2); border-radius: 1.25rem; padding: 2.5rem clamp(1.5rem,3.5vw,3.5rem); background: rgba(0,243,255,.03); position: relative; overflow: hidden; }
.academy-cta-inner::before { content: ''; position: absolute; top: 0; right: 0; width: 16rem; height: 16rem; background: rgba(0,243,255,.05); filter: blur(80px); border-radius: 50%; pointer-events: none; }
.academy-cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .academy-cta-content { flex-direction: row; align-items: center; justify-content: space-between; } }
.academy-cta-text h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem,3vw,2.25rem); color: #fff; text-transform: uppercase; margin-bottom: .75rem; }
.academy-cta-text p { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 36rem; }
.academy-cta-actions { display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0; }
.academy-cta-note { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.35); text-align: center; letter-spacing: .15em; text-transform: uppercase; }

/* ── Contact ── */
.contact-creative { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
.contact-bg { position: absolute; inset: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .15; filter: blur(4px); transform: scale(1.1); }
.contact-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.contact-glass {
  background: rgba(10,10,10,.7); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1.5rem; overflow: hidden;
  width: 90%; max-width: 1400px;
  display: grid; grid-template-columns: 1fr;
  position: relative; z-index: 10;
  margin: 2rem auto;
}
@media (min-width: 1024px) { .contact-glass { grid-template-columns: minmax(400px,500px) minmax(0,580px); } }
.contact-panel-left { padding: 3rem clamp(2rem,4vw,4rem); border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.4); display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-panel-left { border-bottom: none; border-right: 1px solid rgba(255,255,255,.1); } }
.contact-overline { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1rem; }
.contact-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.75rem,3.5vw,2.5rem); color: #fff; line-height: 1.2; margin-bottom: 1.25rem; }
.contact-h2 span { color: var(--neon-cyan); }
.contact-desc { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 20rem; }
.contact-status { display: flex; align-items: center; gap: .75rem; }
.contact-status span { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; color: rgba(255,255,255,.7); text-transform: uppercase; }
.contact-who { border: 1px solid rgba(255,255,255,.06); border-radius: .75rem; padding: 1.25rem; background: rgba(255,255,255,.02); }
.contact-who-title { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem; }
.contact-who-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.contact-who-item:last-child { margin-bottom: 0; }
.contact-who-item span.arrow { color: var(--neon-cyan); font-size: 10px; margin-top: 2px; flex-shrink: 0; }
.contact-who-item p { color: #e2e8f0; font-size: .75rem; line-height: 1.65; }
.contact-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-detail-label { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .25rem; }
.contact-detail-val { font-size: .875rem; color: #fff; }
.contact-detail-val a:hover { color: var(--neon-cyan); }
.contact-panel-right { padding: 3rem clamp(2rem,4vw,4rem); background: rgba(255,255,255,.03); backdrop-filter: blur(20px); display: flex; flex-direction: column; }
.contact-form-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-form-meta { font-family: var(--font-mono); font-size: 9px; letter-spacing: .3em; color: rgba(0,243,255,.7); text-transform: uppercase; margin-bottom: .5rem; }
.contact-form-desc { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.65; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }
.contact-form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.contact-label { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.contact-label-num { font-family: var(--font-mono); font-size: 8px; color: rgba(0,243,255,.4); letter-spacing: .15em; }
.contact-label-text { font-family: var(--font-mono); font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: .2em; }
.contact-error { color: rgba(248,113,113,.8); font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em; display: none; }
.contact-submit { width: 100%; padding: .875rem; background: var(--neon-cyan); color: #000; font-family: var(--font-display); font-weight: 700; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; border: none; border-radius: .75rem; cursor: pointer; transition: all .3s; margin-top: .5rem; }
.contact-submit:hover { background: #fff; }
.contact-submit:disabled { opacity: .4; cursor: not-allowed; }
.contact-submit-meta { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 1rem; }
.contact-submit-meta span { font-family: var(--font-mono); font-size: 8px; color: rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: .15em; display: flex; align-items: center; gap: .375rem; }
.contact-submit-meta span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(0,243,255,.3); display: inline-block; }
.contact-success { display: none; flex-direction: column; align-items: center; justify-content: center; flex: 1; min-height: 360px; text-align: center; }
.contact-success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 1px solid rgba(0,243,255,.5); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 0 24px rgba(0,243,255,.15); }
.contact-success-icon span { color: var(--neon-cyan); font-size: 1.25rem; }
.contact-success-overline { font-family: var(--font-mono); font-size: 9px; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: .75rem; }
.contact-success-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: .75rem; text-transform: uppercase; }
.contact-success-desc { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 20rem; margin-bottom: 2rem; }
#send-another { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.4); background: none; border: 1px solid rgba(255,255,255,.1); border-radius: .75rem; padding: .75rem 1.5rem; transition: all .2s; cursor: pointer; }
#send-another:hover { color: var(--neon-cyan); border-color: rgba(0,243,255,.3); }

/* ── Footer ── */
footer { background: #000; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem clamp(2rem,6vw,6rem); max-width: 1400px; margin: 0 auto; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: .15em; color: #fff; display: inline-block; margin-bottom: .75rem; transition: color .2s; }
.footer-logo:hover { color: var(--neon-cyan); }
.footer-tagline { font-family: var(--font-mono); font-size: 9px; color: var(--neon-cyan); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { color: #64748b; font-size: .75rem; line-height: 1.75; max-width: 20rem; margin-bottom: 1.5rem; }
.footer-status { display: flex; align-items: center; gap: .5rem; }
.footer-status-text { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .15em; }
.footer-col-title { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-link { font-family: var(--font-mono); font-size: .75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .05em; transition: color .2s; }
.footer-link:hover { color: var(--neon-cyan); }
.footer-connect { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-meta-label { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .15em; margin-bottom: .375rem; }
.footer-email { font-family: var(--font-mono); font-size: .75rem; color: #94a3b8; transition: color .2s; }
.footer-email:hover { color: var(--neon-cyan); }
.footer-social { display: flex; gap: 1rem; }
.footer-social-link { font-family: var(--font-mono); font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: .15em; transition: color .2s; }
.footer-social-link:hover { color: var(--neon-cyan); }
.footer-response { border: 1px solid rgba(255,255,255,.06); border-radius: .75rem; padding: 1rem; background: rgba(255,255,255,.02); }
.footer-response-val { font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.6); }
.footer-response-sub { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.35); margin-top: .25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.25rem clamp(2rem,6vw,6rem); display: flex; flex-direction: column; gap: 1rem; max-width: 1400px; margin: 0 auto; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom-left { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.footer-copy { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.55); letter-spacing: .1em; }
.footer-dot { color: rgba(255,255,255,.1); display: none; }
@media (min-width: 768px) { .footer-dot { display: inline; } }
.footer-etymology { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.32); letter-spacing: .1em; display: none; }
@media (min-width: 768px) { .footer-etymology { display: block; } }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal-link { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: .1em; transition: color .2s; }
.footer-legal-link:hover { color: rgba(255,255,255,.5); }

/* ── Chatbot ── */
#chatbot-slot { position: fixed; bottom: 0; right: 0; z-index: 200; }
#chatbot-panel { position: fixed; bottom: 6rem; right: 1.25rem; z-index: 200; width: calc(100vw - 2.5rem); max-width: 22rem; flex-direction: column; }
@media (min-width: 768px) { #chatbot-panel { right: 1.5rem; } }
.chatbot-gradient-border { padding: 1px; background: linear-gradient(to bottom, rgba(0,243,255,.7), rgba(189,0,255,.4), rgba(0,243,255,.2)); border-radius: 1rem; box-shadow: 0 0 40px rgba(0,243,255,.12), 0 24px 64px rgba(0,0,0,.85); }
.chatbot-inner { display: flex; flex-direction: column; border-radius: 1rem; overflow: hidden; background: #070707; }
.chatbot-accent-bar { height: 2px; background: linear-gradient(to right, var(--neon-cyan), var(--cyber-purple), rgba(0,243,255,.3)); flex-shrink: 0; }
.chatbot-header { display: flex; align-items: center; justify-content: space-between; padding: .875rem 1.25rem; background: rgba(0,0,0,.5); }
.chatbot-agent { display: flex; align-items: center; gap: .75rem; }
.chatbot-avatar { position: relative; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: linear-gradient(135deg, rgba(0,243,255,.2), rgba(189,0,255,.2)); border: 1px solid rgba(0,243,255,.4); display: flex; align-items: center; justify-content: center; }
.chatbot-avatar-text { font-family: var(--font-display); font-weight: 700; color: var(--neon-cyan); font-size: .65rem; letter-spacing: .05em; }
.chatbot-online-dot { position: absolute; bottom: -2px; right: -2px; width: 10px; height: 10px; border-radius: 50%; background: var(--neon-cyan); border: 2px solid #070707; }
.chatbot-name-row { display: flex; align-items: center; gap: .5rem; }
.chatbot-name { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
$18px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; }
.chatbot-status-row { display: flex; align-items: center; gap: .375rem; margin-top: .25rem; }
.chatbot-status { font-family: var(--font-mono); font-size: 8px; color: rgba(0,243,255,.5); text-transform: uppercase; letter-spacing: .1em; }
.chatbot-actions { display: flex; align-items: center; gap: .75rem; }
.chatbot-icon-btn { background: none; border: none; color: rgba(255,255,255,.2); transition: color .2s; display: flex; align-items: center; }
.chatbot-icon-btn:hover { color: var(--neon-cyan); }
.chatbot-icon-btn.close-btn:hover { color: #fff; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; max-height: 400px; }
.chat-msg { display: flex; flex-direction: column; }
.chat-msg-bot { align-items: flex-start; }
.chat-msg-user { align-items: flex-end; }
$18px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .375rem; padding: 0 .25rem; }
.chat-bubble { max-width: 88%; border-radius: 1rem; padding: .75rem 1rem; font-size: .75rem; line-height: 1.75; white-space: pre-wrap; }
.chat-msg-bot .chat-bubble { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: #cbd5e1; border-radius: 1rem 1rem 1rem .25rem; }
.chat-msg-user .chat-bubble { background: linear-gradient(135deg, var(--neon-cyan), rgba(0,243,255,.8)); color: #000; font-weight: 500; border-radius: 1rem 1rem .25rem 1rem; }
.chat-typing { display: flex; gap: .375rem; align-items: center; padding: .75rem 1rem; }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,243,255,.7); animation: typingBounce 1.2s ease-in-out infinite; }
.typing-dot:nth-child(1) { animation-delay: 0ms; }
.typing-dot:nth-child(2) { background: rgba(189,0,255,.7); animation-delay: 160ms; }
.typing-dot:nth-child(3) { animation-delay: 320ms; }
@keyframes typingBounce { 0%,80%,100% { transform: translateY(0) } 40% { transform: translateY(-6px) } }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: .625rem; max-width: 92%; }
.chat-quick-btn { font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; letter-spacing: .05em; color: rgba(0,243,255,.8); border: 1px solid rgba(0,243,255,.25); border-radius: 100px; padding: .375rem .75rem; background: none; transition: all .2s; }
.chat-quick-btn:hover { background: var(--neon-cyan); color: #000; border-color: var(--neon-cyan); }
.chatbot-input-area { border-top: 1px solid rgba(255,255,255,.06); padding: .75rem 1rem; background: rgba(0,0,0,.3); }
#chatbot-form { display: flex; gap: .5rem; }
#chatbot-input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: .75rem; padding: .625rem .875rem; font-size: .75rem; color: #fff; font-family: var(--font-mono); transition: all .2s; width: auto; }
#chatbot-input:focus { border-color: rgba(0,243,255,.4); background: rgba(255,255,255,.07); }
#chatbot-send { width: 2.25rem; height: 2.25rem; border-radius: .75rem; background: linear-gradient(135deg, var(--neon-cyan), rgba(0,243,255,.7)); color: #000; border: none; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; flex-shrink: 0; transition: all .3s; }
#chatbot-send:hover { background: linear-gradient(135deg, #fff, #fff); }
#chatbot-send:disabled { opacity: .25; cursor: not-allowed; }
.chatbot-footer-note { font-family: var(--font-mono); font-size: 7px; color: rgba(255,255,255,.28); text-align: center; text-transform: uppercase; letter-spacing: .1em; margin-top: .5rem; }
.chatbot-float-wrapper { position: fixed; bottom: 2rem; right: 1.25rem; display: flex; flex-direction: column; align-items: center; gap: .375rem; z-index: 201; }
@media (min-width: 768px) { .chatbot-float-wrapper { right: 1.5rem; } }
.chatbot-ping { position: absolute; inset: 0; border-radius: 50%; background: rgba(0,243,255,.2); animation: chatPing 1.5s ease-out infinite; pointer-events: none; }
@keyframes chatPing { 0% { transform: scale(1); opacity: .8 } 100% { transform: scale(1.8); opacity: 0 } }
#chatbot-float-btn {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #7b2fff 100%);
  box-shadow: 0 0 24px rgba(0,243,255,.4), 0 0 60px rgba(123,47,255,.2);
  display: flex; align-items: center; justify-content: center; transition: all .3s; position: relative;
}
#chatbot-float-btn.open { background: rgba(255,255,255,.08); box-shadow: none; }
.chatbot-online-badge { position: absolute; top: -2px; right: -2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--deep-space); }
$18px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }

/* ── Lead Popup ── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(8px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.popup-modal { background: #0a0a0a; border: 1px solid rgba(0,243,255,.15); border-radius: 1.5rem; padding: clamp(2rem,5vw,3rem); width: 100%; max-width: 32rem; position: relative; box-shadow: 0 50px 100px rgba(0,0,0,1), 0 0 40px rgba(0,243,255,.08); }
.popup-corner { position: absolute; width: 3rem; height: 3rem; pointer-events: none; }
.popup-corner-tl { top: -.5px; left: -.5px; border-top: 2px solid rgba(0,243,255,.3); border-left: 2px solid rgba(0,243,255,.3); border-radius: 1.5rem 0 0 0; }
.popup-corner-br { bottom: -.5px; right: -.5px; border-bottom: 2px solid rgba(189,0,255,.2); border-right: 2px solid rgba(189,0,255,.2); border-radius: 0 0 1.5rem 0; }
.popup-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: .875rem; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.popup-close:hover { background: #fff; color: #000; }
.popup-overline { font-family: var(--font-mono); font-size: 9px; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1rem; }
.popup-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem,3vw,1.75rem); color: #fff; text-transform: uppercase; margin-bottom: .75rem; }
.popup-subtitle { color: #94a3b8; font-size: .8rem; line-height: 1.65; margin-bottom: 1.5rem; }
.popup-field { margin-bottom: 1rem; }
.popup-label { font-family: var(--font-mono); font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: .2em; display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.popup-field-num { color: rgba(0,243,255,.4); font-size: 8px; }
.popup-error { color: rgba(248,113,113,.8); font-family: var(--font-mono); font-size: 10px; margin-bottom: .75rem; }
.popup-submit { width: 100%; padding: .875rem; background: var(--neon-cyan); color: #000; font-family: var(--font-display); font-weight: 700; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; border: none; border-radius: .75rem; margin-top: .25rem; cursor: pointer; transition: all .3s; }
.popup-submit:hover { background: #fff; }
.popup-submit:disabled { opacity: .4; cursor: not-allowed; }
.popup-dismiss { display: block; text-align: center; margin-top: 1rem; font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .15em; background: none; border: none; transition: color .2s; }
.popup-dismiss:hover { color: rgba(255,255,255,.6); }
.popup-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem 0; }
.popup-check { width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid rgba(0,243,255,.5); display: flex; align-items: center; justify-content: center; color: var(--neon-cyan); font-size: 1.25rem; margin-bottom: 1.25rem; box-shadow: 0 0 24px rgba(0,243,255,.15); }
.popup-success-overline { font-family: var(--font-mono); font-size: 9px; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: .5rem; }
.popup-success-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; text-transform: uppercase; margin-bottom: .75rem; }
.popup-success-body { color: #94a3b8; font-size: .875rem; line-height: 1.65; }

/* ── Search ── */
.search-trigger { display: flex; align-items: center; gap: .75rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: .75rem; padding: .625rem 1rem; font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.4); transition: all .2s; }
.search-trigger:hover { border-color: rgba(0,243,255,.3); color: rgba(0,243,255,.8); }
.search-trigger-kbd { font-family: var(--font-mono); font-size: .65rem; color: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 1px 6px; }
.search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(8px); z-index: 900; align-items: flex-start; justify-content: center; padding-top: 15vh; }
.search-panel { width: 90%; max-width: 38rem; background: #0a0a0a; border: 1px solid rgba(0,243,255,.2); border-radius: 1rem; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,1); }
.search-input-wrap { display: flex; align-items: center; gap: .875rem; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.search-icon { color: rgba(255,255,255,.3); font-size: 1.1rem; flex-shrink: 0; }
#search-input { flex: 1; background: none; border: none; font-size: 1rem; color: #fff; font-family: var(--font-body); padding: 0; width: auto; border-radius: 0; }
#search-input:focus { outline: none; background: none; border: none; box-shadow: none; }
.search-esc { font-family: var(--font-mono); font-size: .65rem; color: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 2px 8px; flex-shrink: 0; cursor: pointer; }
.search-results { max-height: 24rem; overflow-y: auto; }
.search-item a { display: flex; align-items: center; gap: .875rem; padding: .875rem 1.25rem; transition: background .15s; cursor: pointer; text-decoration: none; }
.search-item a:hover, .search-item.selected a { background: rgba(255,255,255,.04); }
.search-item-icon { font-size: .875rem; color: var(--neon-cyan); flex-shrink: 0; width: 1.25rem; text-align: center; }
.search-item-body { flex: 1; min-width: 0; }
.search-item-title { display: block; font-size: .875rem; color: #fff; }
.search-item-subtitle { display: block; font-family: var(--font-mono); font-size: .7rem; color: #64748b; margin-top: .125rem; text-transform: uppercase; letter-spacing: .05em; }
.search-item-type { font-family: var(--font-mono); font-size: .65rem; color: rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: .05em; flex-shrink: 0; border: 1px solid rgba(255,255,255,.08); padding: 2px 8px; border-radius: 4px; }
.search-empty { padding: 2rem; text-align: center; font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: .1em; }
.search-footer { display: flex; gap: 1.5rem; padding: .75rem 1.25rem; border-top: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02); }
.search-footer span { font-family: var(--font-mono); font-size: .65rem; color: rgba(255,255,255,.25); display: flex; align-items: center; gap: .375rem; }
.search-footer kbd { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 1px 6px; font-family: var(--font-mono); font-size: .6rem; color: rgba(255,255,255,.4); }

/* ── Page wrapper ── */
.page-main { padding-top: 5.5rem; min-height: 100vh; background: var(--deep-space); }
.page-hero { padding: clamp(2rem,5vw,5rem) clamp(1.5rem,4vw,4rem); max-width: 1400px; margin: 0 auto; position: relative; }
.page-hero-glow { position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: rgba(189,0,255,.08); filter: blur(140px); border-radius: 50%; pointer-events: none; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem,8vw,6.5rem); line-height: .95; color: #fff; }
.page-hero h1 .dim { color: rgba(255,255,255,.2); }
.page-divider { height: 1px; background: linear-gradient(to right, rgba(0,243,255,.5), rgba(255,255,255,.1), transparent); max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.5rem,4vw,4rem); }
.page-divider-inner { height: 1px; background: linear-gradient(to right, rgba(0,243,255,.5), rgba(255,255,255,.1), transparent); }
.content-section { padding: 5rem clamp(1.5rem,4vw,4rem); max-width: 1400px; margin: 0 auto; }

/* ── About Page ── */
.about-two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-two-col { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-page-body p { font-size: 1.1rem; color: #e2e8f0; line-height: 1.9; margin-bottom: 1.5rem; }
.about-page-body p strong { color: var(--neon-cyan); font-weight: 500; }
.about-page-body p.small { font-size: 1rem; color: #94a3b8; }
.about-page-body p.xsmall { font-size: .875rem; color: #64748b; }
.about-card { border: 1px solid rgba(255,255,255,.08); border-radius: 1.25rem; padding: 2rem; background: rgba(255,255,255,.02); margin-bottom: 1.25rem; }
.about-card-label { font-family: var(--font-mono); font-size: 9px; color: rgba(0,243,255,.6); text-transform: uppercase; letter-spacing: .2em; margin-bottom: .75rem; }
.about-card p { color: #e2e8f0; font-size: .875rem; line-height: 1.75; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.process-card { border: 1px solid rgba(255,255,255,.08); border-radius: 1.25rem; padding: 2rem; background: rgba(255,255,255,.02); transition: all .3s; }
.process-card:hover { border-color: rgba(0,243,255,.25); background: rgba(255,255,255,.035); }
.process-card-num { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--neon-cyan); margin-bottom: 1rem; }
.process-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: .75rem; transition: color .3s; }
.process-card:hover h3 { color: var(--neon-cyan); }
.process-card p { color: #94a3b8; font-size: .875rem; line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.value-card { display: flex; gap: 1.5rem; border: 1px solid rgba(255,255,255,.08); border-radius: 1.25rem; padding: 2rem; background: rgba(255,255,255,.02); transition: all .3s; }
.value-card:hover { border-color: rgba(0,243,255,.25); background: rgba(255,255,255,.04); }
.value-num { font-family: var(--font-mono); font-size: 10px; color: rgba(0,243,255,.35); letter-spacing: .25em; flex-shrink: 0; padding-top: 4px; }
.value-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: .75rem; transition: color .3s; }
.value-card:hover h3 { color: var(--neon-cyan); }
.value-card p { color: #94a3b8; font-size: .875rem; line-height: 1.85; }
.pillars-list { border-top: 1px solid rgba(255,255,255,.08); }
.pillar-row { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.pillar-num { font-family: var(--font-mono); font-size: 10px; color: rgba(0,243,255,.4); letter-spacing: .25em; flex-shrink: 0; padding-top: 4px; width: 1.5rem; }
.pillar-content { flex: 1; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .pillar-content { grid-template-columns: 15rem 1fr; gap: 3rem; } }
.pillar-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; text-transform: uppercase; transition: color .3s; }
.pillar-row:hover .pillar-title { color: var(--neon-cyan); }
.pillar-body { color: #94a3b8; font-size: .875rem; line-height: 1.85; }
.promise-block { border: 1px solid rgba(0,243,255,.15); border-radius: 1.25rem; padding: clamp(2.5rem,5vw,3.5rem); background: linear-gradient(135deg, rgba(0,243,255,.05), rgba(189,0,255,.05)); position: relative; overflow: hidden; }
.promise-tl { position: absolute; top: -1px; left: -1px; width: 4rem; height: 4rem; border-top: 2px solid rgba(0,243,255,.3); border-left: 2px solid rgba(0,243,255,.3); border-radius: 1.25rem 0 0 0; pointer-events: none; }
.promise-br { position: absolute; bottom: -1px; right: -1px; width: 4rem; height: 4rem; border-bottom: 2px solid rgba(189,0,255,.2); border-right: 2px solid rgba(189,0,255,.2); border-radius: 0 0 1.25rem 0; pointer-events: none; }
.promise-inner { max-width: 48rem; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.promise-overline { font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1.5rem; }
blockquote.promise-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem,3vw,2rem); color: #fff; line-height: 1.4; margin-bottom: 2rem; }
blockquote.promise-quote span { color: var(--neon-cyan); }
.promise-body { color: #94a3b8; font-size: 1rem; line-height: 1.75; max-width: 36rem; margin: 0 auto 2.5rem; }
.founding-two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .founding-two-col { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.founding-card { border: 1px solid rgba(255,255,255,.08); border-radius: .75rem; padding: 1.5rem; background: rgba(255,255,255,.02); margin-bottom: 1rem; transition: border-color .3s; }
.founding-card:hover { border-color: rgba(0,243,255,.2); }
.founding-card-label { font-family: var(--font-mono); font-size: 8px; color: rgba(0,243,255,.6); text-transform: uppercase; letter-spacing: .2em; margin-bottom: .5rem; }
.founding-card p { color: #e2e8f0; font-size: .875rem; line-height: 1.75; }

/* ── Services Page ── */
.services-command-panel { border: 1px solid rgba(255,255,255,.1); border-radius: 1.25rem; overflow: hidden; }
.services-nav { border-right: 1px solid rgba(255,255,255,.08); }
.services-nav-header { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.015); position: relative; overflow: hidden; }
.services-nav-header p { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .2em; }
#services-progress-bar { position: absolute; bottom: 0; left: 0; height: 1px; background: rgba(0,243,255,.4); transition: none; width: 0; }
.service-nav-btn { width: 100%; text-align: left; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border: none; border-bottom: 1px solid rgba(255,255,255,.05); background: none; color: inherit; transition: all .2s; position: relative; }
.service-nav-btn:hover { background: rgba(255,255,255,.02); }
.service-nav-btn.active { background: rgba(0,243,255,.08); border-left: 2px solid var(--neon-cyan); }
.service-nav-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: .25em; color: rgba(0,243,255,.25); flex-shrink: 0; width: 1.5rem; }
.service-nav-btn.active .service-nav-tag { color: var(--neon-cyan); }
.service-nav-title { font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: rgba(255,255,255,.7); text-transform: uppercase; }
.service-nav-btn.active .service-nav-title { color: var(--neon-cyan); }
.service-nav-sub { font-family: var(--font-mono); font-size: 8px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.service-nav-arrow { font-family: var(--font-mono); color: var(--neon-cyan); font-size: .875rem; flex-shrink: 0; display: none; }
.service-nav-btn.active .service-nav-arrow { display: block; }
.services-detail { transition: opacity .2s; }
.service-detail-header { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.015); display: flex; align-items: center; justify-content: space-between; }
#service-detail-id { display: flex; align-items: center; gap: .75rem; }
.service-detail-tag { font-family: var(--font-mono); font-size: 9px; color: rgba(0,243,255,.5); letter-spacing: .25em; }
.service-detail-sep { width: 1px; height: .75rem; background: rgba(255,255,255,.15); }
.service-detail-subtitle { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .1em; }
.service-active-badge { display: flex; align-items: center; gap: .375rem; }
.service-active-badge span { font-family: var(--font-mono); font-size: 8px; color: rgba(0,243,255,.5); text-transform: uppercase; letter-spacing: .1em; }
#service-detail-content { padding: 2rem; }
.service-detail-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem,3vw,2.25rem); color: #fff; margin-bottom: 1.25rem; }
.service-detail-desc { color: #e2e8f0; font-size: .875rem; line-height: 1.85; margin-bottom: 2rem; }
.service-section-label { font-family: var(--font-mono); font-size: 9px; color: rgba(0,243,255,.6); text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1rem; }
.service-section-label-purple { color: rgba(189,0,255,.6) !important; }
.service-deliverables ul { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.service-deliverables li { display: flex; align-items: flex-start; gap: .75rem; }
.service-bullet { color: var(--neon-cyan); font-family: var(--font-mono); font-size: .75rem; flex-shrink: 0; margin-top: 2px; }
.service-deliverables li span:last-child { color: #e2e8f0; font-size: .875rem; line-height: 1.5; }
.service-tech-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 2rem; }
.service-tech-tag { font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; letter-spacing: .05em; color: #64748b; border: 1px solid rgba(255,255,255,.08); border-radius: 100px; padding: .25rem .625rem; transition: all .2s; }
.service-tech-tag:hover { color: var(--cyber-purple); border-color: rgba(189,0,255,.3); background: rgba(189,0,255,.05); }
.service-meta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; margin-bottom: 1.5rem; }
.service-meta-label { font-family: var(--font-mono); font-size: 8px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; margin-bottom: .25rem; }
.service-meta-value { font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.service-ctas { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.service-cta-link { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .15em; transition: color .3s; }
.service-cta-link:hover { color: rgba(255,255,255,.6); }
@media (min-width: 1024px) {
  .services-command-panel { display: grid; grid-template-columns: 1fr 1.6fr; }
}
.services-why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-why-grid { grid-template-columns: 1fr 1fr; } }
.services-why-card { border: 1px solid rgba(255,255,255,.08); border-radius: 1.25rem; padding: 2rem; background: rgba(255,255,255,.02); transition: all .3s; display: flex; gap: 1.25rem; }
.services-why-card:hover { border-color: rgba(0,243,255,.25); background: rgba(255,255,255,.035); }
.services-why-num { font-family: var(--font-mono); font-size: 10px; color: rgba(0,243,255,.4); letter-spacing: .25em; flex-shrink: 0; padding-top: 4px; }
.services-why-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: .75rem; transition: color .3s; }
.services-why-card:hover h3 { color: var(--neon-cyan); }
.services-why-card p { color: #94a3b8; font-size: .875rem; line-height: 1.85; }
.industries-tags { display: flex; flex-wrap: wrap; gap: .75rem; }
.industry-tag { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: #94a3b8; border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: .5rem 1rem; transition: all .2s; }
.industry-tag:hover { border-color: rgba(0,243,255,.4); color: var(--neon-cyan); }
.services-cta-block { border: 1px solid rgba(0,243,255,.15); border-radius: 1.25rem; padding: clamp(2.5rem,5vw,3.5rem); background: linear-gradient(135deg, rgba(0,243,255,.05), rgba(189,0,255,.05)); position: relative; overflow: hidden; }

/* ── Labs Page ── */
.labs-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,.08); border-radius: 1.25rem; overflow: hidden; }
@media (min-width: 768px) { .labs-stats-grid { grid-template-columns: repeat(4,1fr); } }
.labs-stat { padding: 1.5rem 2rem; background: rgba(255,255,255,.02); border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.labs-stat:last-child { border-right: none; }
.labs-stat-val { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem,3vw,2rem); color: var(--neon-cyan); margin-bottom: .25rem; }
.labs-stat-label { font-family: var(--font-mono); font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .18em; }
.labs-categories { display: flex; flex-wrap: wrap; gap: .5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.cat-btn { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .05em; padding: .5rem 1rem; border-radius: 100px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.05); color: #94a3b8; transition: all .2s; }
.cat-btn.active { background: var(--neon-cyan); color: #000; font-weight: 700; border-color: var(--neon-cyan); box-shadow: 0 0 12px rgba(0,243,255,.3); }
.cat-btn:hover:not(.active) { border-color: rgba(0,243,255,.3); color: #fff; }
.labs-page-col-headers { display: none; padding-bottom: .75rem; }
@media (min-width: 1024px) { .labs-page-col-headers { display: grid; grid-template-columns: 2.5rem 12rem 1fr 10rem 1fr 2rem; } }
.labs-page-col-headers span { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .2em; padding: 0 .5rem; }
.labs-rows-container { border-top: 1px solid rgba(255,255,255,.06); }
.labs-row-wrap { border-bottom: 1px solid rgba(255,255,255,.06); }
.labs-row { cursor: pointer; position: relative; }
.labs-row-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--neon-cyan); transform: scaleY(0); transition: transform .3s; transform-origin: top; }
.labs-row:hover .labs-row-accent { transform: scaleY(1); }
.labs-row-desktop { display: none; align-items: center; padding: 1.75rem clamp(1.5rem,4vw,4rem); transition: background .3s; }
@media (min-width: 1024px) { .labs-row-desktop { display: grid; grid-template-columns: 2.5rem 12rem 1fr 10rem 1fr 2rem; } }
.labs-row:hover .labs-row-desktop { background: rgba(255,255,255,.025); }
.labs-row:hover .labs-row-title { color: var(--neon-cyan); }
.labs-row-arrow { font-family: var(--font-mono); font-size: .875rem; color: rgba(255,255,255,.2); justify-self: flex-end; transition: all .3s; }
.labs-row:hover .labs-row-arrow { color: var(--neon-cyan); }
.labs-row-arrow.open { transform: rotate(90deg); color: var(--neon-cyan); }
.labs-row-mobile { display: block; padding: 1.5rem clamp(1.5rem,4vw,4rem); }
@media (min-width: 1024px) { .labs-row-mobile { display: none; } }
.labs-row-mobile-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.labs-metric-row { display: flex; align-items: baseline; gap: .5rem; margin-top: .75rem; }
.labs-expanded { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem clamp(1.5rem,4vw,4rem); background: rgba(255,255,255,.015); border-top: 1px solid rgba(255,255,255,.05); }
@media (min-width: 1024px) { .labs-expanded { grid-template-columns: 1fr 2fr; } }
.labs-exp-label { font-family: var(--font-mono); font-size: 8px; color: rgba(0,243,255,.6); text-transform: uppercase; letter-spacing: .2em; margin-bottom: .75rem; }
.labs-exp-text { color: #e2e8f0; font-size: .875rem; line-height: 1.75; }
.labs-exp-ctas { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.5rem; flex-wrap: wrap; }
.labs-exp-meta { font-family: var(--font-mono); font-size: 8px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; }
.labs-empty { padding: 5rem; text-align: center; font-family: var(--font-mono); font-size: .875rem; color: rgba(255,255,255,.35); letter-spacing: .15em; }
.labs-cta-block { border: 1px solid rgba(0,243,255,.15); border-radius: 1.25rem; padding: clamp(2.5rem,5vw,3.5rem); background: linear-gradient(135deg, rgba(0,243,255,.05), rgba(189,0,255,.05)); position: relative; overflow: hidden; }
.labs-cta-inner { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .labs-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── Legal Pages ── */
.legal-content { max-width: 48rem; margin: 0 auto; }
.legal-content .space-y > * + * { margin-top: 2rem; }
.legal-section h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: .75rem; }
.legal-section p { color: #94a3b8; font-size: .875rem; line-height: 1.9; }
.legal-section a { color: var(--neon-cyan); transition: color .2s; }
.legal-section a:hover { color: #fff; }
.legal-meta { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; margin-top: 2rem; }
.legal-back { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .15em; transition: color .2s; display: inline-block; margin-top: 3rem; }
.legal-back:hover { color: var(--neon-cyan); }

/* ── 404 Page ── */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 1.5rem; background: var(--deep-space); }
.not-found-glow-c { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: rgba(0,243,255,.05); filter: blur(160px); border-radius: 50%; pointer-events: none; }
.not-found-glow-p { position: absolute; top: 25%; right: 25%; width: 300px; height: 300px; background: rgba(189,0,255,.08); filter: blur(120px); border-radius: 50%; pointer-events: none; }
.not-found-scanline { position: absolute; inset: 0; pointer-events: none; opacity: .025; background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.5) 2px, rgba(255,255,255,.5) 3px); }
.not-found-inner { position: relative; z-index: 10; max-width: 40rem; text-align: center; }
.not-found-bg-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(8rem,18vw,14rem); line-height: 1; color: rgba(255,255,255,.04); pointer-events: none; user-select: none; }
.not-found-content { margin-top: -4rem; position: relative; z-index: 1; }
.not-found-overline { font-family: var(--font-mono); font-size: 9px; letter-spacing: .4em; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 1rem; }
.not-found h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,8vw,4rem); color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.not-found h1 .grad { background: linear-gradient(to right, var(--neon-cyan), var(--cyber-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.not-found p { color: #94a3b8; font-size: .875rem; line-height: 1.75; max-width: 28rem; margin: 0 auto 2.5rem; }
.not-found-links { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; max-width: 28rem; margin: 0 auto 2.5rem; }
@media (min-width: 640px) { .not-found-links { grid-template-columns: repeat(3,1fr); } }
.not-found-link { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .05em; color: #94a3b8; border: 1px solid rgba(255,255,255,.08); border-radius: .75rem; padding: .75rem 1rem; text-align: center; transition: all .2s; }
.not-found-link:hover { border-color: rgba(0,243,255,.4); color: var(--neon-cyan); background: rgba(255,255,255,.03); }
.not-found-meta { font-family: var(--font-mono); font-size: 8px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; margin-top: 2rem; }

/* ══ CHATBOT ENHANCEMENTS ══ */

/* Help tab — always visible beside button */
.chatbot-help-tab {
  position:fixed; bottom:2.7rem; right:5.5rem; z-index:199;
  background:linear-gradient(135deg,rgba(0,243,255,.12),rgba(189,0,255,.08));
  border:1px solid rgba(0,243,255,.28); border-radius:100px;
  padding:.45rem 1.1rem;
  font-family:var(--font-mono); font-size:9px; text-transform:uppercase;
  letter-spacing:.12em; color:#fff; cursor:pointer; white-space:nowrap;
  display:flex; align-items:center; gap:.5rem;
  backdrop-filter:blur(8px);
  transition:opacity .25s,transform .25s,background .2s;
  box-shadow:0 0 20px rgba(0,243,255,.07);
}
.chatbot-help-tab:hover {
  background:linear-gradient(135deg,rgba(0,243,255,.2),rgba(189,0,255,.14));
  border-color:rgba(0,243,255,.5);
}
.chatbot-help-tab.hidden { opacity:0; pointer-events:none; transform:translateX(8px); }
.chatbot-help-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--neon-cyan); box-shadow:0 0 8px var(--neon-cyan); flex-shrink:0;
  animation:helpDotPulse 1.5s ease-in-out infinite;
}
@keyframes helpDotPulse { 0%,100%{opacity:1} 50%{opacity:.25} }

/* Proactive bubble */
.chatbot-proactive {
  position:fixed; bottom:7.5rem; right:1.25rem; z-index:199;
  background:rgba(7,7,7,.97); border:1px solid rgba(0,243,255,.2);
  border-radius:.875rem; padding:.875rem 1rem .75rem;
  max-width:200px; backdrop-filter:blur(16px);
  animation:proactiveSlide .3s ease-out;
  box-shadow:0 0 30px rgba(0,243,255,.07);
}
@keyframes proactiveSlide { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.chatbot-proactive-text { font-size:12px; color:rgba(255,255,255,.72); line-height:1.65; padding-right:.5rem; }
.chatbot-proactive-close {
  position:absolute; top:.375rem; right:.5rem;
  background:none; border:none; color:rgba(255,255,255,.28); cursor:pointer; font-size:11px; line-height:1;
}
.chatbot-proactive-cta {
  display:block; margin-top:.5rem;
  font-family:var(--font-mono); font-size:8.5px; text-transform:uppercase;
  letter-spacing:.12em; color:rgba(0,243,255,.85); cursor:pointer;
  border:none; background:none; padding:0; transition:color .2s;
}
.chatbot-proactive-cta:hover { color:#fff; }

/* Comparison card in chat bubble */
.chat-compare-card { font-size:11px; }
.chat-compare-hd {
  display:flex; align-items:center; justify-content:space-between;
  gap:.5rem; margin-bottom:.75rem;
}
.chat-compare-name {
  font-family:var(--font-display); font-size:10px; font-weight:700;
  text-transform:uppercase; color:#fff; margin-top:.3rem;
}
.chat-compare-vs {
  font-family:var(--font-mono); font-size:8px;
  color:rgba(255,255,255,.25); letter-spacing:.18em; flex-shrink:0;
}
.chat-compare-tbl { width:100%; border-collapse:collapse; margin-bottom:.5rem; }
.chat-compare-tbl th {
  font-family:var(--font-mono); font-size:8px; text-transform:uppercase;
  letter-spacing:.12em; color:rgba(255,255,255,.3); text-align:left;
  padding:.3rem .25rem; border-bottom:1px solid rgba(255,255,255,.06);
}
.chat-compare-tbl td {
  font-size:10.5px; color:rgba(255,255,255,.7);
  padding:.3rem .25rem; border-bottom:1px solid rgba(255,255,255,.04);
}
.chat-compare-tbl tr:last-child td { border-bottom:none; }
.chat-compare-taglines { display:grid; grid-template-columns:1fr 1fr; gap:.5rem; margin-top:.5rem; }
.chat-compare-taglines p { font-size:9.5px; color:rgba(255,255,255,.38); line-height:1.5; margin:0; }
