/* ====================================================
   CSS VARIABLES — Terminal / Developer Dark Theme
   ==================================================== */
:root {
  /* Brand */
  --primary:        #00FF88;
  --primary-dim:    rgba(0, 255, 136, 0.08);
  --primary-border: rgba(0, 255, 136, 0.25);
  --secondary:      #58A6FF;
  --secondary-dim:  rgba(88, 166, 255, 0.08);

  /* Backgrounds */
  --bg-base:    #0D1117;
  --bg-surface: #161B22;
  --bg-hover:   #21262D;

  /* Borders */
  --border:       #30363D;
  --border-hover: #484F58;

  /* Text */
  --text-primary:   #E6EDF3;
  --text-secondary: #B1BAC4;
  --text-muted:     #7D8590;

  /* Legacy aliases used in tool templates */
  --brand-300: #00FF88;
  --brand-400: #58A6FF;
  --brand-500: #00FF88;
  --bg-card:   #161B22;
  --bg-card2:  #0D1117;
  --bg-subtle: #21262D;
  --border-strong: #484F58;
  --glow-brand-sm: none;
}

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====================================================
   BASE
   ==================================================== */
html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #0D1117;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0;
  font-size: 0.875rem;
  font-family: 'JetBrains Mono', monospace;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ====================================================
   BULMA DARK OVERRIDES
   ==================================================== */
.title, .subtitle { color: var(--text-primary) !important; }
.subtitle { color: var(--text-secondary) !important; }
.section { background: transparent; }
.container { position: relative; }

/* Inputs / Textareas */
.input, .textarea, .select select {
  background: var(--bg-base) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  border-radius: 4px !important;
  transition: border-color 150ms ease;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: none !important;
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted) !important; }
.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary) !important;
  box-shadow: none !important;
  outline: none;
}

/* Buttons */
.button.is-primary {
  background: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  box-shadow: none !important;
  color: #0D1117 !important;
  font-weight: 700 !important;
  font-family: 'JetBrains Mono', monospace !important;
  border-radius: 4px !important;
  transition: background 150ms ease, border-color 150ms ease !important;
  letter-spacing: 0.02em;
}
.button.is-primary:hover {
  background: #00e67a !important;
  border-color: #00e67a !important;
  transform: none !important;
}
.button.is-primary:active { opacity: 0.9 !important; }

.button.is-light {
  background: var(--bg-surface) !important;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border) !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease !important;
  box-shadow: none !important;
}
.button.is-light:hover {
  background: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-hover) !important;
  transform: none !important;
}

.button.is-outlined.is-primary {
  background: transparent !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-family: 'JetBrains Mono', monospace !important;
  border-radius: 4px !important;
  transition: background 150ms ease !important;
  box-shadow: none !important;
}
.button.is-outlined.is-primary:hover {
  background: var(--primary-dim) !important;
  transform: none !important;
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  background: var(--bg-surface) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid var(--border) !important;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-menu {
  background: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 1023px) {
  .navbar-menu.is-active {
    background: var(--bg-surface) !important;
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
    box-shadow: none !important;
  }
}
.navbar-item, .navbar-link {
  color: var(--text-muted) !important;
  font-size: 0.82rem;
  font-family: 'JetBrains Mono', monospace;
  transition: color 150ms ease, background 150ms ease;
  border-radius: 0 !important;
}
.navbar-item:hover, .navbar-link:hover {
  background: var(--bg-hover) !important;
  color: var(--text-primary) !important;
}
.navbar-burger span {
  background-color: var(--text-muted) !important;
}
.navbar-burger:hover span {
  background-color: var(--text-primary) !important;
}

/* Logo */
.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 150ms ease;
}
.logo-icon:hover {
  background: rgba(0, 255, 136, 0.15);
}
.logo-icon .material-icons-round {
  font-size: 16px;
  color: var(--primary);
}
.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.3px;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero-section {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* Terminal-style [BADGE] */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.4s ease both;
}
.term-badge {
  display: inline-block;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  transition: border-color 150ms ease;
}
.term-badge:hover {
  border-color: var(--primary-border);
}

