    :root {
      --cream: #FDFBF4;
      --cream-warm: #F8F5EA;
      --paper: #F2EEDE;
      --white: #FFFFFF;
      --sage-whisper: #EEF2E8;
      --sage-light: #DCE5D0;
      --sage-rule: #C9D3B8;
      --sage: #8BA877;
      --moss: #5B7A4A;
      --forest: #2C4A1E;
      --deep-forest: #1A2E12;
      --leaf-bright: #7DB85E;
      --bark: #8B7355;
      --bark-light: #B09A7A;
      --gold: #C4A35A;
      --gold-deep: #8A6F2E;
      --text: #1C2016;
      --text-soft: #5C5E52;
      --text-faint: #8A8D7E;
      --ok: #5B7A4A;
      --warn: #B45309;
      --err: #9B2A2A;
      --hankou: #9B2A2A;

      --font-display: 'Instrument Serif', Georgia, serif;
      --font-body: 'Figtree', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --rule: 1px solid var(--sage-light);
      --rule-strong: 1px solid var(--sage-rule);
    }

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

    html {
      font-size: 16.5px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--cream);
      line-height: 1.5;
      overflow-x: hidden;
      background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 34px, rgba(140,130,110,0.035) 34px, rgba(140,130,110,0.035) 35px);
    }

    img, svg { display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    ul, ol { list-style: none; }

    ::selection { background: var(--sage-light); color: var(--deep-forest); }

    /* ========================================
       Skip link (keyboard accessibility)
       ======================================== */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      z-index: 100;
    }
    .skip-link:focus {
      position: absolute;
      left: 8px;
      top: 8px;
      width: auto;
      height: auto;
      padding: 0.6rem 0.9rem;
      background: var(--forest);
      color: var(--cream);
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 2px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    /* ========================================
       Focus-visible ring (keyboard users)
       ======================================== */
    a:focus-visible,
    button:focus-visible,
    [role="button"]:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--forest);
      outline-offset: 2px;
      border-radius: 2px;
    }
    .nav-cta:focus-visible {
      outline-color: var(--gold);
    }

    /* ========================================
       Core type
       ======================================== */
    h1 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(2.4rem, 4.6vw, 3.6rem);
      line-height: 1;
      letter-spacing: -0.01em;
      color: var(--forest);
    }
    h1 em { font-style: italic; color: var(--moss); }

    h2 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      line-height: 1.05;
      color: var(--forest);
      letter-spacing: -0.005em;
    }
    h2 em { font-style: italic; color: var(--moss); }

    h3 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: 0.01em;
      color: var(--deep-forest);
    }

    p { font-size: 1rem; line-height: 1.6; }
    code, kbd, samp, pre, .mono { font-family: var(--font-mono); }

    .label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      font-weight: 500;
    }

    .small { font-size: 0.92rem; color: var(--text-soft); }
    .tiny { font-size: 0.82rem; color: var(--text-faint); }

    .num {
      font-family: var(--font-mono);
      font-variant-numeric: tabular-nums;
      font-weight: 500;
    }

    /* ========================================
       Layout
       ======================================== */
    .wrap {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 1.4rem;
    }

    .rule      { border-top: var(--rule); }
    .rule-b    { border-bottom: var(--rule); }
    .rule-l    { border-left: var(--rule); }
    .rule-r    { border-right: var(--rule); }
    .rule-strong-b { border-bottom: var(--rule-strong); }

    /* ========================================
       Section dateline header
       ======================================== */
    .sec {
      position: relative;
      padding: 2.2rem 0 2.4rem;
      border-top: var(--rule);
    }
    .sec:first-of-type { border-top: 0; }

    .dateline {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.4rem;
      align-items: baseline;
      padding-bottom: 0.7rem;
      margin-bottom: 1.6rem;
      border-bottom: var(--rule);
    }

    .dateline .sec-tag {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 600;
      display: inline-flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .dateline .sec-tag::before {
      content: "§";
      color: var(--gold);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.05rem;
      line-height: 0;
      position: relative;
      top: 2px;
    }

    .dateline .sec-title {
      font-family: var(--font-body);
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--deep-forest);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .dateline .sec-title .dingbat {
      color: var(--sage);
      margin-right: 0.55rem;
      font-size: 0.85rem;
    }

    .dateline .sec-meta {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--text-faint);
      letter-spacing: 0.04em;
      text-align: right;
    }

    .dateline .sec-meta .dot { color: var(--sage); margin: 0 0.4rem; }
    .dateline .sec-meta b { color: var(--deep-forest); font-weight: 600; }

    /* ========================================
       Reveal (restrained)
       ======================================== */
    .reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ========================================
       Nav
       ======================================== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(253, 251, 244, 0.94);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: var(--rule);
    }

    .nav-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.4rem;
      align-items: center;
      padding: 0.55rem 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }
    .brand-mark {
      width: 22px; height: 22px;
      color: var(--forest);
    }
    .brand-name {
      font-family: var(--font-display);
      font-size: 1.32rem;
      color: var(--forest);
      line-height: 1;
    }
    .brand-est {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      color: var(--text-faint);
      text-transform: uppercase;
      border-left: var(--rule);
      padding-left: 0.6rem;
      margin-left: 0.35rem;
    }

    .nav-meta {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--text-soft);
      letter-spacing: 0.02em;
    }
    .nav-meta span b { color: var(--deep-forest); font-weight: 600; }
    .nav-meta .sep { color: var(--sage-rule); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.1rem;
    }
    .nav-links a {
      font-size: 0.82rem;
      color: var(--text-soft);
      transition: color 0.2s ease;
      letter-spacing: 0.01em;
    }
    .nav-links a:hover { color: var(--forest); }

    .nav-cta {
      font-family: var(--font-mono);
      font-size: 0.74rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.42rem 0.85rem;
      background: var(--forest);
      color: var(--cream) !important;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 2px;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .nav-cta:hover { background: var(--deep-forest); }
    .nav-cta::after { content: "→"; font-family: var(--font-body); }

    /* ========================================
       Mobile nav toggle (hamburger)
       Hidden on desktop; shown by responsive
       breakpoint below.
       ======================================== */
    .nav-toggle {
      display: none;
      position: relative;
      width: 40px;
      height: 40px;
      padding: 0;
      background: transparent;
      border: var(--rule-strong);
      border-radius: 2px;
      cursor: pointer;
      color: var(--forest);
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }
    .nav-toggle:hover {
      background: var(--sage-whisper);
      border-color: var(--moss);
    }
    .nav-toggle-bars {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 18px;
      height: 12px;
      transform: translate(-50%, -50%);
    }
    .nav-toggle-bars span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      background: var(--forest);
      transition: transform 0.25s var(--ease-out), opacity 0.2s ease, top 0.25s var(--ease-out);
    }
    .nav-toggle-bars span:nth-child(1) { top: 0; }
    .nav-toggle-bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .nav-toggle-bars span:nth-child(3) { top: 100%; transform: translateY(-100%); }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
      opacity: 0;
      transform: translateY(-50%) scaleX(0);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
    }

    /* ========================================
       Hero
       ======================================== */
    .hero {
      padding: 2.4rem 0 2.6rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.45fr 1fr;
      gap: 2.6rem;
      align-items: start;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 1rem;
    }
    .hero-eyebrow .pulse {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--leaf-bright);
      animation: pulseDot 2s ease infinite;
    }
    .hero-eyebrow .ver {
      font-family: var(--font-mono);
      color: var(--text-faint);
      font-weight: 500;
    }

    .hero h1 { margin-bottom: 0.8rem; }
    .hero-sub {
      font-size: 1.15rem;
      color: var(--text-soft);
      max-width: 44ch;
      margin-bottom: 1.4rem;
      line-height: 1.55;
    }

    .hero-bullets {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin: 1.2rem 0 1.4rem;
      border: var(--rule);
      background: var(--cream-warm);
    }
    .hero-bullet {
      padding: 0.7rem 0.9rem;
      border-right: var(--rule);
    }
    .hero-bullet:last-child { border-right: 0; }
    .hero-bullet .num {
      font-family: var(--font-display);
      font-size: 1.7rem;
      color: var(--forest);
      line-height: 1;
      display: block;
      margin-bottom: 0.15rem;
    }
    .hero-bullet .lb {
      font-family: var(--font-mono);
      font-size: 0.64rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
    }

    .hero-input {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 0;
      border: 1px solid var(--deep-forest);
      background: var(--white);
      margin-bottom: 0.6rem;
    }
    .hero-input .prefix {
      padding: 0.7rem 0.5rem 0.7rem 0.85rem;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--text-faint);
      border-right: var(--rule);
    }
    .hero-input input {
      font-family: var(--font-mono);
      font-size: 0.86rem;
      color: var(--deep-forest);
      border: 0;
      outline: 0;
      padding: 0.7rem 0.8rem;
      background: transparent;
      width: 100%;
    }
    .hero-input input::placeholder { color: var(--text-faint); }
    .hero-input .submit {
      padding: 0.7rem 1.1rem;
      background: var(--forest);
      color: var(--cream);
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
      transition: background 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .hero-input .submit:hover { background: var(--deep-forest); }

    .hero-foot {
      display: flex;
      gap: 1.1rem;
      flex-wrap: wrap;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--text-faint);
      letter-spacing: 0.02em;
    }
    .hero-foot .sep { color: var(--sage-rule); }
    .hero-foot a { color: var(--text-soft); border-bottom: 1px dotted var(--sage-rule); transition: color 0.2s ease, border-color 0.2s ease; }
    .hero-foot a:hover { color: var(--forest); border-color: var(--forest); }

    /* Infobox (right column) */
    .infobox {
      border: var(--rule-strong);
      background: var(--paper);
      padding: 0;
      position: relative;
    }

    .infobox-head {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 0.6rem;
      padding: 0.55rem 0.85rem;
      background: var(--deep-forest);
      color: var(--cream);
    }
    .infobox-head .title {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .infobox-head .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--leaf-bright);
    }
    .infobox-head .version {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--sage-light);
    }

    .wren-seal {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.9rem 0.9rem 0.8rem;
      border-bottom: var(--rule);
      background: var(--cream-warm);
    }
    .seal-box {
      width: 58px; height: 58px;
      border: 1.5px solid var(--hankou);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream);
      position: relative;
      flex-shrink: 0;
    }
    .seal-box::after {
      content: "";
      position: absolute;
      inset: 3px;
      border: 1px solid var(--hankou);
      opacity: 0.4;
    }
    .seal-box svg, .seal-box img { width: 38px; height: 38px; color: var(--hankou); }
    .seal-meta {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }
    .seal-meta .name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--deep-forest);
      line-height: 1;
    }
    .seal-meta .tag {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      color: var(--gold-deep);
      text-transform: uppercase;
      margin-top: 0.25rem;
    }
    .seal-meta .sub {
      font-size: 0.8rem;
      color: var(--text-soft);
      margin-top: 0.15rem;
    }

    .infobox-body {
      padding: 0.2rem 0.9rem;
    }
    .infobox-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      padding: 0.5rem 0;
      border-bottom: 1px dashed var(--sage-light);
      align-items: baseline;
      font-size: 0.83rem;
    }
    .infobox-row:last-child { border-bottom: 0; }
    .infobox-row .k {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-faint);
    }
    .infobox-row .v {
      font-family: var(--font-mono);
      color: var(--deep-forest);
      text-align: right;
      font-weight: 500;
    }
    .infobox-row .v .ok { color: var(--ok); }
    .infobox-row .v .g  { color: var(--gold-deep); }
    .infobox-foot {
      padding: 0.55rem 0.9rem;
      border-top: var(--rule);
      background: var(--cream-warm);
      font-family: var(--font-mono);
      font-size: 0.66rem;
      color: var(--text-faint);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: flex;
      justify-content: space-between;
    }

    /* ========================================
       Audit Catalog (SEC.01)
       ======================================== */
    .catalog {
      border: var(--rule);
      background: var(--white);
    }
    .catalog-head,
    .catalog-row {
      display: grid;
      grid-template-columns: 44px 220px 72px 1fr 42px;
      gap: 1rem;
      padding: 0.6rem 0.95rem;
      align-items: center;
      font-size: 0.83rem;
      border-bottom: var(--rule);
    }
    .catalog-head {
      background: var(--cream-warm);
      border-bottom: var(--rule-strong);
    }
    .catalog-head > div {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      font-weight: 600;
    }
    .catalog-row:last-child { border-bottom: 0; }
    .catalog-row:nth-child(odd) { background: rgba(139,179,103,0.025); }
    .catalog-row:hover {
      background: var(--sage-whisper);
    }
    .catalog-row .idx {
      font-family: var(--font-mono);
      font-size: 0.74rem;
      color: var(--gold-deep);
      font-weight: 600;
    }
    .catalog-row .cat {
      font-weight: 600;
      color: var(--deep-forest);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .catalog-row .cat .leaf {
      color: var(--sage);
      flex-shrink: 0;
    }
    .catalog-row .count {
      font-family: var(--font-mono);
      color: var(--forest);
      font-weight: 600;
      text-align: right;
    }
    .catalog-row .count .u {
      color: var(--text-faint);
      font-weight: 400;
      font-size: 0.7rem;
      margin-left: 2px;
    }
    .catalog-row .samples {
      font-family: var(--font-mono);
      font-size: 0.74rem;
      color: var(--text-soft);
      letter-spacing: 0;
      line-height: 1.5;
    }
    .catalog-row .samples .s + .s::before {
      content: " · ";
      color: var(--sage-rule);
    }
    .catalog-row .chev {
      color: var(--text-faint);
      font-family: var(--font-mono);
      font-size: 0.8rem;
      text-align: right;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .catalog-row:hover .chev {
      color: var(--forest);
      transform: translateX(2px);
    }
    .catalog-foot {
      display: grid;
      grid-template-columns: 44px 220px 72px 1fr;
      gap: 1rem;
      padding: 0.65rem 0.95rem;
      background: var(--cream-warm);
      font-family: var(--font-mono);
      font-size: 0.76rem;
      color: var(--deep-forest);
      font-weight: 600;
      letter-spacing: 0.04em;
      border-top: var(--rule-strong);
    }
    .catalog-foot .total-label {
      grid-column: 1 / span 2;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.66rem;
      color: var(--text-faint);
    }

    /* ========================================
       Coverage modules (SEC.02)
       ======================================== */
    .coverage {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: var(--rule);
    }
    .mod {
      padding: 1rem 1rem 1.1rem;
      border-right: var(--rule);
      border-bottom: var(--rule);
      background: var(--white);
      position: relative;
      transition: background 0.2s ease;
    }
    .mod:hover { background: var(--cream-warm); }
    .coverage .mod:nth-child(3n) { border-right: 0; }
    .coverage .mod:nth-last-child(-n+3) { border-bottom: 0; }

    .mod-head {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0.6rem;
      align-items: baseline;
      margin-bottom: 0.55rem;
      padding-bottom: 0.45rem;
      border-bottom: 1px dashed var(--sage-light);
    }
    .mod-head .n {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--gold-deep);
      font-weight: 600;
      letter-spacing: 0.05em;
    }
    .mod-head .t {
      font-family: var(--font-display);
      font-size: 1.15rem;
      color: var(--deep-forest);
      line-height: 1;
    }
    .mod-head .c {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-faint);
    }
    .mod-head .c b { color: var(--forest); font-weight: 600; }
    .mod p {
      font-size: 0.83rem;
      color: var(--text-soft);
      line-height: 1.5;
      margin-bottom: 0.65rem;
    }
    .mod-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }
    .mod-tag {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      color: var(--moss);
      padding: 0.13rem 0.4rem;
      border: 1px solid var(--sage-light);
      background: var(--sage-whisper);
      letter-spacing: 0.02em;
    }

    /* ========================================
       (Unused) Terminal panel styles - kept in case we want a code sample elsewhere
       ======================================== */
    .cli-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      gap: 0;
      border: var(--rule);
      background: var(--deep-forest);
      color: var(--cream);
      font-family: var(--font-mono);
      overflow: hidden;
    }

    .cli-panel {
      padding: 0;
    }
    .cli-panel + .cli-panel {
      border-left: 1px solid rgba(255,255,255,0.08);
    }

    .cli-bar {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0.6rem;
      padding: 0.45rem 0.8rem;
      background: rgba(0,0,0,0.25);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      font-size: 0.7rem;
      color: rgba(232,229,218,0.65);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      align-items: center;
    }
    .cli-bar .dots {
      display: inline-flex;
      gap: 5px;
    }
    .cli-bar .dots span {
      width: 9px; height: 9px; border-radius: 50%;
      background: rgba(255,255,255,0.14);
    }
    .cli-bar .dots span:nth-child(1) { background: #C4574F; }
    .cli-bar .dots span:nth-child(2) { background: var(--gold); }
    .cli-bar .dots span:nth-child(3) { background: var(--leaf-bright); }
    .cli-bar .f { font-weight: 500; color: rgba(232,229,218,0.82); }
    .cli-bar .r { color: rgba(232,229,218,0.5); letter-spacing: 0.08em; }

    .cli-body {
      padding: 0.85rem 1rem 1rem;
      font-size: 0.78rem;
      line-height: 1.7;
      min-height: 300px;
      color: rgba(232,229,218,0.9);
    }
    .cli-body .p { color: var(--leaf-bright); font-weight: 600; user-select: none; }
    .cli-body .c { color: var(--cream); }
    .cli-body .mut { color: rgba(232,229,218,0.55); }
    .cli-body .ok { color: var(--leaf-bright); }
    .cli-body .warn { color: var(--gold); }
    .cli-body .err { color: #E88A8A; }
    .cli-body .k { color: #9ECBE0; }
    .cli-body .n { color: var(--gold); }
    .cli-body .s { color: var(--leaf-bright); }
    .cli-body .cm { color: rgba(232,229,218,0.45); font-style: italic; }

    .cli-body .line { display: block; white-space: pre; overflow: hidden; }
    .cli-body .typed .line {
      opacity: 0;
    }
    .cli-body.run .line {
      animation: lineIn 0.2s ease forwards;
    }
    .cli-body.run .line:nth-child(1)  { animation-delay: 0.1s; }
    .cli-body.run .line:nth-child(2)  { animation-delay: 0.35s; }
    .cli-body.run .line:nth-child(3)  { animation-delay: 0.55s; }
    .cli-body.run .line:nth-child(4)  { animation-delay: 0.75s; }
    .cli-body.run .line:nth-child(5)  { animation-delay: 1.0s; }
    .cli-body.run .line:nth-child(6)  { animation-delay: 1.25s; }
    .cli-body.run .line:nth-child(7)  { animation-delay: 1.5s; }
    .cli-body.run .line:nth-child(8)  { animation-delay: 1.8s; }
    .cli-body.run .line:nth-child(9)  { animation-delay: 2.1s; }
    .cli-body.run .line:nth-child(10) { animation-delay: 2.35s; }
    .cli-body.run .line:nth-child(11) { animation-delay: 2.55s; }
    .cli-body.run .line:nth-child(12) { animation-delay: 2.75s; }
    .cli-body.run .line:nth-child(13) { animation-delay: 2.95s; }

    .cli-body .cursor::after {
      content: "▍";
      color: var(--leaf-bright);
      animation: blink 1s steps(2) infinite;
      margin-left: 2px;
    }

    @keyframes lineIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes blink {
      50% { opacity: 0; }
    }

    /* ========================================
       Monitoring & Alerts (SEC.03)
       ======================================== */
    .monitor-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .mon-panel { display: flex; flex-direction: column; }
    .mon-panel + .mon-panel { border-left: var(--rule); }

    .mon-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.55rem 0.95rem;
      background: var(--cream-warm);
      border-bottom: var(--rule);
    }
    .mon-head .mon-title {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--deep-forest);
      font-weight: 600;
    }
    .mon-head .mon-live {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ok);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .live-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--leaf-bright);
      box-shadow: 0 0 0 3px rgba(125,184,94,0.2);
      animation: pulseDot 2s ease infinite;
    }

    .mon-head.mon-head-dark {
      background: var(--deep-forest);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mon-head-dark .mon-title { color: var(--cream); }
    .mon-head-dark .mon-time {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: rgba(232,229,218,0.6);
    }

    .mon-body { padding: 0.7rem 0.95rem 0.3rem; }
    .mon-row {
      display: grid;
      grid-template-columns: 1fr auto;
      padding: 0.4rem 0;
      border-bottom: 1px dashed var(--sage-light);
      font-size: 0.85rem;
      align-items: baseline;
      gap: 1rem;
    }
    .mon-row:last-child { border-bottom: 0; }
    .mon-row .mon-k {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
    }
    .mon-row .mon-v {
      color: var(--deep-forest);
      text-align: right;
      font-weight: 500;
    }
    .mon-row .mon-v.num { font-family: var(--font-mono); color: var(--forest); }
    .mon-row .mon-v b { color: var(--forest); font-weight: 600; }

    .mon-channels {
      padding: 0.7rem 0.95rem 1rem;
      border-top: var(--rule);
      background: var(--cream-warm);
    }
    .mon-ch-title {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 0.45rem;
    }
    .mon-ch-list {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      margin-bottom: 0.1rem;
    }
    .mon-ch-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      color: var(--deep-forest);
    }
    .cbox {
      display: inline-block;
      width: 12px; height: 12px;
      border: 1.5px solid var(--sage-rule);
      background: var(--white);
      flex-shrink: 0;
      position: relative;
    }
    .cbox.on {
      background: var(--forest);
      border-color: var(--forest);
    }
    .cbox.on::after {
      content: "";
      position: absolute;
      left: 2.5px; top: -0.5px;
      width: 4px; height: 8px;
      border: solid var(--cream);
      border-width: 0 1.8px 1.8px 0;
      transform: rotate(45deg);
    }
    .mon-ch-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }
    .ch-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.28rem 0.55rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      border: 1px solid var(--sage-light);
      background: var(--white);
      color: var(--text-soft);
    }
    .ch-pill .ch-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--sage-rule);
    }
    .ch-pill.on { color: var(--forest); border-color: var(--sage-rule); background: var(--sage-whisper); }
    .ch-pill.on .ch-dot { background: var(--leaf-bright); }

    /* Slack alert mock */
    .mon-right { background: #FAFAF5; }
    .slack-msg {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 0.75rem;
      padding: 1rem 1rem 0.8rem;
      flex: 1;
    }
    .slack-avatar {
      width: 40px; height: 40px;
      background: var(--deep-forest);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream);
      border-radius: 5px;
    }
    .slack-avatar svg { width: 26px; height: 26px; }
    .slack-byline {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }
    .slack-name { font-weight: 700; color: var(--deep-forest); font-size: 0.92rem; }
    .slack-app {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      color: var(--text-faint);
      background: var(--sage-whisper);
      padding: 1px 5px;
      border-radius: 2px;
    }
    .slack-ts {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-faint);
    }
    .slack-card {
      border: var(--rule);
      border-left: 3px solid var(--err);
      background: var(--white);
      padding: 0;
    }
    .slack-card-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0.75rem;
      border-bottom: var(--rule);
      background: #FDF4F2;
    }
    .slack-sev {
      font-family: var(--font-mono);
      font-size: 0.64rem;
      letter-spacing: 0.18em;
      color: var(--err);
      font-weight: 700;
    }
    .slack-site {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--text-soft);
    }
    .slack-card-title {
      padding: 0.7rem 0.85rem 0.5rem;
      font-size: 0.96rem;
      color: var(--deep-forest);
      line-height: 1.4;
    }
    .slack-card-title code {
      font-family: var(--font-mono);
      font-size: 0.82rem;
      background: var(--sage-whisper);
      padding: 1px 6px;
      color: var(--moss);
      border-radius: 2px;
    }
    .slack-card-title b { font-weight: 700; color: var(--err); }
    .slack-card-meta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.25rem 1rem;
      padding: 0.2rem 0.85rem 0.7rem;
      font-size: 0.78rem;
    }
    .slack-card-meta > div {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      padding: 0.35rem 0;
      border-bottom: 1px dashed var(--sage-light);
    }
    .slack-card-meta > div:nth-last-child(-n+2) { border-bottom: 0; }
    .slack-card-meta .k {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
    }
    .slack-card-meta .v { color: var(--deep-forest); }
    .slack-card-meta .v code {
      font-family: var(--font-mono);
      font-size: 0.76rem;
      color: var(--gold-deep);
    }
    .slack-card-meta .v.mono { font-family: var(--font-mono); font-size: 0.78rem; color: var(--forest); }
    .slack-card-foot {
      display: flex;
      gap: 0.45rem;
      padding: 0.55rem 0.75rem;
      border-top: var(--rule);
      background: var(--cream-warm);
    }
    .slack-btn {
      font-family: var(--font-body);
      font-size: 0.78rem;
      padding: 0.4rem 0.75rem;
      border: 1px solid var(--sage-rule);
      background: var(--white);
      color: var(--deep-forest);
      font-weight: 500;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .slack-btn:hover { background: var(--sage-whisper); }
    .slack-btn.primary {
      background: var(--forest);
      color: var(--cream);
      border-color: var(--forest);
    }
    .slack-btn.primary:hover { background: var(--deep-forest); border-color: var(--deep-forest); }

    .slack-foot {
      padding: 0.55rem 1rem 0.8rem;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--text-faint);
      letter-spacing: 0.02em;
      border-top: 1px dashed var(--sage-light);
      margin-top: 0.4rem;
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .slack-foot b { color: var(--forest); font-weight: 600; }
    .slack-foot .sep { color: var(--sage-rule); }

    /* ========================================
       Dashboard preview (SEC.04)
       ======================================== */
    .dash {
      display: grid;
      grid-template-columns: 220px 1fr 260px;
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }

    .dash-cell {
      padding: 0.9rem 1rem;
    }
    .dash-cell + .dash-cell {
      border-left: var(--rule);
    }

    .dash-h {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 0.6rem;
    }

    .ring {
      position: relative;
      width: 140px;
      height: 140px;
      margin: 0 auto 0.4rem;
    }
    .ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
    .ring-bg { fill: none; stroke: var(--sage-whisper); stroke-width: 7; }
    .ring-fl {
      fill: none;
      stroke: url(#ringGrad);
      stroke-width: 7;
      stroke-linecap: round;
      stroke-dasharray: 408;
      stroke-dashoffset: 408;
      transition: stroke-dashoffset 1.8s var(--ease-out);
    }
    .ring.go .ring-fl { stroke-dashoffset: 53; }
    .ring-lbl {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .ring-lbl .big {
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--forest);
      line-height: 1;
    }
    .ring-lbl .small {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      color: var(--text-faint);
      text-transform: uppercase;
      margin-top: 0.25rem;
    }
    .ring-sub {
      text-align: center;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--text-soft);
    }
    .ring-sub .delta { color: var(--ok); font-weight: 600; }

    .spark-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.45rem;
    }
    .spark-head .t { font-weight: 600; color: var(--deep-forest); font-size: 0.88rem; }
    .spark-head .sub { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-faint); }

    .spark-wrap { position: relative; height: 98px; margin-bottom: 0.4rem; }
    .spark-wrap svg { width: 100%; height: 100%; }

    .spark-legend {
      display: flex;
      justify-content: space-between;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-faint);
      padding-top: 0.35rem;
      border-top: 1px dashed var(--sage-light);
    }
    .spark-legend b { color: var(--forest); font-weight: 600; }

    .issues-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .issue-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0.5rem;
      padding: 0.35rem 0;
      align-items: center;
      font-size: 0.78rem;
      border-bottom: 1px dashed var(--sage-light);
    }
    .issue-row:last-child { border-bottom: 0; }
    .issue-row .sev {
      width: 6px; height: 6px; border-radius: 50%;
    }
    .issue-row.err  .sev { background: var(--err); }
    .issue-row.warn .sev { background: var(--warn); }
    .issue-row.note .sev { background: var(--sage); }
    .issue-row .ttl { color: var(--deep-forest); }
    .issue-row .ct  {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--text-soft);
    }

    /* ========================================
       Workflow (SEC.05)
       ======================================== */
    .flow {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .step {
      padding: 1rem 1.1rem 1.1rem;
      border-right: var(--rule);
      position: relative;
    }
    .step:last-child { border-right: 0; }
    .step-head {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0.6rem;
      align-items: baseline;
      margin-bottom: 0.55rem;
      padding-bottom: 0.45rem;
      border-bottom: 1px dashed var(--sage-light);
    }
    .step-head .sn {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--gold-deep);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .step-head .st {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--forest);
      line-height: 1;
    }
    .step-head .sd {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--text-faint);
    }
    .step p {
      font-size: 0.85rem;
      color: var(--text-soft);
      line-height: 1.55;
    }
    .step-list {
      margin-top: 0.65rem;
      font-family: var(--font-mono);
      font-size: 0.74rem;
      color: var(--text-soft);
    }
    .step-list li {
      padding: 0.18rem 0;
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }
    .step-list li::before {
      content: "↳";
      color: var(--sage);
    }

    /* ========================================
       Reports (SEC.06) - 2-col list
       ======================================== */
    .reports {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .report-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0.9rem;
      padding: 0.7rem 1rem;
      border-right: var(--rule);
      border-bottom: var(--rule);
      align-items: start;
      transition: background 0.2s ease;
    }
    .report-row:hover { background: var(--cream-warm); }
    .reports .report-row:nth-child(2n) { border-right: 0; }
    .reports .report-row:nth-last-child(-n+2) { border-bottom: 0; }

    .report-row .rn {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--gold-deep);
      font-weight: 600;
      letter-spacing: 0.04em;
      padding-top: 1px;
    }
    .report-row .rt {
      font-weight: 600;
      color: var(--deep-forest);
      font-size: 0.9rem;
      margin-bottom: 0.15rem;
    }
    .report-row .rd {
      font-size: 0.8rem;
      color: var(--text-soft);
      line-height: 1.5;
    }
    .report-row .rf {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      color: var(--text-faint);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
      padding-top: 3px;
    }

    /* ========================================
       Changelog (SEC.07)
       ======================================== */
    .changelog {
      display: flex;
      flex-direction: column;
      border: var(--rule);
      background: var(--white);
    }
    .chrow {
      display: grid;
      grid-template-columns: 80px 90px 1fr auto;
      gap: 1rem;
      padding: 0.55rem 1rem;
      align-items: baseline;
      border-bottom: var(--rule);
      font-size: 0.86rem;
    }
    .chrow:last-child { border-bottom: 0; }
    .chrow:hover { background: var(--cream-warm); }
    .chrow .v {
      font-family: var(--font-mono);
      font-weight: 600;
      color: var(--forest);
      font-size: 0.82rem;
    }
    .chrow .d {
      font-family: var(--font-mono);
      font-size: 0.76rem;
      color: var(--text-faint);
    }
    .chrow .t { color: var(--deep-forest); }
    .chrow .tag {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      padding: 0.12rem 0.4rem;
      border: 1px solid var(--sage-light);
      color: var(--moss);
      background: var(--sage-whisper);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .chrow .tag.feat { color: var(--forest); border-color: var(--sage-rule); }
    .chrow .tag.fix  { color: var(--warn); background: #FDF6E3; border-color: #E9D08A; }
    .chrow .tag.perf { color: var(--gold-deep); background: #F6EFD7; border-color: #DDC88A; }
    .chrow-entry { align-items: flex-start; }
    .chrow-text { white-space: pre-line; }
    .chrow-title {
      color: var(--forest);
      font-weight: 600;
      border-bottom: 1px dotted var(--sage-rule);
    }
    .chrow-body {
      display: block;
      margin-top: 0.25rem;
      color: var(--text-soft);
    }
    .chrow-empty { grid-template-columns: 1fr; }

    /* ========================================
       Requirements / Install (SEC.08)
       ======================================== */
    .ri {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .ri-panel {
      padding: 1rem 1.1rem 1.1rem;
      border-right: var(--rule);
    }
    .ri-panel:last-child { border-right: 0; }

    .ri-title {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 0.7rem;
      padding-bottom: 0.45rem;
      border-bottom: 1px dashed var(--sage-light);
      display: flex;
      justify-content: space-between;
    }
    .ri-title b { color: var(--deep-forest); font-weight: 600; }

    .req-list {
      display: flex;
      flex-direction: column;
      font-family: var(--font-mono);
      font-size: 0.8rem;
    }
    .req-list li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      padding: 0.38rem 0;
      border-bottom: 1px dashed var(--sage-light);
    }
    .req-list li:last-child { border-bottom: 0; }
    .req-list .k { color: var(--deep-forest); }
    .req-list .v { color: var(--text-soft); }

    .install-block {
      background: var(--deep-forest);
      color: var(--cream);
      font-family: var(--font-mono);
      font-size: 0.78rem;
      padding: 0.85rem 1rem;
      line-height: 1.65;
    }
    .install-block .cm { color: rgba(232,229,218,0.55); font-style: italic; }
    .install-block .p { color: var(--leaf-bright); user-select: none; }
    .install-block .k { color: #9ECBE0; }

    .install-tabs {
      display: flex;
      gap: 0;
      border-bottom: var(--rule);
    }
    .install-tabs button {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.55rem 0.95rem;
      color: var(--text-faint);
      border-right: var(--rule);
      border-bottom: 2px solid transparent;
      background: var(--cream-warm);
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .install-tabs button:hover { color: var(--forest); }
    .install-tabs button.active {
      color: var(--deep-forest);
      background: var(--white);
      border-bottom-color: var(--forest);
      font-weight: 600;
    }

    /* ========================================
       Pricing (SEC.08)
       ======================================== */
    .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .plan {
      padding: 1.1rem 1.1rem 1.2rem;
      border-right: var(--rule);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .plan:last-child { border-right: 0; }
    .plan-featured {
      background: var(--cream-warm);
      border-top: 3px solid var(--forest);
      margin-top: -1px;
    }
    .plan-ribbon {
      position: absolute;
      top: 0;
      right: 0;
      font-family: var(--font-mono);
      font-size: 0.64rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream);
      background: var(--forest);
      padding: 0.22rem 0.6rem;
      font-weight: 600;
    }

    .plan-head {
      border-bottom: 1px dashed var(--sage-light);
      padding-bottom: 0.55rem;
      margin-bottom: 0.65rem;
    }
    .plan-name {
      font-family: var(--font-display);
      font-size: 1.55rem;
      color: var(--forest);
      line-height: 1;
      margin-bottom: 0.2rem;
    }
    .plan-for {
      font-size: 0.82rem;
      color: var(--text-soft);
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 0.25rem;
    }
    .plan-price .pamt {
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--deep-forest);
      line-height: 1;
    }
    .plan-price .pper {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--text-faint);
      letter-spacing: 0.06em;
    }
    .plan-note {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--gold-deep);
      letter-spacing: 0.04em;
      margin-top: 0.2rem;
      padding-bottom: 0.85rem;
      border-bottom: 1px dashed var(--sage-light);
      margin-bottom: 0.8rem;
    }

    .plan-list {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      margin-bottom: 1rem;
      flex: 1;
    }
    .plan-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.5rem;
      font-size: 0.86rem;
      color: var(--deep-forest);
      align-items: baseline;
    }
    .plan-list .tick {
      color: var(--leaf-bright);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .plan-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      font-family: var(--font-mono);
      font-size: 0.76rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.7rem 0.9rem;
      border: 1px solid var(--forest);
      color: var(--forest);
      background: transparent;
      font-weight: 600;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .plan-cta:hover {
      background: var(--forest);
      color: var(--cream);
    }
    .plan-cta.primary {
      background: var(--forest);
      color: var(--cream);
    }
    .plan-cta.primary:hover { background: var(--deep-forest); border-color: var(--deep-forest); }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border: var(--rule);
      border-top: 0;
      background: var(--paper);
    }
    .trust-item {
      padding: 0.7rem 0.9rem;
      border-right: var(--rule);
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .trust-item:last-child { border-right: 0; }
    .trust-item .trust-k {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
    }
    .trust-item .trust-v {
      font-size: 0.8rem;
      color: var(--deep-forest);
      font-weight: 500;
    }

    /* ========================================
       FAQ (SEC.09)
       ======================================== */
    .faq {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .faq-row {
      padding: 0.9rem 1.1rem 1rem;
      border-right: var(--rule);
      border-bottom: var(--rule);
    }
    .faq .faq-row:nth-child(2n)          { border-right: 0; }
    .faq .faq-row:nth-last-child(-n+2)   { border-bottom: 0; }

    .faq-row .qn {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--gold-deep);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }
    .faq-row .q {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--deep-forest);
      line-height: 1.2;
      margin-bottom: 0.4rem;
    }
    .faq-row .a {
      font-size: 0.87rem;
      color: var(--text-soft);
      line-height: 1.55;
    }
    .faq-row .a code {
      font-size: 0.78rem;
      background: var(--sage-whisper);
      padding: 1px 5px;
      color: var(--moss);
    }

    /* ========================================
       Footer
       ======================================== */
    .foot {
      border-top: var(--rule-strong);
      background: var(--paper);
      padding: 1.8rem 0 1.2rem;
      margin-top: 1rem;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 1.6fr repeat(4, 1fr);
      gap: 1.6rem;
      margin-bottom: 1.6rem;
      align-items: start;
    }
    .foot-brand {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .foot-brand .line1 {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .foot-brand .line1 svg { width: 20px; height: 20px; color: var(--forest); }
    .foot-brand .line1 span {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--forest);
    }
    .foot-brand p {
      font-size: 0.82rem;
      color: var(--text-soft);
      max-width: 30ch;
      line-height: 1.5;
    }
    .foot-brand .stamp {
      margin-top: 0.3rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-mono);
      font-size: 0.64rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--hankou);
      border: 1px solid var(--hankou);
      padding: 0.22rem 0.5rem;
      align-self: flex-start;
    }
    .foot-col .h {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      font-weight: 600;
      margin-bottom: 0.55rem;
      padding-bottom: 0.35rem;
      border-bottom: 1px dashed var(--sage-light);
    }
    .foot-col ul { display: flex; flex-direction: column; gap: 0.3rem; }
    .foot-col a {
      font-size: 0.82rem;
      color: var(--text-soft);
      transition: color 0.2s ease;
    }
    .foot-col a:hover { color: var(--forest); }

    .colophon {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      align-items: center;
      padding-top: 1rem;
      border-top: var(--rule);
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--text-faint);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .colophon .c { text-align: center; color: var(--text-soft); }
    .colophon .r { text-align: right; }
    .colophon .sep { color: var(--sage-rule); margin: 0 0.4rem; }

    /* ========================================
       Responsive
       ======================================== */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; }
      .catalog-head,
      .catalog-row { grid-template-columns: 38px 180px 64px 1fr 34px; }
      .coverage,
      .reports,
      .faq { grid-template-columns: repeat(2, 1fr); }
      .coverage .mod:nth-child(3n) { border-right: var(--rule); }
      .coverage .mod:nth-child(2n) { border-right: 0; }
      .coverage .mod:nth-last-child(-n+3) { border-bottom: var(--rule); }
      .coverage .mod:nth-last-child(-n+2) { border-bottom: 0; }
      .flow { grid-template-columns: 1fr; }
      .flow .step { border-right: 0; border-bottom: var(--rule); }
      .flow .step:last-child { border-bottom: 0; }
      .dash { grid-template-columns: 1fr; }
      .dash-cell + .dash-cell { border-left: 0; border-top: var(--rule); }
      .ri { grid-template-columns: 1fr; }
      .ri-panel { border-right: 0; border-bottom: var(--rule); }
      .ri-panel:last-child { border-bottom: 0; }
      .pricing { grid-template-columns: 1fr; }
      .plan { border-right: 0; border-bottom: var(--rule); }
      .plan:last-child { border-bottom: 0; }
      .trust-strip { grid-template-columns: repeat(2, 1fr); }
      .trust-item { border-bottom: var(--rule); }
      .trust-item:nth-child(2n) { border-right: 0; }
      .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
      .foot-grid { grid-template-columns: repeat(4, 1fr); }
      .foot-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 720px) {
      html { font-size: 15.5px; }
      .nav-meta { display: none; }
      .nav-row {
        grid-template-columns: auto 1fr auto;
      }
      .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 1rem;
        background: rgba(253, 251, 244, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: var(--rule);
        border-bottom: var(--rule-strong);
        box-shadow: 0 18px 30px -20px rgba(28, 32, 22, 0.25);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s var(--ease-out),
                    opacity 0.2s ease,
                    visibility 0s linear 0.35s,
                    padding 0.35s var(--ease-out);
      }
      .nav.nav-open .nav-links {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        padding: 0.4rem 1rem 1rem;
        transition: max-height 0.4s var(--ease-out),
                    opacity 0.25s ease 0.05s,
                    visibility 0s linear 0s,
                    padding 0.35s var(--ease-out);
      }
      .nav-links li {
        border-bottom: 1px dashed var(--sage-light);
      }
      .nav-links li:last-child { border-bottom: 0; }
      .nav-links a {
        display: block;
        padding: 0.85rem 0.2rem;
        font-size: 0.92rem;
      }
      .nav-links .nav-cta {
        margin-top: 0.6rem;
        text-align: center;
        justify-content: center;
        padding: 0.7rem 0.9rem;
      }
      .dateline { grid-template-columns: 1fr; gap: 0.3rem; }
      .dateline .sec-meta { text-align: left; }
      .hero-bullets { grid-template-columns: 1fr; }
      .hero-bullet { border-right: 0; border-bottom: var(--rule); }
      .hero-bullet:last-child { border-bottom: 0; }
      .catalog-head,
      .catalog-row,
      .catalog-foot { grid-template-columns: 30px 1fr 60px; }
      .catalog-head .col-samples,
      .catalog-head .col-chev,
      .catalog-row .samples,
      .catalog-row .chev { display: none; }
      .catalog-foot .tcol-samples { display: none; }
      .coverage,
      .reports,
      .faq { grid-template-columns: 1fr; }
      .coverage .mod,
      .reports .report-row,
      .faq .faq-row { border-right: 0; }
      .cli-grid { grid-template-columns: 1fr; }
      .cli-panel + .cli-panel { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
      .monitor-grid { grid-template-columns: 1fr; }
      .mon-panel + .mon-panel { border-left: 0; border-top: var(--rule); }
      .slack-card-meta { grid-template-columns: 1fr; }
      .slack-card-meta > div { border-bottom: 1px dashed var(--sage-light); }
      .slack-card-meta > div:last-child { border-bottom: 0; }
      .chrow { grid-template-columns: 70px 78px 1fr; }
      .chrow .tag { display: none; }
      .trust-strip { grid-template-columns: 1fr; }
      .trust-item { border-right: 0; border-bottom: var(--rule); }
      .trust-item:last-child { border-bottom: 0; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .foot-brand { grid-column: 1 / -1; }
      .colophon { grid-template-columns: 1fr; }
      .colophon .r, .colophon .c { text-align: left; }
    }

    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.92); }
    }

    /* ========================================
       Reduced motion: kill all transitions and
       animations, keep scroll deterministic.
       ======================================== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; }
    }

    /* ========================================
       M2 page additions
       ======================================== */

    /* Generic page hero (for /features, /catalog, /compare/*, etc.) */
    .page-hero { padding: 2.4rem 0 1.8rem; border-top: 0; }
    .page-hero .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 0.9rem;
    }
    .page-hero .eyebrow .pulse {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--leaf-bright);
      animation: pulseDot 2s ease infinite;
    }
    .page-hero h1 { margin-bottom: 0.7rem; }
    .page-hero .lede {
      font-size: 1.15rem;
      color: var(--text-soft);
      max-width: 62ch;
      line-height: 1.55;
      margin-bottom: 1.2rem;
    }
    .page-hero .lede em { color: var(--moss); font-style: italic; }

    /* Compare table */
    .compare-table {
      border: var(--rule);
      background: var(--white);
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
    }
    .compare-table thead th {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
      padding: 0.7rem 0.9rem;
      border-bottom: var(--rule-strong);
      text-align: left;
      background: var(--cream-warm);
    }
    .compare-table thead th.col-us { color: var(--forest); }
    .compare-table thead th.col-them { color: var(--gold-deep); }
    .compare-table tbody td {
      padding: 0.55rem 0.9rem;
      border-bottom: var(--rule);
      vertical-align: top;
    }
    .compare-table tbody tr:last-child td { border-bottom: 0; }
    .compare-table tbody tr:hover { background: var(--cream-warm); }
    .compare-table .cap { color: var(--deep-forest); font-weight: 500; }
    .compare-table .cap-d { color: var(--text-soft); font-size: 0.78rem; line-height: 1.45; margin-top: 0.15rem; }
    .compare-table .yes { color: var(--forest); font-weight: 600; }
    .compare-table .no  { color: var(--text-faint); }
    .compare-table .partial { color: var(--gold-deep); font-weight: 500; }
    .compare-table td.col-us, .compare-table td.col-them {
      width: 18%;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      white-space: normal;
    }

    /* Section-card grid (used on /security, /features differentiators) */
    .sec-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .sec-card {
      padding: 1rem 1.1rem 1.1rem;
      border-right: var(--rule);
      border-bottom: var(--rule);
    }
    .sec-cards > .sec-card:nth-child(2n)        { border-right: 0; }
    .sec-cards > .sec-card:nth-last-child(-n+2) { border-bottom: 0; }
    .sec-card .sc-tag {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .sec-card .sc-title {
      font-family: var(--font-display);
      font-size: 1.18rem;
      color: var(--deep-forest);
      line-height: 1.2;
      margin-bottom: 0.45rem;
    }
    .sec-card .sc-body { font-size: 0.88rem; color: var(--text-soft); line-height: 1.55; }
    .sec-card .sc-body ul { margin-top: 0.5rem; padding-left: 0; }
    .sec-card .sc-body ul li {
      padding: 0.22rem 0 0.22rem 1.1rem;
      position: relative;
      color: var(--deep-forest);
      font-size: 0.84rem;
      line-height: 1.5;
    }
    .sec-card .sc-body ul li::before {
      content: "▸";
      position: absolute;
      left: 0;
      top: 0.22rem;
      color: var(--sage);
      font-size: 0.7rem;
    }

    /* Integrations strip (logos as text labels) */
    .integrations {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--paper);
    }
    .integrations .ig {
      padding: 0.9rem;
      border-right: var(--rule);
      text-align: center;
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--forest);
      letter-spacing: 0.01em;
    }
    .integrations .ig:last-child { border-right: 0; }
    .integrations .ig small {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      color: var(--text-faint);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    /* CTA strip */
    .cta-strip {
      border: var(--rule);
      background: var(--cream-warm);
      padding: 1.2rem 1.4rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      align-items: center;
      justify-content: space-between;
    }
    .cta-strip .ct-l { font-family: var(--font-display); font-size: 1.4rem; color: var(--deep-forest); line-height: 1.15; }
    .cta-strip .ct-l small { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase; margin-top: 0.3rem; }
    .cta-strip .ct-btn {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.65rem 1.1rem;
      background: var(--forest);
      color: var(--cream);
      border-radius: 2px;
      transition: background 0.2s ease;
    }
    .cta-strip .ct-btn:hover { background: var(--deep-forest); }

    /* Catalog page additions */
    .category-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .category-nav a {
      padding: 0.45rem 0.7rem;
      font-family: var(--font-mono);
      font-size: 0.74rem;
      color: var(--moss);
      border-right: var(--rule);
      border-bottom: var(--rule);
      transition: background 0.2s ease, color 0.2s ease;
    }
    .category-nav a:hover { background: var(--sage-whisper); color: var(--forest); }

    .cat-block { margin-top: 1.6rem; }
    .cat-block .cat-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding-bottom: 0.4rem;
      border-bottom: var(--rule-strong);
      margin-bottom: 0.6rem;
    }
    .cat-block .cat-head h2 {
      font-family: var(--font-display);
      font-size: 1.45rem;
      color: var(--forest);
    }
    .cat-block .cat-head .cat-meta {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
    }
    .check-list {
      border: var(--rule);
      background: var(--white);
    }
    .check-row {
      display: grid;
      grid-template-columns: 220px 1fr auto;
      gap: 1rem;
      padding: 0.6rem 1rem;
      border-bottom: var(--rule);
      align-items: baseline;
      transition: background 0.2s ease;
    }
    .check-row:last-child { border-bottom: 0; }
    .check-row .cid {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--gold-deep);
      font-weight: 500;
    }
    .check-row .ctitle { color: var(--deep-forest); font-size: 0.9rem; }
    .check-row .cdesc { display: block; color: var(--text-soft); font-size: 0.8rem; margin-top: 0.15rem; line-height: 1.5; }
    .check-row .csev {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.16rem 0.5rem;
      border: 1px solid var(--sage-light);
      color: var(--moss);
      background: var(--sage-whisper);
    }
    .check-row .csev.error { color: var(--err); background: #FBEDED; border-color: #E5B5B5; }
    .check-row .csev.warn  { color: var(--warn); background: #FDF6E3; border-color: #E9D08A; }

    /* Status page */
    .status-strip {
      border: var(--rule);
      background: var(--paper);
      padding: 0.9rem 1.1rem;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin-bottom: 1.2rem;
    }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.32rem 0.7rem;
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 0.74rem;
      letter-spacing: 0.06em;
      font-weight: 600;
      background: var(--sage-whisper);
      color: var(--moss);
      border: 1px solid var(--sage-light);
    }
    .status-pill::before {
      content: "";
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--ok);
    }
    .status-pill.degraded { color: var(--gold-deep); background: #F6EFD7; border-color: #DDC88A; }
    .status-pill.degraded::before { background: var(--gold); }
    .status-pill.down { color: var(--err); background: #FBEDED; border-color: #E5B5B5; }
    .status-pill.down::before { background: var(--err); }
    .status-pill.unknown { color: var(--text-faint); background: var(--cream-warm); border-color: var(--sage-light); }
    .status-pill.unknown::before { background: var(--text-faint); }

    .status-meta {
      font-family: var(--font-mono);
      font-size: 0.74rem;
      color: var(--text-faint);
    }
    .status-meta b { color: var(--deep-forest); font-weight: 600; }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .status-card {
      padding: 1rem 1.1rem 1.1rem;
      border-right: var(--rule);
      border-bottom: var(--rule);
    }
    .status-grid > .status-card:nth-child(2n)        { border-right: 0; }
    .status-grid > .status-card:nth-last-child(-n+2) { border-bottom: 0; }
    .status-card .stk { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.3rem; }
    .status-card .stn { font-family: var(--font-display); font-size: 1.2rem; color: var(--deep-forest); margin-bottom: 0.5rem; }
    .status-card .std { font-size: 0.85rem; color: var(--text-soft); line-height: 1.55; }

    /* Contact form */
    .contact-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--white);
      margin-bottom: 1.4rem;
    }
    .contact-option {
      padding: 1rem 1.1rem 1.1rem;
      border-right: var(--rule);
      transition: background 0.2s ease;
    }
    .contact-option:last-child { border-right: 0; }
    .contact-option:hover { background: var(--cream-warm); }
    .contact-option .co-tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.3rem; }
    .contact-option .co-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--deep-forest); margin-bottom: 0.45rem; }
    .contact-option .co-body { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.75rem; line-height: 1.55; }
    .contact-option .co-btn {
      font-family: var(--font-mono);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.45rem 0.9rem;
      background: var(--forest);
      color: var(--cream) !important;
      border-radius: 2px;
      display: inline-block;
    }
    .contact-option .co-btn:hover { background: var(--deep-forest); }
    .contact-option .co-btn.outline { background: transparent; color: var(--forest) !important; border: 1px solid var(--forest); }
    .contact-option .co-btn.outline:hover { background: var(--forest); color: var(--cream) !important; }

    .contact-form {
      border: var(--rule);
      background: var(--white);
      padding: 1.2rem 1.3rem 1.3rem;
      display: grid;
      gap: 0.85rem;
    }
    .contact-form .field { display: grid; gap: 0.3rem; }
    .contact-form .field.cols { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
    .contact-form label {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
      font-weight: 600;
    }
    .contact-form input,
    .contact-form textarea {
      font-family: var(--font-body);
      font-size: 0.92rem;
      padding: 0.55rem 0.7rem;
      border: 1px solid var(--sage-rule);
      background: var(--cream);
      color: var(--deep-forest);
      border-radius: 2px;
      outline: none;
    }
    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--forest); }
    .contact-form textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
    .contact-form .submit-row { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; margin-top: 0.4rem; }
    .contact-form button[type="submit"] {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.6rem 1rem;
      background: var(--forest);
      color: var(--cream);
      border-radius: 2px;
    }
    .contact-form button[type="submit"]:hover { background: var(--deep-forest); }
    .contact-form .form-note { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-faint); }
    .contact-form .form-toast {
      display: none;
      padding: 0.55rem 0.8rem;
      border: 1px solid var(--sage-light);
      background: var(--sage-whisper);
      color: var(--forest);
      font-family: var(--font-mono);
      font-size: 0.78rem;
    }
    .contact-form.sent .form-toast { display: block; }
    .contact-form .form-error {
      display: none;
      padding: 0.55rem 0.8rem;
      border: 1px solid #E5B5B5;
      background: #FBEDED;
      color: var(--err);
      font-family: var(--font-mono);
      font-size: 0.78rem;
    }
    .contact-form.failed .form-error { display: block; }

    /* Team grid (about page) */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: var(--rule);
      background: var(--white);
    }
    .team-card {
      padding: 1rem 1rem 1.1rem;
      border-right: var(--rule);
      text-align: center;
    }
    .team-card:last-child { border-right: 0; }
    .team-card .photo {
      width: 110px;
      height: 110px;
      margin: 0 auto 0.7rem;
      border-radius: 999px;
      background: var(--sage-whisper);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--sage-rule);
    }
    .team-card .photo svg { width: 60px; height: 60px; color: var(--moss); }
    .team-card .role { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
    .team-card .name { font-family: var(--font-display); font-size: 1.1rem; color: var(--deep-forest); margin-top: 0.25rem; }

    /* Legal page */
    .legal-page {
      max-width: 760px;
      margin: 0 auto;
      padding: 2.4rem 0 2.6rem;
    }
    .legal-page h1 {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.4vw, 2.6rem);
      color: var(--forest);
      line-height: 1.1;
      margin-bottom: 0.4rem;
    }
    .legal-page .legal-meta {
      font-family: var(--font-mono);
      font-size: 0.74rem;
      letter-spacing: 0.06em;
      color: var(--text-faint);
      padding-bottom: 1rem;
      border-bottom: var(--rule);
      margin-bottom: 1.6rem;
    }
    .legal-page .pending-notice {
      border: 1px dashed var(--sage-rule);
      background: var(--sage-whisper);
      color: var(--moss);
      padding: 0.7rem 0.9rem;
      font-size: 0.86rem;
      margin-bottom: 1.6rem;
      font-family: var(--font-mono);
    }
    .legal-page section { margin-bottom: 1.6rem; }
    .legal-page h2 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--forest);
      margin-bottom: 0.5rem;
      padding-bottom: 0.3rem;
      border-bottom: var(--rule);
    }
    .legal-page h3 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.98rem;
      color: var(--deep-forest);
      margin: 1rem 0 0.4rem;
    }
    .legal-page p { color: var(--text-soft); margin-bottom: 0.6rem; line-height: 1.65; }
    .legal-page ul, .legal-page ol {
      color: var(--text-soft);
      margin-bottom: 0.7rem;
      padding-left: 1.2rem;
      list-style: disc;
    }
    .legal-page li { line-height: 1.65; margin-bottom: 0.3rem; }
    .legal-page a {
      color: var(--forest);
      border-bottom: 1px dotted var(--sage-rule);
    }
    .legal-page a:hover { border-color: var(--forest); }

    /* Mobile breakpoints for M2 surfaces */
    @media (max-width: 720px) {
      .compare-table { font-size: 0.82rem; }
      .compare-table thead th { font-size: 0.6rem; padding: 0.5rem 0.55rem; }
      .compare-table tbody td { padding: 0.5rem 0.55rem; }
      .compare-table td.col-us, .compare-table td.col-them { width: auto; }
      .sec-cards { grid-template-columns: 1fr; }
      .sec-cards > .sec-card { border-right: 0; }
      .integrations { grid-template-columns: repeat(2, 1fr); }
      .integrations .ig { border-bottom: var(--rule); }
      .integrations .ig:nth-child(2n) { border-right: 0; }
      .integrations .ig:nth-last-child(-n+2) { border-bottom: 0; }
      .check-row { grid-template-columns: 1fr; }
      .check-row .csev { justify-self: start; }
      .status-grid { grid-template-columns: 1fr; }
      .status-grid > .status-card { border-right: 0; }
      .contact-options { grid-template-columns: 1fr; }
      .contact-option { border-right: 0; border-bottom: var(--rule); }
      .contact-option:last-child { border-bottom: 0; }
      .contact-form .field.cols { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .team-card { border-bottom: var(--rule); }
      .team-card:nth-child(2n) { border-right: 0; }
      .team-card:nth-last-child(-n+2) { border-bottom: 0; }
      .cta-strip { flex-direction: column; align-items: flex-start; }
    }

    /* Docs layout - left sidebar, content right */
    .docs-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 2rem;
      align-items: start;
    }
    .docs-sidebar {
      position: sticky;
      top: 1rem;
      border-right: var(--rule);
      padding-right: 1rem;
      max-height: calc(100vh - 2rem);
      overflow: auto;
    }
    .docs-group { margin-bottom: 1.2rem; }
    .docs-group-h {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 0.4rem;
      padding-bottom: 0.3rem;
      border-bottom: var(--rule);
    }
    .docs-group ul { list-style: none; padding: 0; margin: 0; }
    .docs-group li { padding: 0.2rem 0; }
    .docs-group a {
      display: block;
      font-size: 0.86rem;
      color: var(--text-soft);
      padding: 0.3rem 0.5rem;
      border-left: 2px solid transparent;
      text-decoration: none;
    }
    .docs-group a:hover { color: var(--forest); border-left-color: var(--sage-rule); }
    .docs-group a.active {
      color: var(--forest);
      font-weight: 600;
      border-left-color: var(--forest);
      background: var(--sage-whisper);
    }
    .docs-body { min-width: 0; }
    @media (max-width: 720px) {
      .docs-layout { grid-template-columns: 1fr; }
      .docs-sidebar {
        position: static;
        border-right: 0;
        padding-right: 0;
        border-bottom: var(--rule);
        padding-bottom: 1rem;
        max-height: none;
      }
    }

    /* ========================================
       Lead-magnet form (M4)
       ======================================== */
    .lead-magnet-form {
      display: block;
      max-width: 540px;
      margin: 1rem 0 0;
      padding: 1.4rem;
      border: 1px solid var(--deep-forest);
      background: var(--white);
    }
    .lead-magnet-form .lm-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin: 0.6rem 0 0.3rem;
    }
    .lead-magnet-form .lm-label:first-child { margin-top: 0; }
    .lead-magnet-form .lm-required {
      color: var(--err);
      font-size: 0.62rem;
      margin-left: 0.3rem;
    }
    .lead-magnet-form .lm-optional {
      color: var(--text-faint);
      font-size: 0.62rem;
      margin-left: 0.3rem;
    }
    .lead-magnet-form input[type="email"],
    .lead-magnet-form input[type="text"] {
      display: block;
      width: 100%;
      font-family: var(--font-mono);
      font-size: 0.86rem;
      color: var(--deep-forest);
      padding: 0.6rem 0.8rem;
      border: 1px solid var(--sage-rule);
      background: var(--cream-warm);
      outline: 0;
    }
    .lead-magnet-form input[type="email"]:focus,
    .lead-magnet-form input[type="text"]:focus {
      border-color: var(--forest);
      background: var(--white);
    }
    .lead-magnet-form .lm-submit {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.75rem 1.2rem;
      background: var(--forest);
      color: var(--cream);
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
      border: 0;
      transition: background 0.2s ease;
    }
    .lead-magnet-form .lm-submit:hover { background: var(--deep-forest); }
    .lead-magnet-form .lm-submit:disabled {
      background: var(--text-faint);
      cursor: default;
    }
    .lead-magnet-form .lm-note {
      font-size: 0.78rem;
      color: var(--text-soft);
      margin-top: 0.9rem;
      line-height: 1.55;
    }

    /* ====================================================
       Pricing calculator (sec-pricing-calculator)
       ==================================================== */
    .pricing-calc {
      border: 1px solid var(--rule);
      background: var(--white);
      padding: 1.5rem;
      border-radius: 4px;
    }
    .pricing-calc-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    @media (min-width: 760px) {
      .pricing-calc-grid {
        grid-template-columns: 1.2fr 1fr;
      }
    }
    .pricing-calc-controls {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .pricing-calc-label {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-family: var(--font-mono);
      font-size: 0.76rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--forest);
      margin-top: 0.6rem;
    }
    .pricing-calc-out {
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      text-transform: none;
      letter-spacing: 0;
    }
    .pricing-calc-slider {
      width: 100%;
      accent-color: var(--forest);
    }
    .pricing-calc-ticks {
      display: flex;
      justify-content: space-between;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-soft);
      margin-top: -0.2rem;
    }
    .pricing-calc-checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-top: 0.8rem;
      padding-top: 0.8rem;
      border-top: 1px solid var(--rule);
    }
    .pricing-calc-checkbox {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.9rem;
      color: var(--ink);
    }
    .pricing-calc-checkbox input {
      width: 1rem;
      height: 1rem;
      accent-color: var(--forest);
    }
    .pricing-calc-summary {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 4px;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .pricing-calc-summary-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 0.9rem;
    }
    .pricing-calc-summary-k {
      color: var(--text-soft);
    }
    .pricing-calc-summary-v {
      font-family: var(--font-mono);
      font-variant-numeric: tabular-nums;
      color: var(--ink);
    }
    .pricing-calc-summary-total .pricing-calc-summary-k {
      color: var(--forest);
      font-weight: 600;
    }
    .pricing-calc-summary-total .pricing-calc-summary-v {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--forest);
      font-weight: 500;
    }
    .pricing-calc-hr {
      border: 0;
      border-top: 1px solid var(--rule);
      margin: 0.4rem 0;
    }
    .pricing-calc-packs {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--rule);
    }
    .pricing-calc-packs-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
    }
    .pricing-calc-packs-table th,
    .pricing-calc-packs-table td {
      text-align: left;
      padding: 0.5rem 0.8rem;
      border-bottom: 1px solid var(--rule);
    }
    .pricing-calc-packs-table th {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--forest);
    }
    .pricing-calc-packs-table td em {
      color: var(--text-soft);
      font-style: normal;
      font-size: 0.82rem;
    }

