    /* ─── Reset & Base ─────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      /* ── Brand palette ───────────────────────────────────── */
      --sage:         #a4a991;  /* hero / community bg — darker olive sage */
      --sage-deep:    #878d75;
      --sage-pale:    #b9bda6;
      --forest:       #364c16;  /* primary CTA, accent — deeper */
      --forest-dark:  #25340e;
      --forest-mid:   #486724;
      --forest-light: #cfd5c2;  /* tag bg, soft surfaces — muted */
      --cream:        #ddd9cb;  /* button border, surfaces */
      --cream-warm:   #e7e3d4;  /* section-alt bg */
      --charcoal:     #1f1f21;  /* primary text, dark sections — deeper */
      --charcoal-mid: #34343a;
      --charcoal-muted:#52534b;
      --rust:         #a14a2a;
      --rust-soft:    #c97250;
      --steel:        #6e7d94;
      --ochre:        #998445;

      /* ── Legacy aliases (do not remove — used throughout) ── */
      --orange:       var(--forest);
      --orange-mid:   var(--forest-dark);
      --orange-light: var(--forest-light);
      --brown:        var(--charcoal);
      --brown-mid:    var(--charcoal-mid);
      --brown-light:  #8a8b7e;
      --brown-pale:   var(--cream);
      --silver:       #8a8b7e;
      --silver-light: #d4d3c8;
      --silver-pale:  var(--cream);
      --white:        #ffffff;
      --bg-alt:       var(--cream-warm);
      --text:         var(--charcoal);
      --text-muted:   var(--charcoal-muted);
      --red-warn:     var(--rust);

      /* ── Typography ──────────────────────────────────────── */
      --font-display: 'Space Grotesk', 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
      --font-body:    'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
      --font-mono:    'Martian Mono', ui-monospace, 'Fira Mono', 'Cascadia Code', Consolas, monospace;

      --radius:       10px;
      --radius-lg:    18px;
      --shadow:       0 4px 24px rgba(37,37,39,0.08);
      --shadow-lg:    0 8px 40px rgba(37,37,39,0.12);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: #f1eee2; /* warm off-white — softens stark white between darker sage hero + section-alt blocks */
      color: var(--text);
      line-height: 1.65;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { display: block; max-width: 100%; }
    a { color: var(--forest); text-decoration: none; }
    a:hover { text-decoration: underline; }
    code, kbd, pre { font-family: var(--font-mono); }

    /* ─── Utility ──────────────────────────────────────────────────── */
    .container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
    .section    { padding: 80px 0; }
    .section-alt { background: var(--bg-alt); }
    .tag {
      display: inline-block; font-family: var(--font-mono);
      font-size: 11px; font-weight: 500;
      letter-spacing: .04em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 99px;
      background: var(--forest-light); color: var(--forest);
      margin-bottom: 14px;
    }
    .tag-navy { background: var(--cream); color: var(--charcoal); border: 1px solid var(--silver-light); }
    h1, h2, h3 { font-family: var(--font-display); color: var(--charcoal); }
    h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.05; }
    h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.15; }
    h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
    p  { color: var(--text-muted); margin-bottom: 14px; }
    p:last-child { margin-bottom: 0; }
    .lead { font-size: 1.18rem; color: var(--text-muted); line-height: 1.7; }
    .center { text-align: center; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    @media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
    @media (max-width: 700px) { .grid-4 { grid-template-columns: 1fr 1fr; } }

    /* ─── Buttons ──────────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 24px; border-radius: 6px;
      font-family: var(--font-mono);
      font-size: .9rem; font-weight: 500;
      letter-spacing: -.02em; cursor: pointer;
      transition: all .18s ease; border: 1.5px solid transparent;
      text-decoration: none !important;
    }
    .btn-primary {
      background: var(--forest); color: var(--white);
      border-color: var(--cream);
    }
    .btn-primary:hover { background: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,82,24,.28); }
    .btn-outline {
      background: transparent; color: var(--charcoal);
      border-color: var(--charcoal);
    }
    .btn-outline:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent; color: var(--charcoal);
      border-color: rgba(37,37,39,0.18);
    }
    .btn-ghost:hover { background: rgba(37,37,39,0.06); border-color: var(--charcoal); transform: translateY(-2px); }

    /* ─── Nav ──────────────────────────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      font-family: var(--font-mono);
      background: rgba(238, 237, 229, 0.92); /* cream */
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(37, 37, 39, 0.08);
      padding: 0 28px;
    }
    .nav-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo {
      display: flex; align-items: center; text-decoration: none !important;
      flex-shrink: 0;
    }
    .nav-logo img {
      height: 56px; width: auto;
      flex-shrink: 0;
    }
    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-link {
      font-family: var(--font-mono);
      font-size: .8rem; font-weight: 500; letter-spacing: -.01em;
      color: var(--charcoal-muted); padding: 8px 12px; border-radius: 6px;
      transition: color .15s, background .15s;
    }
    .nav-link:hover {
      color: var(--forest); background: rgba(59,82,24,.06);
      text-decoration: none;
    }
    .nav-link.active { color: var(--forest); }
    .nav-github {
      display: inline-flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; margin-left: 6px; border-radius: 8px;
      background: transparent; color: var(--charcoal);
      transition: background .15s, color .15s;
      text-decoration: none !important;
    }
    .nav-github:hover {
      background: rgba(37,37,39,.06); color: var(--forest);
    }
    .nav-github svg { width: 22px; height: 22px; flex-shrink: 0; }
    @media (max-width: 700px) {
      .nav-links .nav-link { display: none; }
      .nav-github { margin-left: 0; }
    }

    /* ─── Hero ─────────────────────────────────────────────────────── */
    .hero {
      background: var(--charcoal);
      padding: 80px 28px 96px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url('assets/pattern-tile.svg');
      background-repeat: repeat;
      /* pattern-tile.svg has its viewBox cropped from the brand pattern.svg
         to 120×116 — a natural seamless period (4 × 30 col-spacing,
         4 × 29 row-spacing). At 60×58 the tile lands on integer pixels
         and replicates many more times across the hero, keeping the
         small circle size the brand pattern is designed at. Original
         brand assets/pattern.svg is untouched. */
      background-size: 60px 58px;
      /* SVG fills are dark (brand spec); invert so the rings render as
         light-on-dark over the charcoal hero. Pattern SVG is unchanged. */
      filter: invert(1);
      opacity: 0.12;
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 56px; align-items: center;
      position: relative; z-index: 1;
    }
    .hero-copy { max-width: 680px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-mono);
      font-size: .78rem; font-weight: 500; letter-spacing: -.01em;
      color: var(--sage);
      padding: 6px 12px; border-radius: 99px;
      background: rgba(255,255,255,.08);
      margin-bottom: 28px;
      animation: fadeUp .6s ease both;
    }
    .hero-eyebrow::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--sage); display: inline-block;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5.4vw, 4.4rem);
      font-weight: 500; line-height: 1.05; letter-spacing: -.035em;
      color: var(--cream);
      margin-bottom: 28px;
      animation: fadeUp .6s .1s ease both;
    }
    .hero h1 .accent { color: var(--sage); }
    .hero .lead {
      font-family: var(--font-mono);
      font-size: 1rem; line-height: 1.55;
      color: rgba(238,237,229,0.70);
      letter-spacing: -.02em;
      max-width: 580px;
      margin-bottom: 36px;
      animation: fadeUp .6s .2s ease both;
    }
    /* Outline button needs reversed colors on the dark hero */
    .hero .btn-outline {
      color: var(--cream);
      border-color: rgba(238,237,229,0.45);
    }
    .hero .btn-outline:hover {
      background: var(--cream);
      color: var(--charcoal);
      border-color: var(--cream);
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }
    .hero-art {
      position: relative;
      animation: fadeUp .8s .2s ease both;
      width: 100%;
      max-width: 540px;
      aspect-ratio: 1 / 1;
      margin-left: auto;
    }
    .hero-art .hero-video {
      width: 100%; height: 100%;
      object-fit: cover;
      border-radius: 18px;
      display: block;
      background: var(--charcoal);
    }
    @media (max-width: 980px) {
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero-art { max-width: 440px; margin: 0 auto; }
    }
    @media (max-width: 600px) {
      .hero { padding: 48px 20px 64px; }
      .hero-art { max-width: 340px; }
    }

    /* ─── Stats Bar ────────────────────────────────────────────────── */
    .stats-bar {
      background: var(--charcoal);
      padding: 36px 28px;
      border-top: 1px solid rgba(255,255,255,.05);
    }
    .stats-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 2.2rem; font-weight: 500; color: var(--sage);
      letter-spacing: -.03em; line-height: 1;
    }
    .stat-label {
      font-family: var(--font-mono);
      font-size: .72rem; color: rgba(238,237,229,.55);
      text-transform: uppercase; letter-spacing: .04em; margin-top: 6px;
    }

    /* ─── Shade Banner ─────────────────────────────────────────────── */
    .shade-banner {
      background: var(--charcoal);
      border-left: 3px solid var(--rust);
      padding: 32px 36px;
      border-radius: var(--radius-lg);
      margin: 0 auto 60px;
      max-width: 1000px;
      position: relative;
      overflow: hidden;
    }
    .shade-banner::before {
      content: '⚔️';
      position: absolute; right: 28px; top: 50%;
      transform: translateY(-50%);
      font-size: 4rem; opacity: .10;
    }
    .shade-banner .shade-title {
      font-family: var(--font-mono);
      color: var(--rust-soft); font-size: .82rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px;
    }
    .shade-banner p { color: rgba(238,237,229,.72); margin: 0; font-size: .95rem; line-height: 1.65; }
    .shade-banner strong { color: var(--cream); font-weight: 600; }

    /* ─── Autonomous Banner ────────────────────────────────────────── */
    .autonomous {
      background: var(--sage);
      padding: 88px 28px;
    }
    .autonomous-inner {
      max-width: 980px; margin: 0 auto;
      text-align: center;
    }
    .autonomous-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-mono);
      font-size: .78rem; font-weight: 500; letter-spacing: -.01em;
      color: var(--charcoal);
      padding: 6px 14px; border-radius: 99px;
      background: rgba(31,31,33,0.08);
      margin-bottom: 22px;
    }
    .autonomous-eyebrow::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--forest); display: inline-block;
    }
    .autonomous h2 {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 500; letter-spacing: -.025em; line-height: 1.1;
      color: var(--charcoal);
      max-width: 820px; margin: 0 auto 22px;
    }
    .autonomous .lead {
      font-family: var(--font-mono);
      color: rgba(31,31,33,0.78);
      font-size: 1rem;
      line-height: 1.55;
      letter-spacing: -.015em;
      max-width: 740px;
      margin: 0 auto 36px;
    }
    .auto-pills {
      display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
    }
    .auto-pill {
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(31,31,33,0.16);
      padding: 10px 18px;
      border-radius: 99px;
      font-family: var(--font-mono);
      font-size: .82rem;
      color: var(--charcoal);
      letter-spacing: -.01em;
    }
    .auto-pill strong { color: var(--forest); margin-right: 8px; font-weight: 600; }

    /* ─── Capabilities (5-pillar) ──────────────────────────────────── */
    .capabilities {
      background: var(--white);
      padding: 96px 28px 80px;
    }
    .capabilities-inner { max-width: 1280px; margin: 0 auto; }
    .capabilities-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .pillar {
      background: var(--cream-warm);
      border: 1px solid rgba(37,37,39,0.06);
      border-radius: 14px;
      padding: 28px 22px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display: flex; flex-direction: column;
    }
    .pillar:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(37,37,39,.08);
      border-color: rgba(37,37,39,0.14);
    }
    .pillar-icon {
      width: 72px; height: 72px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      background: var(--sage);
      margin-bottom: 22px;
    }
    .pillar-icon img { width: 52px; height: 52px; display: block; }
    .pillar-label {
      font-family: var(--font-mono);
      font-size: .68rem; font-weight: 500; letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--charcoal-muted);
      margin-bottom: 8px;
    }
    .pillar h3 {
      font-family: var(--font-display);
      font-size: 1.15rem; font-weight: 600;
      color: var(--charcoal);
      letter-spacing: -.015em;
      margin-bottom: 10px;
    }
    .pillar p {
      font-size: .88rem; line-height: 1.55;
      color: var(--charcoal-muted);
      margin: 0;
    }
    @media (max-width: 1080px) {
      .pillar-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 720px) {
      .pillar-grid { grid-template-columns: repeat(2, 1fr); }
      .capabilities { padding: 64px 20px 56px; }
    }
    @media (max-width: 440px) {
      .pillar-grid { grid-template-columns: 1fr; }
    }

    /* ─── Cards ────────────────────────────────────────────────────── */
    .card {
      background: var(--white);
      border: 1px solid rgba(37,37,39,0.08);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(37,37,39,0.16);
    }
    .card-icon {
      width: 48px; height: 48px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 16px;
      background: var(--forest-light);
    }
    .card-icon-navy { background: var(--cream); }
    .card-icon-silver { background: rgba(122,138,163,0.18); }
    .card h3 { color: var(--charcoal); }
    .card p { font-size: .9rem; }

    /* ─── Agent Grid ───────────────────────────────────────────────── */
    .agent-pill {
      display: flex; align-items: center; gap: 10px;
      background: var(--white);
      border: 1px solid rgba(37,37,39,0.10);
      border-radius: 99px;
      padding: 9px 16px;
      font-family: var(--font-mono);
      font-size: .82rem; font-weight: 500; letter-spacing: -.02em;
      color: var(--charcoal);
      transition: all .15s;
    }
    .agent-pill:hover { border-color: var(--forest); background: var(--forest-light); }
    .agent-badge {
      width: 26px; height: 26px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .72rem; font-weight: 600; color: var(--cream);
      font-family: var(--font-mono);
    }
    .badge-green  { background: var(--forest); }
    .badge-navy   { background: var(--charcoal); }
    .badge-silver { background: var(--steel); }
    .badge-teal   { background: #486b56; }
    .badge-red    { background: var(--rust); }
    .agent-list {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center;
    }

    /* ─── Comparison Table ─────────────────────────────────────────── */
    .compare-table {
      width: 100%; border-collapse: collapse;
      font-size: .9rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .compare-table thead tr {
      background: var(--charcoal);
    }
    .compare-table thead th {
      padding: 16px 20px; color: var(--cream); font-weight: 600;
      font-family: var(--font-display); letter-spacing: -.01em;
      text-align: left;
    }
    .compare-table thead th:first-child { width: 28%; }
    .compare-table thead th.vigil-col {
      background: var(--forest);
      color: var(--cream);
    }
    .compare-table tbody tr { border-bottom: 1px solid rgba(37,37,39,0.08); }
    .compare-table tbody tr:nth-child(even) { background: var(--cream-warm); }
    .compare-table tbody tr:hover { background: var(--forest-light); }
    .compare-table td { padding: 14px 20px; vertical-align: top; }
    .compare-table td:first-child { font-weight: 600; color: var(--charcoal); font-family: var(--font-display); }
    .compare-table td.vigil-val { color: var(--forest); font-weight: 500; }
    .compare-table td.them-val { color: var(--text-muted); }
    .check  { color: var(--forest); font-weight: 700; }
    .cross  { color: var(--rust); }

    /* ─── Code Block ───────────────────────────────────────────────── */
    .code-block {
      background: var(--charcoal);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      color: rgba(238,237,229,0.88);
      font-family: var(--font-mono);
      font-size: .85rem;
      line-height: 1.9;
      overflow-x: auto;
      position: relative;
    }
    .code-block .c-green { color: #94c46e; }
    .code-block .c-blue  { color: #9fb8d8; }
    .code-block .c-grey  { color: rgba(238,237,229,0.4); }
    .code-block .c-yellow{ color: #d9b56b; }
    .copy-btn {
      position: absolute; top: 12px; right: 12px;
      background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
      border: 1px solid rgba(255,255,255,.15); border-radius: 6px;
      padding: 4px 12px; font-size: .75rem; font-weight: 600;
      cursor: pointer; transition: all .15s;
    }
    .copy-btn:hover { background: rgba(255,255,255,.2); color: white; }

    /* ─── Skill Cards ──────────────────────────────────────────────── */
    .skill-card {
      background: var(--white);
      border: 1px solid rgba(37,37,39,0.08);
      border-radius: var(--radius-lg);
      padding: 24px;
      display: flex; flex-direction: column; gap: 10px;
      transition: all .18s;
      box-shadow: var(--shadow);
    }
    .skill-card:hover { border-color: var(--forest); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .skill-header { display: flex; align-items: center; gap: 12px; }
    .skill-icon { font-size: 1.8rem; }
    .skill-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--charcoal); letter-spacing: -.01em; }
    .skill-chain {
      display: flex; align-items: center; gap: 6px;
      flex-wrap: wrap;
    }
    .skill-step {
      background: var(--cream);
      border: 1px solid rgba(37,37,39,0.08);
      border-radius: 6px;
      padding: 3px 10px;
      font-family: var(--font-mono);
      font-size: .72rem; font-weight: 500; color: var(--charcoal);
      letter-spacing: -.01em;
    }
    .skill-arrow { color: var(--forest); font-weight: 600; font-size: .8rem; }
    .skill-desc { font-size: .86rem; color: var(--text-muted); }

    /* ─── Quote / Callout ──────────────────────────────────────────── */
    .callout {
      background: var(--forest-light);
      border-left: 3px solid var(--forest);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 20px 24px;
      margin: 24px 0;
    }
    .callout p { color: var(--charcoal); font-weight: 500; margin: 0; }

    /* ─── Contributing ─────────────────────────────────────────────── */
    .contrib-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(37,37,39,0.08);
    }
    .contrib-item:last-child { border-bottom: none; }
    .contrib-num {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--charcoal); color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono);
      font-weight: 500; font-size: .85rem; flex-shrink: 0;
    }
    .contrib-body h3 { color: var(--charcoal); margin-bottom: 4px; }
    .contrib-body p  { margin: 0; font-size: .9rem; }

    /* ─── Architecture ─────────────────────────────────────────────── */
    .arch-layer {
      border-radius: var(--radius-lg);
      padding: 22px 28px;
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 20px;
    }
    .arch-layer-1 { background: var(--cream); border: 1px solid rgba(37,37,39,0.08); }
    .arch-layer-2 { background: var(--forest-light); border: 1px solid rgba(59,82,24,0.30); }
    .arch-layer-3 { background: var(--sage-pale); border: 1px solid rgba(37,37,39,0.08); }
    .arch-label { font-family: var(--font-mono); font-weight: 500; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; min-width: 100px; }
    .arch-title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--charcoal); margin-bottom: 2px; letter-spacing: -.01em; }
    .arch-desc  { font-size: .85rem; color: var(--text-muted); }

    /* ─── Community / Footer ───────────────────────────────────────── */
    .community {
      background: var(--sage);
      padding: 96px 28px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .community h2 { color: var(--charcoal); margin-bottom: 20px; }
    .community p  {
      color: rgba(37,37,39,0.72);
      font-family: var(--font-mono);
      font-size: .95rem; line-height: 1.6; letter-spacing: -.015em;
      max-width: 640px; margin: 0 auto 36px;
    }
    .community-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
    .community-link {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--forest);
      border: 1.5px solid var(--cream);
      color: var(--cream); border-radius: 6px;
      padding: 11px 22px;
      font-family: var(--font-mono);
      font-size: .88rem; font-weight: 500; letter-spacing: -.02em;
      transition: all .18s; text-decoration: none !important;
    }
    .community-link:hover { background: var(--forest-dark); transform: translateY(-2px); }
    .community-link.alt {
      background: transparent; color: var(--charcoal); border-color: var(--charcoal);
    }
    .community-link.alt:hover { background: var(--charcoal); color: var(--cream); }
    footer {
      background: var(--charcoal);
      padding: 32px 28px;
      text-align: center;
      font-family: var(--font-mono);
      font-size: .78rem; letter-spacing: -.01em;
      color: rgba(238,237,229,.55);
    }
    footer a { color: rgba(238,237,229,.75); }
    footer a:hover { color: var(--cream); }

    /* ─── Section headers ──────────────────────────────────────────── */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header h2 { color: var(--charcoal); }
    .section-header .lead { max-width: 640px; margin: 0 auto; }

    /* ─── Roadmap ──────────────────────────────────────────────────── */
    .roadmap-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 18px 0;
      border-bottom: 1px dashed var(--silver-light);
    }
    .roadmap-item:last-child { border-bottom: none; }
    .roadmap-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--forest); flex-shrink: 0; margin-top: 7px;
    }
    .roadmap-item h3 { font-size: .95rem; color: var(--charcoal); margin-bottom: 2px; }
    .roadmap-item p  { font-size: .85rem; margin: 0; }

    /* ─── vs cards ─────────────────────────────────────────────────── */
    .vs-row {
      display: flex; align-items: stretch; gap: 20px;
      margin-bottom: 20px;
    }
    .vs-col {
      flex: 1; border-radius: var(--radius-lg); padding: 24px;
    }
    .vs-vigil {
      background: var(--forest-light);
      border: 1.5px solid var(--forest);
    }
    .vs-them  {
      background: var(--cream-warm);
      border: 1px solid rgba(37,37,39,0.10);
    }
    .vs-label { font-family: var(--font-mono); font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
    .vs-label-vigil { color: var(--forest); }
    .vs-label-them  { color: var(--text-muted); }

    /* ─── Placeholders for images ──────────────────────────────────── */
    .img-placeholder {
      background: var(--cream);
      border: 2px dashed rgba(37,37,39,0.18);
      border-radius: var(--radius-lg);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px;
      color: var(--charcoal-muted);
      font-family: var(--font-mono);
      font-size: .78rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: .04em;
    }
    .img-placeholder .ph-icon { font-size: 2rem; opacity: .5; }
    .screenshot-ph {
      height: 340px;
    }
    .screenshot-ph-sm { height: 200px; }
    .screenshot-frame {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(37, 37, 39, 0.10);
      box-shadow: var(--shadow);
      background: var(--charcoal);
    }
    .screenshot-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    /* ─── Responsive tweaks ────────────────────────────────────────── */
    @media (max-width: 700px) {
      .section { padding: 56px 0; }
      .hero    { padding: 64px 20px 56px; }
      .compare-table { font-size: .78rem; }
      .compare-table td, .compare-table th { padding: 10px 12px; }
      .vs-row { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .hero-logo { width: 220px; }
    }

    /* ─── Github Star button ───────────────────────────────────────── */
    .nav-github-star {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 6px;
    border: 1px solid rgba(37,37,39,0.16);
    background: transparent;
    color: var(--charcoal);
    font-family: var(--font-mono);
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
  }
  .nav-github-star:hover {
    background: rgba(37,37,39,0.06);
    border-color: var(--charcoal);
    color: var(--charcoal);
    text-decoration: none;
  }
  .nav-github-star svg {
    color: var(--forest);
    flex-shrink: 0;
  }
  .nav-star-divider {
    color: rgba(37,37,39,0.18);
    font-weight: 400;
  }
