
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    *:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
    :root {
      --accent: #22c55e; --accent-hover: #16a34a;
      --accent-lt: rgba(34,197,94,.07); --accent-border: rgba(34,197,94,.18);
      --bg: #0a0a0b; --surface: #111113; --surface2: #18181b; --surface3: #1e1e22;
      --border: #27272a; --border2: #3f3f46;
      --text: #fafafa; --muted: #a1a1aa; --dim: #71717a;
      --warn: #f59e0b; --error: #f87171; --success: #4ade80; --info: #60a5fa;
      --radius: 12px; --radius-sm: 8px;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text); font-family: 'Source Sans 3', system-ui, sans-serif; line-height: 1.6; }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,11,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -.02em; text-decoration: none; }
    .nav-logo span { color: var(--accent); }
    .nav-links { display: flex; gap: 28px; }
    .nav-links a { font-size: 14px; color: var(--muted); transition: color .15s; }
    .nav-links a:hover, .nav-links a.active { color: var(--text); text-decoration: none; }
    .nav-ctas { display: flex; align-items: center; gap: 10px; }
    .btn-ghost { padding: 8px 16px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--muted); border: 1px solid var(--border2); background: none; text-decoration: none; transition: all .15s; }
    .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.2); text-decoration: none; }
    .btn-green { padding: 8px 18px; border-radius: 9px; font-size: 14px; font-weight: 700; color: #051408; background: var(--accent); border: none; text-decoration: none; transition: all .15s; display: inline-block; }
    .btn-green:hover { background: #1db350; text-decoration: none; }
    @media (max-width: 640px) { .nav-links { display: none; } }

    .blog-header { padding: 56px 24px 40px; max-width: 800px; margin: 0 auto; }
    .section-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
    .blog-header h1 { font-family: 'Lora', serif; font-size: clamp(28px, 5vw, 44px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 12px; }
    .blog-header p { font-size: 16px; color: var(--muted); max-width: 520px; }

    .blog-list { max-width: 800px; margin: 0 auto; padding: 0 24px 72px; display: flex; flex-direction: column; gap: 2px; }
    .post-card { border-bottom: 1px solid var(--border); }
    .post-card:first-child { border-top: 1px solid var(--border); }
    .post-card-link { display: block; padding: 28px 0; transition: opacity .15s; }
    .post-card-link:hover { opacity: .85; text-decoration: none; }
    .post-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
    .post-title { font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.3; }
    .post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; max-width: 600px; }
    .post-read-more { font-size: 13px; font-weight: 600; color: var(--accent); }

    .empty-state { padding: 64px 0; text-align: center; color: var(--muted); font-size: 15px; }
    .empty-state p { margin-bottom: 24px; }
    .empty-cta { display: inline-block; padding: 11px 24px; background: var(--accent); color: #051408; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; }
    .empty-cta:hover { background: #1db350; text-decoration: none; }

    .footer { border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; }
    .footer-links { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
    .footer-links a { font-size: 13px; color: var(--muted); transition: color .15s; }
    .footer-links a:hover { color: var(--text); text-decoration: none; }
    .footer-copy { font-size: 12px; color: var(--muted); }
  