    :root {
      --bg: #1f1f1f;
      --bg-deep: #171817;
      --surface: #292a29;
      --surface-raised: #313230;
      --ink: #f2f3ef;
      --muted: #b1b4ad;
      --muted-2: #92958e;
      --line: #3b3d3a;
      --accent: #ff6b4a;
      --accent-soft: #f3a18e;
      --signal: #95f0d5;
      --content: 860px;
      --rail: 230px;
      --radius: 12px;
      --header-h: 72px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scrollbar-color: #5b5d59 var(--bg);
    }

    body {
      margin: 0;
      min-width: 320px;
      background: var(--bg);
      color: var(--ink);
      font-family: "Onest", "Arial Nova", Arial, sans-serif;
      font-size: 18px;
      line-height: 1.55;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    button, a { -webkit-tap-highlight-color: transparent; }
    button { font: inherit; }
    a { color: inherit; }

    :focus-visible {
      outline: 2px solid var(--signal);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .scroll-progress {
      position: fixed;
      inset: 0 auto auto 0;
      width: 0;
      height: 3px;
      z-index: 100;
      background: var(--accent);
      transition: width 80ms linear;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      height: var(--header-h);
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--line);
      background: rgba(31, 31, 31, 0.97);
    }

    .header-inner {
      width: min(100% - 48px, 1380px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      width: max-content;
      text-decoration: none;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .brand-mark {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border: 1px solid #676a64;
      border-radius: 50%;
      color: var(--signal);
      font-size: 11px;
      letter-spacing: -0.08em;
    }

    .edition-label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .header-actions {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mode-button,
    .icon-button,
    .studio-button {
      min-height: 42px;
      border: 1px solid var(--line);
      color: var(--ink);
      background: transparent;
      cursor: pointer;
      transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
    }

    .mode-button {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-width: 44px;
      padding: 0 15px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
    }

    .mode-button:hover,
    .icon-button:hover,
    .studio-button:hover {
      border-color: #73766f;
      background: var(--surface);
    }

    .mode-button:active,
    .icon-button:active,
    .studio-button:active { transform: translateY(1px); }

    .mode-button svg { width: 16px; height: 16px; }

    .shell {
      width: min(100% - 64px, 1280px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: var(--rail) minmax(0, var(--content));
      justify-content: center;
      gap: clamp(48px, 6vw, 96px);
    }

    .hero {
      grid-column: 2;
      padding: 70px 0 54px;
      border-bottom: 1px solid var(--line);
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: var(--accent-soft);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 26px;
      height: 2px;
      content: "";
      background: currentColor;
    }

    .hero h1 {
      max-width: 820px;
      margin: 0;
      font-size: clamp(52px, 5.7vw, 82px);
      font-weight: 850;
      line-height: 0.98;
      letter-spacing: -0.065em;
      text-wrap: balance;
    }

    .hero-dek {
      max-width: 760px;
      margin: 26px 0 0;
      color: #d4d6d0;
      font-size: clamp(21px, 2.2vw, 28px);
      line-height: 1.38;
      letter-spacing: -0.02em;
      text-wrap: pretty;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 30px;
      margin-top: 30px;
      color: var(--muted);
      font-size: 14px;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-meta span::before {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      content: "";
      background: var(--muted-2);
    }

    .issue-rail {
      grid-column: 1;
      grid-row: 2;
      align-self: start;
      position: sticky;
      top: calc(var(--header-h) + 42px);
      padding: 52px 0 80px;
    }

    .rail-title {
      margin: 0 0 18px;
      color: var(--muted-2);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

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

    .rail-list a {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 8px;
      padding: 10px 0;
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      line-height: 1.35;
      transition: color 160ms ease;
    }

    .rail-list a span:first-child {
      color: var(--muted-2);
      font-variant-numeric: tabular-nums;
    }

    .rail-list a:hover,
    .rail-list a[aria-current="true"] { color: var(--ink); }
    .rail-list a[aria-current="true"] span:first-child { color: var(--accent); }

    .rail-rule {
      height: 1px;
      margin: 25px 0;
      background: var(--line);
    }

    .rail-note {
      margin: 0;
      color: var(--muted-2);
      font-size: 12px;
      line-height: 1.55;
    }

    main {
      grid-column: 2;
      grid-row: 2;
    }

    .story {
      scroll-margin-top: calc(var(--header-h) + 22px);
      padding: 62px 0 88px;
      border-bottom: 1px solid var(--line);
    }

    .story:first-child { padding-top: 62px; }

    .story-kicker {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 12px;
      margin-bottom: 20px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .story-index { color: var(--accent); }
    .story-kicker .dot { color: var(--muted-2); }

    .story h2 {
      max-width: 830px;
      margin: 0;
      font-size: clamp(40px, 5.1vw, 64px);
      font-weight: 850;
      line-height: 1.04;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    .story-dek {
      max-width: 790px;
      margin: 24px 0 0;
      color: #d4d6d0;
      font-size: clamp(20px, 2.1vw, 25px);
      line-height: 1.42;
      letter-spacing: -0.018em;
      text-wrap: pretty;
    }

    .media-figure {
      margin: 42px 0 0;
    }

    .media-frame {
      position: relative;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 1px solid #41433f;
      border-radius: var(--radius);
      background: #0d0f0e;
    }

    .media-frame video,
    .media-frame > img,
    .media-frame > svg {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .media-tools {
      position: absolute;
      z-index: 4;
      top: 12px;
      right: 12px;
      display: flex;
      gap: 5px;
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 160ms ease, transform 160ms ease;
    }

    .media-frame:hover .media-tools,
    .media-frame:focus-within .media-tools {
      opacity: 1;
      transform: translateY(0);
    }

    .icon-button {
      width: 44px;
      min-height: 44px;
      padding: 0;
      display: grid;
      place-items: center;
      border-color: #555851;
      border-radius: 9px;
      background: rgba(22, 23, 22, 0.94);
    }

    .icon-button svg { width: 17px; height: 17px; }

    figcaption {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 13px;
      color: var(--muted-2);
      font-size: 12px;
      line-height: 1.45;
    }

    figcaption a {
      color: var(--muted);
      text-underline-offset: 3px;
      white-space: nowrap;
    }

    .story-body {
      max-width: 760px;
      margin-top: 42px;
    }

    .story-body p {
      margin: 0 0 23px;
      color: #d2d4ce;
      font-size: 19px;
      line-height: 1.68;
      letter-spacing: -0.01em;
    }

    .why-row {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      gap: 28px;
      margin-top: 42px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }

    .why-row h3 {
      margin: 2px 0 0;
      color: var(--accent-soft);
      font-size: 12px;
      font-weight: 750;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .why-row p {
      margin: 0;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.55;
    }

    .source-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 32px;
      color: var(--muted);
      font-size: 13px;
      text-decoration: none;
      min-height: 44px;
    }

    .source-link:hover { color: var(--ink); }
    .source-link svg { width: 15px; height: 15px; }

    .closing {
      padding: 96px 0 130px;
    }

    .closing-label {
      color: var(--muted-2);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .closing h2 {
      max-width: 720px;
      margin: 18px 0 0;
      font-size: clamp(38px, 4.5vw, 58px);
      line-height: 1.06;
      letter-spacing: -0.05em;
    }

    .closing p {
      max-width: 630px;
      color: var(--muted);
      font-size: 17px;
    }

    .prototype-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      padding: 0;
      color: var(--muted);
      font-size: 12px;
    }

    .prototype-badge::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      content: "";
      background: var(--signal);
      box-shadow: 0 0 0 4px rgba(149, 240, 213, 0.09);
    }

    .studio-chrome,
    .studio-guide { display: none; }

    .studio-chrome {
      position: fixed;
      z-index: 80;
      top: 18px;
      right: 18px;
      align-items: center;
      gap: 8px;
    }

    .studio-button {
      min-height: 38px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      border-radius: 8px;
      background: rgba(23, 24, 23, 0.94);
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
    }

    .studio-guide {
      position: fixed;
      z-index: 15;
      left: 5vw;
      bottom: 9vh;
      width: 24vw;
      min-width: 280px;
      max-width: 440px;
      aspect-ratio: 4 / 5;
      pointer-events: none;
      border: 1px dashed rgba(149, 240, 213, 0.38);
      border-radius: 18px;
      color: rgba(149, 240, 213, 0.68);
    }

    .studio-guide::before,
    .studio-guide::after {
      position: absolute;
      content: "";
      border-radius: 50%;
      border: 1px solid rgba(149, 240, 213, 0.22);
    }

    .studio-guide::before {
      width: 32%;
      aspect-ratio: 1;
      left: 34%;
      top: 14%;
    }

    .studio-guide::after {
      width: 62%;
      height: 47%;
      left: 19%;
      bottom: 12%;
      border-radius: 50% 50% 20% 20%;
    }

    .studio-guide span {
      position: absolute;
      top: 14px;
      left: 16px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    body.studio { background: #1f1f1f; }
    body.studio .site-header,
    body.studio .hero,
    body.studio .issue-rail { display: none; }
    body.studio .studio-chrome { display: flex; }
    body.studio .studio-guide { display: block; }
    body.studio.guides-hidden .studio-guide { display: none; }

    body.studio.clean-feed {
      height: 100vh;
      overflow: hidden;
      cursor: none;
    }

    body.studio.clean-feed .studio-chrome,
    body.studio.clean-feed .studio-guide,
    body.studio.clean-feed figcaption,
    body.studio.clean-feed .story-body,
    body.studio.clean-feed .why-row,
    body.studio.clean-feed .source-link { display: none; }

    body.studio.clean-feed .media-frame { pointer-events: none; }

    body.studio .shell {
      width: 100%;
      max-width: none;
      display: block;
      margin: 0;
    }

    body.studio main {
      width: min(58vw, 960px);
      margin-left: clamp(440px, 34vw, 680px);
      padding-right: 4vw;
    }

    body.studio .story {
      min-height: 100vh;
      padding: 8vh 0 10vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      scroll-margin-top: 0;
    }

    body.studio .story h2 {
      font-size: clamp(42px, 4vw, 66px);
    }

    body.studio .story-kicker {
      color: #bfc2bb;
      font-size: 15px;
    }

    body.studio .story-dek {
      font-size: clamp(19px, 1.55vw, 25px);
    }

    body.studio .story-body p { font-size: clamp(17px, 1.25vw, 20px); }
    body.studio .closing { min-height: 100vh; display: grid; align-content: center; }

    dialog {
      width: min(94vw, 1280px);
      padding: 12px;
      border: 1px solid #51534f;
      border-radius: 16px;
      background: #111211;
      color: var(--ink);
    }

    dialog::backdrop { background: rgba(0, 0, 0, 0.78); }

    .dialog-close {
      position: absolute;
      z-index: 2;
      top: 20px;
      right: 20px;
    }

    .dialog-media {
      overflow: hidden;
      aspect-ratio: 16 / 9;
      border-radius: 10px;
      background: #0d0f0e;
    }

    .dialog-media img,
    .dialog-media svg { width: 100%; height: 100%; display: block; object-fit: contain; }

    .archive-page {
      width: min(100% - 40px, 980px);
      margin: 0 auto;
      padding: 96px 0 120px;
    }

    .archive-page > h1 {
      margin: 0;
      font-size: clamp(52px, 7vw, 88px);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .archive-list { margin-top: 74px; border-top: 1px solid var(--line); }

    .archive-item {
      padding: 44px 0 48px;
      border-bottom: 1px solid var(--line);
    }

    .archive-item h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.06;
      letter-spacing: -0.04em;
    }

    .archive-item h2 a { text-decoration: none; }
    .archive-item h2 a:hover { color: var(--accent-soft); }
    .archive-item > p:not(.eyebrow) { max-width: 760px; color: #d2d4ce; }
    .archive-item > span { color: var(--muted); font-size: 14px; }

    @media (max-width: 980px) {
      :root { --header-h: 64px; }
      .header-inner { width: min(100% - 28px, 920px); grid-template-columns: 1fr auto; }
      .edition-label { display: none; }
      .shell { width: min(100% - 36px, 860px); display: block; }
      .hero { padding: 64px 0 50px; }
      .issue-rail { display: none; }
      .hero h1 { font-size: clamp(48px, 10.5vw, 72px); }
      .story h2 { font-size: clamp(38px, 8vw, 58px); }
      body.studio main { width: 62vw; margin-left: 34vw; padding-right: 3vw; }
      body.studio .studio-guide { min-width: 0; width: 27vw; }
    }

    @media (max-width: 700px) {
      body { font-size: 16px; }
      .site-header { position: relative; }
      .header-inner { width: calc(100% - 24px); }
      .brand { font-size: 15px; }
      .brand-mark { width: 24px; height: 24px; }
      .mode-button { min-height: 44px; padding: 0 12px; font-size: 12px; }
      .mode-button .mode-copy { display: none; }
      .shell { width: calc(100% - 40px); }
      .hero { padding: 52px 0 44px; }
      .hero h1 { font-size: clamp(43px, 12.5vw, 52px); }
      .hero-dek { margin-top: 26px; font-size: 20px; }
      .hero-meta { display: grid; gap: 8px; margin-top: 30px; }
      .story { padding: 54px 0 64px; }
      .story h2 { font-size: clamp(34px, 9.6vw, 40px); }
      .story-dek { font-size: 19px; }
      .media-figure { margin-top: 30px; }
      .media-frame { width: calc(100% + 40px); margin-left: -20px; border-left: 0; border-right: 0; border-radius: 0; }
      .media-tools { opacity: 1; transform: none; }
      figcaption { display: grid; gap: 5px; padding: 0 2px; color: #aeb1aa; font-size: 14px; }
      .story-body { margin-top: 32px; }
      .story-body p { font-size: 17px; line-height: 1.65; }
      .why-row { grid-template-columns: 1fr; gap: 10px; }
      .closing { padding: 70px 0 94px; }
      body.studio .studio-guide { display: none; }
      body.studio main { width: auto; margin: 0; padding: 0 18px; }
      body.studio .story { min-height: 100svh; }
      body.studio .studio-chrome { top: 10px; right: 10px; }
      body.studio .studio-chrome .guide-toggle { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: 0.01ms !important; }
    }
