/* ============================================================
   UQL Info Website — Styles
   VS Code dark theme inspired
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #1e1e1e;
  --bg-secondary: #252526;
  --bg-tertiary: #2d2d2d;
  --bg-input: #3c3c3c;
  --border: #3c3c3c;
  --border-light: #454545;
  --text-primary: #cccccc;
  --text-secondary: #858585;
  --text-muted: #6e6e6e;
  --accent: #0e639c;
  --accent-hover: #1177bb;
  --accent-glow: rgba(14, 99, 156, 0.15);
  --success: #4ec9b0;
  --danger: #f14c4c;
  --warning: #cca700;
  --focus: #007fd4;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', Consolas, monospace;
  --radius: 6px;
  --radius-lg: 12px;
  --container: 1120px;
  --nav-h: 56px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

a {
  color: var(--accent-hover);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--focus); }

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--success);
}

img { max-width: 100%; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(30, 30, 30, 0.95);
}

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

.nav-logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-bracket {
  color: var(--accent-hover);
  font-weight: 400;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile.open { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-hover);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #e0e0e0;
  margin-bottom: 24px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent-hover), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Terminal Mock */
.hero-terminal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

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

.terminal-dot.red { background: #f14c4c; }
.terminal-dot.yellow { background: #cca700; }
.terminal-dot.green { background: #4ec9b0; }

.terminal-title {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.terminal-body {
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
}

.terminal-line {
  white-space: nowrap;
}

.t-prompt { color: var(--text-muted); }
.t-keyword { color: #569cd6; }
.t-string { color: #ce9178; }
.t-param { color: #9cdcfe; }
.t-operator { color: var(--text-secondary); }
.t-value { color: #b5cea8; }
.t-muted { color: var(--text-muted); }
.t-success { color: var(--success); }

.terminal-line-delay-1 {
  animation: fadeInLine 0.5s 1.2s both;
}

.terminal-line-delay-2 {
  animation: fadeInLine 0.5s 2.0s both;
}

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

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  pointer-events: none;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #e0e0e0;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   PLATFORM GRID
   ============================================================ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.platform-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.platform-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-hover);
  margin-bottom: 18px;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
}

.platform-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.platform-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.platform-tech {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   FEATURE ROWS
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

.feature-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.feature-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-hover);
}

@media (max-width: 800px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row-reverse { direction: ltr; }
}

/* --- Code Block Mock --- */
.code-block {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.section-alt .code-block {
  background: var(--bg-tertiary);
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.section-alt .code-bar {
  background: var(--bg-input);
}

.code-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.code-filename {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.code-block pre {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  overflow-x: auto;
}

.code-block code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

.c-key { color: #9cdcfe; }
.c-str { color: #ce9178; }
.c-num { color: #b5cea8; }
.c-kw { color: #569cd6; }
.c-comment { color: var(--text-muted); }

/* --- Chat Mock --- */
.chat-mock {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-alt .chat-mock {
  background: var(--bg-tertiary);
}

.chat-msg { display: flex; }
.chat-user { justify-content: flex-end; }
.chat-assistant { justify-content: flex-start; }

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
}

.chat-user .chat-bubble {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-bottom-right-radius: 4px;
}

.section-alt .chat-user .chat-bubble {
  background: var(--bg-input);
}

.chat-assistant .chat-bubble {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-thinking {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.chat-thinking::before {
  content: '> ';
  color: var(--accent-hover);
}

.chat-result {
  display: block;
  color: var(--text-primary);
  margin-top: 4px;
}

.chat-result strong { color: var(--success); }

/* --- Excel Mock --- */
.excel-mock {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.section-alt .excel-mock {
  background: var(--bg-tertiary);
}

.excel-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
}

.section-alt .excel-bar {
  background: var(--bg-input);
}

.excel-cell-ref {
  background: var(--bg-input);
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--text-primary);
  font-weight: 600;
  min-width: 32px;
  text-align: center;
}

.section-alt .excel-cell-ref {
  background: var(--border);
}

.excel-formula {
  color: var(--success);
}

.excel-grid {
  padding: 0;
}

.excel-header {
  display: grid;
  grid-template-columns: 40px repeat(4, 1fr);
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.section-alt .excel-header {
  background: var(--bg-input);
}

.excel-header span {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.excel-header span:first-child { /* empty corner */ }

.excel-row {
  display: grid;
  grid-template-columns: 40px repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.excel-row:last-child { border-bottom: none; }

.excel-row span {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
}

.excel-row span:last-child { border-right: none; }

.excel-rownum {
  color: var(--text-muted) !important;
  text-align: center;
  background: var(--bg-tertiary);
  font-size: 11px !important;
}

.section-alt .excel-rownum {
  background: var(--bg-input);
}

.excel-highlight {
  color: var(--success) !important;
  font-family: var(--font-mono);
  font-weight: 500;
}

/* --- Reports Mock --- */
.reports-mock {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color 0.2s;
}

.section-alt .report-card {
  background: var(--bg-tertiary);
}

.report-card:hover { border-color: var(--border-light); }

.report-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.report-status.active { background: var(--success); }

.report-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.report-name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

.report-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.report-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--success);
  border: 1px solid rgba(78, 201, 176, 0.3);
  padding: 3px 10px;
  border-radius: 10px;
}

/* ============================================================
   ARCHITECTURE
   ============================================================ */
.arch-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  overflow-x: auto;
}

.arch-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.arch-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.arch-node {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  min-width: 120px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.arch-node:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.arch-client { background: var(--bg-secondary); color: var(--text-primary); }
.arch-core { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }
.arch-ext { background: var(--bg-secondary); color: var(--text-secondary); }

.arch-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  min-width: 60px;
}

.arch-arrow svg { width: 60px; }

.arch-arrow-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.arch-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.arch-service {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 18px 8px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: border-color 0.2s;
}

.arch-service:hover { border-color: var(--border-light); }

.arch-service svg {
  width: 16px;
  height: 16px;
  color: var(--accent-hover);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .arch-diagram {
    flex-direction: column;
    gap: 16px;
  }
  .arch-arrows { transform: rotate(90deg); }
  .arch-col { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.section-alt .step-card {
  background: var(--bg-tertiary);
}

.step-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   SECURITY
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sec-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.sec-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.sec-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-hover);
  margin-bottom: 16px;
}

.sec-icon svg {
  width: 100%;
  height: 100%;
}

.sec-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.sec-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.integration-chip {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-primary);
  transition: border-color 0.2s, transform 0.2s;
}

.section-alt .integration-chip {
  background: var(--bg-tertiary);
}

.integration-chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.integration-chip-more {
  color: var(--text-muted);
  border-style: dashed;
  font-style: italic;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.team-card {
  text-align: center;
  padding: 40px;
}

.team-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar-fallback {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-hover);
  display: none;
}

.team-avatar.no-img .team-avatar-fallback { display: block; }

.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: var(--accent);
  color: #fff;
}
