/* =========================================================
   ATLAS CORE — Landing styles
   ========================================================= */

:root {
  /* Inks (dark mode base) */
  --ink-0: #05070A;
  --ink-1: #0A0D12;
  --ink-2: #0F141B;
  --ink-3: #141A23;
  --ink-4: #1C232E;
  --line:  rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.12);
  --line-3: rgba(255,255,255,0.22);

  /* Paper section */
  --paper:       #F3F1EA;
  --paper-2:     #E9E6DC;
  --paper-ink:   #0B0E13;
  --paper-mid:   #51596A;
  --paper-line:  rgba(11,14,19,0.10);

  /* Text */
  --text-hi:  #F4F5F8;
  --text-mid: #B6BCC8;
  --text-lo:  #6E7587;

  /* Accent — from logo (periwinkle / cornflower) */
  --accent:       #6E8CFF;
  --accent-soft:  #9FB4FF;
  --accent-deep:  #4861E8;
  --accent-glow:  rgba(110,140,255,0.35);
  --accent-tint:  rgba(110,140,255,0.10);

  /* Type */
  --f-sans:    "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --f-serif:   "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --f-mono:    "Geist Mono", ui-monospace, "JetBrains Mono", Menlo, monospace;

  /* Layout */
  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --rad-sm: 10px;
  --rad-md: 16px;
  --rad-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--ink-1);
  color: var(--text-hi);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* =========================================================
   THEME — Paper section override
   ========================================================= */
.on-paper {
  background: var(--paper);
  color: var(--paper-ink);
  --text-hi:  var(--paper-ink);
  --text-mid: var(--paper-mid);
  --text-lo:  #7A8295;
  --line:     var(--paper-line);
  --line-2:   rgba(11,14,19,0.18);
  --line-3:   rgba(11,14,19,0.30);
  --ink-2:    #ECE9DE;
  --ink-3:    #E2DED2;
}

/* =========================================================
   TYPE
   ========================================================= */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lo);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.center::before { display: none; }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(110,140,255,0.15);
}

.h-display {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h-display .ser { font-family: var(--f-serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.h-display .accent { color: var(--accent); }

.h-section {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.h-section .ser { font-family: var(--f-serif); font-weight: 400; font-style: italic; }

.h-card {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-mid);
  max-width: 56ch;
  text-wrap: pretty;
}

.label-mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-lo);
}

/* =========================================================
   LAYOUT primitives
   ========================================================= */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section {
  position: relative;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 760px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn .arr {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--text-hi);
  color: var(--ink-1);
  border-color: var(--text-hi);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 10px 24px -10px rgba(110,140,255,0.5);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 10px 32px -8px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-hi);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--line-3);
  background: rgba(255,255,255,0.04);
}
.on-paper .btn-ghost:hover { background: rgba(0,0,0,0.04); }

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 13, 18, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-hi);
}
.brand .mark {
  width: 32px; height: 32px;
  position: relative;
}
.brand .wordmark {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand .wordmark .core { color: var(--accent); font-weight: 600; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text-hi); }

.header-cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 600px at 75% 30%, rgba(110,140,255,0.18), transparent 60%),
    radial-gradient(900px 600px at 20% 70%, rgba(110,140,255,0.06), transparent 60%),
    linear-gradient(180deg, var(--ink-0) 0%, var(--ink-1) 60%, var(--ink-1) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.55;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: 76vh;
}

.hero-copy { display: flex; flex-direction: column; gap: 28px; }

.hero-copy .h-display { max-width: 14ch; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .item .val { font-family: var(--f-sans); font-weight: 500; font-size: 16px; letter-spacing: -0.01em; }
.hero-meta .item .lbl { font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-lo); }

@media (max-width: 980px) {
  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .orbital-stage { aspect-ratio: 1/1; max-width: 520px; margin: 0 auto; }
}

/* =========================================================
   ORBITAL stage (hero visual)
   ========================================================= */
.orbital-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.orbital-stage svg { width: 100%; height: 100%; overflow: visible; }

