:root {
  --bg: #07070b;
  --bg-2: #0b0b12;
  --panel: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ececf1;
  --dim: #9b9ba9;
  --faint: #5f5f6e;
  --lime: #b5f04a;
  --cyan: #4de3ff;
  --violet: #8b7bff;
  --red: #ff6b7a;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", var(--sans);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: #0a0a0a; }

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 11, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: 0 0 14px rgba(181, 240, 74, 0.55);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; color: var(--dim); }
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--lime);
}
.nav-cta {
  padding: 8px 18px !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
  transition: all 0.25s;
}
.nav-cta:hover { border-color: var(--lime); color: var(--lime) !important; }
.menu-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; }
.home .menu-btn { display: none !important; }

/* ---------- hero ---------- */

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(20px, 5vw, 64px) 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg .glow-a,
.hero-bg .glow-b {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
}
.hero-bg .glow-a { width: 640px; height: 640px; top: -180px; right: -120px; background: radial-gradient(circle, #2f7d00, transparent 70%); }
.hero-bg .glow-b { width: 520px; height: 520px; bottom: -220px; left: -140px; background: radial-gradient(circle, #0891b2, transparent 70%); }
.hero-bg .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  opacity: 0.5;
}
.hero-inner { max-width: 1240px; margin: 0 auto; width: 100%; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--lime);
  border: 1px solid rgba(181, 240, 74, 0.28);
  background: rgba(181, 240, 74, 0.06);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 34px;
}
.hero-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(181, 240, 74, 0.45); }
  50% { opacity: 0.7; box-shadow: 0 0 0 7px rgba(181, 240, 74, 0); }
}
h1.display {
  font-family: var(--display);
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 1.01;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 15ch;
}
.grad {
  background: linear-gradient(92deg, var(--lime) 5%, var(--cyan) 60%, var(--violet) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
  color: var(--dim);
  font-size: clamp(16px, 1.6vw, 19px);
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--lime); color: #0a0a0a; font-weight: 600; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(181, 240, 74, 0.28); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--dim); transform: translateY(-2px); }
.hero-meta { margin-top: 46px; display: flex; gap: 28px; font-family: var(--mono); font-size: 12.5px; color: var(--faint); flex-wrap: wrap; }
.hero-meta span b { color: var(--dim); font-weight: 500; }

/* ---------- terminal ---------- */

.terminal {
  margin-top: 72px;
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.term-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.term-bar i:nth-child(1) { background: rgba(255, 107, 122, 0.55); }
.term-bar i:nth-child(2) { background: rgba(255, 205, 86, 0.5); }
.term-bar i:nth-child(3) { background: rgba(140, 235, 140, 0.5); }
.term-bar em {
  font-style: normal;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
}
.term-body { padding: 24px 26px; font-family: var(--mono); font-size: 13.5px; line-height: 1.75; overflow-x: auto; }
.c-key { color: var(--violet); }
.c-str { color: var(--lime); }
.c-fn { color: var(--cyan); }
.c-com { color: var(--faint); font-style: italic; }
.c-num { color: #ffb86c; }
.c-dim { color: var(--dim); }

/* ---------- marquee ---------- */

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: inline-flex;
  gap: 54px;
  animation: scroll 32s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.marquee-track span::before { content: "◆ "; color: var(--lime); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */

.section { padding: clamp(84px, 10vw, 150px) clamp(20px, 5vw, 64px); }
.section-inner { max-width: 1240px; margin: 0 auto; }
.kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  display: block;
}
h2.h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-weight: 700;
  max-width: 20ch;
}
.section-head { margin-bottom: clamp(44px, 6vw, 76px); }
.section-head p.lead { margin-top: 20px; color: var(--dim); max-width: 62ch; font-size: 17px; }

/* problems */
.problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.p-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 30px 28px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-card:hover { border-color: rgba(255, 107, 122, 0.35); transform: translateY(-5px); }
.p-num { font-family: var(--mono); font-size: 12px; color: var(--red); letter-spacing: 0.18em; }
.p-card h3 { font-family: var(--display); font-size: 21px; margin: 14px 0 10px; letter-spacing: -0.01em; }
.p-card p { color: var(--dim); font-size: 14.5px; }
.p-card code {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  background: rgba(255, 107, 122, 0.07);
  border: 1px solid rgba(255, 107, 122, 0.16);
  padding: 4px 10px;
  border-radius: 7px;
}

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.f-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.f-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 160px at var(--mx, 50%) -20%, rgba(181, 240, 74, 0.09), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.f-card:hover { transform: translateY(-5px); border-color: rgba(181, 240, 74, 0.3); }
.f-card:hover::before { opacity: 1; }
.f-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 17px;
  color: var(--lime);
}
.f-card h3 { font-family: var(--display); font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
.f-card p { color: var(--dim); font-size: 14.5px; }

/* pipeline */
.pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}
.pipe-node {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  background: var(--panel);
  text-align: center;
}
.pipe-node b { display: block; font-family: var(--display); font-size: 15.5px; margin-bottom: 6px; }
.pipe-node span { font-size: 12.5px; color: var(--faint); font-family: var(--mono); }
.pipe-arrow { align-self: center; color: var(--faint); font-family: var(--mono); }
.pipe-node.hot { border-color: rgba(181, 240, 74, 0.4); background: rgba(181, 240, 74, 0.05); }
.pipe-node.hot b { color: var(--lime); }

/* code showcase tabs */
.tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.tab {
  font-family: var(--mono);
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--dim);
  cursor: pointer;
  background: none;
  transition: all 0.22s;
}
.tab.active { background: var(--text); color: #0a0a0a; border-color: var(--text); font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* comparison table */
.compare-wrap { border: 1px solid var(--line); border-radius: 18px; overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare th, .compare td { text-align: left; padding: 15px 22px; border-bottom: 1px solid var(--line); }
.compare th {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  background: var(--bg-2);
}
.compare tr:last-child td { border-bottom: none; }
.compare td:first-child { color: var(--dim); }
.yes { color: var(--lime); font-family: var(--mono); font-size: 13px; }
.no { color: var(--red); font-family: var(--mono); font-size: 13px; }
.mid { color: var(--dim); font-family: var(--mono); font-size: 13px; }

/* big CTA */
.cta {
  text-align: center;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 84px);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.cta p { color: var(--dim); margin: 24px auto 44px; max-width: 52ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 44px clamp(20px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 13.5px;
  font-family: var(--mono);
}
footer.site a { color: var(--dim); transition: color 0.2s; }
footer.site a:hover { color: var(--lime); }
.footer-links { display: flex; gap: 22px; }

/* ---------- docs layout ---------- */

.docs-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 73px;
  min-height: 100vh;
}
.sidebar {
  position: sticky;
  top: 73px;
  height: calc(100vh - 73px);
  overflow-y: auto;
  border-right: 1px solid var(--line);
  padding: 36px 22px 60px 26px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.side-group { margin-bottom: 30px; }
.side-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.sidebar a.side-link {
  display: block;
  font-size: 13.5px;
  color: var(--dim);
  padding: 6px 12px;
  border-left: 1px solid var(--line);
  margin-left: 1px;
  transition: all 0.2s;
  line-height: 1.45;
}
.sidebar a.side-link:hover { color: var(--text); }
.sidebar a.side-link.current {
  color: var(--lime);
  border-left-color: var(--lime);
}
.docs-content {
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 72px) 120px;
  max-width: 860px;
}
.docs-content h1 {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.docs-content .doc-lead { color: var(--dim); font-size: 17.5px; margin-bottom: 48px; max-width: 60ch; }
.docs-content h2 {
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.02em;
  margin: 72px 0 20px;
  scroll-margin-top: 96px;
}
.docs-content h2:first-of-type { margin-top: 24px; }
.docs-content h3 {
  font-family: var(--display);
  font-size: 19px;
  margin: 44px 0 12px;
  scroll-margin-top: 96px;
}
.docs-content p { color: #c6c6d2; margin-bottom: 16px; font-size: 15px; }
.docs-content strong { color: var(--text); }
.docs-content ul, .docs-content ol { margin: 0 0 18px 22px; color: #c6c6d2; font-size: 15px; }
.docs-content li { margin-bottom: 7px; }
.docs-content code:not(pre code) {
  font-family: var(--mono);
  font-size: 0.86em;
  background: rgba(181, 240, 74, 0.08);
  border: 1px solid rgba(181, 240, 74, 0.14);
  color: var(--lime);
  padding: 2px 7px;
  border-radius: 6px;
  word-break: break-word;
}
.codeblock { position: relative; margin: 22px 0; }
.codeblock pre {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 20px 22px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  scrollbar-width: thin;
}
.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--faint);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 11px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s;
}
.codeblock:hover .copy-btn { opacity: 1; }
.copy-btn:hover { color: var(--lime); border-color: rgba(181, 240, 74, 0.4); }
.callout {
  border: 1px solid rgba(181, 240, 74, 0.25);
  background: rgba(181, 240, 74, 0.045);
  border-radius: 13px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14.5px;
  color: #c6c6d2;
}
.callout.warn {
  border-color: rgba(255, 205, 86, 0.3);
  background: rgba(255, 205, 86, 0.05);
}
.callout b { color: var(--text); }
.callout .co-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 7px;
}
.callout.warn .co-tag { color: #ffcd56; }
table.doc-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 14px; }
.doc-table th, .doc-table td { text-align: left; padding: 11px 16px; border: 1px solid var(--line); }
.doc-table th { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); background: var(--bg-2); font-weight: 500; }
.doc-table td { color: #c6c6d2; }
.doc-table td code { font-size: 12px; }
hr.sep { border: none; border-top: 1px solid var(--line); margin: 64px 0; }
.pager {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  gap: 16px;
}
.pager a {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 18px 22px;
  flex: 1;
  transition: all 0.25s;
}
.pager a:hover { border-color: rgba(181, 240, 74, 0.4); }
.pager a small { display: block; font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.pager a b { font-family: var(--display); font-size: 16px; color: var(--text); }
.pager a.next { text-align: right; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
}

/* responsive */
@media (max-width: 1080px) {
  .pipeline { grid-template-columns: 1fr 1fr; }
  .pipe-arrow { display: none; }
}
@media (max-width: 960px) {
  .problems, .features { grid-template-columns: 1fr 1fr; }
  .docs-shell { grid-template-columns: minmax(0, 1fr); }
  .doc-table { display: block; overflow-x: auto; }
  .sidebar {
    position: fixed;
    left: 0; top: 73px; bottom: 0;
    width: 300px;
    background: var(--bg-2);
    z-index: 40;
    transform: translateX(-102%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    padding-top: 28px;
  }
  .sidebar.open { transform: none; box-shadow: 40px 0 80px rgba(0,0,0,0.5); }
  .menu-btn { display: block; }
  .docs .nav-links { display: none; }
}
@media (max-width: 640px) {
  .problems, .features { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .nav-links .nav-hide { display: none; }
  .home .nav-cta { display: none; }
  .hero { min-height: auto; padding-top: 120px; }
}

/* ---------- light theme (default; dark applies via prefers-color-scheme) ---------- */

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafbf4;
    --bg-2: #eff1e4;
    --panel: rgba(22, 30, 8, 0.025);
    --line: rgba(22, 32, 6, 0.14);
    --text: #151a0c;
    --dim: #50573e;
    --faint: #7d8467;
    --red: #c92f40;
  }

  .noise { opacity: 0.03; }

  .nav { background: rgba(250, 251, 244, 0.8); }
  .nav-logo .dot { box-shadow: 0 0 12px rgba(101, 163, 13, 0.35); }
  .nav-links a.active::after { background: #65a30d; }
  .nav-cta:hover { color: #3f6212 !important; }

  .hero-bg .glow-a,
  .hero-bg .glow-b { opacity: 0.25; }
  .hero-bg .glow-a { background: radial-gradient(circle, #a3e635, transparent 70%); }
  .hero-bg .glow-b { background: radial-gradient(circle, #67e8f9, transparent 70%); }

  .hero-badge {
    color: #3f6212;
    border-color: rgba(101, 163, 13, 0.35);
    background: rgba(132, 204, 22, 0.09);
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(101, 163, 13, 0.45); }
    50% { opacity: 0.7; box-shadow: 0 0 0 7px rgba(101, 163, 13, 0); }
  }

  .grad {
    background: linear-gradient(92deg, #4d7c0f 5%, #0891b2 60%, #6d28d9 110%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .btn-primary:hover { box-shadow: 0 10px 34px rgba(101, 163, 13, 0.25); }

  .terminal {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.25));
    box-shadow: 0 30px 80px rgba(32, 42, 10, 0.14);
  }
  .term-bar i:nth-child(1) { background: rgba(220, 60, 75, 0.75); }
  .term-bar i:nth-child(2) { background: rgba(216, 160, 20, 0.7); }
  .term-bar i:nth-child(3) { background: rgba(80, 175, 80, 0.7); }

  .c-key { color: #6355d8; }
  .c-str { color: #3f6212; }
  .c-fn { color: #0369a1; }
  .c-num { color: #b45309; }

  .marquee-track span::before { color: #65a30d; }
  .kicker { color: #3f6212; }

  .p-card:hover { border-color: rgba(201, 47, 64, 0.3); }
  .p-card code {
    background: rgba(201, 47, 64, 0.06);
    border-color: rgba(201, 47, 64, 0.18);
  }

  .f-card { background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent); }
  .f-card::before {
    background: radial-gradient(500px 160px at var(--mx, 50%) -20%, rgba(132, 204, 22, 0.12), transparent 70%);
  }
  .f-card:hover { border-color: rgba(101, 163, 13, 0.35); }
  .f-icon { color: #3f6212; }

  .pipe-node.hot { border-color: rgba(101, 163, 13, 0.4); background: rgba(132, 204, 22, 0.07); }
  .pipe-node.hot b { color: #3f6212; }

  .tab.active { color: #fafbf4; }
  .yes { color: #3f6212; }
  footer.site a:hover { color: #3f6212; }

  .sidebar a.side-link.current { color: #3f6212; border-left-color: #65a30d; }

  .docs-content p, .docs-content ul, .docs-content ol,
  .callout, .doc-table td { color: #3b412c; }

  .docs-content code:not(pre code) {
    background: rgba(132, 204, 22, 0.1);
    border-color: rgba(101, 163, 13, 0.22);
    color: #3f6212;
  }

  .copy-btn:hover { color: #3f6212; border-color: rgba(101, 163, 13, 0.45); }

  .callout { border-color: rgba(101, 163, 13, 0.3); background: rgba(132, 204, 22, 0.07); }
  .callout.warn { border-color: rgba(180, 130, 15, 0.35); background: rgba(255, 205, 86, 0.1); }
  .callout .co-tag { color: #3f6212; }
  .callout.warn .co-tag { color: #92600a; }

  .pager a:hover { border-color: rgba(101, 163, 13, 0.45); }

  .sidebar.open { box-shadow: 40px 0 80px rgba(32, 42, 10, 0.18); }
}
