/* ══════════════════════════════════════════════════════════════
   LUMEN BLOOM — Bioluminescent Portfolio Theme
   Avatar × Planet Alpha — organic, alive, glowing
   Fonts: Cinzel / Cormorant Garamond / Outfit
══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  /* Void / Night */
  --lb-void:      #020509;
  --lb-night:     #060d18;
  --lb-deep:      #091620;
  --lb-dusk:      #0c2030;

  /* Alien Daytime */
  --lb-sky:       #0e3d6b;
  --lb-canopy:    #0b2e26;
  --lb-dawn:      #163d2f;
  --lb-warm:      #2a1a08;

  /* Bioluminescent palette */
  --lb-cyan:      #00e5ff;
  --lb-teal:      #00ffc4;
  --lb-violet:    #9b4dff;
  --lb-magenta:   #ff3dcd;
  --lb-green:     #4dff8f;
  --lb-amber:     #ff9a00;
  --lb-gold:      #ffe066;
  --lb-coral:     #ff6b9d;

  /* Glow rgba */
  --lb-cyan-glow:    rgba(0,229,255,0.22);
  --lb-teal-glow:    rgba(0,255,196,0.18);
  --lb-violet-glow:  rgba(155,77,255,0.22);
  --lb-magenta-glow: rgba(255,61,205,0.18);
  --lb-green-glow:   rgba(77,255,143,0.18);
  --lb-amber-glow:   rgba(255,154,0,0.2);

  /* Text */
  --lb-text-bright: #e2f2fa;
  --lb-text:        #8dbcd4;
  --lb-text-dim:    #3d6a80;
  --lb-text-muted:  #1e3a48;

  /* Surface */
  --lb-glass:       rgba(6,13,24,0.72);
  --lb-glass-light: rgba(9,22,32,0.55);
  --lb-glass-warm:  rgba(15,10,4,0.7);
  --lb-border:      rgba(0,229,255,0.13);
  --lb-border-warm: rgba(255,154,0,0.15);
  --lb-border-soft: rgba(0,229,255,0.06);

  /* Fonts */
  --lb-font-display: 'Cinzel', serif;
  --lb-font-flow:    'Cormorant Garamond', serif;
  --lb-font-body:    'Outfit', sans-serif;

  /* Transitions */
  --lb-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --lb-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes lb-float {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25%  { transform: translate(12px, -18px) scale(1.08); opacity: 0.85; }
  50%  { transform: translate(-8px, -32px) scale(0.95); opacity: 0.6; }
  75%  { transform: translate(18px, -14px) scale(1.05); opacity: 0.9; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}

@keyframes lb-pulse-glow {
  0%, 100% { opacity: 0.5; filter: blur(0px); }
  50%       { opacity: 1;   filter: blur(1px); }
}

@keyframes lb-morph {
  0%,100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
  25%     { border-radius: 40% 60% 60% 40% / 48% 56% 44% 52%; }
  50%     { border-radius: 54% 46% 38% 62% / 38% 62% 38% 62%; }
  75%     { border-radius: 38% 62% 54% 46% / 62% 38% 62% 38%; }
}

@keyframes lb-breathe {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.35; }
  50%       { transform: scale(1.12) rotate(3deg); opacity: 0.55; }
}

@keyframes lb-shimmer {
  0%   { text-shadow: 0 0 20px var(--lb-cyan), 0 0 40px var(--lb-cyan-glow); }
  50%  { text-shadow: 0 0 30px var(--lb-cyan), 0 0 70px rgba(0,229,255,0.35), 0 0 120px rgba(0,229,255,0.12); }
  100% { text-shadow: 0 0 20px var(--lb-cyan), 0 0 40px var(--lb-cyan-glow); }
}

@keyframes lb-orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.1); }
  66%     { transform: translate(-25px,20px) scale(0.9); }
}

@keyframes lb-spore-rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-80vh) translateX(var(--drift)) scale(0.4); opacity: 0; }
}

@keyframes lb-reveal-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lb-nav-appear {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes lb-progress-glow {
  0%,100% { box-shadow: 0 0 6px var(--lb-cyan), 0 0 12px var(--lb-cyan-glow); }
  50%     { box-shadow: 0 0 10px var(--lb-cyan), 0 0 24px var(--lb-cyan-glow); }
}

/* ── RESET + BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.theme-lumen-bloom {
  background: var(--lb-void);
  color: var(--lb-text);
  font-family: var(--lb-font-body);
  font-size: 15px;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

body.theme-lumen-bloom a {
  color: var(--lb-cyan);
  text-decoration: none;
  transition: color 0.3s var(--lb-ease);
}
body.theme-lumen-bloom a:hover { color: var(--lb-teal); }

body.theme-lumen-bloom img { display: block; max-width: 100%; }
body.theme-lumen-bloom button { cursor: none; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
#lb-cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--lb-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  box-shadow: 0 0 8px var(--lb-cyan), 0 0 20px var(--lb-cyan-glow);
  transition: width 0.15s, height 0.15s, background 0.2s;
}

#lb-cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,229,255,0.5);
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: width 0.15s, height 0.15s, border-color 0.2s;
  box-shadow: 0 0 10px var(--lb-cyan-glow);
}

body.theme-lumen-bloom a:hover ~ #lb-cursor-dot,
body.theme-lumen-bloom [data-lightbox]:hover ~ #lb-cursor-dot {
  width: 14px; height: 14px;
}

/* ── SCROLL PROGRESS ───────────────────────────────────────── */
#lb-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--lb-cyan), var(--lb-teal), var(--lb-violet));
  z-index: 10000;
  animation: lb-progress-glow 3s ease infinite;
  transition: width 0.1s linear;
}

