:root {
  --primary: #0F6699;
  --primary-light: #2a85b5;
  --primary-dark: #0a4d73;
  --primary-subtle: #e8f0fe;
  --bg: #f4f6f9;
  --bg-card: #ffffff;
  --text: #0b1a33;
  --text-secondary: #4a5b7a;
  --text-tertiary: #8896ad;
  --border: #e2e6ed;
  --border-light: #f0f2f6;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── LIQUID BACKGROUND ─── */
.liquid-bg {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}

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

.liquid-bg canvas {
  width: 100%; height: 100%;
  opacity: 0.15;
}

/* ─── HEADER / NAV ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}

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

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-accent { color: var(--primary); }
.logo-dot { color: var(--primary); font-size: 0.9rem; }
.logo-light { color: var(--text); font-weight: 300; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--text); background: var(--border-light); }

.nav-link.active {
  color: var(--primary);
  background: var(--primary-subtle);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* ─── MAIN ─── */
.main {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

/* ─── PAGE VIEWS ─── */
.page-view { display: none; }
.page-view.active { display: block; }

/* ─── SECTION ─── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--text);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #e8f0fe 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 12px; }

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

/* ─── HOLOGRAPHIC RINGS ─── */
.holo-wrap {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(15,102,153,0.15);
  animation: spin 6s linear infinite;
}

.holo-ring-outer {
  width: 260px; height: 260px;
  border-color: rgba(15,102,153,0.12);
  border-top-color: var(--primary);
  animation-duration: 4s;
}

.holo-ring-inner {
  width: 180px; height: 180px;
  border-color: rgba(15,102,153,0.08);
  border-bottom-color: var(--primary);
  animation-duration: 3s;
  animation-direction: reverse;
}

.holo-center {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.8;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(15,102,153,0.3); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-full { width: 100%; justify-content: center; }

.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0;
}

.btn-link:hover { text-decoration: underline; }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.glass-card {
  box-shadow: var(--shadow);
}

.glass-card:hover { box-shadow: var(--shadow-hover); }

.card-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.card-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

.card-subtitle { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 16px; }

/* ─── GRID ─── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* ─── STATS ─── */
.stats-list { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }

.stat-item { display: flex; flex-direction: column; gap: 8px; }

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

.stat-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

.stat-value { font-weight: 800; color: var(--primary); font-size: 1.3rem; }

.gauge {
  height: 6px;
  background: var(--border-light);
  border-radius: 6px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 6px;
  transition: width 0.8s ease;
}

/* ─── COMPANY CARD ─── */
.company-card { margin-top: 0; padding: 28px; }

.company-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: center;
}

.company-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }

.company-info p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--border-light);
  padding: 6px 14px;
  border-radius: 20px;
}

.tag i { font-size: 0.7rem; }



/* ─── TAG CLOUD ─── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag-cloud:last-child { margin-bottom: 0; }

.tag-eco {
  background: var(--primary-subtle);
  color: var(--primary-dark);
}

.tag-client {
  background: #f0f4ff;
  color: #0044aa;
}

.mini-pulse {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: pulse 2s infinite;
}

/* ─── SERVICES ─── */
.services-wrap { padding: 0; overflow: hidden; }

.tabs-list {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  padding: 0 4px;
  background: var(--bg);
}

.tab-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-trigger:hover { color: var(--text); background: var(--border-light); }

.tab-trigger.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: transparent;
}

.tab-trigger i { font-size: 0.75rem; }

.tabs-content { padding: 24px; }

.tab-panel { display: none; }

.tab-panel.active { display: block; }

.panel-head { margin-bottom: 20px; }

.panel-head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.panel-head p { color: var(--text-secondary); font-size: 0.88rem; }

/* ─── SUB CARDS ─── */
.sub-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 20px;
}

.sub-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sub-card h4 i { color: var(--primary); }

.sub-card ul { list-style: none; }

.sub-card li {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 3px 0;
  border-bottom: 1px solid var(--border-light);
}

.sub-card li:last-child { border-bottom: none; }

.ck { color: #c7254e; }
.cv { color: var(--primary-dark); }

/* ─── FEATURES ─── */
.feature-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-item strong { color: var(--text); }

/* ─── DEMO BOX ─── */
.demo-box {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
}

.demo-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-head .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00e676;
  display: inline-block;
  animation: pulse 2s infinite;
}

