/* ─── Nextpress Site - Global Styles ─────────────────────────── */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
  /* Colors */
  --bg:          #09090b;
  --bg-surface:  #111113;
  --bg-elevated: #18181b;
  --bg-hover:    #1f1f23;
  --bg-code:     #0d1117;

  --text:        #fafafa;
  --text-muted:  #a1a1aa;
  --text-dim:    #71717a;

  --accent:      #3b82f6;
  --accent-2:    #8b5cf6;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --gradient:    linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gradient-text: linear-gradient(135deg, #60a5fa, #a78bfa);

  --green:       #22c55e;
  --yellow:      #eab308;
  --red:         #ef4444;
  --orange:      #f97316;
  --cyan:        #06b6d4;

  --border:      #27272a;
  --border-light:#3f3f46;

  --radius:      8px;
  --radius-lg:   12px;
  --radius-xl:   16px;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  --max-width:   1200px;
  --nav-height:  64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

/* ─── Navigation ─────────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex; align-items: center;
}

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

.nav-logo {
  font-size: 1.25rem; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-links .btn-sm {
  background: var(--bg-elevated); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 6px; font-size: 0.85rem;
  color: var(--text); font-weight: 500; transition: all 0.2s;
}
.nav-links .btn-sm:hover { border-color: var(--accent); background: var(--accent-glow); }

.nav-mobile-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer;
}

/* ─── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s ease; cursor: pointer;
  border: none; font-family: var(--font);
}

.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.35);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-elevated); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--border-light); background: var(--bg-hover);
  color: var(--text);
}

/* ─── Hero ───────────────────────────────────────────────────── */

.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px; font-size: 0.8rem;
  color: var(--text-muted); margin-bottom: 24px; width: fit-content;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 20px;
}

.hero h1 .gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}

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

.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
}
.hero-stat-value {
  font-size: 2rem; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

.hero-code {
  background: var(--bg-code); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.hero-code-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.hero-code-dot {
  width: 12px; height: 12px; border-radius: 50%;
}

.hero-code pre {
  padding: 20px 24px; margin: 0; overflow-x: auto;
  font-family: var(--font-mono); font-size: 0.85rem;
  line-height: 1.7; color: #e6edf3;
}

/* ─── Section Layout ─────────────────────────────────────────── */

.section {
  padding: 100px 24px;
  position: relative;
}

.section-inner {
  max-width: var(--max-width); margin: 0 auto;
}

.section-label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 640px; line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── Features Grid ──────────────────────────────────────────── */

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

.feature-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  background: var(--accent-glow);
}

.feature-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}

/* ─── Benchmark Section ──────────────────────────────────────── */

.bench-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}

.bench-bars { display: flex; flex-direction: column; gap: 20px; }

.bench-bar-item { }
.bench-bar-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.bench-bar-name { font-weight: 600; font-size: 0.95rem; }
.bench-bar-value { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); }

.bench-bar-track {
  height: 36px; background: var(--bg-elevated); border-radius: 8px;
  overflow: hidden; border: 1px solid var(--border);
}
.bench-bar-fill {
  height: 100%; border-radius: 8px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; align-items: center; padding-left: 12px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600; color: #fff;
}

