/* ==========================================================================
   NEWS MEDIA OBSERVER - "CLARITY & TRUST" LIGHT MODE SYSTEM
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
  /* Color Palette - HSL (Clean Editorial Light Palette) */
  --bg-deep: hsl(210, 20%, 98%);
  --bg-darker: hsl(210, 16%, 95%);
  --bg-panel: rgba(255, 255, 255, 0.85);
  --bg-panel-border: rgba(148, 163, 184, 0.25);
  --bg-panel-hover-border: rgba(70, 130, 180, 0.65);
  
  /* Text Contrast Colors */
  --text-primary: hsl(220, 40%, 12%);
  --text-secondary: hsl(215, 25%, 35%);
  --text-muted: hsl(215, 16%, 50%);
  
  /* Accent Colors (Solid, Authoritative, High Trust) */
  --accent-steel: hsl(210, 60%, 40%);
  --accent-steel-dim: rgba(70, 130, 180, 0.08);
  --accent-indigo: hsl(225, 55%, 35%);
  --accent-green: hsl(150, 70%, 25%);
  --accent-green-dim: rgba(22, 100, 50, 0.06);
  --accent-purple: hsl(270, 60%, 35%);
  --accent-purple-dim: rgba(100, 40, 150, 0.06);
  --accent-orange: hsl(25, 85%, 40%);
  --accent-red: hsl(5, 75%, 45%);
  
  /* Typography Variables */
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-serif: 'Times New Roman', Times, Georgia, serif;
  --font-mono: 'Courier New', Courier, monospace;
  
  /* Structural Tokens */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-blur: blur(8px);
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-serif); /* Default is serif for authoritative reading */
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  timeline-scope: --tl-hero, --tl-modules, --tl-veritas, --tl-observatory;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(70, 130, 180, 0.25);
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-steel);
}

/* Background Canvas Layer */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  opacity: 0.85; /* Soft contrast behind text */
}

/* Editorial & Technical Helper Typography */
.accent-text {
  color: var(--accent-steel);
  font-weight: 700;
}

.highlight-text {
  color: var(--accent-indigo);
  border-bottom: 2px solid rgba(70, 130, 180, 0.3);
  padding-bottom: 2px;
}

/* Modern Institutional Glassmorphic Panel styling */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--bg-panel-border);
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--bg-panel-hover-border);
  box-shadow: 0 10px 30px rgba(70, 130, 180, 0.08);
}

/* Buttons with Institutional Aesthetics */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent-steel);
  color: #fff;
  box-shadow: 0 2px 10px rgba(70, 130, 180, 0.2);
}

.btn-primary:hover {
  background: var(--accent-indigo);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(70, 130, 180, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--bg-panel-border);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--text-primary);
}

.btn-institutional {
  background: transparent;
  color: var(--accent-steel);
  border-color: var(--accent-steel);
  font-size: 0.8rem;
  padding: 8px 20px;
}

.btn-institutional:hover {
  background: var(--accent-steel-dim);
  color: var(--accent-indigo);
  border-color: var(--accent-indigo);
  transform: scale(1.02);
}

.btn-full {
  width: 100%;
}

/* Navigation Header Styles */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-steel);
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.nav-item:hover {
  color: var(--accent-steel);
}

/* Sections Grid & Core Structures */
.scroll-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px;
  position: relative;
}

.section-container {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-steel);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 750px;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION SPECIFIC STYLES
   ========================================================================== */

/* Hero Section */
#hero {
  view-timeline-name: --tl-hero;
  view-timeline-axis: block;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 140px;
}

.hero-content {
  max-width: 850px;
}

.badge-container {
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--accent-steel-dim);
  border: 1px solid var(--accent-steel);
  color: var(--accent-steel);
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--border-radius-md);
  backdrop-filter: var(--glass-blur);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-suffix {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-steel);
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Core Processing Modules Section */
#modules {
  view-timeline-name: --tl-modules;
  view-timeline-axis: block;
}

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

.module-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.module-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.module-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-steel);
}

.font-purple { color: var(--accent-purple); }
.font-green { color: var(--accent-green); }

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pulse-green {
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulse-glow 1.5s infinite;
}

.module-name {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.module-desc {
  font-family: var(--font-serif);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}

.module-spec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.module-spec span::before {
  content: "•";
  color: var(--accent-steel);
  margin-right: 8px;
  font-size: 1rem;
}

/* Veritas Methodology Section */
#veritas {
  view-timeline-name: --tl-veritas;
  view-timeline-axis: block;
}

.metrics-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.metrics-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  gap: 20px;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--accent-steel-dim);
  border: 1px solid var(--accent-steel);
  color: var(--accent-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.75rem;
}

.highlight-item h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.highlight-item p {
  font-family: var(--font-serif);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Dashboard Visual elements */
.metrics-visual {
  padding: 0;
  overflow: hidden;
}

.dashboard-header {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.015);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-steel);
}

.header-domain {
  color: var(--text-muted);
}

.dashboard-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gauge-container {
  position: relative;
  width: 160px;
  height: 160px;
}

.gauge-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.gauge-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.02);
  stroke-width: 6;
}

.gauge-progress {
  fill: none;
  stroke: var(--accent-steel);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease-out;
}