/* ── AMBIENT ORBS (background decoration) ─────────────────── */
.lb-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: lb-orb-drift var(--drift-dur, 20s) ease-in-out infinite;
  animation-delay: var(--drift-delay, 0s);
}

/* ── NAVIGATION — FLOATING PILL ────────────────────────────── */
.lb-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: lb-nav-appear 0.8s var(--lb-ease) 0.2s both;
  width: auto;
}

.lb-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 20px;
  background: var(--lb-glass);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: 50px;
  border: 1px solid var(--lb-border);
  box-shadow:
    0 0 30px rgba(0,229,255,0.07),
    0 8px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(0,229,255,0.08);
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
  white-space: nowrap;
}

.lb-nav-inner.scrolled {
  background: rgba(6,13,24,0.88);
  border-color: rgba(0,229,255,0.22);
  box-shadow: 0 0 40px rgba(0,229,255,0.1), 0 12px 50px rgba(0,0,0,0.7);
}

.lb-nav-logo {
  font-family: var(--lb-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--lb-text-bright) !important;
  text-transform: uppercase;
  padding-right: 24px;
  border-right: 1px solid var(--lb-border);
  margin-right: 20px;
  transition: color 0.3s;
}
.lb-nav-logo:hover { color: var(--lb-cyan) !important; }

.lb-nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--lb-border);
}

.lb-nav-links a {
  display: block;
  padding: 7px 16px;
  border-radius: 30px;
  font-family: var(--lb-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--lb-text) !important;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.lb-nav-links a:hover,
.lb-nav-links a.active {
  background: rgba(0,229,255,0.1);
  color: var(--lb-cyan) !important;
  box-shadow: 0 0 16px rgba(0,229,255,0.12);
}

.lb-nav-theme {
  position: relative;
  margin-left: 0;
}

.lb-nav-theme button {
  background: transparent;
  border: 1px solid var(--lb-border);
  color: var(--lb-text-dim);
  font-family: var(--lb-font-body);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  transition: all 0.25s;
  white-space: nowrap;
}
.lb-nav-theme button:hover {
  border-color: var(--lb-cyan);
  color: var(--lb-cyan);
  box-shadow: 0 0 12px var(--lb-cyan-glow);
}

#theme-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(6,13,24,0.96);
  border: 1px solid var(--lb-border);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  backdrop-filter: blur(20px);
  display: none;
  z-index: 1001;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 20px var(--lb-cyan-glow);
}
#theme-dropdown.open { display: block; }
#theme-dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 12px;
  color: var(--lb-text) !important;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
#theme-dropdown a:hover {
  background: rgba(0,229,255,0.08);
  color: var(--lb-cyan) !important;
}
#theme-dropdown a.active-theme { color: var(--lb-cyan) !important; }

/* Mobile hamburger */
.lb-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 12px;
}
.lb-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lb-text);
  border-radius: 2px;
  transition: all 0.3s;
}

#lb-nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,5,9,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
#lb-nav-menu.open { display: flex; }
#lb-nav-menu a {
  font-family: var(--lb-font-display);
  font-size: 32px;
  letter-spacing: 0.2em;
  color: var(--lb-text) !important;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
}
#lb-nav-menu a:hover {
  color: var(--lb-cyan) !important;
  text-shadow: 0 0 30px var(--lb-cyan), 0 0 60px var(--lb-cyan-glow);
}
#lb-nav-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid var(--lb-border);
  color: var(--lb-text-dim);
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#lb-mobile-theme-trigger {
  background: transparent;
  border: 1px solid var(--lb-border);
  color: var(--lb-text-dim);
  font-family: var(--lb-font-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}
#lb-mobile-theme-trigger:hover {
  border-color: var(--lb-cyan);
  color: var(--lb-cyan);
}

/* ── HERO ──────────────────────────────────────────────────── */
.lb-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lb-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(9,22,32,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(14,61,107,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(11,46,38,0.5) 0%, transparent 60%),
    linear-gradient(160deg, var(--lb-void) 0%, var(--lb-night) 40%, var(--lb-deep) 70%, var(--lb-canopy) 100%);
}