.bench-bar-fill.nextpress { background: var(--gradient); }
.bench-bar-fill.raw-http  { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bench-bar-fill.fastify   { background: linear-gradient(135deg, #f97316, #ea580c); }
.bench-bar-fill.express    { background: linear-gradient(135deg, #71717a, #52525b); }

.bench-info {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}

.bench-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.bench-info-list { list-style: none; }
.bench-info-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.bench-info-list li:last-child { border-bottom: none; }
.bench-info-list .label { color: var(--text); font-weight: 500; min-width: 120px; }

/* ─── Code Block ─────────────────────────────────────────────── */

.code-block {
  background: var(--bg-code); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 24px 0;
}

.code-block-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.code-block-lang {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--text-dim); text-transform: uppercase;
}

.code-block-copy {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  padding: 4px 10px; border-radius: 4px; font-size: 0.75rem;
  cursor: pointer; font-family: var(--font); transition: all 0.2s;
}
.code-block-copy:hover { border-color: var(--accent); color: var(--text); }

.code-block pre {
  padding: 20px 24px; margin: 0; overflow-x: auto;
  font-family: var(--font-mono); font-size: 0.85rem;
  line-height: 1.7; color: #e6edf3;
  tab-size: 2;
}

/* ─── Install Block ──────────────────────────────────────────── */

.install-block {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg-code); border: 1px solid var(--border);
  padding: 14px 24px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.9rem;
  margin: 24px 0;
}
.install-block .dollar { color: var(--text-dim); }

/* ─── Comparison Table ───────────────────────────────────────── */

.compare-table {
  width: 100%; border-collapse: collapse;
  margin: 32px 0;
}
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.compare-table th {
  font-weight: 600; color: var(--text-dim);
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table td { color: var(--text-muted); }
.compare-table tr:hover td { background: var(--bg-hover); }
.compare-table .highlight { color: var(--accent); font-weight: 600; }

/* ─── Footer ─────────────────────────────────────────────────── */

.footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: start;
  gap: 60px;
}

.footer-brand p {
  color: var(--text-dim); font-size: 0.85rem;
  margin-top: 8px; max-width: 300px; line-height: 1.6;
}

.footer-links { display: flex; gap: 60px; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--text-muted); font-size: 0.9rem;
  padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-width); margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; color: var(--text-dim); font-size: 0.8rem;
}

/* ─── Docs Layout ────────────────────────────────────────────── */

.docs-layout {
  display: grid; grid-template-columns: 260px 1fr;
  min-height: 100vh; padding-top: var(--nav-height);
}

.docs-sidebar {
  position: sticky; top: var(--nav-height); height: calc(100vh - var(--nav-height));
  overflow-y: auto; padding: 24px 0 24px 24px;
  border-right: 1px solid var(--border);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.docs-sidebar-section {
  margin-bottom: 28px;
}
.docs-sidebar-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-dim);
  margin-bottom: 8px; padding: 0 12px;
}

.docs-sidebar a {
  display: block; padding: 6px 12px; border-radius: 6px;
  font-size: 0.88rem; color: var(--text-muted);
  transition: all 0.15s;
}
.docs-sidebar a:hover { color: var(--text); background: var(--bg-hover); }
.docs-sidebar a.active {
  color: var(--accent); background: var(--accent-glow);
  font-weight: 500;
}

.docs-content {
  max-width: 800px; padding: 40px 48px 80px;
  min-width: 0;
}

.docs-search {
  position: relative; margin: 0 12px 24px;
}
.docs-search input {
  width: 100%; padding: 8px 12px 8px 32px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text); font-size: 0.85rem;
  font-family: var(--font); outline: none; transition: border-color 0.2s;
}
.docs-search input:focus { border-color: var(--accent); }
.docs-search .search-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); font-size: 0.85rem;
}

/* ─── Docs Content Typography ────────────────────────────────── */

