:root {
  --bg: #050508;
  --bg-2: #0a0a12;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #f0f0f8;
  --text-dim: rgba(240, 240, 248, 0.45);
  --text-muted: rgba(240, 240, 248, 0.25);
  --accent: #7c6dff;
  --accent-2: #4fd1c5;
  --accent-glow: rgba(124, 109, 255, 0.3);
  --accent-2-glow: rgba(79, 209, 197, 0.2);
  --success: #4ade80;
  --font: 'Space Grotesk', sans-serif;
  --mono: 'Space Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Background ── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 109, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 109, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 109, 255, 0.12) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: floatGlow 8s ease-in-out infinite;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.08) 0%, transparent 70%);
  bottom: 20%;
  right: -150px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, 40px);
  }
}

/* ── Nav ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, border-color 0.3s;
}

#navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 20px;
  color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent));
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(79, 209, 197, 0.6));
  border-radius: 6px;
}

.logo-text {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.btn-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--surface-hover);
}

/* ── Hero ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(124, 109, 255, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(124, 109, 255, 0.08);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.badge-dot.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--accent);
  }

  50% {
    opacity: 0.5;
    box-shadow: 0 0 12px var(--accent);
  }
}

.hero-title {
  font-family: var(--mono);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(124, 109, 255, 0.3);
}

.btn-primary:hover {
  background: #9180ff;
  box-shadow: 0 0 50px rgba(124, 109, 255, 0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--surface-hover);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Terminal ── */
.hero-visual {
  flex: 0 0 460px;
}

.terminal-window {
  background: rgba(10, 10, 18, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124, 109, 255, 0.1), 0 40px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
  background: #ff5f57;
}

.terminal-dots span:nth-child(2) {
  background: #febc2e;
}

.terminal-dots span:nth-child(3) {
  background: #28c840;
}

.terminal-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.terminal-body {
  padding: 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.8;
}

.terminal-line {
  display: block;
}

.t-dim {
  color: var(--text-muted);
}

.t-cmd {
  color: var(--accent-2);
}

.t-success {
  color: var(--success);
}

.t-label {
  color: var(--accent);
  font-weight: 700;
}

.t-highlight {
  color: var(--text);
}

.t-blink {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── Sections ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Feed ── */
#feed {
  background: linear-gradient(180deg, transparent, rgba(124, 109, 255, 0.03), transparent);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
  cursor: default;
}

.feed-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feed-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.feed-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-hover);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.feed-type {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feed-time {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--mono);
}

.feed-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feed-text code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(124, 109, 255, 0.1);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--accent);
}

.feed-text strong {
  color: var(--text);
}

.feed-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.score-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: width 1s ease;
}

.score-val {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
  min-width: 24px;
  text-align: right;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(124, 109, 255, 0.3);
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124, 109, 255, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 109, 255, 0.1);
  border: 1px solid rgba(124, 109, 255, 0.2);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── Conway ── */
#conway {
  background: linear-gradient(180deg, transparent, rgba(79, 209, 197, 0.03), transparent);
}

.conway-block {
  display: flex;
  align-items: center;
  gap: 80px;
}

.conway-text {
  flex: 1;
}

.conway-text p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.conway-quote {
  font-family: var(--mono);
  font-size: 15px !important;
  color: var(--accent-2) !important;
  border-left: 2px solid var(--accent-2);
  padding-left: 16px;
  margin: 28px 0 !important;
}

.conway-visual {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conway-diagram {
  position: relative;
  width: 300px;
  height: 300px;
}

.diagram-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(124, 109, 255, 0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  z-index: 2;
}

.diagram-orbit {
  position: absolute;
  inset: 0;
  animation: spin 20s linear infinite;
}

.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px;
  transform: rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle)));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  transition: all 0.3s;
}

.orbit-node:hover {
  border-color: var(--accent);
  color: var(--text);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── Identity ── */
.identity-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.identity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

.identity-row:last-child {
  border-bottom: none;
}

.identity-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.identity-value {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}

.identity-address {
  display: flex;
  align-items: center;
  gap: 10px;
}

.identity-address code {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-2);
  word-break: break-all;
}

.copy-btn {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.copy-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.identity-link {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.identity-link:hover {
  color: #9180ff;
}

.status-active {
  color: var(--success) !important;
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    padding-top: 100px;
  }

  .hero-visual {
    flex: none;
    width: 100%;
  }

  .feed-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conway-block {
    flex-direction: column;
    gap: 48px;
  }

  .conway-visual {
    flex: none;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .identity-address code {
    font-size: 11px;
  }
}

/* ── Skills ── */
#skills {
  background: linear-gradient(180deg, transparent, rgba(124, 109, 255, 0.03), transparent);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skill-card:hover {
  border-color: rgba(79, 209, 197, 0.3);
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(79, 209, 197, 0.07);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.skill-icon--twitter {
  background: rgba(29, 161, 242, 0.12);
  border: 1px solid rgba(29, 161, 242, 0.25);
  color: #1da1f2;
}

.skill-icon--chain {
  background: rgba(79, 209, 197, 0.12);
  border: 1px solid rgba(79, 209, 197, 0.25);
  color: var(--accent-2);
}

.skill-icon--github {
  background: rgba(240, 240, 248, 0.08);
  border: 1px solid rgba(240, 240, 248, 0.15);
  color: var(--text-dim);
}

.skill-icon--ai {
  background: rgba(124, 109, 255, 0.12);
  border: 1px solid rgba(124, 109, 255, 0.25);
  color: var(--accent);
}

.skill-icon--infra {
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
  color: #facc15;
}

.skill-icon--pay {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: var(--success);
}

.skill-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.skill-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 3px 8px;
  border-radius: 100px;
}

.skill-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.65;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.skill-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 9px;
  font-family: var(--mono);
}

@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Getting Started / Install ── */
#install {
  background: linear-gradient(180deg, transparent, rgba(79, 209, 197, 0.02), transparent);
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto 40px;
}

.install-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}

.step-desc code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(124, 109, 255, 0.1);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--accent);
}

.code-block {
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.code-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.code-lang {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.copy-code-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-family: var(--font);
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-code-btn:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: rgba(79, 209, 197, 0.06);
}

.code-pre {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  padding: 16px 20px;
  color: #c9d1d9;
  overflow-x: auto;
  margin: 0;
  white-space: pre;
}

.code-dim {
  color: #555;
  user-select: none;
}

.code-op {
  color: #ff7b72;
}

.code-comment {
  color: #484f58;
}

.code-success {
  color: var(--success);
}

.install-prereqs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.prereq-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 4px;
}

.prereq-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-2);
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-radius: 6px;
  padding: 3px 10px;
}