    :root {
      --bg: #f2efe8;
      --ink: #0a0a0a;
      --paper: #ffffff;
      --rule: #0a0a0a;
      --accent: #2b6cff;
      --accent-ink: #0a0a0a;
      --muted: #6a6a66;
      --soft: #e8e4db;
      --hair: 1.5px;
      --thick: 3px;
      --brick: 6px;
    }

    html[data-variant="B"] {
      --bg: #0a0a0a;
      --ink: #f2efe8;
      --paper: #141414;
      --rule: #f2efe8;
      --accent-ink: #0a0a0a;
      --muted: #b8b8b2;
      --soft: #161616;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--ink);
    }

    body {
      font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-feature-settings: "ss01", "ss02", "cv11";
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection {
      background: var(--accent);
      color: var(--accent-ink);
    }

    .mono {
      font-family: "JetBrains Mono", ui-monospace, monospace;
      font-weight: 500;
      letter-spacing: .01em;
    }

    .serif {
      font-family: "Instrument Serif", "Times New Roman", serif;
      font-weight: 400;
      font-style: italic;
    }

    .page {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;
      border-left: var(--thick) solid var(--rule);
      border-right: var(--thick) solid var(--rule);
      min-height: 100vh;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      display: grid;
      grid-template-columns: 1.2fr 2fr 1fr;
      align-items: stretch;
      border-bottom: var(--thick) solid var(--rule);
      background: var(--bg);
    }

    .topbar>* {
      padding: 14px 22px;
      border-right: var(--hair) solid var(--rule);
      display: flex;
      align-items: center;
    }

    .topbar>*:last-child {
      border-right: 0;
    }

    .topbar .brand {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-size: 26px;
      letter-spacing: -.01em;
      gap: 18px;
    }

    .brand-mark {
      width: 22px;
      height: 22px;
      background: var(--accent);
      border: var(--hair) solid var(--rule);
      display: inline-block;
      transform: rotate(45deg);
    }

    .topbar .ticker {
      font-family: "JetBrains Mono", monospace;
      font-size: 13px;
      letter-spacing: .02em;
      color: var(--muted);
      justify-content: center;
    }

    .topbar .ticker b {
      color: var(--ink);
      font-weight: 600;
    }

    .live-dot {
      color: #22c55e;
      animation: live-blink 1.8s ease-in-out infinite;
    }

    @keyframes live-blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .2;
      }
    }

    .topbar .cta {
      justify-content: flex-end;
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
    }

    .topbar .cta a {
      color: var(--ink);
      text-decoration: none;
      padding: 8px 14px;
      border: var(--thick) solid var(--rule);
      background: var(--accent);
      color: var(--accent-ink);
      box-shadow: var(--brick) var(--brick) 0 var(--rule);
      transform: translate(calc(-1 * var(--brick) / 2), calc(-1 * var(--brick) / 2));
      transition: transform .12s ease, box-shadow .12s ease;
      font-weight: 600;
      letter-spacing: .02em;
    }

    .topbar .cta a:hover {
      transform: translate(0, 0);
      box-shadow: 0 0 0 var(--rule);
    }

    .topbar .cta a.copied,
    .topbar .cta a.copied:hover {
      background: #1fbf6b;
      color: #ffffff;
      transform: translate(0, 0);
      box-shadow: 0 0 0 var(--rule);
      animation: ctaBlink .4s ease;
    }

    @keyframes ctaBlink {
      0% {
        opacity: .3;
      }

      100% {
        opacity: 1;
      }
    }

    .hero {
      position: relative;
      border-bottom: var(--thick) solid var(--rule);
      padding: 0;
      overflow: hidden;
    }

    .hero .hero-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 16px 24px;
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: 36px;
      padding: 0 48px 36px;
      border-bottom: var(--hair) solid var(--rule);
      margin-bottom: 0;
    }

    .hero .hero-meta>div:last-child {
      text-align: right;
      white-space: nowrap;
    }

    .hero-meta b {
      color: var(--ink);
      font-weight: 600;
    }

    .hero h1 {
      font-family: "Space Grotesk", sans-serif;
      font-weight: 600;
      font-size: clamp(32px, 5.2vw, 72px);
      line-height: .95;
      letter-spacing: -.025em;
      margin: 0;
      text-wrap: balance;
    }

    .hero h1 .serif {
      font-size: .92em;
      letter-spacing: -.015em;
    }

    .hero h1 .scratch {
      display: inline-block;
      color: var(--accent);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) clamp(340px, 38%, 520px);
      align-items: stretch;
    }

    /* text column keeps the hero's original inset padding */
    .hero-content {
      min-width: 0;
      padding: 104px 48px 112px;
    }

    /* photo column is full-bleed: flush to hero top, right, and bottom edges */
    .hero-portrait {
      position: relative;
      overflow: hidden;
      border-left: var(--thick) solid var(--rule);
    }

    .hero-portrait img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
    }

    .hero-foot {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 0;
      border-top: var(--thick) solid var(--rule);
      margin-top: 0;
    }

    .hero-foot>div {
      padding: 36px 32px 40px;
      border-right: var(--hair) solid var(--rule);
    }

    .hero-foot>div:last-child {
      border-right: 0;
    }

    .hero-foot .label {
      font-family: "JetBrains Mono", monospace;
      font-size: 10.5px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 10px;
    }

    .hero-foot .big {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-size: 36px;
      line-height: 1.05;
      letter-spacing: -.01em;
    }

    .hero-foot p {
      margin: 0;
      font-size: 17px;
      line-height: 1.45;
      max-width: 42ch;
    }

    .marquee {
      border-bottom: var(--thick) solid var(--rule);
      background: var(--accent);
      color: var(--accent-ink);
      overflow: hidden;
      white-space: nowrap;
      padding: 14px 0;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 700;
      font-size: 30px;
      letter-spacing: -.02em;
    }

    .marquee-track {
      display: inline-block;
      animation: marquee 42s linear infinite;
    }

    .marquee-track span {
      margin: 0 36px;
    }

    .marquee-track .dot {
      display: inline-block;
      width: 14px;
      height: 14px;
      background: var(--ink);
      vertical-align: middle;
      margin: 0 28px;
      transform: rotate(45deg);
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .section-head {
      display: grid;
      grid-template-columns: 140px 1fr auto;
      align-items: end;
      gap: 32px;
      padding: 64px 48px;
      border-bottom: var(--hair) solid var(--rule);
    }

    .section-head .num {
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .08em;
    }

    .section-head .num b {
      display: block;
      color: var(--ink);
      font-size: 32px;
      line-height: 1;
      font-weight: 500;
      margin-top: 6px;
    }

    .section-head h2 {
      margin: 0;
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(24px, 2.8vw, 40px);
      line-height: 1;
      letter-spacing: -.02em;
      font-weight: 600;
      text-wrap: balance;
    }

    .section-head h2 em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -.01em;
    }

    .section-head .legend {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-align: right;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: var(--thick) solid var(--rule);
    }

    .svc {
      border-right: var(--hair) solid var(--rule);
      border-top: var(--hair) solid var(--rule);
      padding: 44px 36px 36px;
      min-height: 340px;
      position: relative;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      transition: background .15s ease, color .15s ease;
    }

    .svc:nth-child(3n) {
      border-right: 0;
    }

    .svc:hover {
      background: var(--ink);
      color: var(--bg);
    }

    .svc:hover .svc-num,
    .svc:hover .svc-sub {
      color: var(--accent);
    }

    .svc .svc-num {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .svc h3 {
      margin: 18px 0 14px;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 600;
      font-size: 30px;
      line-height: 1.05;
      letter-spacing: -.02em;
    }

    .svc h3 em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
    }

    .svc p {
      margin: 0 0 24px;
      font-size: 15px;
      line-height: 1.6;
      max-width: 42ch;
    }

    .svc .svc-sub {
      margin-top: auto;
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .05em;
      text-transform: uppercase;
      display: flex;
      justify-content: space-between;
      border-top: var(--hair) dashed currentColor;
      padding-top: 16px;
      opacity: .9;
    }

    .track {
      position: relative;
      border-bottom: var(--thick) solid var(--rule);
      padding: 0 0 32px;
    }

    .track-lede-row {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 48px;
      padding: 40px 48px 48px;
    }

    .track-lede-left {
      flex: 0 1 auto;
      align-self: center;
      max-width: 50%;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 600;
      font-size: clamp(22px, 2.4vw, 34px);
      line-height: 1.15;
      letter-spacing: -.02em;
      text-wrap: balance;
    }

    .track-lede-left em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
    }

    .track-lede-right {
      flex: 0 1 auto;
      align-self: flex-end;
      max-width: 52ch;
      font-size: 16px;
      line-height: 1.6;
      color: var(--muted);
    }

    .track-lede-right b {
      color: var(--ink);
      font-weight: 500;
    }

    .track-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: var(--hair) solid var(--rule);
      border-bottom: var(--hair) solid var(--rule);
      margin: 0 0 48px;
    }

    .track-metrics>div {
      padding: 36px 32px 40px;
      border-right: var(--hair) solid var(--rule);
    }

    .track-metrics>div:last-child {
      border-right: 0;
    }

    .track-metrics .k {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .track-metrics .v {
      font-family: "Space Grotesk", sans-serif;
      font-weight: 600;
      font-size: clamp(48px, 5vw, 76px);
      line-height: 1;
      letter-spacing: -.03em;
      margin-top: 14px;
    }

    .track-metrics .v em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
      color: var(--accent);
    }

    .track-metrics .note {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      margin-top: 14px;
      letter-spacing: .04em;
    }

    .track-logos {
      padding: 0 48px;
    }

    .track-logos-label {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 24px;
    }

    .track-logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: var(--hair) solid var(--rule);
    }

    .track-logo-grid>div {
      position: relative;
      padding: 28px 20px;
      border-right: var(--hair) solid var(--rule);
      border-bottom: var(--hair) solid var(--rule);
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-size: 24px;
      line-height: 1.1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 100px;
      color: var(--ink);
    }

    .track-logo-grid a {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 20px;
      color: inherit;
      text-decoration: none;
      transition: color .15s ease, background .15s ease;
    }

    .track-logo-grid a:hover {
      color: var(--accent);
    }

    .track-logo-grid a svg {
      width: auto;
      height: 32px;
      flex-shrink: 0;
      display: block;
      fill: currentColor;
    }

    .track-logo-grid a svg.wm {
      height: 24px;
    }

    .track-logo-grid a svg.wm-stacked {
      height: 40px;
    }

    .track-logo-grid a svg.big {
      height: 40px;
    }

    .track-logo-grid a b:only-child {
      font-size: 20px;
    }

    .track-logo-grid>div:nth-child(5n) {
      border-right: 0;
    }

    .track-logo-grid>div:nth-last-child(-n+5) {
      border-bottom: 0;
    }

    .track-logo-grid>div b {
      font-family: "Space Grotesk", sans-serif;
      font-style: normal;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .about {
      display: grid;
      grid-template-columns: 1.7fr 1fr;
      border-bottom: var(--thick) solid var(--rule);
    }

    .about-left {
      padding: 40px 48px;
      border-right: var(--hair) solid var(--rule);
    }

    .about-left .kicker {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 24px;
    }

    .about-left h3 {
      margin: 20px 0 32px;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 600;
      font-size: clamp(22px, 2.4vw, 34px);
      line-height: 1.15;
      letter-spacing: -.02em;
      text-wrap: balance;
    }

    .about-left h3 em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
    }

    .about-left p {
      font-size: 16.5px;
      line-height: 1.65;
      max-width: 56ch;
    }

    .about-left p+p {
      margin-top: 18px;
    }

    .about-right {
      padding: 0;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
    }

    .portrait {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .portrait img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .quals {
      border-bottom: var(--thick) solid var(--rule);
    }

    .qual-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 26px 28px 20px;
      background: var(--paper);
      border-top: var(--hair) solid var(--rule);
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    .qual-head:first-child {
      border-top: 0;
    }

    .qual-head b {
      color: var(--ink);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: .06em;
    }

    .qual-head.break {
      border-top: var(--thick) solid var(--rule);
    }

    .qual-row {
      display: grid;
      grid-template-columns: 160px 1fr 1fr;
      grid-template-areas: "yr what place" "yr kind place";
      column-gap: 28px;
      row-gap: 2px;
      align-items: baseline;
      padding: 14px 28px;
    }

    .qual-row+.qual-row {
      margin-top: 0;
    }

    .qual-row .yr {
      grid-area: yr;
      align-self: start;
      font-family: "JetBrains Mono", monospace;
      font-size: 14px;
      color: var(--ink);
      letter-spacing: .02em;
      padding-top: 2px;
    }

    .qual-row .kind {
      grid-area: kind;
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .qual-row .what {
      grid-area: what;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 500;
      font-size: 18px;
      letter-spacing: -.01em;
      line-height: 1.3;
    }

    .qual-row .what em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.1em;
    }

    .qual-row .place {
      grid-area: place;
      align-self: start;
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-size: 18px;
      color: var(--ink);
      letter-spacing: -.005em;
      text-align: right;
    }

    .writing {
      border-bottom: var(--thick) solid var(--rule);
    }

    .write-row {
      display: grid;
      grid-template-columns: 80px 2.4fr 1fr 80px;
      border-top: var(--hair) solid var(--rule);
      align-items: center;
      text-decoration: none;
      color: inherit;
      transition: background .15s ease;
    }

    .write-row:first-of-type {
      border-top: 0;
    }

    .write-row:hover {
      background: var(--accent);
      color: var(--accent-ink);
    }

    .write-row>div {
      padding: 30px 28px;
      border-right: var(--hair) solid var(--rule);
    }

    .write-row>div:last-child {
      border-right: 0;
      text-align: right;
    }

    .write-row .idx {
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
      color: var(--muted);
    }

    .write-row:hover .idx,
    .write-row:hover .pub,
    .write-row:hover .arrow {
      color: var(--accent-ink);
    }

    .write-row .title {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-size: 26px;
      letter-spacing: -.01em;
      line-height: 1.15;
    }

    .write-row .title b {
      font-family: "Space Grotesk", sans-serif;
      font-style: normal;
      font-weight: 600;
      letter-spacing: -.02em;
    }

    .write-row .pub {
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .write-row .arrow {
      font-family: "JetBrains Mono", monospace;
      font-size: 18px;
    }

    .contact {
      position: relative;
      padding: 112px 48px 96px;
      background: var(--ink);
      color: var(--bg);
      overflow: hidden;
      --muted: #4a4a44;
    }

    .contact h2 {
      margin: 80px 0 24px;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 600;
      font-size: clamp(22px, 2.4vw, 34px);
      line-height: 1;
      letter-spacing: -.02em;
      white-space: nowrap;
    }

    .contact h2 em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
      color: inherit;
    }

    .contact .section-head h2 {
      font-size: clamp(24px, 2.8vw, 40px);
      line-height: 1;
      letter-spacing: -.02em;
      margin: 0;
    }

    .contact .email-row {
      display: flex;
      align-items: center;
      gap: 18px;
      border: var(--thick) solid var(--bg);
      padding: 18px 24px;
      background: transparent;
      margin: 80px auto 0;
      width: fit-content;
      cursor: pointer;
      transition: background .15s ease, color .15s ease;
      color: var(--bg);
    }

    .contact .email-row:hover {
      background: var(--accent);
      color: var(--accent-ink);
      border-color: var(--accent);
    }

    .contact .email-row .at {
      width: 44px;
      height: 44px;
      background: var(--accent);
      color: var(--accent-ink);
      border: var(--hair) solid var(--bg);
      display: grid;
      place-items: center;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 700;
      font-size: 22px;
    }

    .contact .email-row:hover .at {
      background: var(--ink);
      color: var(--accent);
      border-color: var(--ink);
    }

    .contact .email-row .addr {
      font-family: "JetBrains Mono", monospace;
      font-size: 24px;
      letter-spacing: .01em;
    }

    .contact .copied {
      margin-left: 18px;
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
      color: var(--accent);
      opacity: 0;
      transition: opacity .2s ease;
    }

    .contact .copied.show {
      opacity: 1;
    }

    .contact .email-row:hover .copied {
      color: #ffffff;
    }

    .contact .col-grid {
      margin-top: 80px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: var(--hair) solid var(--bg);
    }

    .contact .col-grid>div {
      padding: 32px 26px 36px;
      border-right: var(--hair) solid var(--bg);
    }

    .contact .col-grid>div:last-child {
      border-right: 0;
    }

    .contact .col-grid .k {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .contact .col-grid .v {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-size: 24px;
      margin-top: 8px;
      line-height: 1.1;
    }

    .contact .col-grid .v b {
      font-family: "Space Grotesk", sans-serif;
      font-style: normal;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .footer {
      background: var(--bg);
    }

    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      padding: 18px calc(22px + var(--thick));
      font-family: "JetBrains Mono", monospace;
      font-size: 11.5px;
      color: var(--muted);
      letter-spacing: .04em;
      align-items: center;
    }

    .footer-inner .mid {
      text-align: center;
    }

    .footer-inner .r {
      text-align: right;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 14px;
    }

    .footer-inner .r a {
      color: inherit;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      transition: color .15s ease;
    }

    .footer-inner .r a:hover {
      color: var(--accent);
    }

    .footer-inner .r svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      display: block;
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: transparent;
      z-index: 60;
      pointer-events: none;
    }

    .scroll-progress .bar {
      height: 100%;
      background: var(--accent);
      width: 0%;
    }

    .reveal {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    html[data-hero="split"] .hero-split-right {
      display: block;
    }

    html[data-hero="split"] .hero h1 {
      font-size: clamp(28px, 4vw, 56px);
    }

    html[data-hero="split"] .hero-inner {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 0;
      align-items: start;
    }

    html[data-hero="split"] .hero-inner>.hero-main {
      padding-right: 28px;
      border-right: var(--hair) solid var(--rule);
    }

    html[data-hero="split"] .hero-split-right {
      padding-left: 28px;
    }

    html[data-hero="stack"] .hero-split-right {
      display: none;
    }

    html[data-hero="stack"] .hero-inner {
      display: grid;
    }

    html[data-hero="stack"] .hero-inner>.hero-main {
      padding: 0;
      border: 0;
    }

    .hero-split-right {
      display: none;
    }

    .hsr-card {
      border: var(--thick) solid var(--rule);
      padding: 20px 20px 22px;
      margin-top: 8px;
      background: var(--paper);
    }

    .hsr-card .k {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .hsr-card .v {
      font-family: "Space Grotesk", sans-serif;
      font-weight: 600;
      font-size: 22px;
      line-height: 1.1;
      letter-spacing: -.01em;
      margin-top: 8px;
    }

    .hsr-list {
      margin-top: 14px;
    }

    .hsr-list .hrow {
      display: flex;
      justify-content: space-between;
      border-top: var(--hair) solid var(--rule);
      padding: 10px 0;
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
    }

    .hsr-list .hrow:last-child {
      border-bottom: var(--hair) solid var(--rule);
    }

    .hsr-list .hrow b {
      font-weight: 600;
    }

    @media (max-width: 900px) {
      .page {
        border-left: 0;
        border-right: 0;
      }

      .topbar {
        grid-template-columns: auto 1fr;
      }

      .topbar .ticker {
        display: none;
      }

      .topbar>* {
        padding: 12px 18px;
      }

      .topbar .brand {
        font-size: 20px;
        gap: 12px;
      }

      .brand-mark {
        width: 18px;
        height: 18px;
      }

      .topbar .cta {
        font-size: 11px;
      }

      .topbar .cta a {
        padding: 6px 10px;
        white-space: nowrap;
      }

      .topbar .cta-arrow {
        display: none;
      }

      .hero {
        padding: 0;
      }

      .hero-content {
        padding: 24px 24px 32px;
      }

      .hero h1 {
        font-size: clamp(28px, 7vw, 44px);
      }

      .hero h1 br {
        display: none;
      }

      .hero .hero-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 18px;
        margin-top: 28px;
        padding: 0 24px 28px;
        margin-bottom: 0;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-portrait {
        order: -1;
        aspect-ratio: 1 / 1;
        border-left: 0;
        border-bottom: var(--thick) solid var(--rule);
      }

      .hero-foot {
        grid-template-columns: 1fr;
        margin-top: 48px;
      }

      .hero-foot>div {
        padding: 28px 24px 32px;
        border-right: 0;
        border-bottom: var(--hair) solid var(--rule);
      }

      .hero-foot>div:last-child {
        border-bottom: 0;
      }

      .hero-foot .big {
        font-size: 28px;
      }

      .section-head {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 16px;
      }

      .section-head .legend {
        text-align: left;
      }

      .services {
        grid-template-columns: 1fr;
      }

      .svc {
        border-right: 0;
        padding: 32px 24px 28px;
        min-height: 0;
      }

      .track-lede-row {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px 32px;
      }

      .track-lede-left,
      .track-lede-right {
        max-width: 100%;
      }

      .track-lede-right {
        align-self: flex-start;
      }

      .track-metrics {
        grid-template-columns: 1fr 1fr;
        margin: 0 0 32px;
      }

      .track-metrics>div {
        padding: 24px 20px 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }

      .track-metrics>div:nth-child(2n) {
        border-right: 0;
      }

      .track-metrics>div:nth-child(-n+2) {
        border-bottom: var(--hair) solid var(--rule);
      }

      .track-metrics .v {
        font-size: clamp(40px, 11vw, 64px);
      }

      .track-logos {
        padding: 0 24px;
      }

      .track-logo-grid {
        grid-template-columns: 1fr 1fr;
      }

      .track-logo-grid>div {
        border-right: var(--hair) solid var(--rule);
        font-size: 16px;
        line-height: 1.2;
        min-height: 72px;
        padding: 16px 10px;
      }

      .track-logo-grid>div:nth-child(5n) {
        border-right: var(--hair) solid var(--rule);
      }

      .track-logo-grid>div:nth-child(2n) {
        border-right: 0;
      }

      .track-logo-grid>div:nth-last-child(-n+5) {
        border-bottom: var(--hair) solid var(--rule);
      }

      .track-logo-grid>div:nth-last-child(-n+2) {
        border-bottom: 0;
      }

      .about {
        grid-template-columns: 1fr;
      }

      .about-left {
        padding: 40px 24px;
        border-right: 0;
        border-bottom: var(--hair) solid var(--rule);
      }

      .about-left p {
        font-size: 15.5px;
      }

      .portrait {
        aspect-ratio: 4 / 5;
      }

      .qual-row {
        grid-template-columns: 1fr;
        grid-template-areas: "yr" "what" "kind" "place";
        row-gap: 8px;
        padding: 22px 24px;
      }

      .qual-row .place {
        text-align: left;
      }

      .qual-row .what {
        font-size: 16px;
      }

      .write-row {
        grid-template-columns: 40px 1fr 40px;
      }

      .write-row .pub {
        display: none;
      }

      .write-row>div {
        padding: 22px 14px;
      }

      .write-row .title {
        font-size: 19px;
      }

      .write-row .idx,
      .write-row .arrow {
        font-size: 13px;
      }

      .contact {
        padding: 56px 24px 48px;
      }

      .contact h2 {
        margin: 48px 0 20px;
        white-space: normal;
      }

      .contact .email-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        position: relative;
        gap: 12px;
        padding: 14px 18px;
        margin-top: 48px;
      }

      .contact .email-row .at {
        display: none;
      }

      .contact .email-row .copied {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
      }

      .contact .email-row .addr {
        font-size: 15px;
        white-space: nowrap;
      }

      .contact .col-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 48px;
      }

      .contact .col-grid>div {
        padding: 24px 18px;
      }

      .contact .col-grid .v {
        font-size: 18px;
      }

      .contact .col-grid>div:nth-child(2n) {
        border-right: 0;
      }

      .contact .col-grid>div:nth-child(-n+2) {
        border-bottom: var(--hair) solid var(--bg);
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 20px;
        text-align: center;
      }

      .footer-inner>div {
        text-align: center;
      }

      .footer-inner .r {
        justify-content: center;
      }
    }

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

      .contact .col-grid {
        grid-template-columns: 1fr;
      }

      .contact .col-grid>div {
        border-right: 0;
        border-bottom: var(--hair) solid var(--bg);
      }

      .contact .col-grid>div:last-child {
        border-bottom: 0;
      }
    }