/* Hero title — typing effect */
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.4s 0.05s ease both;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.hero-title-prompt {
  color: var(--primary);
  user-select: none;
}
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--primary);
  margin-left: 1px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

.hero-subtitle {
  font-size: 0.925rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  animation: fadeInUp 0.4s 0.15s ease both;
  font-family: 'Inter', sans-serif;
}

/* Hero pills — terminal style */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.4s 0.25s ease both;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
}
.hero-pill .material-icons-round {
  font-size: 12px;
  color: var(--primary);
}

.hero-cta { animation: fadeInUp 0.4s 0.3s ease both; }

/* ====================================================
   SECTION HEADERS
   ==================================================== */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.section-eyebrow-text {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
}
.section-eyebrow-line {
  flex: 1;
  height: 1px;
  max-width: 50px;
  background: var(--border);
}
/* Legacy gradient variants — flatten to solid */
.section-eyebrow-line.left,
.section-eyebrow-line.right {
  background: var(--border);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.3px;
}
.section-title-prefix { color: var(--text-muted); font-weight: 400; }
.section-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

/* ====================================================
   TOOL CARDS
   ==================================================== */
.tool-card {
  display: block;
  padding: 1.1rem 1.25rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  height: 100%;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease;
  position: relative;
  overflow: hidden;
}
.tool-card::after { display: none; }
.tool-card:hover {
  background: var(--bg-hover);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: none;
  box-shadow: none;
}

.tool-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}
.tool-card:hover .tool-card-icon { transform: none; }
.tool-card-icon .material-icons-round { font-size: 17px; }

.tool-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-family: 'JetBrains Mono', monospace;
}
.tool-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Icon color variants — terminal palette (no warm colors) */
.icon-indigo  { background: var(--secondary-dim) !important; border-color: rgba(88,166,255,0.2) !important; }
.icon-indigo .material-icons-round  { color: var(--secondary); }

.icon-cyan    { background: var(--primary-dim) !important;   border-color: rgba(0,255,136,0.2) !important; }
.icon-cyan .material-icons-round    { color: var(--primary); }

.icon-amber   { background: var(--bg-hover) !important;      border-color: var(--border-hover) !important; }
.icon-amber .material-icons-round   { color: var(--text-secondary); }

.icon-pink    { background: var(--secondary-dim) !important; border-color: rgba(88,166,255,0.2) !important; }
.icon-pink .material-icons-round    { color: var(--secondary); }

.icon-emerald { background: var(--primary-dim) !important;   border-color: rgba(0,255,136,0.2) !important; }
.icon-emerald .material-icons-round { color: var(--primary); }

.icon-violet  { background: var(--bg-hover) !important;      border-color: var(--border-hover) !important; }
.icon-violet .material-icons-round  { color: var(--text-secondary); }

/* Category group label */
.category-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
}

/* ====================================================
   FEATURE CARDS
   ==================================================== */
.feature-card {
  padding: 1.35rem 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  height: 100%;
  transition: background 150ms ease, border-color 150ms ease;
}
.feature-card:hover {
  background: var(--bg-hover);
  border-color: var(--border-hover);
  transform: none;
  box-shadow: none;
}
.feature-icon {
  width: 34px; height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border: 1px solid var(--border);
}
.feature-icon .material-icons-round { font-size: 17px; }
.feature-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-family: 'JetBrains Mono', monospace;
}
.feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ====================================================
   ECOSYSTEM SECTION
   ==================================================== */
.eco-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  height: 100%;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 150ms ease, border-color 150ms ease;
}
.eco-card:hover {
  background: var(--bg-hover);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: none;
  box-shadow: none;
}
.eco-icon {
  width: 38px; height: 38px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.eco-icon .material-icons-round { font-size: 19px; }
.eco-body { display: flex; flex-direction: column; flex: 1; }
.eco-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  font-family: 'JetBrains Mono', monospace;
}
.eco-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
}
.eco-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  align-self: flex-start;
  margin-top: auto;
  transition: all 150ms ease;
  text-decoration: none;
}
.eco-btn:hover {
  background: var(--primary-dim);
  border-color: var(--primary-border);
  color: var(--primary);
}
.eco-btn .material-icons-round { font-size: 12px; }

/* ====================================================
   STAT BOXES (Word Counter)
   ==================================================== */