.docs-content h1 {
  font-size: 2rem; font-weight: 800; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.docs-content h2 {
  font-size: 1.5rem; font-weight: 700; margin: 48px 0 16px;
  letter-spacing: -0.01em;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.docs-content h3 {
  font-size: 1.15rem; font-weight: 600; margin: 32px 0 12px;
}
.docs-content h4 {
  font-size: 1rem; font-weight: 600; margin: 24px 0 8px;
}

.docs-content p {
  margin: 16px 0; color: var(--text-muted); line-height: 1.8;
}

.docs-content ul, .docs-content ol {
  margin: 16px 0; padding-left: 24px; color: var(--text-muted);
}
.docs-content li { margin: 6px 0; line-height: 1.7; }

.docs-content code {
  font-family: var(--font-mono); font-size: 0.85em;
  background: var(--bg-elevated); padding: 2px 6px;
  border-radius: 4px; color: #e6edf3;
}

.docs-content pre {
  background: var(--bg-code); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  overflow-x: auto; margin: 16px 0;
  font-family: var(--font-mono); font-size: 0.85rem;
  line-height: 1.7; color: #e6edf3;
}
.docs-content pre code {
  background: none; padding: 0; border-radius: 0;
}

.docs-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px; margin: 16px 0;
  background: var(--accent-glow); border-radius: 0 var(--radius) var(--radius) 0;
}
.docs-content blockquote p { margin: 0; color: var(--text-muted); }

.docs-content table {
  width: 100%; border-collapse: collapse; margin: 16px 0;
}
.docs-content th, .docs-content td {
  padding: 10px 14px; text-align: left;
  border: 1px solid var(--border); font-size: 0.88rem;
}
.docs-content th {
  background: var(--bg-elevated); font-weight: 600; color: var(--text);
}
.docs-content td { color: var(--text-muted); }

.docs-content hr {
  border: none; border-top: 1px solid var(--border); margin: 40px 0;
}

.docs-content strong { color: var(--text); font-weight: 600; }

.docs-content a { color: var(--accent); }
.docs-content a:hover { text-decoration: underline; }

/* ─── Whitepaper ─────────────────────────────────────────────── */

.paper {
  max-width: 760px; margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.paper-header {
  text-align: center; margin-bottom: 60px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}

.paper-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.25; margin-bottom: 20px;
}

.paper-meta {
  color: var(--text-dim); font-size: 0.9rem; margin-bottom: 32px;
}

.paper-abstract {
  text-align: left; padding: 24px;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.paper-abstract h3 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 12px; color: var(--accent);
}
.paper-abstract p {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
}

.paper h2 {
  font-size: 1.5rem; font-weight: 800; margin: 56px 0 20px;
  letter-spacing: -0.01em;
  counter-increment: h2; display: flex; align-items: baseline; gap: 12px;
}
.paper h2::before {
  content: counter(h2) ".";
  color: var(--accent); font-weight: 700;
}

.paper h3 {
  font-size: 1.15rem; font-weight: 700; margin: 36px 0 12px;
  counter-increment: h3;
}

.paper { counter-reset: h2; }

.paper p {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.85; margin: 16px 0;
  text-align: justify;
}

.paper ul, .paper ol {
  color: var(--text-muted); font-size: 0.95rem;
  margin: 16px 0; padding-left: 28px; line-height: 1.85;
}
.paper li { margin: 6px 0; }

.paper code {
  font-family: var(--font-mono); font-size: 0.85em;
  background: var(--bg-elevated); padding: 2px 6px;
  border-radius: 4px; color: #e6edf3;
}

.paper pre {
  background: var(--bg-code); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  overflow-x: auto; margin: 20px 0;
  font-family: var(--font-mono); font-size: 0.82rem;
  line-height: 1.7; color: #e6edf3;
}
.paper pre code { background: none; padding: 0; }

.paper blockquote {
  border-left: 3px solid var(--accent); padding: 12px 20px;
  margin: 20px 0; background: var(--accent-glow);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.paper blockquote p { margin: 0; }

.paper table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
}
.paper th, .paper td {
  padding: 10px 14px; text-align: left;
  border: 1px solid var(--border); font-size: 0.88rem;
}
.paper th {
  background: var(--bg-elevated); font-weight: 600; color: var(--text);
}
.paper td { color: var(--text-muted); }

.paper figure {
  margin: 32px 0; text-align: center;
}
.paper figcaption {
  font-size: 0.82rem; color: var(--text-dim); margin-top: 8px;
  font-style: italic;
}

.paper .figure-box {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}

/* ─── Syntax Highlighting (basic) ────────────────────────────── */

.kw   { color: #ff7b72; }
.str  { color: #a5d6ff; }
.fn   { color: #d2a8ff; }
.cm   { color: #8b949e; }
.num  { color: #79c0ff; }
.op   { color: #ff7b72; }
.typ  { color: #ffa657; }

/* ─── Mobile Responsive ──────────────────────────────────────── */

.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 16px 24px; z-index: 999;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  color: var(--text-muted); font-size: 1rem; padding: 8px 0;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-code { max-width: 600px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bench-container { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar {
    position: fixed; left: -280px; top: var(--nav-height);
    width: 260px; height: calc(100vh - var(--nav-height));
    background: var(--bg); z-index: 100;
    border-right: 1px solid var(--border);
    transition: left 0.3s ease;
    padding: 24px;
  }
  .docs-sidebar.open { left: 0; }
  .docs-content { padding: 24px; }
  .hero { padding-top: calc(var(--nav-height) + 40px); }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ─── Animations ─────────────────────────────────────────────── */

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

.animate-in {
  opacity: 0; animation: fadeInUp 0.6s ease forwards;
}
.animate-in.d1 { animation-delay: 0.1s; }
.animate-in.d2 { animation-delay: 0.2s; }
.animate-in.d3 { animation-delay: 0.3s; }
.animate-in.d4 { animation-delay: 0.4s; }

/* ─── Scrollbar ──────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

/* ─── Selection ──────────────────────────────────────────────── */

::selection {
  background: rgba(59, 130, 246, 0.3);
  color: var(--text);
}