/* Ambient orbs in hero */
.lb-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  mix-blend-mode: screen;
  will-change: transform;
}
.lb-hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: lb-orb-drift 24s ease-in-out infinite;
}
.lb-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(155,77,255,0.1) 0%, transparent 70%);
  bottom: 0px; left: -80px;
  animation: lb-orb-drift 18s ease-in-out infinite reverse;
  animation-delay: -8s;
}
.lb-hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(77,255,143,0.09) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: lb-orb-drift 22s ease-in-out infinite;
  animation-delay: -5s;
}

/* Video background */
#hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.18;
  pointer-events: none;
}
#hero-video-bg iframe {
  pointer-events: none;
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* Particle field */
#lb-spores {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.lb-spore {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: lb-spore-rise linear infinite;
}

.lb-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.lb-hero-eyebrow {
  font-family: var(--lb-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--lb-cyan);
  margin-bottom: 24px;
  opacity: 0;
  animation: lb-reveal-up 0.8s var(--lb-ease) 0.4s both;
}

.lb-hero-name {
  font-family: var(--lb-font-display);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  line-height: 0.9;
  margin-bottom: 24px;
  animation: lb-shimmer 4s ease-in-out infinite, lb-reveal-up 0.9s var(--lb-ease) 0.6s both;
  opacity: 0;
  animation-fill-mode: both;
}

.lb-hero-role {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--lb-teal);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  opacity: 0;
  animation: lb-reveal-up 0.8s var(--lb-ease) 0.8s both;
}

.lb-hero-tagline {
  font-family: var(--lb-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--lb-text-dim);
  letter-spacing: 0.05em;
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: lb-reveal-up 0.8s var(--lb-ease) 1.0s both;
}

.lb-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: lb-reveal-up 0.8s var(--lb-ease) 1.2s both;
}

.lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--lb-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.35s var(--lb-ease);
  position: relative;
  overflow: hidden;
}

.lb-btn-primary {
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(0,255,196,0.1));
  border: 1px solid rgba(0,229,255,0.4);
  color: var(--lb-cyan) !important;
  box-shadow: 0 0 20px rgba(0,229,255,0.1), inset 0 1px 0 rgba(0,229,255,0.1);
}
.lb-btn-primary:hover {
  background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(0,255,196,0.18));
  border-color: var(--lb-cyan);
  color: var(--lb-text-bright) !important;
  box-shadow: 0 0 30px rgba(0,229,255,0.25), 0 0 60px rgba(0,229,255,0.1);
  transform: translateY(-2px);
}

.lb-btn-outline {
  background: transparent;
  border: 1px solid var(--lb-border);
  color: var(--lb-text) !important;
}
.lb-btn-outline:hover {
  border-color: rgba(155,77,255,0.5);
  color: var(--lb-violet) !important;
  box-shadow: 0 0 20px var(--lb-violet-glow);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.lb-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: lb-reveal-up 0.8s var(--lb-ease) 1.6s both;
}
.lb-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--lb-cyan), transparent);
  animation: lb-pulse-glow 2s ease-in-out infinite;
}
.lb-hero-scroll-label {
  font-family: var(--lb-font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lb-text-dim);
  writing-mode: horizontal-tb;
}

