/* PicoClaw website - global styles */
:root {
  --bg: #0b1220;
  --bg-elevated: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #243447;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --accent-dim: #0ea5e9;
  --accent-glow: rgba(56, 189, 248, 0.25);
  --border: #334155;
  --radius: 10px;
  --radius-lg: 14px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  top: -3.5rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 0.75rem; outline: 2px solid var(--accent); outline-offset: 2px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Subtle background gradient */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 189, 248, 0.08), transparent),
              radial-gradient(ellipse 60% 40% at 100% 50%, rgba(56, 189, 248, 0.04), transparent),
              radial-gradient(ellipse 60% 40% at 0% 80%, rgba(56, 189, 248, 0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: nowrap; }
.site-header .header-inner { position: relative; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-logo { display: flex; align-items: center; text-decoration: none; color: inherit; font-weight: 700; flex-shrink: 0; }
.site-logo img { height: 32px; width: auto; display: block; }

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius);
  gap: 5px;
}
.nav-toggle:hover { color: var(--accent); background: rgba(56, 189, 248, 0.1); }
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop { display: none; }
.site-nav { display: flex; align-items: center; gap: 0.15rem; flex-shrink: 0; }
.site-nav > a {
  padding: 0.45rem 0.65rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  white-space: nowrap;
}
.site-nav > a:hover { color: var(--accent); background: rgba(56, 189, 248, 0.1); }
.site-nav > a.active { color: var(--accent); }
.site-nav .nav-ghost { color: var(--text-muted); font-size: 0.875rem; padding: 0 0.25rem; }

/* Nav dropdown (More) */
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  padding: 0.45rem 0.65rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: " ▾"; font-size: 0.7em; opacity: 0.8; }
.nav-dropdown[open] summary { color: var(--accent); background: rgba(56, 189, 248, 0.1); }
.nav-dropdown summary:hover { color: var(--accent); background: rgba(56, 189, 248, 0.1); }
.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.2rem;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.nav-dropdown-panel a {
  display: block;
  padding: 0.4rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}
.nav-dropdown-panel a:hover { color: var(--accent); background: rgba(56, 189, 248, 0.08); }
.nav-dropdown-panel .col-group { padding: 0.25rem 0; border-bottom: 1px solid var(--border); }
.nav-dropdown-panel .col-group:last-child { border-bottom: none; }
.nav-dropdown-panel .col-group-label { padding: 0.25rem 1rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); opacity: 0.9; }
.nav-dropdown-panel .col-group a { padding-left: 1.25rem; }

/* Main */
main { flex: 1; padding: 2rem 0 5rem; position: relative; z-index: 1; }
.page-title { font-size: 2rem; margin: 0 0 0.5rem; font-family: var(--font-display); }
.breadcrumb { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.text-muted { color: var(--text-muted); }

/* Sections */
.section { margin-bottom: 4rem; }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h2 { font-size: 1.75rem; margin: 0 0 0.5rem; font-family: var(--font-display); color: var(--text); }
.section-head p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section h2 { font-size: 1.5rem; margin: 0 0 1rem; font-family: var(--font-display); color: var(--text); }
.section h2 .accent { color: var(--accent); }
.section h3 { font-size: 1.15rem; margin: 0 0 0.5rem; font-weight: 600; }

/* Grid & cards */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(56, 189, 248, 0.3); background: var(--bg-card-hover); }
.card h3 { margin-top: 0; display: flex; align-items: center; gap: 0.6rem; }
.card .card-icon { font-size: 1.5rem; line-height: 1; opacity: 0.9; }
.card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.card p + p { margin-top: 0.75rem; }
.card a { color: var(--accent); text-decoration: none; font-weight: 500; }
.card a:hover { text-decoration: underline; }
.card-feature { padding: 2rem 1.75rem; }
.card-feature .card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.card-feature h3 { font-size: 1.2rem; }
.card-feature p { font-size: 0.975rem; }

/* Lists */
ul.links { list-style: none; padding: 0; margin: 0; }
ul.links li { margin: 0.5rem 0; }
ul.links a { color: var(--accent); text-decoration: none; }
ul.links a:hover { text-decoration: underline; }
ul.links a.external::after { content: " ↗"; font-size: 0.8em; }

