:root {
  --bg: #0a0d16;
  --bg-surface: #111726;
  --bg-card: rgba(17, 23, 38, 0.72);
  --bg-card-hover: rgba(22, 30, 50, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(99, 102, 241, 0.35);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-primary: #6366f1;
  --accent-secondary: #38bdf8;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-glow: rgba(99, 102, 241, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

code,
kbd,
pre {
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    monospace;
}

.glow-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.16) 0%,
    rgba(56, 189, 248, 0.07) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* MARK: - Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 13, 22, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-github {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-github:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* MARK: - Hero Section */
.hero {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 50px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #38bdf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  min-height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #4f46e5 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  min-height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Dedicated Terminal / Quick Install Widget */
.terminal-widget {
  background: #0d121f;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 36px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.terminal-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.terminal-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dots .dot.red {
  background: #ff5f56;
}
.terminal-dots .dot.yellow {
  background: #ffbd2e;
}
.terminal-dots .dot.green {
  background: #27c93f;
}

.terminal-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.terminal-tabs {
  display: flex;
  gap: 4px;
}

.term-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.term-tab:hover {
  color: var(--text-primary);
}

.term-tab.active {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
}

.terminal-body {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #090c15;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
}

.prompt-symbol {
  color: #818cf8;
  font-weight: 700;
  font-size: 0.95rem;
  user-select: none;
}

.terminal-line code {
  color: #38bdf8;
  font-size: 0.88rem;
  font-weight: 500;
}

.btn-copy-term {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-copy-term:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-terminal {
  margin: 28px auto 0;
  max-width: 520px;
}

.copy-btn:hover {
  color: var(--text-primary);
}

/* MARK: - Interactive Demo Showcase */
.demo-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 80px;
  position: relative;
  z-index: 2;
}

.showcase-header {
  text-align: center;
  margin-bottom: 24px;
}

.showcase-header h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.showcase-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(18, 24, 38, 0.6);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.2);
}

.tab-btn .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tab-btn.tab-failed .status-dot {
  background-color: var(--accent-rose);
  box-shadow: 0 0 8px var(--accent-rose);
}

.tab-btn.tab-warning .status-dot {
  background-color: var(--accent-amber);
  box-shadow: 0 0 8px var(--accent-amber);
}

.tab-btn.tab-pass .status-dot {
  background-color: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.demo-window {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(99, 102, 241, 0.08);
}

.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(14, 19, 32, 0.95);
  border-bottom: 1px solid var(--border);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red {
  background: #ff5f56;
}
.control-dot.yellow {
  background: #ffbd2e;
}
.control-dot.green {
  background: #27c93f;
}

.window-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.window-shortcut {
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #a5b4fc;
  border: 1px solid var(--border);
}

.window-body {
  position: relative;
  background: #0d1117;
  overflow: hidden;
}

.demo-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease-in-out;
}

.demo-context-card {
  padding: 20px 24px;
  background: rgba(14, 19, 32, 0.92);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.context-left h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.context-left p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.context-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag.rose {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.tag.amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.tag.emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag.neutral {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* MARK: - Comparison Section */
.comparison-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.comp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.2s ease;
}

.comp-card.preflight {
  border-color: rgba(99, 102, 241, 0.4);
  background: linear-gradient(
    180deg,
    rgba(22, 29, 48, 0.8) 0%,
    rgba(14, 19, 32, 0.8) 100%
  );
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.comp-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.comp-item strong {
  color: var(--text-primary);
}

.comp-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* MARK: - Ecosystems Grid */
.ecosystem-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.eco-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s ease;
}

.eco-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.eco-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.eco-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.eco-badge {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
}

.tool-table {
  width: 100%;
  font-size: 0.88rem;
  border-collapse: collapse;
}

.tool-table td {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tool-table tr:last-child td {
  border-bottom: none;
}

.tool-table .tool-name {
  color: var(--text-primary);
  font-weight: 600;
}

.tool-table .tool-cmd {
  color: #38bdf8;
  font-size: 0.8rem;
  text-align: right;
}

/* MARK: - Universal Guardrails & BYOT */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.guard-pill-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guard-pill {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* MARK: - MCP & AI Coding Agents */
.mcp-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.mcp-card {
  background: linear-gradient(
    135deg,
    rgba(20, 27, 45, 0.9) 0%,
    rgba(12, 16, 28, 0.9) 100%
  );
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(99, 102, 241, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 900px) {
  .mcp-card {
    grid-template-columns: 1fr;
  }
}

.mcp-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.mcp-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.agent-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.agent-badge {
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.code-box {
  background: #090c15;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  font-size: 0.84rem;
  overflow-x: auto;
}

.code-box pre {
  color: #cbd5e1;
  line-height: 1.5;
}

.code-box .kw {
  color: #c084fc;
}
.code-box .str {
  color: #6ee7b7;
}
.code-box .fn {
  color: #60a5fa;
}
.code-box .comment {
  color: #64748b;
  font-style: italic;
}

/* MARK: - Roadmap */
.roadmap-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.roadmap-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow-x: auto;
}

.roadmap-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.roadmap-table th {
  background: rgba(14, 19, 32, 0.95);
  padding: 16px 20px;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.roadmap-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
}

.roadmap-table tr:last-child td {
  border-bottom: none;
}

.roadmap-table .ver {
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.roadmap-table .badge-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.badge-status.current {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-status.planned {
  background: rgba(99, 102, 241, 0.18);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.badge-status.future {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* MARK: - CTA Section */
.cta-section {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 60px 24px;
  text-align: center;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(14, 19, 32, 0.5) 70%
  );
  border: 1px solid var(--border);
  border-radius: 20px;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* MARK: - Footer */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(10, 13, 22, 0.95);
  padding: 40px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 18px 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 400px;
  }

  .terminal-widget {
    width: 100%;
    max-width: 440px;
    margin-bottom: 28px;
  }

  .demo-tabs {
    flex-direction: column;
    width: 100%;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
  }

  .demo-context-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-section {
    margin: 40px 16px 60px;
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .terminal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
  }

  .terminal-tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .term-tab {
    font-size: 0.72rem;
    padding: 3px 6px;
  }

  .terminal-body {
    padding: 10px 12px;
    gap: 8px;
  }

  .terminal-line code {
    font-size: 0.76rem;
  }

  .btn-copy-term {
    padding: 5px 8px;
    font-size: 0.75rem;
  }
}
