:root {
      --ink: #000000;
      --paper: #ffffff;
      --blue-deep: #3d5575;
      --blue: #4a6c8f;
      --signal: #ff0000;
      --mist: #eef3f8;
      --line: rgba(0, 0, 0, 0.16);
      --muted: rgba(0, 0, 0, 0.62);
      --measure: 1680px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      color-scheme: light;
      font-size: 16px;
    }

    body {
      margin: 0;
      background:
        linear-gradient(90deg, rgba(61, 85, 117, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(61, 85, 117, 0.07) 1px, transparent 1px),
        var(--paper);
      background-size: 42px 42px;
      color: var(--ink);
      font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Liberation Mono", Menlo, Consolas, monospace;
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: var(--blue-deep);
      text-decoration: underline;
      text-decoration-color: var(--signal);
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
    }

    .site {
      min-height: 100vh;
    }

    .wrap {
      width: min(calc(100% - clamp(32px, 5vw, 96px)), var(--measure));
      margin: 0 auto;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: 16px;
      padding: 8px 10px;
      transform: translateY(-140%);
      background: var(--ink);
      color: var(--paper);
      z-index: 20;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .site-header {
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: baseline;
      gap: 10px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: none;
      color: var(--ink);
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 2px solid var(--ink);
      background: var(--paper);
      color: var(--signal);
      font-weight: 900;
      line-height: 1;
      font-size: 0.76rem;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 8px 18px;
      font-size: 0.9rem;
      text-transform: lowercase;
    }

    .hero {
      padding: clamp(48px, 8vw, 104px) 0 44px;
      border-bottom: 2px solid var(--ink);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.65fr);
      gap: clamp(36px, 5vw, 96px);
      align-items: end;
    }

    .kicker {
      margin: 0 0 18px;
      color: var(--blue-deep);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 1120px;
      margin-bottom: 24px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3.25rem, 6.4vw, 8.25rem);
      font-weight: 700;
      letter-spacing: 0;
      line-height: 0.96;
    }

    .lede {
      max-width: 920px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .signal-panel {
      border-left: 4px solid var(--signal);
      padding-left: 20px;
    }

    .signal-panel p {
      margin-bottom: 18px;
      color: var(--muted);
    }

    .tiny-label {
      display: block;
      margin-bottom: 8px;
      color: var(--blue);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .status-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .status-list li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 9px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.84rem;
    }

    .status-list strong {
      color: var(--ink);
      font-weight: 800;
    }

    .content-band {
      padding: 38px 0 28px;
    }

    .feature {
      display: grid;
      grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
      gap: clamp(24px, 6vw, 64px);
      align-items: start;
      margin-bottom: 34px;
      border-bottom: 1px solid var(--line);
      padding-bottom: 34px;
    }

    .feature-card {
      min-height: clamp(340px, 32vw, 480px);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 22px;
      border: 2px solid var(--ink);
      background: var(--ink);
      color: var(--paper);
      padding: clamp(22px, 4vw, 34px);
    }

    .feature-card .tag {
      border-color: rgba(255, 255, 255, 0.42);
      color: var(--paper);
    }

    .feature-card h2 {
      margin-bottom: 14px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2rem, 5vw, 4.6rem);
      line-height: 0.96;
    }

    .feature-card p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.72);
    }

    .post-list {
      display: grid;
      gap: 0;
      border-top: 1px solid var(--line);
    }

    .post {
      display: grid;
      grid-template-columns: 148px minmax(0, 1fr) minmax(130px, auto);
      gap: clamp(18px, 3vw, 42px);
      align-items: baseline;
      padding: 21px 0;
      border-bottom: 1px solid var(--line);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 26px;
      border: 1px solid var(--blue);
      padding: 4px 8px;
      color: var(--blue-deep);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .tag.compliance {
      border-color: var(--signal);
      color: var(--signal);
    }

    .tag.academic {
      border-color: var(--ink);
      color: var(--ink);
    }

    .post h2,
    .post h3 {
      margin-bottom: 3px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.35rem, 3vw, 2rem);
      line-height: 1.08;
    }

    .post p {
      max-width: 720px;
      margin-bottom: 0;
      color: var(--muted);
    }

    .meta {
      white-space: nowrap;
      color: var(--muted);
      font-size: 0.78rem;
      text-align: right;
    }

    .channels {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: 44px;
      background: var(--line);
      border: 1px solid var(--line);
    }

    .channel {
      min-height: 220px;
      background: var(--paper);
      padding: 24px;
    }

    .channel h2 {
      margin-bottom: 12px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.8rem;
      line-height: 1;
    }

    .channel p {
      margin-bottom: 24px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .channel-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .channel:nth-child(1) {
      border-top: 4px solid var(--signal);
    }

    .channel:nth-child(2) {
      border-top: 4px solid var(--blue);
    }

    .channel:nth-child(3) {
      border-top: 4px solid var(--ink);
    }

    .site-footer {
      margin-top: 26px;
      border-top: 2px solid var(--ink);
      padding: 24px 0 34px;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .footer-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    ::selection {
      background: var(--signal);
      color: var(--paper);
    }

    .archive-header {
      border-bottom: 1px solid var(--line);
    }

    .article-page {
      max-width: 920px;
      padding-top: clamp(48px, 8vw, 96px);
    }

    .article-header {
      border-bottom: 1px solid var(--line);
      margin-bottom: 32px;
      padding-bottom: 28px;
    }

    .article-header h1 {
      max-width: 920px;
      margin: 18px 0;
      font-size: clamp(2.6rem, 7vw, 6.2rem);
      line-height: 0.96;
    }

    .article-image {
      margin: 0 0 34px;
    }

    .article-image img {
      display: block;
      width: 100%;
      height: auto;
      border: 1px solid var(--line);
    }

    .article-image figcaption {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .post-content {
      color: var(--ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.05rem, 2vw, 1.22rem);
      line-height: 1.72;
    }

    .post-content > * {
      margin: 0 0 1.35em;
    }

    .post-content h2,
    .post-content h3 {
      font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Liberation Mono", Menlo, Consolas, monospace;
      line-height: 1.12;
      margin-top: 2em;
    }

    .post-content a {
      color: var(--blue-deep);
      text-decoration: underline;
      text-decoration-color: var(--signal);
      text-underline-offset: 4px;
    }

    .post-content blockquote {
      border-left: 4px solid var(--signal);
      color: var(--muted);
      margin-left: 0;
      padding-left: 20px;
    }

    .post-content pre,
    .post-content code {
      font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Liberation Mono", Menlo, Consolas, monospace;
    }

    .post-content pre {
      background: var(--ink);
      color: var(--paper);
      overflow-x: auto;
      padding: 18px;
    }

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

    .kg-width-wide {
      width: min(100vw - 48px, 1180px);
      margin-left: 50%;
      transform: translateX(-50%);
    }

    .kg-width-full {
      width: calc(100vw - 32px);
      margin-left: 50%;
      transform: translateX(-50%);
    }

    .kg-width-wide img,
    .kg-width-full img {
      width: 100%;
    }

    .pagination {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 28px 0 0;
      color: var(--muted);
      font-size: 0.86rem;
    }

    @media (max-width: 1180px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .signal-panel {
        max-width: 720px;
      }
    }

    @media (max-width: 920px) {
      .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
      }

      .nav-links {
        justify-content: flex-start;
      }

      .feature,
      .channels {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 44px;
      }

      .feature-card {
        min-height: 240px;
      }
    }

    @media (max-width: 620px) {
      .wrap {
        width: min(calc(100% - 24px), var(--measure));
      }

      h1 {
        font-size: clamp(2.55rem, 14vw, 3.75rem);
        line-height: 1.03;
      }

      .post {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 19px 0;
      }

      .meta {
        text-align: left;
      }

      .channel {
        min-height: unset;
      }
    }
