:root {
  --bg: #0a0c0e;
  --bg-soft: #0e1115;
  --surface: #12151a;
  --surface-2: #191d24;
  --surface-3: #20252e;
  --border: #242a33;
  --border-strong: #2f3744;
  --text: #e6ebf2;
  --text-dim: #8a94a3;
  --text-faint: #576373;
  --accent: #4de0ff;
  --accent-dim: #1e8fa8;
  --accent-ink: #001318;
  --green: #6fe58a;
  --amber: #f5c76a;
  --red: #ff6b6b;
  --pink: #e583ff;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter Tight", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100%;
}

body {
  font-family: var(--sans);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

code {
  font-family: var(--mono);
  font-size: 0.92em;
  color: var(--text);
  background: var(--surface);
  padding: 1px 6px;
  border: 1px solid var(--border);
}

/* ── Background textures (page-wide) ─────────────────────────── */
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(36, 42, 51, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 42, 51, 0.4) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black, transparent 80%);
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.012) 2px 3px);
}

.site {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Shared atoms ────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: var(--surface);
  white-space: nowrap;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.dot-accent { background: var(--accent); box-shadow: 0 0 0 3px rgb(77 224 255 / 0.13); }
.dot-green  { background: var(--green);  box-shadow: 0 0 0 3px rgb(111 229 138 / 0.13); }
.dot-amber  { background: var(--amber);  box-shadow: 0 0 0 3px rgb(245 199 106 / 0.13); }
.dot-red    { background: var(--red);    box-shadow: 0 0 0 3px rgb(255 107 107 / 0.13); }

@keyframes opPulse { 0%, 100% { opacity: 1 } 50% { opacity: 0.35 } }
@keyframes opBlink { 0%, 49% { opacity: 1 } 50%, 100% { opacity: 0 } }
.dot-pulse { animation: opPulse 1.8s infinite; }
.caret { animation: opBlink 1s infinite; display: inline-block; margin-left: 4px; }

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

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  padding: 18px 48px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(10 12 14 / 0.87);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-left { display: flex; align-items: center; gap: 14px; }

.nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}
.mark-box {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
}
.mark-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.mark-word {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.mark-slash { color: var(--accent); }

.chip-status { margin-left: 8px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  align-items: center;
}
.nav-links a { cursor: pointer; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 5px 14px;
}
.nav-cta:hover { background: rgb(77 224 255 / 0.08); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 72px 48px 80px;
}
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 1000px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgb(77 224 255 / 0.08), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-size: 78px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 24px 0 0;
  color: var(--text);
  font-family: var(--sans);
}
.grad-text {
  background: linear-gradient(180deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 22px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}
.btn-primary:hover { box-shadow: 0 0 24px rgb(77 224 255 / 0.35); }
.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { padding: 16px 18px; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat-value {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
  font-weight: 600;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ── Console (hero right pane) ────────────────────────────── */
.console {
  position: relative;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 40px 100px var(--bg), 0 0 80px rgb(77 224 255 / 0.08);
  overflow: hidden;
}
.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}
.console-tabs { display: flex; gap: 16px; }
.tab { color: var(--text-dim); }
.tab.active { color: var(--accent); }
.console-host { color: var(--text-dim); }

.agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.agent-card {
  background: var(--surface);
  padding: 16px 16px 14px;
  min-height: 148px;
}
.agent-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.agent-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.agent-role {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.agent-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
}
.status-accent { color: var(--accent); }
.status-green  { color: var(--green); }
.status-amber  { color: var(--amber); }
.agent-meta {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
}
.agent-net { color: var(--text-faint); }
.ip { font-weight: 500; }
.ip-accent { color: var(--accent); }
.ip-green  { color: var(--green); }
.ip-amber  { color: var(--amber); }
.mac { margin-left: 8px; color: var(--text-faint); }

.spark {
  margin-top: 14px;
  width: 100%;
  height: 24px;
  display: block;
}

.console-ticker {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  background: var(--surface-2);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.tick-time { color: var(--text); }
.tick-who { color: var(--text-faint); }
.tick-more { margin-left: auto; color: var(--accent); }

/* ── Section framing ─────────────────────────────────────────── */
.section {
  padding: 96px 48px 40px;
  border-top: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.section-title {
  font-family: var(--sans);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 14px 0 0;
  color: var(--text);
}
.section-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 12px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* ── How it works ────────────────────────────────────────────── */
.step {
  background: var(--bg);
  padding: 32px 28px 30px;
  position: relative;
}
.step-rule { display: flex; align-items: center; gap: 12px; }
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  font-weight: 600;
}
.step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgb(77 224 255 / 0.27), transparent);
}
.step-mark {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}
.step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 0;
  letter-spacing: -0.02em;
}
.step-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 10px;
}

/* ── Features ───────────────────────────────────────────────── */
.features { padding: 40px 48px 72px; }
.feature {
  background: var(--bg);
  padding: 28px 24px 30px;
}
.feature-id {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 14px 0 0;
  letter-spacing: -0.02em;
}
.feature-body {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 8px;
}