/* ── ORGANIC SECTION DIVIDER ───────────────────────────────── */
.lb-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}
.lb-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ── SECTION BASE ──────────────────────────────────────────── */
.lb-section {
  position: relative;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.lb-section-wide {
  position: relative;
  padding: 100px 48px;
}

.lb-section-dark {
  background: var(--lb-night);
  position: relative;
  overflow: hidden;
}

.lb-section-canopy {
  background: linear-gradient(160deg, var(--lb-canopy) 0%, var(--lb-dawn) 50%, var(--lb-deep) 100%);
  position: relative;
  overflow: hidden;
}

.lb-section-warm {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,229,255,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(224,64,251,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(124,77,255,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #060a1a 0%, #0a0d1f 40%, #0d1020 70%, #060610 100%);
  position: relative;
  overflow: hidden;
}

.lb-section-head {
  text-align: center;
  margin-bottom: 64px;
}

.lb-eyebrow {
  font-family: var(--lb-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lb-cyan);
  margin-bottom: 16px;
  display: block;
}

.lb-eyebrow-warm {
  color: var(--lb-cyan);
}

.lb-section-title {
  font-family: var(--lb-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  margin-bottom: 16px;
}

.lb-section-sub {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 18px;
  color: var(--lb-text-dim);
  font-weight: 300;
}

/* ── HOME: SECTOR CARDS ────────────────────────────────────── */
.lb-sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lb-sector-card {
  position: relative;
  padding: 40px 32px;
  background: var(--lb-glass-light);
  border: 1px solid var(--lb-border-soft);
  border-radius: 24px;
  text-decoration: none !important;
  display: block;
  transition: transform 0.45s var(--lb-ease), box-shadow 0.45s var(--lb-ease), border-color 0.45s, background 0.45s;
  overflow: hidden;
}

.lb-sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, var(--card-glow, var(--lb-cyan-glow)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
}

.lb-sector-card:hover { transform: translateY(-8px); }
.lb-sector-card:hover::before { opacity: 1; }
.lb-sector-card:hover { border-color: var(--card-color, var(--lb-cyan)); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--card-glow, var(--lb-cyan-glow)); }

.lb-sector-card.card-design {
  --card-color: var(--lb-cyan);
  --card-glow: var(--lb-cyan-glow);
}
.lb-sector-card.card-create {
  --card-color: var(--lb-violet);
  --card-glow: var(--lb-violet-glow);
}
.lb-sector-card.card-capture {
  --card-color: var(--lb-teal);
  --card-glow: var(--lb-teal-glow);
}

/* Organic blob shape in card bg */
.lb-sector-card-blob {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--card-glow, var(--lb-cyan-glow));
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  animation: lb-breathe 6s ease-in-out infinite;
}

.lb-sector-num {
  font-family: var(--lb-font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--card-color, var(--lb-cyan));
  margin-bottom: 20px;
  display: block;
}

.lb-sector-title {
  font-family: var(--lb-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  margin-bottom: 8px;
  line-height: 1.2;
}

.lb-sector-sub {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 14px;
  color: var(--lb-text-dim);
  margin-bottom: 20px;
}

.lb-sector-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--lb-text-dim);
  margin-bottom: 28px;
}

.lb-sector-enter {
  font-family: var(--lb-font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--card-color, var(--lb-cyan));
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.lb-sector-card:hover .lb-sector-enter { gap: 14px; }

/* ── HOME: FEATURED CASES ──────────────────────────────────── */
.lb-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.lb-case {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--lb-border-soft);
  text-decoration: none !important;
  transition: transform 0.4s var(--lb-ease), box-shadow 0.4s, border-color 0.4s;
}

.lb-case:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.lb-case:hover { transform: translateY(-6px) scale(1.005); border-color: var(--lb-border); }

.lb-case-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.85);
  transition: filter 0.5s, transform 0.5s var(--lb-ease);
}
.lb-case:first-child .lb-case-img { min-height: 500px; }
.lb-case:hover .lb-case-img { filter: saturate(1.1) brightness(0.95); transform: scale(1.04); }

.lb-case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,5,9,0.92) 0%, rgba(2,5,9,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.lb-case-num {
  font-family: var(--lb-font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lb-teal);
  margin-bottom: 8px;
}

.lb-case-cat {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 13px;
  color: var(--lb-text-dim);
  margin-bottom: 6px;
}

.lb-case-title {
  font-family: var(--lb-font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  line-height: 1.2;
}

.lb-case-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lb-cyan);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.lb-case:hover .lb-case-arrow { opacity: 1; transform: scale(1); }

/* ── HOME: TESTIMONIALS ────────────────────────────────────── */
.lb-reports {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lb-report {
  background: linear-gradient(135deg, rgba(9,14,28,0.85) 0%, rgba(18,10,34,0.75) 100%);
  border: 1px solid rgba(124,77,255,0.14);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.lb-report::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--lb-font-flow);
  font-size: 80px;
  line-height: 1;
  color: var(--lb-violet);
  opacity: 0.15;
  pointer-events: none;
}

.lb-report:hover {
  border-color: rgba(155,77,255,0.3);
  box-shadow: 0 0 40px var(--lb-violet-glow), 0 16px 40px rgba(0,0,0,0.3);
}

.lb-report-quote {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: var(--lb-text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.lb-report-name {
  font-family: var(--lb-font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  margin-bottom: 4px;
}

.lb-report-role {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lb-violet);
}

/* ── HOME: PRESS NODES ─────────────────────────────────────── */
.lb-press-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lb-press-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--lb-border-soft);
  background: var(--lb-glass-light);
  font-family: var(--lb-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--lb-text-dim);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.lb-press-node::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lb-teal);
  box-shadow: 0 0 8px var(--lb-teal), 0 0 16px var(--lb-teal-glow);
  flex-shrink: 0;
  animation: lb-pulse-glow 2.5s ease-in-out infinite;
}

