/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Base ===== */
body {
  background: #ffffff;
  color: #1a1a2e;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Layout ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  color: #1a1a2e;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p {
  margin-bottom: 16px;
}

.text-muted {
  color: #555e6b;
}

/* ===== Code / Monospace ===== */
code, pre {
  font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

code {
  background: #f0f1f4;
  border: 1px solid #e1e4e8;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.85em;
  color: #d63384;
}

pre {
  background: #1a1a2e;
  color: #e2e8f0;
  border: 1px solid #2d2d4a;
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 16px;
  line-height: 1.5;
}

pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: 0.9em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.06);
}

.btn-on-dark {
  color: #cbd5e1;
  border-color: #4b5563;
}

.btn-on-dark:hover {
  color: #ffffff;
  border-color: #93b4f5;
  background: rgba(255, 255, 255, 0.06);
}

/* ===== Cards ===== */
.card {
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* ===== Header / Nav ===== */
.site-header {
  padding: 16px 0;
  background: #1a1a2e;
  position: relative;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .logo:hover {
  text-decoration: none;
  color: #93b4f5;
}

/* Site nav — single nav for desktop and mobile */
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.site-nav > ul > li {
  position: relative;
}

.site-nav > ul > li > a {
  display: block;
  padding: 8px 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav > ul > li > a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Nav header — visible only on mobile */
.nav-header {
  display: none;
}

/* Dropdown */
.dropdown-toggle::after {
  content: " \25BE";
  font-size: 0.75em;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  z-index: 100;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #1a1a2e;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f4f5f7;
  color: #2563eb;
  text-decoration: none;
}

.has-dropdown:hover > .dropdown-menu {
  display: block;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

body.mobile-nav-open {
  overflow: hidden;
}

/* ===== Footer ===== */
.site-footer {
  padding: 48px 0;
  background: #12121f;
  margin-top: 0;
  color: #8b92a0;
  font-size: 0.9rem;
  border-top: 1px solid #2d2d4a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-content {
  flex: 1;
}

.site-footer a {
  color: #93b4f5;
}

.footer-logo {
  height: 160px;
  width: auto;
  opacity: 0.85;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 10px 0;
}

/* ===== Hero ===== */
.hero {
  padding: 80px 0;
  background: #f8f9fb;
  border-bottom: 1px solid #e1e4e8;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
}

.hero-logo {
  height: 220px;
  width: auto;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: #555e6b;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 0;
}

.hero .description {
  font-size: 1.05rem;
  color: #555e6b;
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero .btn + .btn {
  margin-left: 12px;
}

/* ===== Product Hero (RockTerm page) ===== */
.product-hero {
  text-align: center;
  padding: 96px 0 80px;
}

.product-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.product-hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #8b92a0;
}

/* ===== Hero bottom row (homepage) ===== */
.hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e1e4e8;
}

.hero-bottom-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.hero-bottom-item p {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== Product Spotlight (homepage) ===== */
.product-spotlight {
  padding: 80px 0;
}

.spotlight-header {
  text-align: center;
  margin-bottom: 40px;
}

.spotlight-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93b4f5;
  background: rgba(147, 180, 245, 0.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.spotlight-header h2 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.spotlight-tagline {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.spotlight-details {
  margin-top: 48px;
}

.spotlight-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.spotlight-feature h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.spotlight-feature p {
  color: #a0aec0;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.spotlight-cta {
  text-align: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Product logo ===== */
.product-logo-sm {
  height: 140px;
  width: auto;
  margin-bottom: 16px;
}

/* ===== Product Pitch (RockTerm page) ===== */
.product-pitch {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.product-pitch h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.product-pitch p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: none;
}

/* ===== Features link ===== */
.features-link {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: #6b7280;
}

/* ===== Workflow Cards (RockTerm page) ===== */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workflow-card {
  background: #f8f9fb;
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  padding: 28px;
}

.workflow-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.workflow-card p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== Trust Grid (RockTerm page) ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-detail {
  padding: 4px 0;
}

.trust-detail h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.trust-detail p {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== Trust Bar (homepage) ===== */
.trust-bar {
  padding: 48px 0;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}

.trust-item {
  flex: 1;
}

.trust-item strong {
  display: block;
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ===== Principle Cards (homepage "Why" section) ===== */
.principle-card {
  padding: 4px 0;
}

.principle-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.principle-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== Section ===== */
.section {
  padding: 72px 0;
}

.section-border {
  border-top: 1px solid #e1e4e8;
}

.section h2 {
  margin-bottom: 24px;
}

/* ===== Dark section ===== */
.section-dark {
  background: #1a1a2e;
  padding: 64px 0;
}

/* ===== Screenshot showcase ===== */
.screenshot-showcase {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.screenshot-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Article screenshot ===== */
.article-screenshot {
  margin: 24px 0;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e1e4e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Section heading ===== */
.section-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 36px;
}

/* ===== Feature cards ===== */
.feature-card {
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #2563eb;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== Grid layouts ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: 0.85rem;
  color: #8b92a0;
  margin-bottom: 32px;
  background: #f4f5f7;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
}

.breadcrumb a {
  color: #2563eb;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 4px;
  color: #c0c4cc;
}

.back-link {
  margin-top: 48px;
  margin-bottom: 8px;
}

.back-link a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

.page-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

/* ===== Page content ===== */
.page-content {
  padding: 48px 0;
}

.page-content h1 {
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.page-content .text-muted {
  font-size: 0.85rem;
  display: inline-block;
  background: #eef0f4;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e1e4e8;
  font-size: 1.5rem;
}

.page-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #374151;
  font-size: 1.15rem;
}

.page-content > .container > p,
.page-content p {
  color: #4b5563;
  max-width: 720px;
  line-height: 1.75;
}

.page-content ul, .page-content ol {
  color: #4b5563;
  margin-left: 24px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content li strong {
  color: #1a1a2e;
}

/* ===== Details/Summary (FAQ, Troubleshooting) ===== */
details {
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

details summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #1a1a2e;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::before {
  content: "+ ";
  color: #2563eb;
  font-weight: 700;
  margin-right: 8px;
}

details[open] summary::before {
  content: "- ";
}

details .details-content {
  padding: 0 20px 16px;
  color: #555e6b;
}

/* ===== Table ===== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid #e1e4e8;
}

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

th {
  color: #1a1a2e;
  font-weight: 600;
  background: #f0f1f4;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

td {
  color: #4b5563;
}

tbody tr:hover {
  background: #f8f9fb;
}

/* ===== Support cards ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.support-card {
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-left: 3px solid #2563eb;
  border-radius: 8px;
  padding: 20px 24px;
  text-decoration: none;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.support-card:hover {
  border-color: #2563eb;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.support-card h3 {
  color: #1a1a2e;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.support-card:hover h3 {
  color: #2563eb;
}

.support-card p {
  color: #6b7280;
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Highlighted top row of support cards */
.support-grid-highlight {
  margin-bottom: 40px;
}

.support-grid-highlight .support-card {
  border-left: 3px solid #1a1a2e;
  background: #f8f9fb;
}

.support-grid-highlight .support-card:hover {
  border-left-color: #2563eb;
  background: #ffffff;
}

/* Section headings on support hub */
.page-content .support-grid + h2,
.page-content .support-grid-highlight + h2 {
  margin-top: 40px;
}

/* ===== CTA Card ===== */
.cta-card {
  background: #1a1a2e;
  color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.cta-card h2 {
  color: #ffffff;
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 8px;
}

.cta-card p {
  color: #cbd5e1;
  max-width: none;
  margin-bottom: 20px;
}

.cta-card .btn-primary {
  background: #ffffff;
  color: #1a1a2e;
  font-weight: 700;
}

.cta-card .btn-primary:hover {
  background: #e2e8f0;
}

/* ===== CTA Section (full-bleed) ===== */
.cta-section {
  background: #1a1a2e;
  color: #ffffff;
  text-align: center;
  padding: 72px 0;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: #1a1a2e;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1rem;
}

.cta-section .btn-primary:hover {
  background: #e2e8f0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Changelog ===== */
.changelog-entry {
  margin-bottom: 32px;
}

.changelog-entry h2 {
  color: #2563eb;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 48px 0;
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    height: 140px;
    order: -1;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero .btn + .btn {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero .btn {
    display: block;
    text-align: center;
  }

  .product-hero {
    padding: 56px 0 48px;
  }

  .product-hero h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
    padding-top: 32px;
  }

  .product-spotlight {
    padding: 48px 0;
  }

  .spotlight-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-items {
    flex-direction: column;
    gap: 20px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .page-content h1 {
    font-size: 1.6rem;
  }

  .page-content h2 {
    margin-top: 36px;
    font-size: 1.3rem;
  }

  .product-pitch h2 {
    font-size: 1.4rem;
  }

  pre {
    padding: 14px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 10px 12px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .cta-card {
    padding: 28px 20px;
  }

  .cta-section {
    padding: 48px 0;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section-dark {
    padding: 40px 0;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    height: 80px;
    order: -1;
  }

  .footer-links {
    justify-content: center;
  }

  /* Mobile nav: transform site-nav into full-screen overlay */
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    z-index: 200;
    padding: 20px;
    overflow-y: auto;
  }

  .site-nav.active {
    display: block;
  }

  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }

  .nav-header .logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
  }

  .site-nav > ul {
    display: block;
  }

  .site-nav > ul > li {
    border-bottom: 1px solid #2d2d4a;
  }

  .site-nav > ul > li > a {
    padding: 16px 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* Dropdowns always visible on mobile */
  .site-nav .dropdown-menu {
    display: block;
    position: static;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 16px;
    min-width: 0;
    box-shadow: none;
  }

  .site-nav .dropdown-menu li a {
    color: #cbd5e1;
    padding: 8px 0;
    font-size: 1rem;
  }

  .site-nav .dropdown-menu li a:hover {
    background: none;
    color: #93b4f5;
  }

  .site-nav .dropdown-toggle::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* ===== Print ===== */
@media print {
  .site-header, .site-footer, .nav-toggle, .site-nav {
    display: none;
  }

  .hero {
    background: none;
    border: none;
  }

  .card, details {
    box-shadow: none;
    border-color: #ccc;
  }

  pre {
    background: #f4f5f7;
    color: #1a1a2e;
    border-color: #ccc;
  }

  pre code {
    color: #1a1a2e;
  }

  code {
    color: #1a1a2e;
  }
}