/* ── Architecture ───────────────────────────────────────────── */
.architecture {
  padding: 72px 48px 72px;
  background: var(--bg-soft);
  position: relative;
}
.arch-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(36 42 51 / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgb(36 42 51 / 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  opacity: 0.6;
}
.arch-header { position: relative; }
.arch-fig {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.arch-canvas {
  position: relative;
  height: 440px;
  margin-top: 20px;
  border: 1px solid var(--border);
  background: rgb(18 21 26 / 0.53);
}
.arch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.arch-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgb(77 224 255 / 0.07), 0 0 40px rgb(77 224 255 / 0.13);
  text-align: center;
  padding: 0 20px;
}
.hub-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.hub-name {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 4px;
  line-height: 1;
  max-width: 180px;
}
.hub-ip {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  margin-top: 6px;
}
.hub-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 8px;
}

.arch-spoke {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 180px;
  padding: 14px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  text-align: center;
}
.spoke-tl { left: calc(170 / 1200 * 100%);  top: calc(80  / 440 * 100%); }
.spoke-bl { left: calc(170 / 1200 * 100%);  top: calc(360 / 440 * 100%); }
.spoke-tr { left: calc(1030 / 1200 * 100%); top: calc(80  / 440 * 100%); }
.spoke-br { left: calc(1030 / 1200 * 100%); top: calc(360 / 440 * 100%); }

.spoke-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.spoke-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 3px;
  letter-spacing: -0.02em;
}
.spoke-role {
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 2px;
}
.role-green { color: var(--green); }
.role-amber { color: var(--amber); }
.role-pink  { color: var(--pink); }

.spoke-ip {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px dashed var(--border);
}

.arch-relay {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}

.arch-legend { margin-top: 24px; }
.legend-cell { background: var(--bg); padding: 16px 18px; }
.legend-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}
.legend-body {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.55;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing { padding: 96px 48px 96px; }
.tiers { background: var(--border); }
.tier {
  background: var(--bg);
  padding: 32px 28px 28px;
  position: relative;
  border-top: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.tier-featured {
  background: var(--surface);
  border-top-color: var(--accent);
}
.tier-ribbon {
  position: absolute;
  top: -1px;
  right: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 2px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.tier-name {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.2em;
}
.tier-name.accent { color: var(--accent); }
.tier-price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price {
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.suffix {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-faint);
}
.tier-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.tier-rule {
  height: 1px;
  background: var(--border);
  margin: 22px 0 18px;
}
.tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-dim);
}
.bullet {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
}
.tier-cta {
  margin-top: auto;
  padding: 11px 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border-strong);
  color: var(--text);
  margin-top: 28px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.tier-cta:hover { border-color: var(--accent); color: var(--accent); }
.tier-cta-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.tier-cta-primary:hover { color: var(--accent-ink); }

/* ── Open Source ────────────────────────────────────────────── */
.open-source-wrap { padding: 0 48px 96px; }
.open-source {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1px solid var(--border-strong);
  padding: 48px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.os-glow {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgb(77 224 255 / 0.09), transparent 65%);
  pointer-events: none;
}
.os-copy { position: relative; }
.os-copy .section-title { font-size: 40px; line-height: 1.05; margin-bottom: 16px; }
.os-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 440px;
}
.os-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.install {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.install-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  align-items: stretch;
}
.install-tab {
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
  color: var(--text-dim);
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.install-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--bg);
}
.install-tab:focus-visible { outline: 1px solid var(--accent); outline-offset: -2px; }
.install-hint {
  margin-left: auto;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  align-self: center;
}
.install-body { position: relative; flex: 1; }
.install-panel {
  margin: 0;
  padding: 24px 22px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.85;
  white-space: pre-wrap;
  display: none;
  color: var(--text);
}
.install-panel.active { display: block; }
.comment { color: var(--text-faint); }
.cmd { color: var(--text); }
.prompt { color: var(--accent); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 64px 48px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-mark { color: var(--text); }
.footer-tag {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-top: 14px;
  max-width: 260px;
}
.footer-brand .chip { margin-top: 18px; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-heading {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text); }

.footer-end {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 56px; }
  .section-title { font-size: 40px; }
  .open-source { grid-template-columns: 1fr; padding: 32px; }
  .os-copy .section-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .chip-status { display: none; }
  .hero { padding: 40px 24px 48px; }
  .hero-title { font-size: 44px; }
  .section, .features, .architecture, .pricing { padding-left: 24px; padding-right: 24px; }
  .open-source-wrap { padding: 0 24px 64px; }
  .grid-3 { grid-template-columns: 1fr; }
  .agent-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .arch-canvas { height: auto; border: none; background: transparent; padding: 0; }
  .arch-lines, .arch-hub, .arch-spoke, .arch-relay { display: none; }
  .arch-canvas::before {
    content: "";
    display: block;
    height: 320px;
    border: 1px solid var(--border);
    background:
      radial-gradient(circle at 50% 50%, rgb(77 224 255 / 0.13), transparent 60%),
      var(--surface);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-end { flex-direction: column; gap: 8px; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border); }
}