.lb-press-node:hover {
  border-color: rgba(0,255,196,0.3);
  color: var(--lb-teal) !important;
  box-shadow: 0 0 20px var(--lb-teal-glow);
  transform: translateY(-2px);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.lb-footer {
  position: relative;
  background: var(--lb-void);
  border-top: 1px solid var(--lb-border-soft);
  overflow: hidden;
}

.lb-footer-orb {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lb-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.lb-footer-id { }

.lb-footer-name {
  font-family: var(--lb-font-display);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  margin-bottom: 4px;
}

.lb-footer-loc {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lb-text-dim);
}

.lb-footer-copy {
  text-align: center;
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 12px;
  color: var(--lb-text-muted);
  line-height: 1.6;
}

.lb-footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.lb-footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lb-text-dim) !important;
  transition: color 0.3s, text-shadow 0.3s;
}
.lb-footer-links a:hover {
  color: var(--lb-cyan) !important;
  text-shadow: 0 0 12px var(--lb-cyan);
}

/* ── PAGE TOP BANNER ───────────────────────────────────────── */
.lb-page-banner {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 64px;
  overflow: hidden;
}

.lb-page-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--lb-night) 0%, var(--lb-deep) 60%, var(--lb-canopy) 100%);
}

.lb-page-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.lb-page-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.lb-page-label {
  font-family: var(--lb-font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lb-cyan);
  margin-bottom: 12px;
  display: block;
}

.lb-page-title {
  font-family: var(--lb-font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  line-height: 0.95;
  text-shadow: 0 0 60px rgba(0,229,255,0.2);
}

.lb-page-sub {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: var(--lb-text-dim);
  margin-top: 12px;
}

/* ── TABS ──────────────────────────────────────────────────── */
[data-panel] { display: none; }
[data-panel].panel-active { display: block; }

.lb-tabs-wrap {
  display: flex;
  gap: 4px;
  margin-bottom: 56px;
  padding: 6px;
  background: rgba(6,13,24,0.7);
  border-radius: 40px;
  border: 1px solid var(--lb-border-soft);
  width: fit-content;
}

.lb-tabs-wrap button {
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-radius: 30px;
  font-family: var(--lb-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-text-dim);
  transition: all 0.3s var(--lb-ease);
}

.lb-tabs-wrap button:hover { color: var(--lb-text); }

.lb-tabs-wrap button.tab-active {
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(0,255,196,0.1));
  color: var(--lb-cyan);
  box-shadow: 0 0 16px rgba(0,229,255,0.15);
}

.lb-sub-tabs {
  margin-bottom: 32px;
}

/* ── DESIGN PAGE ───────────────────────────────────────────── */
.lb-proj-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--lb-border-soft);
}

.lb-proj-panel.flip { direction: rtl; }
.lb-proj-panel.flip > * { direction: ltr; }

.lb-proj-img {
  position: relative;
  overflow: hidden;
}

.lb-proj-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: filter 0.5s, transform 0.5s var(--lb-ease);
}
.lb-proj-panel:hover .lb-proj-img img {
  filter: saturate(1.05) brightness(1);
  transform: scale(1.03);
}

.lb-proj-info {
  padding: 40px 40px;
  background: var(--lb-glass-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lb-proj-client {
  font-family: var(--lb-font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lb-cyan);
  margin-bottom: 12px;
}

.lb-proj-title {
  font-family: var(--lb-font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  line-height: 1.2;
  margin-bottom: 6px;
}

.lb-proj-sub {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 14px;
  color: var(--lb-text-dim);
  margin-bottom: 20px;
}

.lb-proj-role-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lb-text-muted);
  margin-bottom: 4px;
}

.lb-proj-role {
  font-family: var(--lb-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--lb-teal);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.lb-proj-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--lb-text-dim);
}

/* Thumbnail grid (design + renderings) */
.lb-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
  margin-bottom: 2px;
}

.lb-thumb-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lb-night);
  border-radius: 4px;
  cursor: none;
}

.lb-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: filter 0.4s, transform 0.4s var(--lb-ease);
}

.lb-thumb-item:hover img {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.07);
}

.lb-thumb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--thumb-glow, var(--lb-cyan-glow)), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.lb-thumb-item:hover::after { opacity: 1; }

/* Brand grid */
.lb-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 2px;
  margin-bottom: 48px;
}

/* ── CREATE PAGE ───────────────────────────────────────────── */
.lb-anim-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lb-anim-item {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 0;
  border: 1px solid var(--lb-border-soft);
  border-radius: 20px;
  overflow: hidden;
  background: var(--lb-glass-light);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.lb-anim-item:hover {
  border-color: var(--item-color, var(--lb-cyan));
  box-shadow: 0 0 40px var(--item-glow, var(--lb-cyan-glow)), 0 16px 50px rgba(0,0,0,0.3);
}

/* Client color coding */
.lb-anim-item.client-nasa    { --item-color: var(--lb-cyan);    --item-glow: var(--lb-cyan-glow); }
.lb-anim-item.client-ps      { --item-color: var(--lb-violet);  --item-glow: var(--lb-violet-glow); }
.lb-anim-item.client-base    { --item-color: var(--lb-teal);    --item-glow: var(--lb-teal-glow); }
.lb-anim-item.client-io      { --item-color: var(--lb-amber);   --item-glow: var(--lb-amber-glow); }
.lb-anim-item.client-legacy  { --item-color: var(--lb-magenta); --item-glow: var(--lb-magenta-glow); }

.lb-anim-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.lb-anim-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lb-anim-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--lb-border-soft);
}