.orbital-stage .ring {
  fill: none;
  stroke: var(--line-2);
  stroke-width: 1;
}
.orbital-stage .ring-bright {
  stroke: var(--line-3);
}
.orbital-stage .grid-line {
  stroke: var(--line);
  stroke-width: 1;
  fill: none;
}
.orbital-stage .core-glow {
  filter: blur(28px);
  opacity: 0.6;
}
.orbital-stage .core {
  fill: #F6F7FA;
}
.orbital-stage .node-dot {
  fill: var(--accent);
}
.orbital-stage .node-dot.dim { fill: #7E8AA8; opacity: 0.7; }
.orbital-stage .label-pill {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--text-mid);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
.spin-slow  { animation: orbit-spin 60s linear infinite; transform-origin: center; }
.spin-mid   { animation: orbit-spin 38s linear infinite reverse; transform-origin: center; }
.spin-fast  { animation: orbit-spin 22s linear infinite; transform-origin: center; }

@keyframes pulse-core {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.04); }
}
.pulse-core { animation: pulse-core 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes node-pulse {
  0%, 100% { r: 6; }
  50%      { r: 8; }
}
.node-pulse { animation: node-pulse 3s ease-in-out infinite; transform-box: fill-box; }

/* =========================================================
   LOGO STRIP / clients
   ========================================================= */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--ink-0);
}
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.strip .label-mono { white-space: nowrap; }
.strip-logos { display: flex; gap: 44px; flex-wrap: wrap; align-items: center; opacity: 0.65; }
.strip-logos span {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--text-mid);
}
.strip-logos span em { font-family: var(--f-serif); font-style: italic; font-weight: 400; }

/* =========================================================
   SOBRE
   ========================================================= */
.about {
  padding: 140px 0 120px;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-side { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.about-main { display: flex; flex-direction: column; gap: 36px; }
.about-main .body-lg {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--text-hi);
  font-weight: 400;
  text-wrap: pretty;
}
.about-main .body-lg .ser { font-family: var(--f-serif); font-style: italic; color: var(--accent-soft); }
.about-main .body-lg .muted { color: var(--text-mid); }

.pillar-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--rad-md); overflow: hidden; }
.pillar { background: var(--ink-1); padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; }
.pillar .num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.pillar h4 { margin: 0; font-size: 20px; font-weight: 500; letter-spacing: -0.015em; }
.pillar p { margin: 0; font-size: 14.5px; color: var(--text-mid); line-height: 1.5; }

@media (max-width: 980px) {
  .about { padding: 90px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-side { position: static; }
  .pillar-list { grid-template-columns: 1fr; }
}

/* =========================================================
   SOLUTIONS GRID
   ========================================================= */
.solutions {
  padding: 120px 0;
  background: var(--ink-0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.sol-card {
  background: var(--ink-1);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  position: relative;
  transition: background .35s ease;
  isolation: isolate;
}
.sol-card:hover { background: var(--ink-2); }
.sol-card .glyph {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 6px;
}
.sol-card .glyph svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.4; fill: none; }
.sol-card h3 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.018em; }
.sol-card p  { margin: 0; color: var(--text-mid); font-size: 14.5px; line-height: 1.55; }
.sol-card .tag { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-lo); margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; align-items: center; }
.sol-card .tag .arr { color: var(--accent); transition: transform .25s; }
.sol-card:hover .tag .arr { transform: translateX(4px); }

@media (max-width: 980px) {
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .solutions { padding: 80px 0; }
}
@media (max-width: 640px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ATLAS — visual conceitual (full-bleed orbital diagram)
   ========================================================= */
.atlas-visual {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.atlas-visual .container { position: relative; z-index: 2; }
.atlas-visual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.atlas-visual-bg .latlong {
  position: absolute;
  inset: -10% -5% -10% -5%;
  opacity: 0.5;
}
.atlas-visual-bg .glow {
  position: absolute;
  width: 60vmin; height: 60vmin;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(110,140,255,0.30), transparent 70%);
  filter: blur(20px);
}
.atlas-visual .layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.atlas-visual .copy { max-width: 480px; display: flex; flex-direction: column; gap: 22px; }
.atlas-visual .stat-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.atlas-visual .stat {
  background: rgba(10,13,18,0.6);
  padding: 18px 18px;
  display: flex; flex-direction: column; gap: 4px;
  backdrop-filter: blur(6px);
}
.atlas-visual .stat .v { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; font-family: var(--f-sans); }
.atlas-visual .stat .v .ser { font-family: var(--f-serif); font-style: italic; color: var(--accent-soft); }
.atlas-visual .stat .l { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-lo); }