/* Code & terminal */
pre, code { font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace; font-size: 0.9em; }
code { background: rgba(56, 189, 248, 0.12); padding: 0.2em 0.45em; border-radius: 5px; }
pre code { background: none; padding: 0; }
.terminal {
  background: #0a0e17;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.terminal-bar { background: var(--bg-card); padding: 0.5rem 1rem; font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--border); }
.terminal-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.terminal-bar span:first-child { background: #ef4444; }
.terminal-bar span:nth-child(2) { background: #eab308; }
.terminal-bar span:nth-child(3) { background: #22c55e; }
.terminal pre { margin: 0; padding: 1.25rem 1.5rem; background: transparent; border: none; overflow-x: auto; }
.terminal .prompt { color: var(--accent); }
.terminal .comment { color: #64748b; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #0b1220;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn:hover { background: var(--accent-dim); box-shadow: 0 0 24px var(--accent-glow); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: rgba(56, 189, 248, 0.12); box-shadow: 0 0 20px var(--accent-glow); }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1.05rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: auto;
  background: var(--bg-card);
}
.site-footer .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem; }
.site-footer h4 { font-size: 0.8rem; margin: 0 0 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0.3rem 0; }
.site-footer a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }
.site-footer a:hover { color: var(--accent); }
.site-footer .copy { grid-column: 1 / -1; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0 3.5rem;
}
.hero-badges { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.75rem; background: rgba(56, 189, 248, 0.12); color: var(--accent); border: 1px solid rgba(56, 189, 248, 0.25); border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
.hero h1 { font-family: var(--font-display); font-size: 3.25rem; font-weight: 700; margin: 0 0 0.75rem; letter-spacing: -0.03em; line-height: 1.1; }
.hero .tagline { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 1.75rem; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero .hero-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Stats strip */
.stats { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: center; margin: 2rem 0; padding: 2rem 1.5rem; background: rgba(30, 41, 59, 0.5); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.stats .stat { text-align: center; min-width: 80px; }
.stats .stat .value { font-size: 2rem; font-weight: 700; color: var(--accent); display: block; font-family: var(--font-display); letter-spacing: -0.02em; }
.stats .stat .label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }

/* Platform pills */
.platforms-strip { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; align-items: center; margin-top: 2rem; }
.platforms-strip span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-right: 0.25rem; }
.platform-pill { padding: 0.4rem 0.9rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; font-size: 0.85rem; color: var(--text-muted); }
.platform-pill:hover { border-color: var(--accent); color: var(--accent); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); counter-increment: step; }
.step::before { content: counter(step); position: absolute; top: 1rem; right: 1rem; width: 28px; height: 28px; background: var(--accent); color: var(--bg); font-size: 0.85rem; font-weight: 700; border-radius: 50%; line-height: 28px; text-align: center; }
.step h3 { margin-top: 0; padding-right: 2rem; }
.step p { margin: 0.5rem 0 0; color: var(--text-muted); font-size: 0.95rem; }

/* Social proof / quote strip */
.quote-strip { text-align: center; padding: 2.5rem 2rem; background: linear-gradient(135deg, rgba(56, 189, 248, 0.06) 0%, transparent 50%); border: 1px solid rgba(56, 189, 248, 0.15); border-radius: var(--radius-lg); margin: 3rem 0; }
.quote-strip p { font-size: 1.15rem; color: var(--text); margin: 0 0 0.75rem; font-style: italic; max-width: 640px; margin-left: auto; margin-right: auto; }
.quote-strip .attribution { font-size: 0.9rem; color: var(--text-muted); }
.quote-strip .attribution a { color: var(--accent); text-decoration: none; }

/* Table (scroll on small screens) */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0; }
table { width: 100%; border-collapse: collapse; min-width: 320px; }
th, td { padding: 0.6rem 0.75rem; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--bg-card); color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
tr:hover td { background: rgba(56, 189, 248, 0.05); }

/* FAQ */
.faq-item { margin-bottom: 1rem; }
.faq-item summary { cursor: pointer; font-weight: 600; padding: 0.5rem 0; }
.faq-item p { margin: 0.5rem 0 0; color: var(--text-muted); }

/* ========== Mobile responsive ========== */
@media (max-width: 900px) {
  .container { padding: 0 1.25rem; }
  .section-head h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .site-footer .container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero h1 { font-size: 2.75rem; }
  .platforms-strip { margin-top: 1.5rem; }
  .quote-strip { padding: 2rem 1.25rem; margin: 2.5rem 0; }
  .quote-strip p { font-size: 1.05rem; }
  .steps { grid-template-columns: 1fr; }
  .nav-dropdown-panel { right: 0; left: auto; min-width: 220px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4rem 0 1.5rem 0;
    box-shadow: -8px 0 24px rgba(0,0,0,0.3);
    z-index: 99;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.25s ease, visibility 0.25s ease;
  }
  .site-header.nav-open .site-nav {
    visibility: visible;
    transform: translateX(0);
  }
  .site-nav > a {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    min-height: 48px;
    align-items: center;
  }
  .site-nav .nav-ghost { display: none; }
  .nav-dropdown { position: static; }
  .nav-dropdown summary {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    min-height: 48px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav-dropdown summary::after { float: right; }
  .nav-dropdown-panel {
    position: static;
    min-width: 100%;
    margin-top: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-dropdown[open] .nav-dropdown-panel { max-height: 80vh; overflow-y: auto; }
  .nav-dropdown-panel a { padding: 0.6rem 1.25rem 0.6rem 2rem; font-size: 0.95rem; }
  .nav-dropdown-panel .col-group-label { padding: 0.5rem 1.25rem 0.25rem 2rem; }
  .site-header.nav-open .nav-toggle { position: fixed; right: 1rem; top: 0.75rem; z-index: 101; }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .site-header.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .site-header .container { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .site-header { padding: 0.5rem 0; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero .tagline { font-size: 1rem; line-height: 1.55; }
  .hero .btns { margin-bottom: 1.75rem; gap: 0.75rem; }
  .hero .btns .btn { padding: 0.7rem 1.25rem; min-height: 44px; }
  .hero-sub { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .stats { gap: 1.25rem; padding: 1.5rem 1rem; margin: 1.5rem 0; }
  .stats .stat .value { font-size: 1.6rem; }
  .stats .stat { min-width: 70px; }
  .platforms-strip { gap: 0.5rem; margin-top: 1.25rem; }
  .platform-pill { padding: 0.5rem 0.85rem; min-height: 44px; display: inline-flex; align-items: center; }
  .section { margin-bottom: 2.5rem; }
  .section-head h2 { font-size: 1.35rem; }
  .section-head p { font-size: 0.95rem; }
  .card-feature { padding: 1.25rem 1.25rem; }
  .card { padding: 1.25rem 1.5rem; }
  .terminal pre { padding: 1rem 1.25rem; font-size: 0.8rem; }
  .terminal .prompt { margin-right: 0.25rem; }
  main { padding: 1.5rem 0 3rem; }
  .page-title { font-size: 1.65rem; }
}

@media (max-width: 480px) {
  .site-footer .container { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero-badges { margin-bottom: 1rem; }
  .hero-badge { padding: 0.4rem 0.65rem; font-size: 0.75rem; }
  .container { padding: 0 1rem; }
  .quote-strip { padding: 1.5rem 1rem; margin: 2rem 0; }
  .quote-strip p { font-size: 1rem; }
  .step { padding: 1.25rem; }
  .step::before { width: 24px; height: 24px; font-size: 0.75rem; line-height: 24px; }
}

/* Blog long-form posts */
/* Titles: cool sky highlight vs body text */
.container-narrow .section-header > h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #bae6fd;
  margin: 0 0 0.6rem;
  text-shadow: 0 0 40px rgba(56, 189, 248, 0.12);
}
.blog-post .section-header > h1 {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
}
.container-narrow > .section-header > h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.4rem);
}

.blog-index-intro {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 52rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}
.blog-index-intro a { color: var(--accent); }
.blog-index-intro a:hover { color: #7dd3fc; text-decoration: underline; }

.blog-list { list-style: none; padding: 0; margin: 0; }
.blog-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  margin-bottom: 1rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.blog-list li:hover { background: var(--bg-card-hover); border-color: var(--accent-dim); }
.blog-list a {
  display: block;
  padding: 1.15rem 1.35rem;
  text-decoration: none;
  color: inherit;
}
.blog-list .blog-list-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #e0f2fe;
  letter-spacing: -0.02em;
}
.blog-list li:hover .blog-list-title { color: #f0f9ff; }
.blog-list .blog-list-meta {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.blog-list .blog-list-meta time { color: #788296; }
.blog-list .blog-list-dek { margin: 0.5rem 0 0; color: #94a3b8; font-size: 0.95rem; line-height: 1.55; }

.blog-post .blog-meta {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.blog-post .blog-meta time { color: #788296; }
.blog-post .blog-meta a {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0;
}
.blog-post .blog-meta a:hover { color: #7dd3fc; text-decoration: underline; }

.blog-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 1rem 1.5rem;
  margin: 0 0 2rem;
  font-size: 0.95rem;
}
.blog-toc strong { display: block; margin-bottom: 0.5rem; color: var(--text); }
.blog-toc ol { margin: 0; padding-left: 1.25rem; }
.blog-toc a { color: var(--accent); }
.blog-toc a:hover { text-decoration: underline; }
.blog-post h2 {
  margin-top: 2.25rem;
  scroll-margin-top: 5rem;
  color: #f1f5f9;
  font-weight: 600;
}
.blog-post h3 { margin-top: 1.5rem; font-size: 1.1rem; color: #cbd5e1; }
.blog-post p { margin: 0 0 1rem; color: #e2e8f0; }
.blog-post ul, .blog-post ol { margin: 0 0 1.25rem; padding-left: 1.35rem; }
.blog-post li { margin-bottom: 0.35rem; color: #e2e8f0; }
.blog-post .lead { font-size: 1.08rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .skip-link { transition: none; }
}