.lb-anim-num {
  font-family: var(--lb-font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--item-color, var(--lb-cyan));
  margin-bottom: 12px;
}

.lb-anim-title {
  font-family: var(--lb-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  line-height: 1.2;
  margin-bottom: 8px;
}

.lb-anim-role {
  font-family: var(--lb-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--item-color, var(--lb-cyan));
  margin-bottom: 12px;
  opacity: 0.8;
}

.lb-anim-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--lb-text-dim);
  flex: 1;
}

/* Rendering grid */
.lb-render-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2px;
}

.lb-render-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lb-night);
  cursor: none;
}

.lb-render-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.8);
  transition: filter 0.4s, transform 0.4s var(--lb-ease);
}

.lb-render-item:hover img {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.06);
}

.lb-render-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.lb-render-item:hover::after { opacity: 1; }

.lb-render-section { margin-bottom: 48px; }

.lb-render-label {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 15px;
  color: var(--lb-text-dim);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lb-border-soft);
}

/* ── BEFORE/AFTER SLIDER ───────────────────────────────────── */
.lb-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-bottom: 24px;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  aspect-ratio: 16/9;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
}

.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.ba-label {
  position: absolute;
  bottom: 8px;
  font-family: var(--lb-font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(2,5,9,0.8);
  color: var(--lb-cyan);
  pointer-events: none;
  z-index: 2;
  border-radius: 20px;
  border: 1px solid rgba(0,229,255,0.2);
}
.ba-lbl-after  { right: 8px; }
.ba-lbl-before { left: 8px;  }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--lb-cyan);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--lb-cyan), 0 0 20px var(--lb-cyan-glow);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--lb-cyan);
  border-radius: 50%;
  border: 2px solid var(--lb-void);
  box-shadow: 0 0 12px var(--lb-cyan), 0 0 30px var(--lb-cyan-glow);
}

.ba-handle::after { display: none; }

/* ── CAPTURE PAGE ──────────────────────────────────────────── */
.lb-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 3px;
}

.lb-photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lb-night);
  cursor: none;
}

.lb-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: filter 0.5s, transform 0.5s var(--lb-ease);
}

.lb-photo-item:hover img {
  filter: saturate(1.15) brightness(1.05);
  transform: scale(1.07);
}

/* Bioluminescent color tint per row */
.lb-photo-item:nth-child(5n+1):hover::after { --photo-glow: var(--lb-cyan-glow); }
.lb-photo-item:nth-child(5n+2):hover::after { --photo-glow: var(--lb-teal-glow); }
.lb-photo-item:nth-child(5n+3):hover::after { --photo-glow: var(--lb-violet-glow); }
.lb-photo-item:nth-child(5n+4):hover::after { --photo-glow: var(--lb-magenta-glow); }
.lb-photo-item:nth-child(5n+5):hover::after { --photo-glow: var(--lb-green-glow); }

.lb-photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--photo-glow, var(--lb-cyan-glow)), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.lb-photo-item:hover::after { opacity: 1; }

.lb-photo-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(2,5,9,0.88));
  opacity: 0;
  transition: opacity 0.3s;
}
.lb-photo-item:hover .lb-photo-cap { opacity: 1; }

.lb-photo-title {
  font-family: var(--lb-font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lb-text-bright);
}

/* VR / Video list */
.lb-video-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lb-video-item {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 0;
  border: 1px solid var(--lb-border-soft);
  border-radius: 20px;
  overflow: hidden;
  background: var(--lb-glass-light);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.lb-video-item:hover {
  border-color: rgba(0,255,196,0.25);
  box-shadow: 0 0 40px var(--lb-teal-glow), 0 16px 40px rgba(0,0,0,0.3);
}

.lb-video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.lb-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lb-video-info {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--lb-border-soft);
}

.lb-video-num {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lb-teal);
  margin-bottom: 12px;
  font-family: var(--lb-font-body);
}

.lb-video-title {
  font-family: var(--lb-font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  margin-bottom: 8px;
}

.lb-video-role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lb-teal);
  margin-bottom: 12px;
}

.lb-video-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--lb-text-dim);
}

/* Capture intro */
.lb-capture-intro {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 17px;
  line-height: 1.85;
  color: var(--lb-text);
  max-width: 640px;
  margin-bottom: 48px;
  padding-left: 20px;
  border-left: 2px solid rgba(0,229,255,0.25);
}

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.lb-about-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.lb-about-photo-wrap {
  position: relative;
}

.lb-about-photo {
  width: 210px;
  height: 210px;
  max-width: 210px;
  max-height: 210px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(0.9);
}