.atlas-visual .diagram-wrap { position: relative; aspect-ratio: 1/1; }
.atlas-visual .diagram-wrap svg { width: 100%; height: 100%; overflow: visible; }

@media (max-width: 980px) {
  .atlas-visual { padding: 90px 0; }
  .atlas-visual .layout { grid-template-columns: 1fr; }
  .atlas-visual .diagram-wrap { max-width: 520px; margin: 0 auto; }
}

/* =========================================================
   DIFERENCIAIS / EDGE — Paper section
   ========================================================= */
.edge {
  padding: 140px 0;
}
.edge.on-paper {
  background: var(--paper);
}
.edge-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.edge-card {
  border: 1px solid var(--line-2);
  border-radius: var(--rad-md);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  background: rgba(11,14,19,0.02);
  transition: background .25s, border-color .25s;
}
.edge-card:hover { background: rgba(11,14,19,0.04); border-color: var(--line-3); }
.edge-card .idx {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mid);
  padding-top: 4px;
}
.edge-card h4 { margin: 0 0 8px; font-size: 22px; font-weight: 500; letter-spacing: -0.018em; }
.edge-card p  { margin: 0; color: var(--text-mid); font-size: 14.5px; line-height: 1.55; }
.edge-card .accent-bar { display: block; width: 28px; height: 1px; background: var(--accent); margin-bottom: 14px; }

@media (max-width: 980px) {
  .edge { padding: 90px 0; }
  .edge-head { grid-template-columns: 1fr; gap: 24px; }
  .edge-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PROCESS / approach (compact)
   ========================================================= */
.process { padding: 140px 0 120px; border-top: 1px solid var(--line); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 56px;
}
.process-step {
  background: var(--ink-1);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.process-step .step-num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px;
}
.process-step .step-num::before { content: ""; width: 28px; height: 1px; background: var(--accent); display: inline-block; }
.process-step h5 { margin: 0; font-size: 18px; font-weight: 500; letter-spacing: -0.015em; }
.process-step p { margin: 0; color: var(--text-mid); font-size: 14px; line-height: 1.5; }

@media (max-width: 980px) {
  .process { padding: 90px 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--ink-1), var(--ink-0) 70%);
  border-top: 1px solid var(--line);
}
.cta-final .container { display: flex; flex-direction: column; align-items: center; gap: 28px; position: relative; z-index: 2; }
.cta-final .h-display { max-width: 16ch; text-align: center; }
.cta-final .lede { text-align: center; }
.cta-final .hero-actions { justify-content: center; }
.cta-final .bg-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid; place-items: center;
  opacity: 0.5;
}
.cta-final .bg-orbit svg { width: min(900px, 90vw); height: auto; }
.cta-final .bg-orbit circle { fill: none; stroke: var(--line-2); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink-0);
  border-top: 1px solid var(--line);
  padding: 80px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-brand p { color: var(--text-mid); font-size: 14.5px; line-height: 1.55; margin: 0; }

.footer-col h6 {
  margin: 0 0 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lo);
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-mid); font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--text-hi); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .label-mono { color: var(--text-lo); }

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* =========================================================
   FX / utilities
   ========================================================= */
.fade-up {
  animation: fadeUp 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.fade-up.d1 { animation-delay: 0.05s; }
.fade-up.d2 { animation-delay: 0.15s; }
.fade-up.d3 { animation-delay: 0.25s; }
.fade-up.d4 { animation-delay: 0.35s; }
.fade-up.d5 { animation-delay: 0.45s; }
.fade-up.d6 { animation-delay: 0.55s; }

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

.divider-mono {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-lo);
}
.divider-mono::before, .divider-mono::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* Tag pills (used inline) */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.tag-pill .d {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* selection */
::selection { background: var(--accent); color: var(--ink-0); }
