:root {
  /* Brand Colors aligned with lair404.xyz global aesthetic */
  --lair404-primary: #00f2fe;
  --lair404-bg: #0a0a0f;
  --lair404-text: #ffffff;
  --lair404-text-muted: rgba(255, 255, 255, 0.7);
  --lair404-text-dim: rgba(255, 255, 255, 0.5);
  --lair404-border: rgba(255, 255, 255, 0.1);
  --lair404-border-hover: rgba(255, 255, 255, 0.2);

  /* Glass tokens */
  --lair404-glass-bg: rgba(255, 255, 255, 0.05);
  --lair404-glass-bg-hover: rgba(255, 255, 255, 0.08);
  --lair404-glass-blur: 20px;
  --lair404-glass-border: rgba(255, 255, 255, 0.1);
  --lair404-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  /* Gradients */
  --lair404-gradient-mesh: radial-gradient(ellipse at 20% 0%, rgba(0, 242, 254, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);

  --error-color: #ff4b4b;
  --success-color: #00e676;
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Menlo', 'Monaco', 'Courier New', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--lair404-bg);
  background-image: var(--lair404-gradient-mesh);
  background-attachment: fixed;
  color: var(--lair404-text);
  font-family: var(--font-base);
  min-height: 100vh;
  line-height: 1.6;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Glassmorphism Utilities */
.glass-header, .glass-panel, .glass-footer {
  background: var(--lair404-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lair404-glass-border);
  box-shadow: var(--lair404-glass-shadow);
  border-radius: 12px;
}

.glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.logo h1 {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.logo span {
  font-weight: 300;
  color: var(--lair404-text-muted);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--lair404-text-muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lair404-text-muted);
}
.dot.connected {
  background: var(--success-color);
  box-shadow: 0 0 8px var(--success-color);
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  flex: 1;
}

.glass-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.config-pane h2 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--lair404-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--lair404-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input[type="text"],
input[type="date"],
input[type="time"],
input[type="number"] {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--lair404-glass-border);
  color: var(--lair404-text);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: var(--font-base);
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus {
  outline: none;
  border-color: var(--lair404-primary);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-transform: none;
  color: var(--lair404-text);
}

.primary-btn {
  width: 100%;
  background: var(--lair404-primary);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 1rem;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 242, 254, 0.3);
}
.primary-btn.loading {
  opacity: 0.8;
  cursor: not-allowed;
  animation: pulse 1.5s infinite;
}

/* Pipeline Tracker */
.pipeline-tracker {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--lair404-glass-border);
}

.stage {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
.stage::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--text-muted);
  border-radius: 50%;
  margin: 0 auto 8px auto;
  transition: all 0.3s;
}
.stage.active {
  color: var(--accent-cyan);
}
.stage.active::before {
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}
.stage.complete {
  color: var(--success-color);
}
.stage.complete::before {
  background: var(--success-color);
}

/* JSON Output Viewer */
.output-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.output-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.scores {
  display: flex;
  gap: 15px;
}
.score-badge {
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--glass-border);
}