.lb-about-photo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.2);
  animation: lb-morph 8s ease-in-out infinite;
}

.lb-about-photo-ring-2 {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.08);
  animation: lb-morph 12s ease-in-out infinite reverse;
}

.lb-about-photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
  filter: blur(20px);
  animation: lb-pulse-glow 4s ease-in-out infinite;
}

.lb-about-bio-title {
  font-family: var(--lb-font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lb-cyan);
  margin-bottom: 16px;
}

.lb-about-name {
  font-family: var(--lb-font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(0,229,255,0.15);
}

.lb-about-role {
  font-family: var(--lb-font-flow);
  font-style: italic;
  font-size: 18px;
  color: var(--lb-teal);
  margin-bottom: 28px;
}

.lb-about-bio {
  font-size: 14px;
  line-height: 1.9;
  color: var(--lb-text);
  max-width: 600px;
}

/* Skills */
.lb-skills-section {
  margin-bottom: 64px;
}

.lb-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lb-skill-item {
  background: var(--lb-glass-light);
  border: 1px solid var(--lb-border-soft);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lb-skill-item:hover {
  border-color: rgba(0,229,255,0.2);
  box-shadow: 0 0 20px var(--lb-cyan-glow);
}

.lb-skill-name {
  font-family: var(--lb-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--lb-text);
  margin-bottom: 8px;
}

.lb-skill-pips {
  display: flex;
  gap: 4px;
}

.lb-skill-pip {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: var(--lb-border);
  transition: background 0.3s;
}

.lb-skill-pip.filled {
  background: linear-gradient(90deg, var(--lb-cyan), var(--lb-teal));
  box-shadow: 0 0 6px var(--lb-cyan-glow);
}

/* Education */
.lb-edu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.lb-edu-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border: 1px solid var(--lb-border-soft);
  border-radius: 14px;
  background: var(--lb-glass-light);
}

.lb-edu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lb-violet);
  box-shadow: 0 0 8px var(--lb-violet), 0 0 16px var(--lb-violet-glow);
  flex-shrink: 0;
  margin-top: 4px;
  animation: lb-pulse-glow 3s ease-in-out infinite;
}

/* Clients */
.lb-client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lb-client-item {
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid var(--lb-border-soft);
  background: var(--lb-glass-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--lb-text-dim);
  transition: all 0.3s;
}

.lb-client-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.lb-client-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--lb-cyan);
  letter-spacing: 0.08em;
}
.lb-client-desc {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.lb-client-item:hover {
  border-color: rgba(0,229,255,0.2);
  color: var(--lb-cyan);
  box-shadow: 0 0 12px var(--lb-cyan-glow);
}

/* ── LIGHTBOX ──────────────────────────────────────────────── */
#lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,5,9,0.97);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
  cursor: none;
}

#lb-overlay.lb-open { display: flex; }
body.lb-active { overflow: hidden; }

#lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--lb-glass-light);
  padding: 12px;
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 16px;
  box-shadow: 0 0 80px rgba(0,229,255,0.1), 0 32px 80px rgba(0,0,0,0.7);
}

#lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--lb-cyan);
  font-size: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: none;
  transition: background 0.2s, box-shadow 0.2s;
}
#lb-close:hover { background: rgba(0,229,255,0.1); box-shadow: 0 0 16px var(--lb-cyan-glow); }

#lb-img { max-width: 80vw; max-height: 72vh; object-fit: contain; display: block; border-radius: 8px; }

#lb-caption { padding: 12px 0 0; }
#lb-title {
  font-family: var(--lb-font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lb-text-bright);
}
#lb-desc { font-size: 12px; color: var(--lb-text-dim); margin-top: 4px; font-family: var(--lb-font-flow); font-style: italic; }

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.lb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--lb-ease), transform 0.7s var(--lb-ease);
}
.lb-reveal.revealed { opacity: 1; transform: translateY(0); }
.lb-delay-1 { transition-delay: 0.1s; }
.lb-delay-2 { transition-delay: 0.2s; }
.lb-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lb-anim-item { grid-template-columns: 1fr; }
  .lb-anim-body { border-left: none; border-top: 1px solid var(--lb-border-soft); }
  .lb-video-item { grid-template-columns: 1fr; }
  .lb-video-info { border-left: none; border-top: 1px solid var(--lb-border-soft); }
  .lb-about-hero { grid-template-columns: 1fr; }
  .lb-about-photo-wrap { display: flex; justify-content: center; }
  .lb-proj-panel { grid-template-columns: 1fr; }
  .lb-proj-panel.flip { direction: ltr; }
  .lb-slider-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .lb-sectors { grid-template-columns: 1fr; }
  .lb-cases-grid { grid-template-columns: 1fr; }
  .lb-case:first-child { grid-column: auto; grid-row: auto; }
  .lb-reports { grid-template-columns: 1fr; }
  .lb-skills-grid { grid-template-columns: 1fr 1fr; }
  .lb-section { padding: 60px 24px; }
  .lb-section-wide { padding: 60px 24px; }
  .lb-page-banner { padding: 0 24px 48px; }
  .lb-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .lb-footer-links { justify-content: center; }
}