.stat-box {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: border-color 150ms ease;
}
.stat-box:hover { border-color: var(--border-hover); }
.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
  font-family: 'JetBrains Mono', monospace;
}
.stat-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.35rem;
  display: block;
  font-family: 'JetBrains Mono', monospace;
}

/* ====================================================
   TOOL PANEL
   ==================================================== */
.tool-panel {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  position: relative;
  box-shadow: none;
}
.tool-panel::before { display: none; }

.panel-toolbar {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.panel-char-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.panel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 420px;
}
@media (max-width: 768px) {
  .panel-body { grid-template-columns: 1fr; height: auto; }
  .panel-input, .panel-output { height: 220px; }
}
.panel-input  { background: var(--bg-base); border-right: 1px solid var(--border); }
.panel-output { background: var(--bg-surface); }
.panel-body textarea {
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: none;
  resize: none;
  outline: none;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: transparent;
  caret-color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
}
.panel-body textarea::placeholder { color: var(--text-muted); }

/* Tall variant */
.tool-panel.is-tall .panel-body { height: 520px; }
@media (max-width: 768px) {
  .tool-panel.is-tall .panel-input,
  .tool-panel.is-tall .panel-output { height: 280px; }
}

/* Code variant */
.tool-panel.is-code .panel-body textarea {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
}

/* Word counter single panel */
.single-panel textarea {
  width: 100%;
  height: 280px;
  padding: 1rem;
  border: none;
  resize: vertical;
  outline: none;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-base);
  display: block;
  caret-color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
}
.single-panel textarea::placeholder { color: var(--text-muted); }

/* Stat bar */
.stat-bar {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
}

/* JSON error banner */
.json-error-banner {
  background: rgba(239,68,68,0.07);
  color: #fca5a5;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(239,68,68,0.12);
  font-family: 'JetBrains Mono', monospace;
}
.panel-output-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.panel-output-inner textarea { flex: 1; height: auto !important; }

/* Lorem ipsum output */
.lorem-output textarea {
  width: 100%;
  height: 380px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 0.875rem;
  line-height: 1.7;
  resize: vertical;
  outline: none;
  transition: border-color 150ms ease;
  font-family: 'JetBrains Mono', monospace;
}
.lorem-output textarea:focus { border-color: var(--primary); }

/* Lorem input number */
.lorem-count.input {
  background: var(--bg-base) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  width: 80px !important;
  text-align: center;
  border-radius: 4px !important;
}

/* ====================================================
   TOOL PAGE HEADER
   ==================================================== */
.tool-page-header {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.tool-page-header::before { display: none; }
.tool-page-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.3px;
}
.tool-page-title-prefix { color: var(--primary); }
.tool-page-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}
.tool-page-header + .section { padding-top: 1.75rem !important; }

/* ====================================================
   SEO PROSE
   ==================================================== */
.seo-prose {
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 2.5rem;
  font-size: 0.875rem;
}
.seo-prose h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
}
.seo-prose h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
}
.seo-prose p, .seo-prose li { margin-bottom: 0.6rem; }
.seo-prose ul, .seo-prose ol { margin-left: 1.5rem; margin-bottom: 0.85rem; }
.seo-prose a { color: var(--secondary); }
.seo-prose details {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 150ms ease;
}
.seo-prose details[open] { border-color: var(--primary-border); }
.seo-prose details summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}
.seo-prose details summary::-webkit-details-marker { display: none; }
.seo-prose details[open] summary { color: var(--primary); }
.seo-prose details > div {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: auto;
}
.footer-brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.7;
  margin-top: 0.5rem;
  margin-bottom: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.footer-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 2px;
  padding: 0.18rem 0.5rem;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}
.footer-free-badge .material-icons-round { font-size: 12px; }
.footer-col-heading {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
}
.footer-link {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.45rem;
  transition: color 150ms ease;
  font-family: 'Inter', sans-serif;
}
.footer-link:hover { color: var(--text-primary); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ====================================================
   PRIVACY / TERMS CONTENT
   ==================================================== */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.content-page h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
}
.content-page .last-updated {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-family: 'JetBrains Mono', monospace;
}
.content-page h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
}
.content-page p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
}