.demo-head h5 { font-size: 0.85rem; font-weight: 600; }

.demo-instruct { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 12px; }

.sample-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.sample-btn {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.sample-btn:hover { border-color: var(--primary); color: var(--primary); }

.sample-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ─── SCAN MATRIX ─── */
.scan-window-container { margin-bottom: 14px; }

.scan-matrix {
  background: #0b1a33;
  border-radius: 8px;
  padding: 16px;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}

.scanner-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0, 230, 118, 0.6);
  box-shadow: 0 0 8px rgba(0,230,118,0.3);
  animation: scanMove 2s ease-in-out infinite;
}

@keyframes scanMove {
  0% { top: 0; }
  50% { top: calc(100% - 2px); }
  100% { top: 0; }
}

.scan-window-container.scanning .scanner-bar { animation-duration: 0.15s; }

.matrix-text {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.78rem;
  color: #00e676;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.6;
}

.ocr-results {
  margin-top: 14px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.ocr-results h6 { font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; }

.ocr-results ul { list-style: none; }

.ocr-results li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid var(--border-light);
}

.ocr-results li:last-child { border-bottom: none; }

/* ─── PIPELINE ─── */
.pipeline { margin-bottom: 20px; }

.pipeline h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }

.pipeline-track {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.pipe-step {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.pipe-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── TICKET GRID ─── */
.ticket-status {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  font-family: monospace;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ─── FRAMEWORK ─── */
.framework-display {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}

.framework-wheel {
  position: relative;
  width: 260px; height: 260px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s ease;
}

.wheel-node {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  transform: rotate(calc(var(--angle, 0deg))) translateY(-108px) rotate(calc(var(--angle, 0deg) * -1));
}

.wheel-node:hover { border-color: var(--primary); }

.wheel-node.active {
  border-color: var(--primary);
  background: var(--primary-subtle);
  box-shadow: 0 0 0 4px rgba(15,102,153,0.12);
}

.node-icon { font-size: 1rem; color: var(--primary); }

.node-label { font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); margin-top: 1px; }

.wheel-center {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.framework-details { min-height: 200px; }

.step-details { display: none; }

.step-details.active { display: block; }

.step-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.step-details h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.step-sub {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.step-details > p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ─── OPS GRID ─── */
.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* ─── TODO ─── */
.todo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}

.todo-head h4 { font-size: 0.95rem; font-weight: 700; }

.todo-progress { text-align: right; min-width: 120px; }

.todo-progress > span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 4px;
}

.progress-bg {
  height: 4px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.todo-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.todo-input-row input {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}

.todo-input-row input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,102,153,0.08); }

.todo-filters {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.filter-btn {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.todo-list { list-style: none; margin-bottom: 14px; }

.todo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.todo-item:hover { background: var(--border-light); }

.todo-item.completed .todo-text { text-decoration: line-through; color: var(--text-tertiary); }

.todo-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.todo-checkbox {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.todo-checkbox i { font-size: 0.6rem; color: transparent; }

.todo-item.completed .todo-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

.todo-item.completed .todo-checkbox i { color: #fff; }

.todo-text { font-size: 0.85rem; color: var(--text); }

.todo-delete-btn {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
}

.todo-delete-btn:hover { color: #e53935; background: rgba(229,57,53,0.06); }

.todo-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.todo-count { font-size: 0.78rem; color: var(--text-tertiary); }

/* ─── BUBBLE PARTICLE ─── */
.bubble-particle {
  position: fixed;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
  pointer-events: none;
  z-index: 9999;
  animation: bubbleFly 0.6s ease-out forwards;
}

@keyframes bubbleFly {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* ─── WHY US ─── */
.why-box { padding: 24px; }

.why-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.why-list { display: flex; flex-direction: column; gap: 16px; }

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.why-item i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-subtle);
  border-radius: 50%;
}

.why-item h5 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.why-item h5 .mini-pulse { display: none; }

.why-item p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }

/* ─── TERMINAL ─── */
.terminal-card {
  background: #0b1a33;
  border-color: rgba(255,255,255,0.06);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.term-dots { display: flex; gap: 6px; }

.term-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.term-dots .dot.red { background: #ff5f56; }
.term-dots .dot.yellow { background: #ffbd2e; }
.term-dots .dot.green { background: #27c93f; }

.term-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.term-status {
  font-size: 0.68rem;
  color: #00e676;
  display: flex;
  align-items: center;
  gap: 4px;
}

.term-status .pulse {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #00e676;
  animation: pulse 2s infinite;
}

.terminal-body {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.75rem;
  line-height: 1.7;
  max-height: 200px;
  overflow-y: auto;
  color: #00e676;
}

.terminal-body::-webkit-scrollbar { width: 4px; }
.terminal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.log-line { padding: 2px 0; }

.log-line.info { color: #66bfff; }
.log-line.success { color: #00e676; }
.log-line.warning { color: #ffbd2e; }
.log-line.action { color: #ff9ff3; }

/* ─── ECOSYSTEM ─── */
.eco-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 10px;
  margin-top: 20px;
}

.eco-heading:first-of-type { margin-top: 0; }

/* ─── FOOTER ─── */
.footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-brand h4 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 12px;
}

.footer-copy { font-size: 0.75rem; color: var(--text-tertiary); }

.footer-contact h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-addr {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a, .footer-links span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--primary); }

.footer-links i { font-size: 0.75rem; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--primary);
  padding: 28px 24px;
}

.stats-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.stat-block {
  text-align: center;
}

.stat-big-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.stat-big-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── TESTIMONIALS ─── */
.testimonial-card { display: flex; flex-direction: column; gap: 14px; }

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #0b1a33 0%, #1a2f55 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 20px;
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  max-width: 500px;
}

.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

.btn-light {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn-light:hover {
  border-color: #fff;
  color: #fff;
}

/* ─── FAQ ─── */
.faq-section { margin-top: 32px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font);
}

.faq-question i {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── CONTACT FORM ─── */
.contact-form-section { margin-top: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 4px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,102,153,0.08);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--primary-subtle);
  border: 1px solid #7ab8d9;
  border-radius: 8px;
  color: var(--primary-dark);
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-success i { font-size: 1.1rem; }

.contact-info-card { display: flex; flex-direction: column; gap: 16px; }

.contact-info-list { display: flex; flex-direction: column; gap: 16px; }

.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1rem;
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ─── MARGIN UTILITIES ─── */
.mt-1 { margin-top: 16px; }
.margin-top-lg { margin-top: 24px; }

/* ─── PAGE HEROES ─── */
.page-hero {
  padding: 56px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: var(--text);
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero-presence { background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%); }
.page-hero-services { background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%); }
.page-hero-services .section-tag { background: #f0eaff; color: #6b21a8; }
.page-hero-operations { background: linear-gradient(135deg, #e8f0fe 0%, #d4e4ff 100%); }
.page-hero-operations .section-tag { background: #d4e4ff; color: #0F6699; }
.page-hero-contact { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); }
.page-hero-contact .section-tag { background: #ffedd5; color: #9a3412; }

/* ─── INDUSTRY GRID ─── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.industry-card {
  padding: 24px 20px;
  text-align: center;
  cursor: default;
  border-radius: var(--radius-lg);
}

.industry-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.industry-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── PRESENCE MAP ─── */
.presence-map-card { margin-bottom: 20px; }

.presence-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.region-block {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.region-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.region-header i { color: var(--primary); font-size: 0.9rem; }

.region-header h5 { font-size: 0.85rem; font-weight: 700; }

.region-block p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.region-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ─── SECTOR GRID ─── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.sector-item i { color: var(--primary); font-size: 0.9rem; flex-shrink: 0; }

/* ─── SERVICE OVERVIEW GRID ─── */
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.service-overview-card {
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
}

.service-overview-card:hover { border-color: var(--primary); transform: translateY(-2px); }

.sov-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-overview-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }

.service-overview-card p { font-size: 0.78rem; color: var(--text-secondary); }

/* ─── SERVICE DETAIL BLOCKS ─── */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-detail-block {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sdb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sdb-header i { color: var(--primary); font-size: 1rem; }

.sdb-header h4 { font-size: 0.9rem; font-weight: 700; }

.sdb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sdb-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.sdb-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
}

.ticket-status-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
  font-size: 0.78rem;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--primary-subtle);
  border-radius: 6px;
}

.ticket-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

/* ─── STEP FLOW ─── */
.step-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 24px;
  padding: 4px 0;
}

.step-flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  min-width: 0;
}

.step-flow-item:hover { border-color: var(--primary-light); background: #f8faff; }

.step-flow-item.active {
  border-color: var(--primary);
  background: var(--primary-subtle);
  box-shadow: 0 2px 12px rgba(15,102,153,0.1);
}

.sf-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
}

.step-flow-item.active .sf-num { opacity: 1; }

.sf-content { min-width: 0; }

.sf-content h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; color: var(--text); }

.sf-content p { font-size: 0.75rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.step-flow-arrow {
  padding: 0 10px;
  color: var(--text-tertiary);
  font-size: 0.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ─── STEP DETAIL PANEL ─── */
.step-detail-panel {
  margin-bottom: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.step-detail-active {
  animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-detail-panel .sdc-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.06;
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
}

.step-detail-panel .step-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.step-detail-panel h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.step-detail-panel .step-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.step-detail-panel p:last-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
}

/* ─── FAQ GRID ─── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ─── CONTACT LAYOUT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-info-stack { display: flex; flex-direction: column; gap: 0; }

/* ─── PARTNER GRID ─── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  transition: var(--transition);
}

.partner-item:hover { border-color: var(--primary); color: var(--primary); }

.partner-item i { font-size: 1.3rem; color: var(--primary); }

/* ─── CLIENT GRID ─── */
.client-section { margin-top: 16px; }
.client-section:first-of-type { margin-top: 0; }

.client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.client-chip {
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.client-chip:hover { border-color: var(--primary); color: var(--primary); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: 1.75rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .framework-display { grid-template-columns: 1fr; }
  .framework-wheel { width: 220px; height: 220px; }
  .wheel-node { transform: rotate(calc(var(--angle, 0deg))) translateY(-90px) rotate(calc(var(--angle, 0deg) * -1)); }
  .wheel-center { width: 60px; height: 60px; font-size: 0.65rem; }
  .ops-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 12px; gap: 2px; }
  .nav-toggle { display: block; }
  .stats-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .presence-regions { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .service-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .step-detail-cards { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section-title { font-size: 1.35rem; }
  .hero-title { font-size: 1.4rem; }
  .tabs-list { padding: 0; }
  .tab-trigger { padding: 10px 12px; font-size: 0.72rem; }
  .tabs-content { padding: 16px; }
  .pipeline-track { gap: 6px; }
  .card { padding: 20px; }
  .hero { padding: 40px 16px; }
  .section { padding: 32px 16px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-big-num { font-size: 1.4rem; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .presence-regions { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .service-overview-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .step-flow { flex-direction: column; align-items: stretch; gap: 0; }
  .step-flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .step-detail-cards { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero h1 { font-size: 1.5rem; }
}

/* ─── ANALYTICS CHART ─── */
.analytics-chart-wrap {
  margin-top: 8px;
}

#bbi-revenue-chart {
  border-radius: 8px;
  overflow: visible;
}

.chart-bar {
  transform-origin: bottom;
  transition: opacity 0.2s ease;
}
.chart-bar:hover { opacity: 0.8; cursor: default; }

@keyframes barRise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.chart-bar-animate {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: barRise 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.chart-bar-animate:nth-child(1) { animation-delay: 0.0s; }
.chart-bar-animate:nth-child(2) { animation-delay: 0.12s; }
.chart-bar-animate:nth-child(3) { animation-delay: 0.24s; }
.chart-bar-animate:nth-child(4) { animation-delay: 0.36s; }
.chart-bar-animate:nth-child(5) { animation-delay: 0.48s; }

@keyframes trendDraw {
  to { stroke-dashoffset: 0; }
}

.trendline-animate {
  animation: trendDraw 1.0s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes dotPop {
  0%   { opacity: 0; r: 0; }
  70%  { opacity: 1; r: 4; }
  100% { opacity: 1; r: 2.5; }
}

.dot-animate {
  animation: dotPop 0.4s ease forwards;
}
.dot-animate:nth-child(1) { animation-delay: 0.65s; }
.dot-animate:nth-child(2) { animation-delay: 0.75s; }
.dot-animate:nth-child(3) { animation-delay: 0.85s; }

/* Metrics row below chart */
.chart-metrics-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.chart-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.chart-metric-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.chart-metric-proj { color: #0077ff; }
.chart-metric-growth { color: #00994d; }

.chart-metric-lbl {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.chart-metric-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
