/* =========================================================
   SKYGUARD AI — SAAS ENTERPRISE OPERATIONS DESIGN SYSTEM
   ========================================================= */

:root {
  --bg: #0f172a;
  --panel: #1e293b;
  --panel2: #334155;
  --line: #334155;
  --line-subtle: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --indigo: #6366f1;
  --blue: #3b82f6;
  --green: #10b981;
  --yellow: #f59e0b;
  --orange: #f97316;
  --red: #f43f5e;
  --border-radius: 8px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select {
  font: inherit;
  color: inherit;
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

/* =========================================================
   SIDEBAR NAVIGATION
   ========================================================= */

.sidebar {
  width: 250px;
  background: #0f172a;
  border-right: 1px solid var(--line);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 4px 6px 24px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.brand-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #f8fafc;
  letter-spacing: -0.2px;
}

.brand-name span {
  color: var(--accent);
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

nav {
  display: grid;
  gap: 4px;
}

.nav-item {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  color: #94a3b8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.15s ease;
}

.nav-item:hover {
  background: #1e293b;
  color: #f8fafc;
}

.nav-item.active {
  background: #1e293b;
  color: #ffffff;
  font-weight: 600;
  border-left: 3px solid var(--accent);
}

.nav-item span {
  width: 18px;
  color: var(--accent);
  text-align: center;
  font-size: 14px;
}

.sidebar-bottom {
  margin-top: auto;
}

.mode-card {
  border: 1px solid var(--line);
  background: #1e293b;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.mode-card .tiny-label {
  font-size: 10px;
  color: #6366f1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mode-card strong {
  display: block;
  font-size: 13px;
  color: #f8fafc;
  margin: 4px 0 2px;
}

.mode-card span {
  font-size: 11px;
  color: var(--muted);
}

.team {
  font-size: 11px;
  color: #64748b;
  text-align: center;
}

/* =========================================================
   MAIN CONTENT AREA & TOPBAR
   ========================================================= */

.main {
  margin-left: 250px;
  width: calc(100% - 250px);
  padding: 0 28px 60px;
}

/* =========================================================
   TELEMETRY TICKER BAR & TOPBAR HEADER
   ========================================================= */

.telemetry-bar {
  background: #0f172a;
  border-bottom: 1px solid var(--line);
  padding: 9px 24px;
  margin: 0 -28px 14px;
  font-size: 11px;
  color: var(--muted);
  overflow-x: auto;
}

.telemetry-track {
  display: flex;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
}

.telemetry-track span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.telemetry-track b {
  color: #64748b;
  font-weight: 600;
}

.telemetry-track strong {
  color: #f8fafc;
  font-weight: 600;
}

.topbar {
  padding: 14px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.topbar h1 {
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.3px;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.status-pill {
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.08);
}

.status-pill i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  margin-right: 6px;
}

.ghost-btn, .profile {
  border: 1px solid var(--line);
  background: #1e293b;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #cbd5e1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ghost-btn:hover, .profile:hover {
  background: #334155;
  color: #f8fafc;
}

.profile {
  font-weight: 600;
  color: var(--accent);
}

.profile span {
  color: #f8fafc;
}

/* =========================================================
   HERO STRIP & STAT CARDS
   ========================================================= */

.view {
  display: none;
  padding-top: 20px;
}

.active-view {
  display: block;
}

.hero-strip {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  background: #1e293b;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 140px;
}

.hero-strip #rain-canvas,
.hero-strip #globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-strip #globe-canvas {
  right: 0;
  left: auto;
  width: 260px;
}

.hero-strip > div {
  position: relative;
  z-index: 2;
}

.hero-strip h2 {
  font-size: 22px;
  font-weight: 700;
  max-width: 760px;
  margin: 4px 0 8px;
  color: #f8fafc;
  letter-spacing: -0.3px;
}

.hero-strip h2 em {
  font-style: normal;
  color: var(--accent);
}

.hero-strip p {
  color: var(--muted);
  max-width: 740px;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.hero-meta {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  z-index: 1;
}

.hero-meta div {
  min-width: 100px;
}

.hero-meta span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 13px;
  color: #f8fafc;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

/* Metric KPI Cards */

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.metric-card {
  background: #1e293b;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.metric-card span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  margin: 6px 0 2px;
  letter-spacing: -0.4px;
}

.metric-card small {
  font-size: 11px;
  color: #64748b;
}

.metric-icon {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 18px;
  color: var(--accent);
}

.metric-icon.danger {
  color: var(--red);
}

.metric-icon.water {
  color: var(--blue);
}

.metric-icon.time {
  color: var(--yellow);
}

/* =========================================================
   DASHBOARD PANELS & MAP GRID
   ========================================================= */

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
}

.right-stack {
  display: grid;
  gap: 12px;
}

.panel {
  background: #1e293b;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel h3 {
  font-size: 15px;
  font-weight: 600;
  color: #f8fafc;
  margin: 0;
}

.tag, .severity {
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #334155;
  padding: 4px 8px;
  border-radius: 4px;
  color: #cbd5e1;
}

.tag.success {
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}

.map-search {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
  max-width: 380px;
  margin: 0 16px;
}

.map-search input {
  flex: 1;
  background: #0f172a;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #f8fafc;
  outline: none;
}

.map-search input:focus {
  border-color: var(--accent);
}

.map-search button {
  background: var(--accent);
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.map-search button:hover {
  background: var(--accent-hover);
}

.map-tools {
  display: flex;
  gap: 6px;
}

.layer {
  border: 1px solid var(--line);
  background: #0f172a;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.15s ease;
}

.layer:hover {
  background: #334155;
  color: #f8fafc;
}

.layer.active {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
}

.map-panel {
  padding-bottom: 12px;
}

#map {
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid var(--line);
}

.map-legend {
  display: flex;
  gap: 16px;
  padding: 10px 4px 0;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 500;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}

.low { background: #10b981; }
.mod { background: #f59e0b; }
.high { background: #f97316; }
.crit { background: #f43f5e; }

/* Analytics Drivers & Progress Bars */

canvas {
  max-height: 180px;
}

.drivers {
  display: grid;
  gap: 12px;
}

.drivers div {
  font-size: 12px;
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
  align-items: center;
  color: #cbd5e1;
}

.drivers b {
  text-align: right;
  color: #f8fafc;
  font-size: 11px;
}

.drivers i {
  grid-column: 1 / 3;
  height: 6px;
  background: #0f172a;
  border-radius: 4px;
  overflow: hidden;
}

.drivers u {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #3b82f6);
  border-radius: 4px;
  text-decoration: none;
}

/* Secondary Panels */

.lower-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.sources {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.sources div {
  background: #0f172a;
  border: 1px solid var(--line);
  padding: 12px 8px;
  border-radius: 6px;
  text-align: center;
}

.sources span {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.sources b {
  display: block;
  font-size: 11px;
  color: #f8fafc;
}

.sources small {
  display: block;
  color: #64748b;
  font-size: 10px;
  margin-top: 2px;
}

.alert-mini p {
  font-size: 12px;
  line-height: 1.6;
  color: #cbd5e1;
}

.primary-btn {
  border: 0;
  background: var(--accent);
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.primary-btn:hover {
  background: var(--accent-hover);
}

.severity {
  color: #f43f5e;
  border-color: rgba(244, 63, 94, 0.3);
  background: rgba(244, 63, 94, 0.1);
}

/* Section Views */

.section-heading {
  padding: 8px 0 16px;
}

.section-heading h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0;
  color: #f8fafc;
}

.section-heading p, .muted {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.two-col {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 12px;
}

.big-chart canvas {
  max-height: 380px;
}

.forecast-number {
  font-size: 38px;
  font-weight: 700;
  margin: 16px 0 2px;
  color: #f8fafc;
}

.forecast-number span {
  font-size: 16px;
  color: var(--muted);
}

.forecast-list {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.forecast-list div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-subtle);
  font-size: 12px;
}

.forecast-list span {
  color: var(--muted);
}

.up {
  color: var(--orange);
}

.inundation-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
}

.inundation-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.inundation-card strong {
  font-size: 42px;
  font-weight: 700;
  display: block;
  margin-top: 10px;
  color: #f8fafc;
}

.inundation-card small {
  font-size: 14px;
  color: var(--muted);
}

.exposure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.exposure div {
  text-align: center;
  background: #0f172a;
  border: 1px solid var(--line);
  padding: 12px 4px;
  border-radius: 6px;
}

.exposure span {
  display: block;
  color: var(--accent);
  font-size: 18px;
}

.exposure b {
  display: block;
  font-size: 18px;
  margin: 4px;
  color: #f8fafc;
}

.exposure small {
  color: #64748b;
  font-size: 10px;
}

.risk-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 16px;
  font-size: 11px;
  color: var(--muted);
}

.risk-timeline i {
  height: 6px;
  flex: 1;
  border-radius: 4px;
}

.low-line { background: var(--green); }
.mod-line { background: var(--yellow); }
.high-line { background: var(--red); }

.risk-note {
  border-left: 3px solid var(--red);
  padding-left: 12px;
}

.risk-note b {
  display: block;
  color: #f43f5e;
  font-size: 12px;
}

.risk-note span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}

/* Alert Layout */

.alert-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.alert-card {
  border-color: rgba(244, 63, 94, 0.4);
  background: #1e293b;
}

.alert-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.alert-card h3 {
  font-size: 18px;
  margin: 14px 0 8px;
  color: #f8fafc;
}

.alert-card p {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.6;
}

.alert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.alert-stats div {
  background: #0f172a;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.alert-stats small {
  display: block;
  color: #64748b;
  font-size: 10px;
}

.alert-stats b {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #f8fafc;
}

.actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.actions div {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #0f172a;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 6px;
}

.actions b {
  color: var(--accent);
  font-size: 11px;
}

.actions span {
  font-size: 11px;
  color: #cbd5e1;
}

/* Architecture & Pipeline */

.pipeline {
  display: flex;
  align-items: stretch;
  gap: 8px;
  overflow: auto;
  padding-bottom: 10px;
}

.source-node {
  min-width: 140px;
  background: #0f172a;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.source-node b {
  display: block;
  font-size: 12px;
  color: #f8fafc;
  margin: 6px 0 2px;
}

.source-node small {
  color: #64748b;
  font-size: 10px;
}

.arrow {
  display: grid;
  place-items: center;
  color: #64748b;
  font-size: 16px;
}

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

.fusion-bars div {
  background: #0f172a;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 6px;
}

.fusion-bars span {
  display: block;
  color: #64748b;
  font-size: 11px;
}

.fusion-bars b {
  display: block;
  color: var(--accent);
  font-size: 16px;
  margin-top: 4px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.model-box {
  min-height: 220px;
}

.model-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent);
  font-size: 12px;
}

.model-box h3 {
  font-size: 15px;
  margin-top: 14px;
}

.model-box p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.model-line {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 8px 0;
  font-size: 11px;
}

.model-line span {
  color: #64748b;
}

.evaluation {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.evaluation div {
  background: #0f172a;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 6px;
}

.evaluation span {
  display: block;
  color: #64748b;
  font-size: 10px;
}

.evaluation b {
  display: block;
  font-size: 18px;
  color: #f8fafc;
  margin-top: 4px;
}

/* Scenario Simulator Drawer */

.scenario-drawer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 380px;
  background: #1e293b;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  z-index: 50;
  box-shadow: var(--shadow-md);
  display: none;
}

.scenario-drawer.open {
  display: block;
}

.scenario-head {
  display: flex;
  justify-content: space-between;
}

.scenario-head h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #f8fafc;
}

.scenario-head button {
  background: none;
  border: 0;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
}

.slider-row {
  margin: 16px 0;
}

.slider-row label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.slider-row b {
  color: var(--accent);
}

input[type=range] {
  width: 100%;
  accent-color: var(--accent);
  margin-top: 8px;
}

.scenario-result {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.scenario-result div {
  background: #0f172a;
  border: 1px solid var(--line);
  padding: 8px;
  border-radius: 6px;
}

.scenario-result small {
  display: block;
  color: #64748b;
  font-size: 9px;
}

.scenario-result b {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #f8fafc;
}

.floating-scenario {
  z-index: 40;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: background 0.15s ease;
}

.floating-scenario:hover {
  background: var(--accent-hover);
}

.scenario-drawer.open ~ .floating-scenario {
  display: none;
}

/* Responsive Breakpoints */

@media (max-width: 1100px) {
  .sidebar { width: 210px; }
  .main { margin-left: 210px; width: calc(100% - 210px); }
  .dashboard-grid, .two-col, .alert-layout { grid-template-columns: 1fr; }
  .lower-grid, .inundation-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .sources { grid-template-columns: repeat(3, 1fr); }
  .model-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .sidebar { position: relative; width: 100%; height: auto; }
  .app-shell { display: block; }
  .main { margin-left: 0; width: 100%; padding: 0 14px 60px; }
  .sidebar nav { grid-template-columns: repeat(2, 1fr); }
  .sidebar-bottom { display: none; }
  .topbar { height: auto; padding: 14px 0; gap: 10px; }
  .status-pill, .ghost-btn { display: none; }
  .hero-strip { display: block; }
  .hero-meta { margin-top: 16px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .sources { grid-template-columns: repeat(2, 1fr); }
  .scenario-drawer { left: 12px; right: 12px; width: auto; }
  .floating-scenario { right: 15px; }
}

/* =========================================================
   LIVE ML INTELLIGENCE CARD (ENTERPRISE OPERATIONAL STYLE)
   ========================================================= */

.model-live-panel {
  min-height: 340px;
}

.ml-live-score {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.ml-probability,
.ml-risk {
  background: #0f172a;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
}

.ml-probability span,
.ml-risk span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.ml-probability strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}

.ml-risk b {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #f59e0b;
}

.ml-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.ml-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ml-meta span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
}

.ml-meta b {
  font-size: 12px;
  color: #f8fafc;
}

.ml-feature-title {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}