/* ============================================================
   Logicon — Landing page styles
   Created: 2026-04-17 (session 115)
   Replaces inline styles across all landing components.
   ============================================================ */

/* ── Generic landing helpers ────────────────────────────── */
.ls-section-light { background: #fff; }
.ls-section-muted { background: #f0f4f8; }
.ls-section-blue  { background: #EDF5FF; }
.ls-section-dark  { background: #0f172a; color: #fff; }
.ls-section-darker{ background: #0a1628; color: #fff; }

.ls-section-pad   { padding: 60px 0; }
.ls-section-pad-lg{ padding: 80px 0; }

.ls-pill {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.ls-pill-navy {
  background: rgba(0,61,102,0.1);
  color: #003D66;
}

.ls-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 14px;
}
.ls-heading-white { color: #fff; }

.ls-subtext {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}
.ls-subtext-lg { font-size: 16px; }
.ls-subtext-dark { color: #1e293b; }
.ls-note {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero-style1-custom {
  background-size: cover;
  background-position: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.hero-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(0,170,255,0.08);
  color: #0f172a;
  border-radius: 20px;
  border: 1px solid #00AAFF;
  white-space: nowrap;
}
.hero-card-wrap {
  background-image: url(/assets/img/bg-container-card.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,119,204,0.13);
  border: 1px solid rgba(0,170,255,0.18);
}

/* ── Header / Navigation ───────────────────────────────── */
.main-menu > ul > li > a {
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  transition: background 0.2s, color 0.2s !important;
  border-radius: 6px !important;
}
.main-menu > ul > li > a:hover {
  background: rgba(0,170,255,0.08) !important;
  color: var(--theme-color) !important;
}
.ls-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.ls-dropdown.ls-dropdown-right { left: auto; right: 0; }
.ls-dropdown li { display: block; width: 100%; }
.ls-dropdown a {
  padding: 10px 18px;
  display: block;
  font-size: 12px;
  color: var(--title-color);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  text-transform: none !important;
  font-weight: 500 !important;
}
.ls-dropdown a:hover {
  background: rgba(0,170,255,0.06);
  color: var(--theme-color);
}
.ls-dropdown-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 4px 0;
  pointer-events: none;
}
.ls-dropdown-header {
  text-transform: uppercase;
  font-size: 0.7rem;
  opacity: 0.5;
  padding: 4px 18px;
  pointer-events: none;
  letter-spacing: 0.5px;
  color: #aaa;
}

/* ── Signal Example section ─────────────────────────────── */
.ls-signal-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.ls-sec-text-strong {
  color: #1e293b !important;
  font-weight: 500;
}

/* ── Asset Coverage (task 7: solid bg + white text) ─────── */
.ls-asset-card {
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  color: #fff;
  border: none;
}
.ls-asset-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}
.ls-asset-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ls-asset-icon i { color: #fff; }
.ls-asset-kind {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.ls-asset-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.ls-asset-coverage {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
}
.ls-asset-link { text-decoration: none; display: block; height: 100%; }
.ls-asset-header { display: flex; align-items: center; gap: 12px; }
.ls-asset-meta { flex: 1; }
.ls-asset-sample {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-style: italic;
}

/* ── Track Record table (task 8: striped rows) ──────────── */
.ls-tr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.ls-tr-table thead th {
  padding: 12px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.ls-tr-table tbody tr {
  transition: background 0.15s;
}
.ls-tr-table tbody tr:nth-child(odd) {
  background: #fff;
}
.ls-tr-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.ls-tr-table tbody tr:hover {
  background: #eef3ff !important;
}
.ls-tr-table td {
  padding: 14px 20px;
}
.ls-tr-td-pair  { font-weight: 700; color: #0f172a; font-family: 'DM Sans', sans-serif; }
.ls-tr-td-entry { font-family: monospace; color: #475569; font-weight: 600; }
.ls-tr-td-win   { font-weight: 700; color: #16a34a; }
.ls-tr-td-loss  { font-weight: 700; color: #dc2626; }

.ls-dir-badge {
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.ls-dir-badge-long  { background: #4ade80; }
.ls-dir-badge-short { background: #f87171; }

.ls-tp-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.ls-tp3 { background: #dcfce7; color: #15803d; }
.ls-tp2 { background: #dbeafe; color: #1d4ed8; }
.ls-tp1 { background: #f0f9ff; color: #0369a1; }

/* ── Track Record section wrapper ──────────────────────── */
.ls-tr-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.ls-tr-header {
  padding: 20px 28px 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ls-tr-footer {
  padding: 14px 28px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ls-live-badge {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ls-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  display: inline-block;
}

.ls-subtitle-muted { background: #f0f4f8; border: none; }
.ls-tr-title { font-size: 15px; font-weight: 700; color: #0f172a; margin: 0; }
.ls-tr-sub   { font-size: 12px; color: #94a3b8; margin: 3px 0 0; }
.ls-tr-link  { font-size: 12px; font-weight: 700; color: #00AAFF; text-decoration: none; white-space: nowrap; }
.ls-sl-label { font-size: 12px; color: #dc2626; font-weight: 600; }
.ls-be-label { font-size: 12px; color: #92400e; font-weight: 600; }
.ls-tr-td-be { font-weight: 700; color: #92400e; }
.ls-table-scroll { overflow-x: auto; }

/* ── Intelligence Belt ─────────────────────────────────── */
.ls-belt-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.ls-belt-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.ls-belt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.ls-belt-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
  align-self: flex-start;
  letter-spacing: 0.05em;
}
.ls-belt-title { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0; }
.ls-belt-body  { font-size: 14px; color: #64748b; line-height: 1.7; margin: 0; flex-grow: 1; }
.ls-belt-cta   { font-size: 13px; font-weight: 600; }

/* ── How It Works ──────────────────────────────────────── */
.ls-hiw-section {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.ls-hiw-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  height: 100%;
}
.ls-hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,170,255,0.15);
  border: 1px solid rgba(0,170,255,0.3);
  font-size: 13px;
  font-weight: 800;
  color: #00AAFF;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.ls-hiw-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.4;
}
.ls-hiw-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ls-hiw-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ls-hiw-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}
.ls-hiw-dot {
  flex-shrink: 0;
  margin-top: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00AAFF;
  display: inline-block;
}

/* ── Does It Work ──────────────────────────────────────── */
.ls-diw-section {
  background: #0f172a;
  padding: 60px 0;
}
.ls-diw-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.ls-diw-icon {
  background: rgb(42 69 99);
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

/* ── Features ──────────────────────────────────────────── */
.ls-feat-card {
  background: #fff;
  border: 1px solid #E8F0FE;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.ls-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ls-feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ls-feat-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.3;
}
.ls-feat-text {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ── Auth pages (login/register) ────────────────────────── */
.ls-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}
.ls-auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.ls-auth-logo-wrap {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ls-auth-subtitle {
  margin-top: 8px;
  color: #64748b;
}
.ls-social-btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.ls-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}
.ls-social-google {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #1e293b;
}
.ls-social-discord {
  background: #5865F2;
  border: none;
  color: #fff;
}
.ls-auth-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ls-auth-sep-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.ls-auth-sep-text {
  font-size: 13px;
  color: #94a3b8;
  flex-shrink: 0;
}
.ls-auth-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.ls-form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}
.ls-form-group   { margin-bottom: 16px; }
.ls-form-group-lg{ margin-bottom: 24px; }
.ls-auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #64748b;
}
.ls-auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.ls-auth-terms label {
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  line-height: 1.5;
}

/* ── Misc ───────────────────────────────────────────────── */
.ls-link-theme { color: var(--theme-color); font-weight: 600; text-decoration: none; }
.ls-link-theme:hover { text-decoration: underline; }

.ls-forgot-row { text-align: right; margin-top: 6px; }
.ls-forgot-row a { font-size: 13px; color: var(--theme-color); text-decoration: none; }

/* ── Header extras ──────────────────────────────────────── */
.ls-nav-parent { position: relative; }
.ls-chevron-sm { font-size: 10px; margin-left: 4px; }
.ls-header-right { min-width: 160px; text-align: right; }
.ls-header-right .header-button { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.ls-header-right .th-btn { padding: 10px 16px; gap: 24px; font-size: 14px; }
.ls-header-right .th-btn.secondary .btn-text { padding: 9px 14px; font-size: 14px; }
.ls-header-right .th-btn.secondary .icon { width: 38px !important; padding: 9px 11px !important; }
.ls-mobile-dropdown-btn {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.ls-mobile-dropdown-btn i { margin-left: 6px; font-size: 11px; }
.ls-mobile-sub { padding-left: 18px; }

/* ── Dark Geopolitical Header + Hero Overrides ─────────── */
.th-header.header-layout1 {
  background: linear-gradient(135deg, #0a1628 0%, #1a2940 50%, #0d2137 100%) !important;
}
.th-header.header-layout1 .menu-area,
.th-header.header-layout1 .sticky-wrapper {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.th-header.header-layout1 .sticky-wrapper.active {
  background: linear-gradient(135deg, #0a1628 0%, #1a2940 50%, #0d2137 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
  border-radius: 0 !important;
}
.th-header .main-menu > ul > li > a {
  color: rgba(255,255,255,0.85) !important;
}
.th-header .main-menu > ul > li > a:hover {
  color: #00AAFF !important;
  background: rgba(0,170,255,0.1) !important;
}
.th-header .header-logo .Logo .text-1 {
  color: #fff !important;
}
.th-header .header-logo .Logo .icon i {
  color: #00AAFF !important;
}
.th-header .ls-dropdown a {
  color: #1a2940 !important;
}
.th-header .ls-dropdown a:hover {
  color: #00AAFF !important;
}
.th-header .ls-dropdown-divider {
  border-top-color: rgba(0,0,0,0.08) !important;
}
.th-header .th-menu-toggle {
  color: #fff !important;
}
/* Hero dark overrides */
.th-hero-wrapper.hero-1 {
  background: transparent !important;
  background-image: none !important;
}
.hero-card-wrap {
  background-image: none !important;
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(0,170,255,0.15) !important;
}

/* ============================================================
   lg- prefix classes — extracted from inline styles
   Session: 2026-04-24
   ============================================================ */

/* ── 1. Layout & Sections ─────────────────────────────────── */
.lg-section {
  padding: 80px 20px;
}
.lg-section-sm {
  padding: 60px 20px;
}
.lg-section-hero {
  padding: 140px 20px 72px;
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 60%, #111827 100%);
  color: #fff;
  text-align: center;
}
.lg-section-hero-home {
  padding: 100px 20px 80px;
  text-align: center;
  background: transparent;
  color: #fff;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}
.lg-section-hero-short {
  padding: 140px 20px 56px;
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 60%, #111827 100%);
  color: #fff;
  text-align: center;
}
.lg-section-hero-query {
  padding: 140px 20px 48px;
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 60%, #111827 100%);
  color: #fff;
  text-align: center;
}
.lg-section-method-hero {
  padding: 120px 20px 60px;
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 60%, #111827 100%);
  color: #fff;
  text-align: center;
}
.lg-section-dark {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1628, #0d2137);
  color: #fff;
}
.lg-section-dark-full {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 100%);
  color: #fff;
  text-align: center;
}
.lg-section-muted {
  padding: 80px 20px;
  background: #f8fafc;
}
.lg-section-muted-sm {
  padding: 60px 20px;
  background: #f8fafc;
}
.lg-section-white {
  padding: 60px 20px;
  background: #fff;
}
.lg-section-white-lg {
  padding: 60px 20px 80px;
  background: #fff;
}
.lg-section-center {
  text-align: center;
}
.lg-container {
  max-width: 1100px;
  margin: 0 auto;
}
.lg-container-sm {
  max-width: 900px;
  margin: 0 auto;
}
.lg-container-md {
  max-width: 860px;
  margin: 0 auto;
}
.lg-container-xs {
  max-width: 760px;
  margin: 0 auto;
}
.lg-container-narrow {
  max-width: 640px;
  margin: 0 auto;
}
.lg-container-lg {
  max-width: 1000px;
  margin: 0 auto;
}
.lg-container-center {
  text-align: center;
}

/* ── 2. Hero ──────────────────────────────────────────────── */
.lg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(/assets/img/hero/header-bg.jpg);
  background-size: cover;
  background-position: center;
}
.lg-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.35) 50%, rgba(10,22,40,0.5) 100%);
}
.lg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.lg-hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(0,170,255,0.12);
  border: 1px solid rgba(0,170,255,0.25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00AAFF;
}

/* ── 3. Typography ────────────────────────────────────────── */
.lg-h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  max-width: 860px;
  letter-spacing: -0.5px;
  color: #ffffff;
}
.lg-h1-page {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #fff;
}
.lg-h1-sub {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #fff;
}
.lg-h1-method {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.lg-h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #003D66;
  margin-bottom: 48px;
}
.lg-h2-section {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003D66;
  margin-bottom: 8px;
  text-align: center;
}
.lg-h2-white {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 36px;
}
.lg-h2-dark-lg {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.lg-h2-caps {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0077CC;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
}
.lg-h2-caps-muted {
  font-size: 1.1rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.lg-h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003D66;
  margin-bottom: 12px;
}
.lg-h3-effect {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003D66;
  margin: 0;
}
.lg-h3-card {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0077CC;
  margin-bottom: 8px;
  margin-top: 0;
}
.lg-h3-deploy {
  font-size: 1.05rem;
  font-weight: 700;
  color: #003D66;
  margin-bottom: 10px;
  margin-top: 0;
}
.lg-h4 {
  font-weight: 600;
  color: #003D66;
  margin: 0 0 6px;
}
.lg-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  line-height: 1.7;
  margin: 0 auto 40px;
}
.lg-page-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.lg-page-subtitle-wide {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.lg-page-subtitle-sm {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.lg-page-subtitle-method {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.lg-text {
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.lg-text-body {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}
.lg-text-muted {
  color: #94a3b8;
}
.lg-text-desc {
  color: #475569;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}
.lg-text-intro {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}
.lg-text-sm {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}
.lg-text-dark {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}
.lg-label-caps {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lg-label-caps-blue {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0077CC;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lg-label-caps-sm {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  margin-bottom: 8px;
}
.lg-label-caps-driver {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #003D66;
  margin: 0 0 20px;
}
.lg-accent {
  color: #00AAFF;
  font-weight: 600;
}
.lg-strong-navy {
  color: #003D66;
}

/* ── 4. Grids ─────────────────────────────────────────────── */
.lg-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.lg-grid-auto-sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.lg-grid-auto-xs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.lg-grid-auto-md {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.lg-grid-stat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
.lg-grid-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.lg-grid-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.lg-flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lg-flex-col-sm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lg-flex-col-xs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lg-flex-col-chat {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lg-flex-row-center {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── 5. Cards ─────────────────────────────────────────────── */
.lg-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,119,204,0.06);
}
.lg-card-effect {
  margin-bottom: 48px;
  padding: 32px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e8f0fe;
  border-left: 4px solid #0077CC;
}
.lg-card-effect-gray {
  padding: 24px;
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #cbd5e1;
}
.lg-card-endpoint {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8f0fe;
  transition: box-shadow 0.2s;
}
.lg-card-format {
  padding: 24px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e8f0fe;
  text-align: center;
}
.lg-card-deploy {
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8f0fe;
}
.lg-card-source {
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e8f0fe;
}
.lg-card-effect-item {
  padding: 20px 24px;
  border-left: 3px solid #0077CC;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
}
.lg-card-scenario {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.lg-card-context {
  padding: 24px 28px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0077CC;
  margin-bottom: 40px;
}
.lg-card-drivers {
  padding: 28px 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 40px;
}
.lg-card-explorer {
  padding: 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  text-align: center;
}
.lg-card-contributors {
  padding: 28px 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.lg-card-domain {
  margin-bottom: 28px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.lg-card-disclaimer {
  padding: 24px 28px;
  background: linear-gradient(135deg, #0a1628, #0d2137);
  border-radius: 14px;
  text-align: center;
  margin-bottom: 32px;
}
.lg-card-note-dark {
  padding: 28px 32px;
  background: linear-gradient(135deg, #0a1628, #0d2137);
  border-radius: 14px;
  text-align: center;
}
.lg-card-cta {
  margin-top: 72px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #0a1628, #0d2137);
  border-radius: 16px;
  text-align: center;
}
.lg-card-cta-light {
  margin-top: 48px;
  padding: 32px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e8f0fe;
  text-align: center;
}
.lg-card-cta-bottom {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e8f0fe;
  text-align: center;
}
.lg-card-belief {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* ── 6. Step Numbers ──────────────────────────────────────── */
.lg-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0077CC;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.lg-step-num-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0077CC;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.lg-step-num-effect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.lg-step-num-gray {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.lg-step-num-driver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lg-step-num-contributor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── 7. Flex Helpers ──────────────────────────────────────── */
.lg-flex-center {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.lg-flex-center-sm {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.lg-flex-center-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.lg-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.lg-flex-start {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lg-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

/* ── 8. Buttons / CTAs ────────────────────────────────────── */
.lg-cta-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,119,204,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lg-cta-btn-sm {
  padding: 12px 28px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.lg-cta-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.lg-cta-btn-inline-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.lg-cta-btn-outline {
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  backdrop-filter: blur(4px);
}
.lg-cta-btn-outline-blue {
  padding: 12px 28px;
  background: #fff;
  color: #0077CC;
  border: 1px solid #0077CC;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.lg-cta-btn-outline-sm {
  padding: 12px 24px;
  color: #0077CC;
  border: 1px solid #0077CC;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.lg-btn-advance {
  padding: 14px 36px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,119,204,0.3);
}
.lg-btn-reset {
  padding: 14px 36px;
  background: #0a1628;
  color: #94a3b8;
  border: 1px solid #334155;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.lg-btn-reset-sm {
  padding: 10px 20px;
  background: #0a1628;
  color: #94a3b8;
  border: 1px solid #334155;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

/* ── 9. Pills / Badges ────────────────────────────────────── */
.lg-pill {
  padding: 8px 16px;
  background: #f0f7ff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0077CC;
  border: 1px solid #dbeafe;
}
.lg-badge-label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #0077CC;
  background: rgba(0,119,204,0.08);
  padding: 4px 10px;
  border-radius: 6px;
}
.lg-badge-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0077CC;
  background: rgba(0,119,204,0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: monospace;
}
.lg-badge-method {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: monospace;
}
.lg-badge-method-get {
  background: rgba(0,119,204,0.1);
  color: #0077CC;
}
.lg-badge-method-post {
  background: rgba(0,170,255,0.1);
  color: #00AAFF;
}
.lg-badge-source {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0077CC;
  background: rgba(0,119,204,0.06);
  padding: 3px 10px;
  border-radius: 5px;
  border: 1px solid rgba(0,119,204,0.15);
}
.lg-badge-weight {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 5px;
}
.lg-badge-type {
  font-size: 0.72rem;
  padding: 1px 6px;
  border-radius: 4px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 500;
}

/* ── 10. Stats ────────────────────────────────────────────── */
.lg-stat-card {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.lg-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #00AAFF;
}
.lg-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 8px;
}
.lg-stat-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ── 11. Effects / Steps (methodology) ────────────────────── */
.lg-step-border {
  margin-bottom: 56px;
  padding-left: 28px;
  border-left: 3px solid #0077CC;
}
.lg-step-subtitle {
  font-size: 0.9rem;
  color: #0077CC;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 4px;
}
.lg-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003D66;
  margin: 0;
}
.lg-step-content {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}
.lg-step-stage {
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e8f0fe;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.lg-step-stage-num {
  font-weight: 700;
  color: #0077CC;
  font-size: 0.8rem;
  min-width: 20px;
}
.lg-step-detail-list {
  margin: 0;
  padding-left: 20px;
  color: #475569;
  line-height: 1.8;
  font-size: 0.92rem;
}
.lg-step-source-name {
  color: #003D66;
  font-size: 0.9rem;
}
.lg-step-source-desc {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.5;
}
.lg-step-domain-desc {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.5;
}
.lg-step-stage-sep {
  color: #64748b;
  font-size: 0.85rem;
}

/* Challenge / Delivers */
.lg-challenge-block {
  margin-bottom: 20px;
}
.lg-challenge-text {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid #cbd5e1;
}
.lg-delivers-text {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid #0077CC;
}
.lg-complementary-text {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.lg-complementary-card-text {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.lg-complementary-title {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  margin: 0;
}

/* Architecture diagram */
.lg-arch-box {
  background: #0a1628;
  border-radius: 12px;
  padding: 32px;
  overflow-x: auto;
  border: 1px solid rgba(0,170,255,0.2);
}
.lg-arch-pre {
  margin: 0;
  font-family: 'Fira Code', 'Cascadia Code', 'JetBrains Mono', 'Consolas', monospace;
  font-size: clamp(0.55rem, 1.2vw, 0.82rem);
  line-height: 1.6;
  color: #00AAFF;
  white-space: pre;
  overflow-x: auto;
}
.lg-code-path {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #003D66;
  margin-bottom: 8px;
  word-break: break-all;
}
.lg-text-endpoint {
  margin: 0;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── 12. Intro Banner ─────────────────────────────────────── */
.lg-intro-banner {
  background: #f8fafc;
  padding: 48px 20px;
  border-bottom: 1px solid #e8f0fe;
}

/* ── 13. Timeline (Baltic) ────────────────────────────────── */
.lg-timeline-wrap {
  position: relative;
  margin-bottom: 40px;
}
.lg-timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #cbd5e1;
}
.lg-timeline-item {
  position: relative;
  padding-left: 60px;
  transition: opacity 0.3s ease;
}
.lg-timeline-item-gap {
  padding-bottom: 32px;
}
.lg-timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #f8fafc;
  transition: all 0.4s ease;
}
.lg-timeline-card {
  padding: 24px 28px;
  border-radius: 12px;
  transition: all 0.4s ease;
}
.lg-timeline-card-active {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.lg-timeline-card-inactive {
  background: #fafbfc;
  border: 1px solid #e2e8f0;
}
.lg-timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.lg-timeline-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lg-timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003D66;
  margin: 0;
}
.lg-timeline-prob {
  font-size: 1.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding: 4px 12px;
  border-radius: 8px;
}
.lg-timeline-desc {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 16px;
}
.lg-timeline-sources {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lg-sources-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Probability display */
.lg-prob-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.lg-prob-big {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: color 0.4s ease;
}
.lg-prob-big-sm {
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.lg-prob-bar-wrap {
  flex: 1 1 300px;
  max-width: 400px;
}
.lg-prob-bar {
  height: 20px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.lg-prob-bar-sm {
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 16px;
}
.lg-prob-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #eab308 40%, #f97316 65%, #ef4444 100%);
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.lg-prob-bar-fill-sm {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #eab308 40%, #f97316 65%, #ef4444 100%);
  border-radius: 6px;
  transition: width 0.3s ease;
}
.lg-prob-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
}
.lg-prob-delta {
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── 14. Explorer (sliders) ───────────────────────────────── */
.lg-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.lg-region-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lg-region-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}
.lg-region-select {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #003D66;
  cursor: pointer;
  outline: none;
}
.lg-prob-flex {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: sticky;
  top: 80px;
  z-index: 10;
  background: #f8fafc;
  padding: 12px 0;
}
.lg-prob-main {
  flex: 1 1 280px;
}
.lg-prob-side {
  flex: 1 1 320px;
}
.lg-domain-title {
  font-size: 1rem;
  font-weight: 700;
  color: #003D66;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lg-domain-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lg-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.lg-slider-label {
  font-size: 0.85rem;
  font-weight: 600;
}
.lg-slider-value {
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 2px 8px;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.lg-slider-range {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lg-slider-input {
  flex: 1;
  height: 6px;
  cursor: pointer;
}
.lg-slider-bound {
  font-size: 0.7rem;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
  min-width: 28px;
}
.lg-slider-bound-end {
  text-align: right;
}
.lg-weight-bar {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lg-weight-track {
  flex: 1;
  height: 3px;
  background: #f1f5f9;
  border-radius: 2px;
  overflow: hidden;
}
.lg-weight-fill {
  height: 100%;
  opacity: 0.3;
  border-radius: 2px;
}
.lg-weight-label {
  font-size: 0.65rem;
  color: #cbd5e1;
  font-weight: 600;
}
.lg-contributor-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lg-contributor-row + .lg-contributor-row {
  margin-top: 16px;
}
.lg-contributor-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #003D66;
  margin-bottom: 2px;
}
.lg-contributor-delta {
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── 15. Chat / Query ─────────────────────────────────────── */
.lg-chat-main {
  background: #f8fafc;
  min-height: 60vh;
  padding: 40px 20px 80px;
}
.lg-sample-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.lg-sample-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lg-sample-btn {
  padding: 10px 18px;
  font-size: 0.88rem;
  color: #0077CC;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  cursor: pointer;
  line-height: 1.4;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lg-sample-btn:hover {
  border-color: #0077CC;
  box-shadow: 0 0 0 1px #0077CC;
}
.lg-sample-btn:disabled {
  cursor: not-allowed;
}
.lg-chat-q-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.lg-chat-q-bubble {
  max-width: 75%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.lg-chat-a-row {
  display: flex;
  justify-content: flex-start;
}
.lg-chat-loading {
  padding: 16px 24px;
  background: #fff;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.9rem;
}
.lg-chat-error {
  max-width: 85%;
  padding: 16px 20px;
  background: #fef2f2;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.9rem;
  line-height: 1.6;
}
.lg-chat-response {
  max-width: 85%;
  background: #fff;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.lg-chat-confidence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.8rem;
}
.lg-chat-confidence-label {
  color: #64748b;
  font-weight: 500;
}
.lg-chat-confidence-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
.lg-chat-confidence-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.lg-chat-answer {
  padding: 20px;
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.75;
  white-space: pre-wrap;
}
.lg-chat-sources {
  padding: 14px 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}
.lg-chat-sources-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.lg-chat-sources-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lg-chat-source-item {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lg-chat-source-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0077CC;
  flex-shrink: 0;
}
.lg-chat-source-link {
  color: #0077CC;
  text-decoration: none;
}
.lg-chat-input-sticky {
  position: sticky;
  bottom: 0;
  margin-top: 24px;
  padding-top: 16px;
  padding-bottom: 8px;
  background: linear-gradient(0deg, #f8fafc 80%, transparent);
}
.lg-chat-form {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.lg-chat-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #1e293b;
  background: transparent;
  border-radius: 10px;
}
.lg-chat-submit {
  padding: 12px 28px;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.lg-chat-submit:not(:disabled) {
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  cursor: pointer;
}
.lg-chat-submit:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}
.lg-loading-dots {
  display: inline-flex;
  gap: 4px;
}
.lg-loading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0077CC;
}

/* ── 16. Header ───────────────────────────────────────────── */
.lg-header-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.lg-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #0a1628;
  z-index: 10001;
  padding: 24px;
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.lg-mobile-menu-open {
  transform: translateX(0);
}
.lg-mobile-menu-closed {
  transform: translateX(100%);
}
.lg-mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.lg-mobile-logo {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.lg-mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.lg-mobile-nav-border {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lg-mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.lg-mobile-chevron {
  font-size: 12px;
  transition: transform 0.2s;
}
.lg-mobile-chevron-open {
  transform: rotate(180deg);
}
.lg-mobile-sub {
  padding-left: 16px;
  padding-bottom: 8px;
}
.lg-mobile-sub-link {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.lg-mobile-link {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.lg-mobile-auth {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lg-mobile-auth-login {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.lg-mobile-auth-register {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.lg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.lg-header-default {
  background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(26,41,64,0.9) 50%, rgba(13,33,55,0.9) 100%);
  box-shadow: none;
}
.lg-header-scrolled {
  background: rgba(10,22,40,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.lg-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.lg-header-logo {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lg-header-logo-icon {
  color: #00AAFF;
  font-size: 20px;
}
.lg-desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
.lg-nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.lg-nav-link:hover {
  color: #00AAFF;
  background: rgba(0,170,255,0.1);
}
.lg-nav-chevron {
  font-size: 8px;
  opacity: 0.6;
}
.lg-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 0;
  z-index: 100;
}
.lg-dropdown-link {
  display: block;
  padding: 10px 20px;
  color: #1a2940;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  text-transform: none;
  letter-spacing: normal;
}
.lg-dropdown-link:hover {
  background: rgba(0,170,255,0.06);
  color: #0077CC;
}
.lg-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lg-desktop-auth {
  display: none;
  align-items: center;
  gap: 10px;
}
.lg-auth-dashboard {
  padding: 9px 20px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.lg-auth-login {
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.lg-auth-login:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.lg-auth-register {
  padding: 9px 20px;
  background: linear-gradient(135deg, #0077CC, #00AAFF);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.lg-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}
.lg-header-spacer {
  height: 72px;
}

/* ── 17. Footer ───────────────────────────────────────────── */
.lg-footer-desc {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.lg-footer-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lg-footer-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s;
}
.lg-footer-tagline {
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin: 8px 0 0;
}
.lg-footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-bottom: 0;
}
.lg-footer-disclaimer-strong {
  color: rgba(255,255,255,0.65);
}
.lg-footer-icon {
  font-size: 30px;
  color: #003D66;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ── 18. About Page ───────────────────────────────────────── */
.lg-about-main {
  padding-top: 100px;
}
.lg-about-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0 60px;
}
.lg-about-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.lg-about-badge {
  display: inline-block;
  background: rgba(0,170,255,0.12);
  color: #00AAFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
}
.lg-about-h1 {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: DM Sans, sans-serif;
}
.lg-about-intro {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.7;
  font-family: DM Sans, sans-serif;
}
.lg-about-quote {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.8;
  font-family: DM Sans, sans-serif;
  margin-top: 20px;
  border-left: 3px solid #00AAFF;
  padding-left: 18px;
}
.lg-about-section {
  padding: 80px 0;
}
.lg-about-h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
}
.lg-about-h2-center {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: DM Sans, sans-serif;
}
.lg-about-p {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  font-family: DM Sans, sans-serif;
}
.lg-about-p-last {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  font-family: DM Sans, sans-serif;
}
.lg-about-subtitle {
  color: #64748b;
  font-size: 16px;
  font-family: DM Sans, sans-serif;
}
.lg-about-center {
  text-align: center;
  margin-bottom: 48px;
}
.lg-belief-icon {
  width: 52px;
  height: 52px;
  background: #F0F7FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lg-belief-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: DM Sans, sans-serif;
}
.lg-belief-text {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  font-family: DM Sans, sans-serif;
}
.lg-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 800;
  font-family: DM Sans, sans-serif;
}
.lg-team-name {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  font-family: DM Sans, sans-serif;
  margin-bottom: 4px;
}
.lg-team-role {
  font-size: 13px;
  color: #64748b;
  font-family: DM Sans, sans-serif;
}

/* ── Team Page Cards ───────────────────────────────────── */
.lg-team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
}
.lg-team-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  font-family: DM Sans, sans-serif;
}
.lg-team-card-role {
  font-size: 14px;
  font-style: italic;
  color: #64748b;
  margin: 0 0 16px;
  font-family: DM Sans, sans-serif;
}
.lg-team-card-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 16px;
  font-family: DM Sans, sans-serif;
}
.lg-team-card-email {
  font-size: 14px;
  color: #0077CC;
  text-decoration: none;
  font-family: DM Sans, sans-serif;
}
.lg-team-card-email:hover {
  text-decoration: underline;
}

.lg-about-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0;
}
.lg-about-cta-h2 {
  color: #fff;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  font-family: DM Sans, sans-serif;
}
.lg-about-cta-text {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 32px;
  font-family: DM Sans, sans-serif;
}
.lg-about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D4FF12;
  color: #0f172a;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-family: DM Sans, sans-serif;
  letter-spacing: 0.3px;
}

/* ── 19. Complementary section ────────────────────────────── */
.lg-complementary-section {
  margin-top: 64px;
}

/* ── 20. Main backgrounds ─────────────────────────────────── */
.lg-main-white {
  background: #fff;
  padding: 64px 20px 48px;
}
.lg-main-white-lg {
  background: #fff;
  padding: 60px 20px 80px;
}
.lg-main-muted {
  background: #f8fafc;
  padding: 64px 20px 80px;
}
.lg-main-muted-sm {
  background: #f8fafc;
  padding: 48px 20px 80px;
}

/* ── 21. Navigation rows ──────────────────────────────────── */
.lg-nav-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── 22. Scenario-specific ────────────────────────────────── */
.lg-scenario-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #003D66;
  margin: 0 0 14px;
}
.lg-scenario-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 24px;
  flex-grow: 1;
}
.lg-scenario-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0077CC;
  font-weight: 600;
  font-size: 0.9rem;
}
.lg-scenario-icon {
  margin-bottom: 20px;
}
.lg-scenario-note {
  max-width: 800px;
  margin: 56px auto 0;
}
.lg-note-text {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.lg-note-text-sm {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}
.lg-note-text-xs {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* ── 23. CTA text inside dark boxes ───────────────────────── */
.lg-cta-text {
  color: #94a3b8;
  font-size: 1.05rem;
  margin: 0 0 24px;
  line-height: 1.6;
}
.lg-cta-desc {
  color: #94a3b8;
  margin-bottom: 20px;
  margin: 0 0 20px;
}
.lg-integration-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── 24. Layout.tsx overrides (moved from inline <style> blocks) ── */

:root {
  --section-space: 70px;
  --section-space-mobile: 50px;
  --theme-color: #00AAFF;
  --theme-color2: #0077CC;
  --theme-color-rgb: 0, 170, 255;
  --title-color: #0a1628;
}

/* th-btn overrides */
.th-btn {
  background: linear-gradient(309.43deg, #0077CC 9.12%, #00AAFF 100%) !important;
  border-radius: 16px !important;
  color: #ffffff !important;
}
.th-btn:before, .th-btn:after { background-color: #0077CC !important; border-radius: 0 16px 16px 0 !important; }
.th-btn:hover, .th-btn.active { color: #ffffff !important; }
.th-btn.th-border {
  background: #ffffff !important;
  border: 2px solid #00AAFF !important;
  color: #0a1628 !important;
  border-radius: 16px !important;
}
.th-btn.th-border:before, .th-btn.th-border:after { background-color: #66CCFF !important; border-radius: 0 16px 16px 0 !important; }
.th-btn.th-border:hover { color: #0a1628 !important; }
.th-btn.style3 {
  background: transparent !important;
  border: 2px solid #00AAFF !important;
  color: #0a1628 !important;
  border-radius: 16px !important;
}
.th-btn.style3:hover { color: #ffffff !important; }
.th-btn3.style2 { border: 1px solid #D4D4D4 !important; }
.th-btn3.style2:hover { color: var(--title-color) !important; }
.main-menu > ul > li > a { padding: 28px 4px !important; font-size: 14px !important; }
.sec-title { font-size: 28px !important; }
.hero-style1 .hero-title { font-size: 35px !important; }
.pricing-tabs.style3 .toggler.toggler--is-active { background: linear-gradient(309.43deg, var(--theme-color2) 9.12%, var(--theme-color) 100%) !important; color: #fff !important; }
.pricing-tabs.style3 { background-color: #F0F7FF !important; }
#hero .sub-title:before { background-image: url("/assets/img/theme-img/sub-title-blue.svg") !important; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.th-hero-wrapper { padding-bottom: 40px !important; }
.feature-area2 { background-color: #EDF5FF !important; padding-top: 60px !important; }
.feature-grid4:hover:before { background-color: #0a1628 !important; }
.feature-grid4 .box-icon:before { background: linear-gradient(135deg, #00AAFF, #0077CC) !important; }
@media (max-width: 575px) {
  .hero-style1 { padding: 60px 24px 40px !important; }
  .hero-style1 .hero-title { font-size: 1.8rem !important; }
  .hero-card { padding: 20px 16px !important; }
  .price-box { margin: 0 auto; }
  .counter-card.style3 { padding: 24px 16px !important; }
  .th-hero-wrapper .container-fluid { padding-left: 12px !important; padding-right: 12px !important; }
}

/* Body defaults */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
}

/* ============================================================
   Dashboard — System Intelligence
   ============================================================ */

.lg-dash-main {
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 100%);
  color: #e2e8f0;
  min-height: 100vh;
}

/* Hero */
.lg-dash-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 60%, rgba(0,170,255,0.03) 100%);
}
.lg-dash-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lg-dash-hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.lg-dash-hero-ts {
  font-size: 0.8rem;
  color: #64748b;
}

/* Sections */
.lg-dash-section {
  padding: 48px 0;
}
.lg-dash-section-alt {
  background: rgba(0,0,0,0.15);
}
.lg-dash-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.lg-dash-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.lg-dash-section-subtitle {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

/* Data badges */
.lg-dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.lg-dash-badge-live {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
}
.lg-dash-badge-computed {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.3);
}
.lg-dash-badge-illust {
  background: rgba(148,163,184,0.15);
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,0.3);
}

/* KPI cards */
.lg-dash-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lg-dash-kpi {
  background: linear-gradient(135deg, rgba(26,41,64,0.8), rgba(13,33,55,0.9));
  border: 1px solid rgba(0,170,255,0.12);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s;
}
.lg-dash-kpi:hover {
  border-color: rgba(0,170,255,0.35);
}
.lg-dash-kpi-top {
  margin-bottom: 12px;
}
.lg-dash-kpi-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.lg-dash-kpi-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 500;
}
.lg-dash-kpi-sub {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
}

/* 2-column layout */
.lg-dash-row-2col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}
.lg-dash-chart-wide {
  background: rgba(26,41,64,0.5);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 12px;
  padding: 20px;
}

/* 3-column layout */
.lg-dash-row-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Chart cards */
.lg-dash-chart-card {
  background: rgba(26,41,64,0.5);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 12px;
  padding: 20px;
}
.lg-dash-chart-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.lg-dash-chart-sub {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0 0 16px;
}
.lg-dash-chart-full {
  background: rgba(26,41,64,0.5);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 12px;
  padding: 20px;
}

/* Side panel */
.lg-dash-side-panel {
  background: rgba(26,41,64,0.5);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 12px;
  padding: 20px;
}
.lg-dash-panel-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

/* Branch rows */
.lg-dash-branch-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.lg-dash-branch-name {
  font-size: 0.75rem;
  color: #94a3b8;
  width: 140px;
  flex-shrink: 0;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lg-dash-branch-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.lg-dash-branch-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s;
}
.lg-dash-branch-count {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
  width: 28px;
  text-align: right;
}

/* Single metric display */
.lg-dash-single-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  text-align: center;
}
.lg-dash-big-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00AAFF;
}
.lg-dash-single-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
}
.lg-dash-single-note {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 8px;
  max-width: 200px;
}

/* Empty state */
.lg-dash-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  color: #64748b;
  font-size: 0.85rem;
  text-align: center;
}

/* Parameter rows */
.lg-dash-param-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lg-dash-param-ver {
  font-size: 0.75rem;
  color: #00AAFF;
  font-family: monospace;
}
.lg-dash-param-kind {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: capitalize;
}
.lg-dash-param-summary {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 12px;
}

/* Agent grid */
.lg-dash-illust-banner {
  background: rgba(148,163,184,0.08);
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 20px;
  text-align: center;
}
.lg-dash-agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.lg-dash-agent-card {
  background: rgba(26,41,64,0.6);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.lg-dash-agent-card:hover {
  border-color: rgba(0,170,255,0.3);
}
.lg-dash-agent-num {
  font-size: 0.7rem;
  color: #00AAFF;
  font-weight: 700;
  margin-bottom: 4px;
}
.lg-dash-agent-name {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.lg-dash-agent-docs {
  font-size: 0.72rem;
  color: #64748b;
}

/* OSINT grid */
.lg-dash-sweep-info {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 16px;
}
.lg-dash-osint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.lg-dash-osint-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,41,64,0.5);
  border: 1px solid rgba(0,170,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  flex-wrap: wrap;
}
.lg-dash-osint-ok { border-left: 3px solid #22c55e; }
.lg-dash-osint-fail { border-left: 3px solid #ef4444; }
.lg-dash-osint-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lg-dash-dot-ok { background: #22c55e; }
.lg-dash-dot-fail { background: #ef4444; }
.lg-dash-osint-name {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
}
.lg-dash-osint-status {
  font-size: 0.7rem;
  color: #94a3b8;
}
.lg-dash-osint-error {
  font-size: 0.65rem;
  color: #ef4444;
  width: 100%;
  opacity: 0.8;
}

/* Learning grid */
.lg-dash-learning-grid {
  background: rgba(26,41,64,0.5);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 12px;
  padding: 16px;
}
.lg-dash-learn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lg-dash-learn-row:last-child { border-bottom: none; }
.lg-dash-learn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lg-dash-learn-trigger {
  font-size: 0.8rem;
  color: #fff;
  flex: 1;
  text-transform: capitalize;
}
.lg-dash-learn-result {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 600;
  text-transform: capitalize;
}
.lg-dash-learn-time {
  font-size: 0.7rem;
  color: #64748b;
  white-space: nowrap;
}

/* Composite intelligence */
.lg-dash-composite {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.lg-dash-gauge-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lg-dash-gauge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  mask: radial-gradient(circle at center, transparent 60%, black 61%);
  -webkit-mask: radial-gradient(circle at center, transparent 60%, black 61%);
}
.lg-dash-gauge-score {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.lg-dash-gauge-label {
  font-size: 0.9rem;
  color: #64748b;
  position: relative;
  z-index: 1;
}
.lg-dash-comp-bars {
  flex: 1;
  max-width: 400px;
  min-width: 250px;
}
.lg-dash-comp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.lg-dash-comp-label {
  font-size: 0.8rem;
  color: #94a3b8;
  width: 100px;
  flex-shrink: 0;
  text-transform: capitalize;
}
.lg-dash-comp-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.lg-dash-comp-bar {
  height: 100%;
  background: #00AAFF;
  border-radius: 4px;
  transition: width 0.5s;
}
.lg-dash-comp-val {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  width: 70px;
  text-align: right;
}
.lg-dash-comp-weight {
  color: #64748b;
  font-weight: 400;
}
.lg-dash-comp-note {
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 24px;
}
.lg-dash-link {
  color: #00AAFF;
  text-decoration: none;
}
.lg-dash-link:hover {
  text-decoration: underline;
}

/* Footer legend */
.lg-dash-footer-legend {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lg-dash-legend-title {
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  margin: 0 0 16px;
}
.lg-dash-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.lg-dash-legend-grid > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #94a3b8;
}
.lg-dash-legend-meta {
  font-size: 0.75rem;
  color: #64748b;
}
.lg-dash-legend-meta p {
  margin: 4px 0;
}

/* ─── Dashboard responsive ─── */

@media (max-width: 991px) {
  .lg-dash-hero-title { font-size: 2rem; }
  .lg-dash-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-dash-row-2col { grid-template-columns: 1fr; }
  .lg-dash-row-3col { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .lg-dash-hero { padding: 60px 0 24px; }
  .lg-dash-hero-title { font-size: 1.5rem; }
  .lg-dash-hero-sub { font-size: 0.95rem; }
  .lg-dash-section { padding: 32px 0; }
  .lg-dash-kpi-grid { grid-template-columns: 1fr; }
  .lg-dash-kpi-value { font-size: 1.6rem; }
  .lg-dash-composite { flex-direction: column; gap: 24px; }
  .lg-dash-gauge-wrap { width: 140px; height: 140px; }
  .lg-dash-gauge-score { font-size: 2.2rem; }
  .lg-dash-agent-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-dash-osint-grid { grid-template-columns: 1fr; }
  .lg-dash-branch-name { width: 100px; }
}

/* ============================================================
   Accessibility
   ============================================================ */

/* Accessibility: keyboard focus states */
*:focus-visible {
  outline: 2px solid #00AAFF;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #00AAFF;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.2);
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Accessibility: skip to main content */
.lg-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 8px 16px;
  background: #00AAFF;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.lg-skip-link:focus {
  top: 0;
}