@media (max-width: 768px) {
  .lb-nav-links { display: none; }
  .lb-hamburger { display: flex; }
  .lb-nav-logo { border-right: none; margin-right: 12px; padding-right: 12px; }
  .lb-nav-inner { min-width: auto; }
  .lb-hero-content { padding-top: 100px; }
  .lb-skills-grid { grid-template-columns: 1fr; }
  #lb-cursor-dot, #lb-cursor-ring { display: none; }
}

/* ── MOBILE — 360px minimum ────────────────────────────────── */
@media (max-width: 480px) {
  .lb-nav-inner { padding: 8px 14px; }
  .lb-nav-logo { font-size: 11px; padding-right: 10px; margin-right: 10px; }

  /* Hero font scaling */
  .lb-hero-content { padding: 90px 16px 60px; }
  .lb-hero-eyebrow { font-size: 9px; letter-spacing: 0.25em; }
  .lb-hero-role { font-size: 16px; }
  .lb-hero-tagline { font-size: 13px; }
  .lb-btn { padding: 12px 22px; font-size: 11px; }

  /* Hero orbs — keep but scale down */
  .lb-hero-orb-1 { width: 280px; height: 280px; }
  .lb-hero-orb-2 { width: 220px; height: 220px; }
  .lb-hero-orb-3 { width: 160px; height: 160px; }

  /* Sections */
  .lb-section { padding: 48px 16px; }
  .lb-section-wide { padding: 48px 16px; }
  .lb-page-banner { padding: 0 16px 36px; min-height: 30vh; }

  /* Sector cards: single column */
  .lb-sectors { grid-template-columns: 1fr; gap: 16px; }
  .lb-sector-card { padding: 28px 22px; }

  /* Cases grid: single column */
  .lb-cases-grid { grid-template-columns: 1fr; gap: 12px; }
  .lb-case:first-child { grid-column: auto; grid-row: auto; }
  .lb-case-img,
  .lb-case:first-child .lb-case-img { min-height: 200px; }

  /* Testimonials: single column */
  .lb-reports { grid-template-columns: 1fr; gap: 16px; }
  .lb-report { padding: 28px 20px; }

  /* Tabs: allow wrapping */
  .lb-tabs-wrap { width: 100%; flex-wrap: wrap; border-radius: 16px; }
  .lb-tabs-wrap button { padding: 8px 14px; font-size: 11px; flex: 1; min-width: 0; }

  /* Animation items: single column, 16:9 video */
  .lb-anim-item { grid-template-columns: 1fr; }
  .lb-anim-body { border-left: none; border-top: 1px solid var(--lb-border-soft); padding: 20px 16px; }
  .lb-anim-title { font-size: 16px; }

  /* Video embeds maintain 16:9 */
  .lb-anim-embed,
  .lb-video-embed { aspect-ratio: 16/9; width: 100%; }

  /* Video items: single column */
  .lb-video-item { grid-template-columns: 1fr; }
  .lb-video-info { border-left: none; border-top: 1px solid var(--lb-border-soft); padding: 20px 16px; }

  /* Photo grid: 2 columns minimum */
  .lb-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  /* Render grid */
  .lb-render-grid { grid-template-columns: repeat(2, 1fr); }

  /* Before/after sliders */
  .lb-slider-grid { grid-template-columns: 1fr; gap: 4px; }

  /* Skills */
  .lb-skills-grid { grid-template-columns: 1fr; }

  /* Footer */
  .lb-footer-inner { padding: 40px 16px; gap: 24px; }
  .lb-footer-links { gap: 12px; }
  .lb-footer-links a { font-size: 11px; }

  /* Page banner */
  .lb-page-title { font-size: clamp(36px, 12vw, 64px); }
  .lb-page-sub { font-size: 15px; }

  /* Section heading */
  .lb-section-title { font-size: clamp(24px, 7vw, 36px); }
  .lb-section-sub { font-size: 15px; }
  .lb-section-head { margin-bottom: 40px; }
}

@media (max-width: 360px) {
  .lb-hero-content { padding: 80px 12px 48px; }
  .lb-section { padding: 40px 12px; }
  .lb-section-wide { padding: 40px 12px; }
  .lb-photo-grid { grid-template-columns: 1fr; }
  .lb-tabs-wrap button { padding: 7px 10px; font-size: 10px; }
  .lb-anim-body { padding: 16px 12px; }
  .lb-video-info { padding: 16px 12px; }
  .lb-report { padding: 22px 16px; }
  .lb-sector-card { padding: 22px 16px; }
  .lb-footer-inner { padding: 32px 12px; }
}