.json-viewer {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 1.5rem;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #a6accd;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.json-viewer .string { color: #c3e88d; }
.json-viewer .number { color: #f78c6c; }
.json-viewer .boolean { color: #ff9cac; }
.json-viewer .null { color: #89ddff; }
.json-viewer .key { color: #82aaff; font-weight: 600; }

.glass-footer {
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
}
.glass-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.glass-footer a:hover {
  color: var(--lair404-primary);
}

.footer-legal {
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.footer-legal a {
  color: var(--lair404-text-dim);
}

.footer-legal a:hover {
  color: var(--lair404-text-muted);
}

.footer-legal span {
  margin: 0 0.35rem;
  opacity: 0.4;
}

.header-controls {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 100;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--lair404-glass-bg);
  backdrop-filter: blur(var(--lair404-glass-blur));
  -webkit-backdrop-filter: blur(var(--lair404-glass-blur));
  border: 1px solid var(--lair404-border);
  border-radius: 10px;
  color: var(--lair404-text-muted);
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.toggle-btn:hover {
  background: var(--lair404-glass-bg-hover);
  border-color: var(--lair404-border-hover);
  color: var(--lair404-primary);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.98); }
  100% { transform: scale(1); }
}

@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* Product Landing Page Styling */
.hero-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--lair404-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-title span {
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--lair404-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.api-note {
  font-size: 1rem;
  background: rgba(0, 242, 254, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.api-note a {
  color: var(--lair404-primary);
  text-decoration: none;
  font-weight: 600;
}

.secondary-btn {
  display: inline-block;
  align-self: flex-start;
  color: #fff;
  border: 1px solid var(--lair404-border);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  background: var(--lair404-glass-bg);
  font-weight: 600;
  transition: all 0.2s ease;
}

.secondary-btn:hover {
  background: var(--lair404-glass-bg-hover);
  border-color: var(--lair404-primary);
  color: var(--lair404-primary);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.playground-title {
  text-align: center;
  margin-bottom: 2rem;
}

.playground-title h3 {
  font-size: 1.5rem;
  color: #fff;
}

.playground-title p {
  color: var(--lair404-text-muted);
}

@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  .secondary-btn {
    align-self: center;
  }
}

/* Smart Glass Form Enhancements */
.smart-glass-form {
  position: relative;
  overflow: hidden;
  background: rgba(20, 20, 30, 0.4);
  border: 1px solid rgba(0, 242, 254, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.smart-glass-form::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(0,242,254,0.05), transparent 60%);
  pointer-events: none;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--lair404-text-dim);
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}
.form-row .glassy-input-wrapper {
  flex: 1;
}

.glassy-input-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.glassy-input-wrapper input {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 1.25rem 1rem 0.5rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glassy-input-wrapper input:focus,
.glassy-input-wrapper input:not(:placeholder-shown) {
  border-color: rgba(0, 242, 254, 0.5);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.glassy-input-wrapper label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lair404-text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glassy-input-wrapper input:focus + label,
.glassy-input-wrapper input:not(:placeholder-shown) + label {
  top: 0.35rem;
  transform: translateY(0);
  font-size: 0.7rem;
  color: var(--lair404-primary);
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Smart Toggles for Engines */
.engine-toggles {
  margin: 2rem 0;
}
.toggle-title {
  display: block;
  font-size: 0.85rem;
  color: var(--lair404-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.smart-toggles {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.smart-toggle {
  cursor: pointer;
  position: relative;
  flex: 1;
  min-width: 80px;
}
.smart-toggle input {
  display: none;
}
.toggle-surface {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--lair404-text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}
.smart-toggle:hover .toggle-surface {
  background: rgba(255, 255, 255, 0.08);
}
.smart-toggle input:checked + .toggle-surface {
  background: rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.6);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* Glow Button */
.glow-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,242,254,0.8), rgba(79,172,254,0.8));
  border: 1px solid rgba(0, 242, 254, 0.5);
  z-index: 1;
}
.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
}
.btn-text {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-glow {
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 50%);
  opacity: 0;
  z-index: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}
/* --- High-Fidelity 3D Hologram Loading Matrix --- */
.hologram-loader {
  position: relative;
  height: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.sacred-layer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
  border-radius: 50%;
  border: 1px solid transparent;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 15px transparent, inset 0 0 15px transparent;
}

.sacred-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #00f2fe, 0 0 60px #00f2fe;
  opacity: 0;
  transition: all 2s ease;
  z-index: 10;
}

/* Layer Dimensional Bounds */
.western-layer {
  width: 130px; height: 130px;
  border-color: rgba(79, 172, 254, 0.3);
  animation: spin-3d 5s linear infinite;
}
.bazi-layer {
  width: 200px; height: 200px;
  border-color: rgba(80, 200, 120, 0.3);
  border-width: 2px;
  border-style: dashed;
  animation: spin-3d-reverse 7s linear infinite;
}
.hd-layer {
  width: 270px; height: 270px;
  border-color: rgba(255, 8, 68, 0.3);
  animation: spin-3d 11s linear infinite;
}
.synthesis-ring {
  width: 320px; height: 320px;
  border: 1px solid rgba(0, 242, 254, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%); /* Flat alignment */
  animation: pulse-ring 3s ease-in-out infinite alternate;
}

/* JS-Driven Progression Stages */
.hologram-loader.phase-1 .western-layer {
  opacity: 1;
  box-shadow: 0 0 25px rgba(79, 172, 254, 0.3), inset 0 0 25px rgba(79, 172, 254, 0.3);
}

.hologram-loader.phase-2 .bazi-layer,
.hologram-loader.phase-2 .hd-layer {
  opacity: 1;
  box-shadow: 0 0 35px rgba(80, 200, 120, 0.2), inset 0 0 35px rgba(255, 8, 68, 0.2);
}

.hologram-loader.phase-3 .sacred-core {
  opacity: 1;
  animation: core-pulse 1s infinite alternate;
}
.hologram-loader.phase-3 .synthesis-ring {
  opacity: 1;
  border-color: rgba(0, 242, 254, 0.6);
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.4), inset 0 0 50px rgba(0, 242, 254, 0.4);
}
.hologram-loader.phase-3 .sacred-layer {
  border-width: 2px;
  border-color: rgba(0, 242, 254, 0.9);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.5), inset 0 0 30px rgba(0, 242, 254, 0.5);
}

@keyframes spin-3d {
  0% { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
}
@keyframes spin-3d-reverse {
  0% { transform: translate(-50%, -50%) rotateX(75deg) rotateY(15deg) rotateZ(360deg); }
  100% { transform: translate(-50%, -50%) rotateX(75deg) rotateY(15deg) rotateZ(0deg); }
}
@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(1.02); opacity: 1; }
}
@keyframes core-pulse {
  0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px #00f2fe; }
  100% { transform: translate(-50%, -50%) scale(1.8); box-shadow: 0 0 80px #fff, 0 0 120px #00f2fe; border-radius: 50%; background: #e0ffff; }
}

.loader-pulse {
  position: absolute;
  bottom: 0px;
  font-family: var(--font-mono);
  color: var(--lair404-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  animation: pulse-text 1.5s ease-in-out infinite alternate;
}

@keyframes pulse-text {
  0% { opacity: 0.5; text-shadow: 0 0 10px rgba(0,242,254,0); }
  100% { opacity: 1; text-shadow: 0 0 20px rgba(0,242,254,0.6); }
}

/* Enhanced Result Blocks */
.result-block {
  background: var(--lair404-glass-bg);
  border: 1px solid var(--lair404-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.block-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}
.block-title.glow-cyan {
  color: var(--lair404-primary);
  border-bottom-color: rgba(0,242,254,0.2);
}

.synthesis-text h5 {
  color: var(--lair404-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.synthesis-text h5:first-child { margin-top: 0; }
.synthesis-text p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.ai-thought {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--lair404-text-dim);
  background: rgba(0,0,0,0.3);
  padding: 0.5rem;
  border-radius: 4px;
  border-left: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 1rem;
}

.streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.stream-card {
  background: rgba(0,0,0,0.3);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.stream-card span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--lair404-text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}
.stream-data {
  color: #00e676;
  font-size: 0.85rem;
  font-weight: 600;
}

.raw-data-reveal {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.raw-data-reveal summary {
  padding: 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--lair404-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
}
.raw-data-reveal summary:hover {
  color: var(--lair404-primary);
}
.raw-matrix-pad {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.raw-matrix-pad .json-viewer {
  border: none;
  background: transparent;
  padding: 0;
}

.score-badge.glow {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.4);
  color: var(--lair404-primary);
  box-shadow: 0 0 10px rgba(0,242,254,0.2);
}

@keyframes slide-up {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Premium Extracted Intelligence UI --- */
.intelligence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pros-cons-panel {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pro-con-box {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
}

.pro-con-box h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pro-con-box h6.glow-green { color: #00e676; }
.pro-con-box h6.glow-red { color: #ff0844; }

.pro-con-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--lair404-text-muted);
}
.pro-con-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}
.pro-con-list li::before {
  content: '→';
  position: absolute;
  left: 0; 
  color: rgba(255,255,255,0.3);
}

.skill-map-container {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.skill-row {
  margin-bottom: 0.8rem;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lair404-text-muted);
  margin-bottom: 4px;
}

.skill-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 242, 254, 0.5), #00f2fe);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
  transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 0%;
}

@media (max-width: 768px) {
  .intelligence-grid, .pros-cons-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