.gauge-text-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.gauge-value {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.gauge-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.source-audit-terminal {
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
  max-height: 130px;
  overflow-y: hidden;
  color: var(--text-primary);
}

.terminal-line {
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-slate { color: var(--accent-steel); font-weight: bold; }
.t-green { color: var(--accent-green); }
.t-red { color: var(--accent-red); }
.t-blue { color: var(--accent-indigo); }

/* Observatory Active Audit Console (Replacer of CTA) */
#observatory {
  view-timeline-name: --tl-observatory;
  view-timeline-axis: block;
  padding-bottom: 140px;
}

.console-box {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.console-tab-bar {
  background: rgba(0, 0, 0, 0.015);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tab-button {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--accent-steel);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.terminal-url {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.console-form {
  padding: 36px;
  border-right: 1px solid rgba(148, 163, 184, 0.15);
}

.form-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-subtext {
  font-family: var(--font-serif);
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-glow {
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.input-glow::placeholder {
  color: var(--text-muted);
}

.input-glow:focus {
  border-color: var(--accent-steel);
  box-shadow: 0 0 10px rgba(70, 130, 180, 0.1);
}

.console-output {
  padding: 36px;
  background: rgba(0, 0, 0, 0.005);
  display: flex;
  flex-direction: column;
}

.output-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.status-indicator {
  color: var(--accent-steel);
}

.output-terminal-screen {
  flex-grow: 1;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-primary);
  overflow-y: auto;
  max-height: 240px;
}

.line-comment { color: var(--text-muted); }
.line-info { color: var(--accent-indigo); }
.line-success { color: var(--accent-green); font-weight: bold; }
.line-warning { color: var(--accent-orange); }
.line-error { color: var(--accent-red); }

/* Footer Styles */
#main-footer {
  background: #fff;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 60px 40px 40px;
}

.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-family: var(--font-serif);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.copyright {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-column h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.link-column a {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.link-column a:hover {
  color: var(--accent-steel);
}

/* ==========================================================================
   SCROLL-DRIVEN ANIMATIONS & HOVERS (PROGRESSIVE ENHANCEMENT)
   ========================================================================== */

@keyframes pulse-glow {
  0% { opacity: 0.75; }
  50% { opacity: 1; }
  100% { opacity: 0.75; }
}

@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    
    /* Hero Scroll-out fade */
    @keyframes hero-fade {
      to {
        opacity: 0;
        transform: translateY(-50px) scale(0.97);
      }
    }
    
    #hero .hero-content {
      animation: hero-fade linear forwards;
      animation-timeline: view();
      animation-range: exit 20% exit 100%;
    }
    
    /* Modules Cards entries */
    @keyframes card-reveal-left {
      from { opacity: 0; transform: translateX(-60px) rotateY(-10deg); }
      to { opacity: 1; transform: translateX(0) rotateY(0); }
    }
    @keyframes card-reveal-right {
      from { opacity: 0; transform: translateX(60px) rotateY(10deg); }
      to { opacity: 1; transform: translateX(0) rotateY(0); }
    }
    @keyframes card-reveal-center {
      from { opacity: 0; transform: translateY(60px) scale(0.9); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    
    #module-mithra {
      animation: card-reveal-left auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
    
    #module-kali {
      animation: card-reveal-center auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
    
    #module-hermes {
      animation: card-reveal-right auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
    
    /* Speedometer Dial drawing on scroll */
    @keyframes draw-gauge {
      from { stroke-dashoffset: 251.2; }
      to { stroke-dashoffset: 6.28; }
    }
    
    #veracity-progress-dial {
      animation: draw-gauge auto linear forwards;
      animation-timeline: view();
      animation-range: entry 30% cover 60%;
    }
    
    /* Observatory Panel Entry */
    @keyframes console-reveal {
      from { opacity: 0; transform: translateY(50px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    
    #observatory-console-panel {
      animation: console-reveal auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 45%;
    }
  }
}

/* Reduced Motion Safety fallbacks */
@media (prefers-reduced-motion: reduce) {
  .hero-content, .module-card, #veracity-progress-dial, #observatory-console-panel {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 6.28 !important;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-title { font-size: 2.8rem; }
  .metrics-layout { gap: 40px; }
  .modules-grid { gap: 20px; }
}

@media (max-width: 992px) {
  .header-container { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .modules-grid { grid-template-columns: 1fr; gap: 20px; }
  .metrics-layout { grid-template-columns: 1fr; gap: 40px; }
  .console-grid { grid-template-columns: 1fr; }
  .console-form { border-right: none; border-bottom: 1px solid rgba(148, 163, 184, 0.15); }
  .footer-container { flex-direction: column; gap: 40px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.2rem; }
  .scroll-section { padding: 80px 20px; }
  .section-title { font-size: 1.8rem; }
  .btn { width: 100%; margin-bottom: 8px; }
  .hero-buttons { flex-direction: column; gap: 0; }
  .dashboard-body { padding: 20px; }
}

/* ==========================================================================
   LANGUAGE SWITCHER DESIGN
   ========================================================================== */
.lang-switcher {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.lang-link:hover {
  color: var(--accent-steel);
}
.lang-active {
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent-steel);
}
.lang-separator {
  color: var(--bg-panel-border);
}
