
:root {
  --bg: #171717;
  --bg-alt: #1e1e1e;
  --card-bg: #1c1c1c;
  --text: #e7e5e2;
  --text-muted: #8a8880;
  --border: #34322d;
  --accent: #d97742;
  --accent-text: #171717;
  --success: #7fbf6a;
}

body.theme-termcode {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

.theme-termcode .site-nav {
  background: linear-gradient(180deg, #232323 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -1px 0 rgba(217, 119, 66, 0.28);
}
.theme-termcode .brand-line::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 15px 0 0 #febc2e, 30px 0 0 #28c840;
  margin-right: 40px;
  flex-shrink: 0;
}
.theme-termcode .brand { color: var(--text); }
.theme-termcode .brand::before { content: "~/"; color: var(--text-muted); }

.theme-termcode .nav-links a {
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.8rem;
}
.theme-termcode .nav-links a::before { content: "$ "; color: var(--accent); opacity: 0.7; }
.theme-termcode .nav-links a:hover { background: var(--accent); color: var(--accent-text); }
.theme-termcode .nav-links a:hover::before { color: var(--accent-text); opacity: 1; }

.theme-termcode .hero h1::before { content: "$ "; color: var(--accent); }
.theme-termcode .subhead { color: var(--text-muted); }

.theme-termcode .tier-card {
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--card-bg);
}
.theme-termcode .tier-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.theme-termcode .tier-card h3::before { content: "// "; color: var(--text-muted); font-weight: 400; }
.theme-termcode .badge { border-radius: 4px; font-family: inherit; }

.theme-termcode .term-tab,
.theme-termcode .method-tab {
  border-radius: 4px;
  background: var(--bg);
}
.theme-termcode .term-tab.active,
.theme-termcode .method-tab.active { background: var(--accent); color: var(--accent-text); }

.theme-termcode .features li::before { content: "> "; color: var(--accent); font-weight: 700; }

.theme-termcode .buy-btn {
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 600;
}
.theme-termcode .buy-btn::before { content: "$ "; opacity: 0.7; }
.theme-termcode .buy-btn:hover { background: var(--accent); color: var(--accent-text); opacity: 1; }

.theme-termcode .checkout-form input,
.theme-termcode .checkout-form select { border-radius: 4px; background: var(--bg); }
.theme-termcode .checkout-form button { border-radius: 4px; }

.theme-termcode .deposit-box { border-radius: 4px; border-style: solid; border-color: var(--accent); }
.theme-termcode .deposit-address::before { content: "> "; color: var(--accent); }

.theme-termcode .how-it-works ol { list-style: none; counter-reset: step; padding-left: 0; }
.theme-termcode .how-it-works li { counter-increment: step; }
.theme-termcode .how-it-works li::before { content: "[" counter(step) "] "; color: var(--accent); font-weight: 700; }

.theme-termcode .guide-list a,
.theme-termcode .review-card { border-radius: 4px; background: var(--card-bg); }
.theme-termcode .guide-list a::before { content: "$ open "; color: var(--text-muted); }
