@layer reset, base, components, pages, responsive, motion;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
  ul, ol { margin: 0; padding: 0; }
  button, input { font: inherit; }
  button { color: inherit; }
  img, picture { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
}

@layer base {
  :root {
    --ink: #05070a;
    --ink-soft: #090d12;
    --graphite: #111720;
    --graphite-2: #19222d;
    --paper: #f2f5f7;
    --muted: #8d98a7;
    --dim: #5f6b78;
    --line: rgba(190, 213, 230, .16);
    --line-bright: rgba(190, 213, 230, .34);
    --cyan: #45d9ff;
    --blue: #1779ff;
    --navy: #06162a;
    --warm: #d79b66;
    --max: 1440px;
    --gutter: clamp(1rem, 3vw, 3.5rem);
    --radius: 1.25rem;
    --ease: cubic-bezier(.22, 1, .36, 1);
  }

  html { background: var(--ink); color: var(--paper); font-family: Arial, Helvetica, sans-serif; }
  body {
    min-width: 320px;
    overflow-x: clip;
    background:
      radial-gradient(circle at 72% 8%, rgba(20, 89, 151, .13), transparent 29rem),
      var(--ink);
    color: var(--paper);
    font-size: clamp(.98rem, .94rem + .16vw, 1.08rem);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: .025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  }

  ::selection { background: var(--cyan); color: var(--ink); }
  :focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; }
  .section-shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
  .section-kicker { display: inline-flex; align-items: center; gap: .65rem; color: var(--cyan); font: 700 .68rem/1 Arial, sans-serif; letter-spacing: .17em; text-transform: uppercase; }
  .section-kicker::before { content: ''; width: 1.9rem; height: 1px; background: currentColor; }
  .sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .skip-link { position: fixed; z-index: 10001; left: 1rem; top: 1rem; padding: .8rem 1rem; background: var(--paper); color: var(--ink); font-weight: 700; }
}

@layer components {
  .site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem var(--gutter);
    border-bottom: 1px solid transparent;
    transition: min-height .4s var(--ease), background .4s, border-color .4s, transform .4s var(--ease);
  }
  .site-header.is-compact { min-height: 4.35rem; background: rgba(5, 7, 10, .82); border-color: var(--line); backdrop-filter: blur(18px); }
  .site-header.is-hidden { transform: translateY(-110%); }
  .site-brand { display: inline-flex; align-items: center; gap: .72rem; font-weight: 900; font-size: .84rem; letter-spacing: .16em; }
  .brand-mark { width: 1.1rem; height: 1.1rem; border: 1px solid var(--cyan); transform: rotate(45deg); box-shadow: inset 0 0 0 4px var(--ink); background: var(--cyan); }
  .desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
  .desktop-nav a { position: relative; color: #b9c3cc; font-size: .74rem; font-weight: 700; letter-spacing: .08em; }
  .desktop-nav a::after { content: ''; position: absolute; left: 0; bottom: -.55rem; width: 100%; height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
  .desktop-nav a:hover, .desktop-nav a[aria-current='page'] { color: var(--paper); }
  .desktop-nav a:hover::after, .desktop-nav a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
  .menu-toggle { display: none; align-items: center; gap: .75rem; padding: .65rem; border: 0; background: transparent; cursor: pointer; }
  .menu-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .menu-lines { position: relative; width: 1.5rem; height: .85rem; border-top: 1px solid; border-bottom: 1px solid; transition: transform .3s; }
  .menu-toggle[aria-expanded='true'] .menu-lines { border: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded='true'] .menu-lines::before { content: ''; position: absolute; inset: 50% 0 auto; border-top: 1px solid; transform: rotate(90deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 900; display: grid; align-content: center; padding: 7rem var(--gutter) 2rem; background: #07101b; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-1rem); transition: .5s var(--ease); }
  .mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: clamp(2rem, 8vw, 4.4rem); font-weight: 800; line-height: 1.05; letter-spacing: -.045em; }
  .mobile-menu nav a:hover { color: var(--cyan); padding-left: .4rem; }
  .mobile-menu__noise { position: absolute; inset: 0; opacity: .4; background: radial-gradient(circle at 85% 20%, rgba(23, 121, 255, .2), transparent 32rem); pointer-events: none; }
  .mobile-menu__foot { align-self: end; display: flex; justify-content: space-between; margin-top: 2rem; color: var(--muted); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
  body.menu-open { overflow: hidden; }

  .button { min-height: 3.5rem; display: inline-flex; align-items: center; justify-content: center; gap: 1.2rem; padding: .85rem 1.35rem; border: 1px solid var(--line-bright); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: color .3s, background .3s, border-color .3s, transform .3s; }
  .button--primary { background: var(--paper); border-color: var(--paper); color: var(--ink); }
  .button--primary:hover { background: var(--cyan); border-color: var(--cyan); }
  .button--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
  .page-progress { position: fixed; inset: 0 auto auto 0; z-index: 10002; width: 100%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue)); transform: scaleX(0); transform-origin: left; }
  .cursor { position: fixed; z-index: 10003; width: 2rem; height: 2rem; left: 0; top: 0; margin: -1rem 0 0 -1rem; border: 1px solid rgba(69, 217, 255, .65); border-radius: 50%; pointer-events: none; opacity: 0; transition: width .2s, height .2s, margin .2s, background .2s, opacity .2s; }
  .cursor::after { content: ''; position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); transform: translate(-50%, -50%); }
  .cursor.is-visible { opacity: 1; }
  .cursor.is-active { width: 3.5rem; height: 3.5rem; margin: -1.75rem 0 0 -1.75rem; background: rgba(69, 217, 255, .08); }
  .reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
  .no-js .reveal { opacity: 1; transform: none; }
}

@layer pages {
  .hero { --mx: 50%; --my: 50%; position: relative; isolation: isolate; min-height: 100svh; overflow: hidden; display: grid; align-items: end; padding: 7rem var(--gutter) clamp(2rem, 5vh, 4.5rem); border-bottom: 1px solid var(--line); }
  .hero::before { content: ''; position: absolute; z-index: -2; width: 55vw; aspect-ratio: 1; left: calc(var(--mx) - 27.5vw); top: calc(var(--my) - 27.5vw); border-radius: 50%; background: radial-gradient(circle, rgba(30, 130, 220, .17), rgba(8, 20, 36, .04) 48%, transparent 70%); filter: blur(18px); transition: left .5s var(--ease), top .5s var(--ease); }
  .hero-grid { position: absolute; z-index: -3; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 6.25vw 6.25vw; opacity: .24; mask-image: linear-gradient(to bottom, #000 0 62%, transparent 94%); }
  .hero-grid::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(69, 217, 255, .06) 49%, transparent 63%); transform: translateX(-80%); animation: scan 9s linear infinite; }
  .hero-orbit { position: absolute; inset: 0; z-index: -1; }
  .hero-orbit span { position: absolute; left: var(--x); top: var(--y); color: rgba(218, 230, 238, .42); font-size: clamp(.55rem, .7vw, .75rem); font-weight: 800; letter-spacing: .22em; transform: translate(calc((var(--mouse-x, 0) - .5) * var(--d) * 150px), calc((var(--mouse-y, 0) - .5) * var(--d) * 150px)); transition: transform .4s var(--ease); }
  .hero-monogram { position: absolute; z-index: -2; top: 50%; left: 50%; color: transparent; font: 900 min(70vw, 64rem)/.7 Arial, sans-serif; -webkit-text-stroke: 1px rgba(126, 190, 220, .075); transform: translate(-50%, -50%); }
  .hero-title-wrap { position: absolute; width: calc(100% - var(--gutter) * 2); left: var(--gutter); top: 49%; transform: translateY(-50%); }
  .hero-overline { display: flex; justify-content: space-between; padding-bottom: .7rem; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
  .hero-title, .hero-title-outline { white-space: nowrap; font-size: min(15.3vw, 17rem); font-weight: 900; line-height: .74; letter-spacing: -.084em; }
  .hero-title { position: relative; z-index: 1; color: var(--paper); text-shadow: 0 0 5rem rgba(45, 170, 255, .18); }
  .hero-title-outline { position: absolute; z-index: -1; top: 2.25rem; left: .8rem; color: transparent; -webkit-text-stroke: 1px rgba(69, 217, 255, .35); opacity: .45; }
  .hero-kinetic { position: relative; z-index: 3; width: min(47rem, 62vw); display: grid; grid-template-columns: 10rem 1fr; gap: .25rem 1.5rem; align-items: end; cursor: ew-resize; }
  .hero-kinetic__label { grid-row: 1 / 3; align-self: center; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .hero-phrase { min-height: 1.55em; font: italic 400 clamp(1.5rem, 3vw, 3rem)/1 Georgia, serif; letter-spacing: -.04em; transition: opacity .18s, transform .18s; }
  .hero-phrase.is-changing { opacity: 0; transform: translateY(.5rem); }
  .phrase-meter { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
  .phrase-meter i { height: 2px; background: var(--line-bright); transition: background .2s, transform .2s; transform-origin: left; }
  .phrase-meter i.active { background: var(--cyan); transform: scaleY(2); }
  .hero-kinetic__final { grid-column: 2; color: var(--muted); font-size: .75rem; }
  .hero-scroll { position: absolute; right: var(--gutter); bottom: clamp(2rem, 5vh, 4.5rem); display: grid; justify-items: end; gap: .7rem; color: var(--muted); font-size: .59rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; writing-mode: vertical-rl; }
  .hero-scroll i { width: 1px; height: 4rem; background: linear-gradient(var(--cyan), transparent); animation: scrollLine 2s var(--ease) infinite; }

  .section-head { display: grid; grid-template-columns: .8fr 2.15fr 1fr; gap: 2rem; align-items: start; }
  .section-head h2, .portrait-copy h2, .path-intro h2, .now-title h2, .build-head h2, .music-head h2, .writing-statement h2, .journal-head h2, .bng-portal h2, .blog-hero h1, .library-head h2, .article-related > h2 { font-size: clamp(2.8rem, 6vw, 6.8rem); line-height: .92; letter-spacing: -.065em; }
  .section-head h2 em, .portrait-copy h2 em, .build-head h2 em, .writing-statement h2 em, .journal-head h2 em, .blog-hero h1 em { color: var(--cyan); font-family: Georgia, serif; font-weight: 400; }
  .section-head > p { max-width: 29rem; color: var(--muted); }

  .identity { padding-top: clamp(7rem, 12vw, 13rem); padding-bottom: clamp(6rem, 10vw, 11rem); }
  .role-constellation { position: relative; min-height: 52rem; margin-top: 7rem; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle, rgba(15, 57, 91, .2), transparent 40%), linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%), linear-gradient(transparent 49.9%, var(--line) 50%, transparent 50.1%); }
  .role-constellation::before, .role-constellation::after { content: ''; position: absolute; inset: 12%; border: 1px solid var(--line); border-radius: 50%; pointer-events: none; }
  .role-constellation::after { inset: 29%; }
  .constellation-lines { position: absolute; inset: 50%; }
  .constellation-lines i { position: absolute; width: 22rem; border-top: 1px solid var(--line); transform-origin: left; }
  .constellation-lines i:nth-child(2) { transform: rotate(45deg); }
  .constellation-lines i:nth-child(3) { transform: rotate(90deg); }
  .constellation-lines i:nth-child(4) { transform: rotate(135deg); }
  .constellation-core { position: absolute; z-index: 2; left: 50%; top: 50%; width: 12rem; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 1px solid var(--cyan); border-radius: 50%; background: var(--ink); transform: translate(-50%, -50%); box-shadow: 0 0 5rem rgba(23, 121, 255, .15); }
  .constellation-core span { position: absolute; inset: 50% auto auto 50%; color: rgba(69, 217, 255, .08); font-size: 9rem; font-weight: 900; transform: translate(-50%, -50%); }
  .constellation-core strong { z-index: 1; font-size: .85rem; letter-spacing: .18em; }
  .constellation-core small { z-index: 1; margin-top: .35rem; color: var(--muted); font-size: .55rem; letter-spacing: .12em; }
  .role-node { --tx: 0; --ty: 0; position: absolute; z-index: 3; left: 50%; top: 50%; min-width: 8.5rem; padding: .8rem 1rem; border: 1px solid var(--line-bright); background: rgba(5, 7, 10, .94); font-size: .72rem; font-weight: 800; letter-spacing: .08em; cursor: pointer; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))); transition: color .3s, border-color .3s, background .3s, transform .45s var(--ease); }
  .role-node span { margin-right: .6rem; color: var(--dim); font-size: .58rem; }
  .role-node:hover, .role-node[aria-pressed='true'] { border-color: var(--cyan); color: var(--ink); background: var(--cyan); }
  .role-node[aria-pressed='true'] span { color: var(--ink); }
  .role-node--1 { --tx: -23rem; --ty: -18rem; }.role-node--2 { --tx: 0rem; --ty: -23rem; }.role-node--3 { --tx: 23rem; --ty: -18rem; }.role-node--4 { --tx: 29rem; --ty: 0rem; }
  .role-node--5 { --tx: 23rem; --ty: 18rem; }.role-node--6 { --tx: 0rem; --ty: 23rem; }.role-node--7 { --tx: -23rem; --ty: 18rem; }.role-node--8 { --tx: -29rem; --ty: 0rem; }
  .role-detail { position: absolute; z-index: 4; left: 50%; bottom: 1.5rem; width: min(31rem, 90%); padding: 1.4rem 1.5rem; border: 1px solid var(--line-bright); background: rgba(9, 13, 18, .94); backdrop-filter: blur(12px); transform: translateX(-50%); }
  .role-detail__item > span { color: var(--cyan); font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
  .role-detail__item h3 { margin-top: .65rem; font-size: 1.35rem; line-height: 1.15; }
  .role-detail__item p { margin-top: .6rem; color: var(--muted); font-size: .89rem; }
  .no-js .role-detail { position: relative; left: auto; bottom: auto; width: auto; transform: none; }
  .no-js .role-detail__item[hidden] { display: block; margin-top: 1rem; }

  .portrait-story { display: grid; grid-template-columns: minmax(20rem, .9fr) 1.1fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; padding-top: 5rem; padding-bottom: clamp(8rem, 13vw, 14rem); }
  .portrait-frame { --rx: 0deg; --ry: 0deg; position: relative; padding: 1rem; border: 1px solid var(--line); background: #0a0e13; transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .25s ease-out; }
  .portrait-frame::before { content: ''; position: absolute; inset: -1.4rem 30% 1.4rem -1.4rem; z-index: -1; border: 1px solid rgba(69, 217, 255, .28); }
  .portrait-frame picture { overflow: hidden; aspect-ratio: 4 / 5; clip-path: polygon(0 0, 86% 0, 100% 14%, 100% 100%, 0 100%); }
  .portrait-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.08); transition: transform .8s var(--ease), filter .5s; }
  .portrait-frame:hover img { transform: scale(1.035); filter: saturate(.92) contrast(1.05); }
  .portrait-frame__index, .portrait-frame__caption { position: absolute; z-index: 2; font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
  .portrait-frame__index { top: 2rem; right: 2rem; writing-mode: vertical-rl; }
  .portrait-frame__caption { left: 2rem; bottom: 2rem; padding: .45rem .6rem; background: var(--ink); }
  .portrait-copy h2 { margin-top: 2rem; max-width: 12ch; }
  .portrait-copy > p { max-width: 40rem; margin-top: 2rem; color: var(--muted); font-size: 1.1rem; }
  .portrait-copy > p:last-child { padding-top: 1.5rem; border-top: 1px solid var(--line); }

  .path { padding-top: clamp(6rem, 10vw, 10rem); padding-bottom: clamp(7rem, 11vw, 12rem); border-top: 1px solid var(--line); }
  .path-intro { display: grid; grid-template-columns: .7fr 1.5fr .85fr; gap: 2rem; align-items: start; }
  .path-intro p { color: var(--muted); }
  .timeline { display: grid; grid-template-columns: .72fr 1.6fr; gap: clamp(3rem, 8vw, 9rem); margin-top: 7rem; }
  .timeline-stage { position: sticky; top: 8rem; height: 26rem; display: grid; grid-template-rows: auto 1fr auto auto; padding: 1.5rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(13, 38, 63, .65), rgba(5, 7, 10, .4)); }
  .timeline-stage > span { color: var(--cyan); font-size: .68rem; letter-spacing: .15em; }
  .timeline-stage strong { align-self: center; max-width: 7ch; font-size: clamp(2.3rem, 5vw, 5rem); line-height: .82; letter-spacing: -.07em; overflow-wrap: anywhere; }
  .timeline-stage small { margin-top: .75rem; color: var(--muted); font-size: .55rem; letter-spacing: .14em; }
  .timeline-progress { height: 1px; background: var(--line-bright); overflow: hidden; }
  .timeline-progress i { display: block; width: 100%; height: 100%; background: var(--cyan); transform: scaleX(.125); transform-origin: left; transition: transform .5s var(--ease); }
  .timeline-steps { counter-reset: path; }
  .timeline-step { min-height: 23rem; display: grid; grid-template-columns: 4rem 1fr; gap: 2rem; align-content: center; border-top: 1px solid var(--line); opacity: .32; transition: opacity .45s, transform .45s; }
  .timeline-step:last-child { border-bottom: 1px solid var(--line); }
  .timeline-step.is-active { opacity: 1; transform: translateX(-.75rem); }
  .timeline-step__index { color: var(--cyan); font-size: .7rem; letter-spacing: .14em; }
  .timeline-step span { color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
  .timeline-step h3 { margin-top: .8rem; font-size: clamp(2rem, 4vw, 4.7rem); line-height: .94; letter-spacing: -.05em; }
  .timeline-step p { max-width: 41rem; margin-top: 1.3rem; color: var(--muted); }

  .now { display: grid; grid-template-columns: .75fr 1.55fr; gap: clamp(3rem, 8vw, 9rem); padding-top: clamp(7rem, 10vw, 11rem); padding-bottom: clamp(7rem, 10vw, 11rem); }
  .now-title { position: sticky; top: 8rem; height: max-content; }
  .now-title h2 { margin-top: 1.5rem; }
  .now-title p { max-width: 20rem; margin-top: 1.5rem; color: var(--muted); }
  .now-list { list-style: none; border-top: 1px solid var(--line-bright); }
  .now-row { display: grid; grid-template-columns: 5rem minmax(8rem, .7fr) 1.3fr 2rem; gap: 1rem; align-items: center; min-height: 8.8rem; border-bottom: 1px solid var(--line-bright); transition: background .3s, padding .3s; }
  .now-row:hover { padding-inline: 1rem; background: rgba(69, 217, 255, .035); }
  .now-row__mark { color: var(--cyan); font-size: .56rem; font-weight: 700; letter-spacing: .13em; }
  .now-row h3 { font-size: clamp(1.5rem, 2.4vw, 2.8rem); letter-spacing: -.04em; }
  .now-row p { color: var(--muted); }
  .now-row > span:last-child { color: var(--cyan); font-size: 1.3rem; }

  .build { padding-top: clamp(6rem, 9vw, 9rem); padding-bottom: clamp(8rem, 12vw, 13rem); }
  .build-head { display: grid; grid-template-columns: .7fr 2fr; gap: 2rem; }
  .build-system { position: relative; min-height: 48rem; margin-top: 6rem; border: 1px solid var(--line); overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(23, 121, 255, .15), transparent 28rem); }
  .build-system__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 4rem 4rem; opacity: .28; }
  .build-system::before, .build-system::after { content: ''; position: absolute; left: 50%; top: 50%; width: 35rem; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; transform: translate(-50%, -50%); }
  .build-system::after { width: 21rem; }
  .build-core { position: absolute; left: 50%; top: 50%; z-index: 2; width: 10rem; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 1px solid var(--cyan); background: var(--ink); transform: translate(-50%, -50%) rotate(45deg); }
  .build-core > * { transform: rotate(-45deg); }
  .build-core span, .build-core small { color: var(--muted); font-size: .53rem; letter-spacing: .12em; }
  .build-core strong { margin: .3rem 0; font-size: 1rem; letter-spacing: .1em; }
  .build-node { position: absolute; z-index: 3; min-width: 9rem; padding: .75rem .9rem; border: 1px solid var(--line-bright); background: var(--ink-soft); font-size: .68rem; font-weight: 800; letter-spacing: .08em; cursor: pointer; transition: .3s var(--ease); }
  .build-node span { margin-right: .55rem; color: var(--dim); font-size: .54rem; }
  .build-node:hover, .build-node[aria-pressed='true'] { color: var(--ink); background: var(--cyan); border-color: var(--cyan); transform: translateY(-4px); }
  .build-node--1 { left: 8%; top: 14%; }.build-node--2 { left: 40%; top: 8%; }.build-node--3 { right: 9%; top: 17%; }
  .build-node--4 { left: 11%; top: 45%; }.build-node--5 { right: 10%; top: 45%; }.build-node--6 { left: 6%; bottom: 15%; }
  .build-node--7 { left: 40%; bottom: 8%; }.build-node--8 { right: 7%; bottom: 16%; }.build-node--9 { right: 4%; top: 31%; }
  .build-output { position: absolute; z-index: 4; left: 1.5rem; bottom: 1.5rem; width: min(26rem, calc(100% - 3rem)); padding: 1.2rem; border-left: 2px solid var(--cyan); background: rgba(5, 7, 10, .92); }
  .build-output span { color: var(--cyan); font-size: .6rem; font-weight: 700; letter-spacing: .14em; }
  .build-output p { margin-top: .55rem; color: #b2bec9; font-size: .88rem; }

  .sport { position: relative; min-height: 58rem; display: grid; align-items: end; overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(100deg, #07090c, #101011 55%, #0a1017); }
  .sport::before { content: ''; position: absolute; left: -8%; bottom: -30%; width: 48rem; aspect-ratio: 1; border: 1px solid rgba(215, 155, 102, .14); border-radius: 50%; box-shadow: 0 0 0 7rem rgba(215, 155, 102, .018), 0 0 0 14rem rgba(215, 155, 102, .012); }
  .sport-type { position: absolute; inset: 4% 0 auto; display: flex; justify-content: space-between; color: transparent; font-size: min(24vw, 24rem); font-weight: 900; line-height: .8; letter-spacing: -.09em; -webkit-text-stroke: 1px rgba(242, 245, 247, .14); }
  .sport-type span:first-child { color: var(--warm); -webkit-text-stroke: 0; opacity: .9; }
  .sport-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 5rem; align-items: end; padding-bottom: clamp(4rem, 8vw, 8rem); }
  .sport-copy h2 { max-width: 16ch; margin-top: 1.5rem; font-size: clamp(2.7rem, 5.5vw, 6.2rem); line-height: .94; letter-spacing: -.06em; }
  .sport-copy p { max-width: 37rem; margin-top: 1.5rem; color: #aaa49d; }
  .sport-facts { border-top: 1px solid rgba(215, 155, 102, .35); }
  .sport-facts div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
  .sport-facts dt { color: #857b72; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
  .sport-facts dd { font-weight: 700; }

  .music { padding-top: clamp(8rem, 13vw, 14rem); padding-bottom: clamp(8rem, 12vw, 13rem); }
  .music-head { display: grid; grid-template-columns: 1.6fr .75fr; gap: 4rem; align-items: end; }
  .music-head h2 { margin-top: 1.5rem; }
  .music-head p { color: var(--muted); }
  .track-list { margin-top: 5rem; list-style: none; border-top: 1px solid var(--line-bright); }
  .track-row { display: grid; grid-template-columns: 4rem 1fr 1fr 8rem; gap: 1.5rem; align-items: center; min-height: 8rem; border-bottom: 1px solid var(--line-bright); cursor: default; transition: padding .35s var(--ease), color .35s, background .35s; }
  .track-row:hover, .track-row:focus-visible { padding-inline: 1.2rem; background: rgba(69, 217, 255, .035); color: var(--cyan); }
  .track-number, .track-state { color: var(--dim); font-size: .57rem; letter-spacing: .13em; text-transform: uppercase; }
  .track-row strong { font-size: clamp(1.6rem, 3vw, 3.5rem); letter-spacing: -.04em; }
  .equalizer { height: 3rem; display: flex; align-items: center; gap: 3px; }
  .equalizer i { width: 2px; height: calc(15% + (var(--bar) % 5) * 13%); background: var(--line-bright); transform-origin: center; }
  .track-row:hover .equalizer i, .track-row:focus .equalizer i { background: var(--cyan); animation: equalize calc(.45s + var(--bar) * .025s) ease-in-out infinite alternate; }
  .music-actions { display: flex; gap: .75rem; margin-top: 2rem; }

  .writing { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(3rem, 8vw, 9rem); padding-top: clamp(7rem, 11vw, 12rem); padding-bottom: clamp(8rem, 12vw, 13rem); border-top: 1px solid var(--line); }
  .writing-statement h2 { margin-top: 1.5rem; }
  .writing-statement h2 em { display: inline-block; max-width: 18ch; margin-top: 1.5rem; color: var(--muted); font-size: .36em; line-height: 1.3; letter-spacing: -.025em; }
  .writing-ledger { align-self: end; border-top: 1px solid var(--line-bright); }
  .writing-ledger div { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
  .writing-ledger span { display: block; color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
  .writing-ledger strong { display: block; margin-top: .4rem; font-size: 1.35rem; }
  .writing-ledger p { margin-top: 2rem; color: var(--muted); }

  .journal { padding-top: clamp(6rem, 9vw, 9rem); padding-bottom: clamp(8rem, 12vw, 13rem); }
  .journal-head { display: grid; grid-template-columns: .6fr 1.7fr .6fr; gap: 2rem; align-items: end; }
  .journal-head > a { justify-self: end; padding-bottom: .35rem; border-bottom: 1px solid var(--cyan); color: var(--cyan); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .home-posts { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 1px; margin-top: 5rem; background: var(--line); border: 1px solid var(--line); }
  .home-post { position: relative; min-height: 31rem; display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 3rem); background: var(--ink); overflow: hidden; }
  .home-post::before { content: ''; position: absolute; width: 16rem; aspect-ratio: 1; right: -8rem; bottom: -8rem; border: 1px solid var(--line-bright); border-radius: 50%; transition: transform .7s var(--ease), background .4s; }
  .home-post:hover::before { transform: scale(1.4); background: rgba(69, 217, 255, .04); }
  .home-post > a { position: absolute; inset: 0; z-index: 2; }
  .home-post__meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .59rem; letter-spacing: .12em; text-transform: uppercase; }
  .home-post h3 { margin-top: auto; font-size: clamp(1.7rem, 3vw, 3.6rem); line-height: .98; letter-spacing: -.05em; }
  .home-post p { margin-top: 1rem; color: var(--muted); font-size: .88rem; }
  .home-post__arrow { position: absolute; right: 1.5rem; bottom: 1rem; color: var(--cyan); font-size: 1.4rem; transition: transform .3s; }
  .home-post:hover .home-post__arrow { transform: translate(.25rem, -.25rem); }
  .home-post--2, .home-post--3 { min-height: 25rem; }

  .bng { padding-bottom: clamp(7rem, 10vw, 10rem); }
  .bng-portal { --rx: 0deg; --ry: 0deg; position: relative; min-height: 45rem; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; padding: 3rem; border: 1px solid rgba(69, 217, 255, .28); text-align: center; background: radial-gradient(circle at 50% 45%, rgba(23, 121, 255, .22), transparent 30%), #07101a; transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .25s ease-out, border-color .4s; }
  .bng-portal:hover { border-color: var(--cyan); }
  .bng-portal h2 { position: relative; z-index: 2; margin-top: 1.7rem; }
  .bng-portal p { position: relative; z-index: 2; max-width: 40rem; margin-top: 1.7rem; color: #a9b8c6; }
  .bng-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 3rem; margin-top: 2.5rem; padding-bottom: .55rem; border-bottom: 1px solid var(--cyan); color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .bng-link i { font-size: 1.2rem; font-style: normal; }
  .bng-portal__rings { position: absolute; inset: 50%; }
  .bng-portal__rings i { position: absolute; left: 0; top: 0; width: 25rem; aspect-ratio: 1; border: 1px solid rgba(69, 217, 255, .14); border-radius: 50%; transform: translate(-50%, -50%); }
  .bng-portal__rings i:nth-child(2) { width: 40rem; animation: slowSpin 18s linear infinite; border-style: dashed; }
  .bng-portal__rings i:nth-child(3) { width: 61rem; border-color: rgba(69, 217, 255, .08); }

  .site-footer { width: min(100%, var(--max)); margin-inline: auto; padding: clamp(5rem, 9vw, 9rem) var(--gutter) 2rem; border-top: 1px solid var(--line); }
  .footer-statement { display: grid; grid-template-columns: .7fr 2.3fr; gap: 2rem; }
  .footer-statement p { font-size: clamp(4rem, 11vw, 11rem); font-weight: 900; line-height: .78; letter-spacing: -.075em; }
  .footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 2rem; align-items: start; margin-top: 7rem; padding-block: 2rem; border-block: 1px solid var(--line); }
  .footer-brand { font-weight: 900; letter-spacing: .14em; }
  .footer-social { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .footer-social a { display: grid; grid-template-columns: 2.3rem 1fr auto; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .footer-social a span:first-child { color: var(--cyan); }
  .footer-social a:hover { color: var(--paper); }
  .footer-bng { justify-self: end; color: var(--cyan); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
  .footer-base { display: flex; justify-content: space-between; padding-top: 1.5rem; color: var(--dim); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }

  /* Blog index */
  .blog-index { padding-top: 8rem; }
  .blog-hero { min-height: 37rem; display: grid; align-content: end; padding-top: 4rem; padding-bottom: 4rem; }
  .blog-hero h1 { margin-top: 2rem; font-size: clamp(3.5rem, 9vw, 10rem); }
  .blog-hero__foot { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: end; margin-top: 3rem; }
  .blog-hero__foot p { max-width: 39rem; color: var(--muted); }
  .blog-hero__foot > span { color: var(--muted); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
  .blog-hero__foot strong { display: block; color: var(--paper); font-size: 2.5rem; line-height: 1; }
  .featured-post { padding-top: 2rem; padding-bottom: 6rem; }
  .featured-post article { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; min-height: 36rem; border: 1px solid var(--line-bright); overflow: hidden; }
  .featured-post article > a { position: absolute; inset: 0; z-index: 3; }
  .featured-post__visual { position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle, rgba(69, 217, 255, .2), transparent 35%), linear-gradient(135deg, #08101a, #0b2139); }
  .featured-post__visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 3rem 3rem; opacity: .3; transform: perspective(600px) rotateX(55deg) scale(1.5); }
  .featured-post__visual > span { position: absolute; left: 1.5rem; top: 1.5rem; color: var(--cyan); font-size: .58rem; font-weight: 700; letter-spacing: .13em; }
  .featured-post__visual strong { position: relative; color: transparent; font-size: 22rem; line-height: .8; -webkit-text-stroke: 1px rgba(69, 217, 255, .5); }
  .featured-post__visual i { position: absolute; width: 12rem; aspect-ratio: 1; border: 1px solid var(--cyan); transform: rotate(45deg); transition: transform .8s var(--ease); }
  .featured-post article:hover .featured-post__visual i { transform: rotate(135deg) scale(1.2); }
  .featured-post__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); }
  .featured-post__copy > div { display: flex; gap: 1.5rem; color: var(--muted); font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; }
  .featured-post__copy h2 { margin-top: 2.2rem; font-size: clamp(2.3rem, 4.5vw, 5rem); line-height: .94; letter-spacing: -.055em; }
  .featured-post__copy p { margin-top: 1.5rem; color: var(--muted); }
  .featured-post__cta { margin-top: 3rem; color: var(--cyan); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
  .blog-library { padding-top: 5rem; padding-bottom: 10rem; }
  .library-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
  .library-head h2 { margin-top: 1rem; }
  .blog-search { position: relative; width: min(23rem, 100%); border-bottom: 1px solid var(--line-bright); }
  .blog-search input { width: 100%; padding: .9rem 2rem .9rem 0; border: 0; outline: 0; background: transparent; color: var(--paper); }
  .blog-search input::placeholder { color: var(--dim); }
  .blog-search i { position: absolute; right: .25rem; top: 50%; width: .85rem; aspect-ratio: 1; border: 1px solid var(--muted); border-radius: 50%; transform: translateY(-65%); }
  .blog-search i::after { content: ''; position: absolute; right: -.38rem; bottom: -.2rem; width: .5rem; border-top: 1px solid var(--muted); transform: rotate(45deg); }
  .filter-strip { display: flex; gap: .5rem; margin-top: 3rem; padding-bottom: .6rem; overflow-x: auto; scrollbar-width: thin; }
  .filter-strip button { flex: 0 0 auto; padding: .65rem 1rem; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .08em; cursor: pointer; }
  .filter-strip button:hover, .filter-strip button[aria-pressed='true'] { color: var(--ink); border-color: var(--cyan); background: var(--cyan); }
  .filter-status { margin-top: 1rem; color: var(--dim); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }
  .editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; margin-top: 2.5rem; background: var(--line); border: 1px solid var(--line); }
  .article-card { position: relative; grid-column: span 4; min-height: 37rem; display: flex; flex-direction: column; background: var(--ink); overflow: hidden; }
  .article-card:nth-child(5n + 1) { grid-column: span 7; }.article-card:nth-child(5n + 2) { grid-column: span 5; }.article-card:nth-child(5n + 4) { grid-column: span 5; }.article-card:nth-child(5n + 5) { grid-column: span 7; }
  .article-card[hidden] { display: none; }
  .article-card__link { position: absolute; inset: 0; z-index: 4; }
  .article-card__visual { position: relative; min-height: 15rem; overflow: hidden; display: grid; place-items: center; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #0b1118, #07182a); }
  .article-card__visual::before { content: ''; position: absolute; width: 16rem; aspect-ratio: 1; border: 1px solid var(--line-bright); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(69, 217, 255, .02), 0 0 0 6rem rgba(69, 217, 255, .015); transition: transform .7s var(--ease); }
  .article-card:hover .article-card__visual::before { transform: scale(1.18) rotate(35deg); }
  .article-card__visual > span { position: absolute; left: 1rem; top: 1rem; color: var(--cyan); font-size: .55rem; letter-spacing: .13em; }
  .article-card__visual b { position: relative; font-size: .65rem; letter-spacing: .22em; }
  .article-card__visual i { position: absolute; width: 5rem; aspect-ratio: 1; border: 1px solid rgba(69, 217, 255, .4); transform: rotate(45deg); }
  .article-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
  .article-card__meta { display: flex; flex-wrap: wrap; gap: .65rem 1rem; color: var(--dim); font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; }
  .article-card__meta span:first-child { color: var(--cyan); }
  .article-card h2 { margin-top: auto; padding-top: 2.5rem; font-size: clamp(1.8rem, 3vw, 3.3rem); line-height: .98; letter-spacing: -.05em; }
  .article-card p { margin-top: 1rem; color: var(--muted); font-size: .86rem; }
  .article-card__tags { display: flex; gap: .7rem; margin-top: 1.4rem; color: var(--dim); font-size: .6rem; }
  .article-card__arrow { position: absolute; right: 1.2rem; bottom: 1rem; color: var(--cyan); font-size: 1.3rem; }
  .empty-state { min-height: 24rem; margin-top: 2rem; place-content: center; text-align: center; border: 1px solid var(--line); }
  .empty-state:not([hidden]) { display: grid; }
  .empty-state span { color: var(--cyan); font-size: .6rem; letter-spacing: .14em; }
  .empty-state h2 { margin-top: .7rem; font-size: clamp(2rem, 4vw, 4rem); }
  .empty-state button { justify-self: center; margin-top: 1.5rem; padding: .7rem 1rem; border: 1px solid var(--line-bright); background: transparent; cursor: pointer; }

  /* Article */
  .article-page { padding-top: 7rem; }
  .breadcrumbs { padding-top: 2rem; }
  .breadcrumbs ol { display: flex; gap: .5rem; list-style: none; color: var(--dim); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
  .breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: .5rem; color: var(--line-bright); }
  .breadcrumbs li:last-child { overflow: hidden; max-width: 28rem; text-overflow: ellipsis; white-space: nowrap; }
  .breadcrumbs a:hover { color: var(--cyan); }
  .article-head { max-width: 1180px; padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: 4rem; }
  .article-head__meta { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; color: var(--muted); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
  .article-head__meta span:first-child { color: var(--cyan); }
  .article-head h1 { max-width: 15ch; margin-top: 2rem; font-size: clamp(3.3rem, 8vw, 8.8rem); line-height: .88; letter-spacing: -.07em; text-wrap: balance; }
  .article-subtitle { max-width: 46rem; margin-top: 2rem; color: #aeb8c2; font: italic clamp(1.2rem, 2.2vw, 2rem)/1.35 Georgia, serif; }
  .article-byline { display: flex; align-items: center; gap: .8rem; margin-top: 3rem; }
  .byline-mark { width: 2.8rem; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--cyan); transform: rotate(45deg); color: var(--cyan); font-weight: 900; }
  .byline-mark + div { display: grid; }
  .byline-mark + div strong { font-size: .73rem; letter-spacing: .12em; }
  .byline-mark + div span, .article-byline > p { color: var(--dim); font-size: .6rem; letter-spacing: .06em; }
  .article-byline > p { margin-left: auto; }
  .article-cover { position: relative; max-width: 1328px; min-height: 26rem; margin-inline: auto; overflow: hidden; border: 1px solid var(--line); background: #09111b; }
  .article-cover img { width: 100%; max-height: 72vh; object-fit: cover; filter: saturate(.72) contrast(1.08); }
  .article-cover figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: .4rem .55rem; background: rgba(5, 7, 10, .88); font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }
  .article-cover--generated { display: grid; place-items: center; background: radial-gradient(circle, rgba(23, 121, 255, .22), transparent 28%), linear-gradient(135deg, #080c12, #0a2138); }
  .article-cover--generated::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 4rem 4rem; opacity: .25; }
  .article-cover--generated span { position: absolute; left: 2rem; top: 2rem; color: var(--cyan); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
  .article-cover--generated strong { position: relative; color: transparent; font-size: 20rem; line-height: 1; -webkit-text-stroke: 1px rgba(69, 217, 255, .45); }
  .article-cover--generated i { position: absolute; width: 13rem; aspect-ratio: 1; border: 1px solid var(--cyan); transform: rotate(45deg); }
  .article-layout { position: relative; max-width: 1180px; display: grid; grid-template-columns: minmax(11rem, .55fr) minmax(0, 1.6fr) 4rem; gap: clamp(2rem, 5vw, 5rem); padding-top: 6rem; }
  .article-toc { position: sticky; top: 7rem; height: max-content; padding-top: 1rem; border-top: 1px solid var(--line-bright); }
  .article-toc > span, .article-tools > span { color: var(--dim); font-size: .57rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .article-toc ol { margin-top: 1rem; list-style: none; }
  .article-toc li + li { margin-top: .7rem; }
  .article-toc li.level-3 { padding-left: .75rem; }
  .article-toc a { color: var(--muted); font-size: .72rem; line-height: 1.35; }
  .article-toc a:hover, .article-toc a.is-active { color: var(--cyan); }
  .article-body { min-width: 0; font: 400 1.08rem/1.82 Arial, sans-serif; color: #ced5dc; }
  .article-body > p:first-child { color: var(--paper); font: 400 clamp(1.25rem, 2vw, 1.65rem)/1.55 Georgia, serif; }
  .article-body p + p { margin-top: 1.45rem; }
  .article-body h2, .article-body h3 { scroll-margin-top: 7rem; color: var(--paper); line-height: 1.08; letter-spacing: -.04em; }
  .article-body h2 { margin: 5rem 0 1.5rem; font-size: clamp(2.1rem, 4vw, 3.8rem); }
  .article-body h3 { margin: 3rem 0 1rem; font-size: clamp(1.5rem, 2.5vw, 2.3rem); }
  .heading-anchor { margin-left: .45rem; color: transparent; font-size: .6em; transition: color .2s; }
  .article-body h2:hover .heading-anchor, .article-body h3:hover .heading-anchor, .heading-anchor:focus { color: var(--cyan); }
  .article-body a { color: var(--cyan); text-decoration: underline; text-decoration-color: rgba(69, 217, 255, .35); text-underline-offset: .2em; }
  .article-body ul, .article-body ol { margin: 1.6rem 0; padding-left: 1.35rem; }
  .article-body li { padding-left: .4rem; }
  .article-body li + li { margin-top: .65rem; }
  .article-body li::marker { color: var(--cyan); }
  .article-body blockquote { position: relative; margin: 3rem 0; padding: 2.2rem 2.4rem 2.2rem 3rem; border-block: 1px solid var(--line-bright); font: italic clamp(1.45rem, 3vw, 2.35rem)/1.35 Georgia, serif; color: var(--paper); }
  .article-body blockquote::before { content: '“'; position: absolute; left: 0; top: 1rem; color: var(--cyan); font-size: 4rem; line-height: 1; }
  .article-body pre { margin: 2.5rem 0; overflow-x: auto; padding: 1.5rem; border: 1px solid var(--line); background: #080d13; color: #bfe8f4; font: .83rem/1.65 Consolas, 'Courier New', monospace; }
  .article-body :not(pre) > code { padding: .14rem .35rem; border: 1px solid var(--line); background: var(--graphite); color: var(--cyan); font: .85em Consolas, monospace; }
  .article-callout { margin: 2.5rem 0; padding: 1.5rem 1.6rem; border-left: 2px solid var(--cyan); background: linear-gradient(90deg, rgba(69, 217, 255, .09), transparent); }
  .article-callout strong { color: var(--cyan); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
  .article-callout p { margin-top: .6rem; }
  .article-body figure { margin: 3rem 0; }
  .article-body figure img { width: 100%; }
  .article-body figcaption { margin-top: .7rem; color: var(--dim); font-size: .68rem; }
  .table-wrap { margin: 2.5rem 0; overflow-x: auto; }
  .article-body table { width: 100%; border-collapse: collapse; font-size: .88rem; }
  .article-body th, .article-body td { min-width: 10rem; padding: .9rem 1rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
  .article-body th { background: var(--graphite); color: var(--paper); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
  .video-embed { margin: 2.5rem 0; }
  .video-embed a { display: grid; grid-template-columns: 5rem 1fr auto; gap: 1rem; align-items: center; padding: 1.5rem; border: 1px solid var(--line-bright); text-decoration: none; }
  .video-embed span { color: var(--cyan); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
  .video-embed i { font-style: normal; }
  .article-tools { position: sticky; top: 7rem; height: max-content; display: grid; justify-items: center; gap: .75rem; }
  .article-tools > span { writing-mode: vertical-rl; margin-bottom: .5rem; }
  .article-tools button { width: 2.8rem; aspect-ratio: 1; border: 1px solid var(--line-bright); background: transparent; cursor: pointer; }
  .article-tools button:hover { border-color: var(--cyan); color: var(--cyan); }
  .article-end { max-width: 1180px; display: flex; justify-content: space-between; gap: 2rem; margin-top: 5rem; padding-top: 2rem; padding-bottom: 7rem; border-top: 1px solid var(--line); }
  .article-end > div { display: flex; flex-wrap: wrap; gap: .7rem; }
  .article-end > div > span { color: var(--dim); font-size: .65rem; text-transform: uppercase; }
  .article-end a { color: var(--cyan); font-size: .7rem; }
  .article-end p { color: var(--dim); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
  .article-related { width: min(100%, 1180px); margin: 0 auto 9rem; padding-inline: var(--gutter); }
  .article-related > h2 { margin-top: 1.2rem; font-size: clamp(2.3rem, 4.8vw, 5.2rem); }
  .article-related > div:last-child { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 2.5rem; background: var(--line); border: 1px solid var(--line); }
  .article-related article { position: relative; min-height: 17rem; display: flex; flex-direction: column; padding: 2rem; background: var(--ink); }
  .article-related article > a { position: absolute; inset: 0; z-index: 2; }
  .article-related article span { color: var(--cyan); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }
  .article-related article h3 { max-width: 16ch; margin-top: auto; font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1; letter-spacing: -.04em; }
  .article-related article i { position: absolute; right: 1.5rem; bottom: 1rem; color: var(--cyan); font-style: normal; }

  /* 404 */
  .not-found { min-height: 100svh; position: relative; display: grid; place-items: center; overflow: hidden; padding: 8rem var(--gutter) 3rem; }
  .not-found__field { position: absolute; inset: 50% auto auto 50%; display: flex; color: transparent; font-size: min(36vw, 35rem); font-weight: 900; line-height: .7; letter-spacing: -.12em; -webkit-text-stroke: 1px rgba(69, 217, 255, .18); transform: translate(-50%, -50%); }
  .not-found__field span:nth-child(2) { display: inline-block; color: rgba(69, 217, 255, .04); border-radius: 50%; transition: transform .3s var(--ease); }
  .not-found__copy { position: relative; z-index: 2; max-width: 47rem; text-align: center; }
  .not-found__copy h1 { margin-top: 1.5rem; font-size: clamp(3rem, 7vw, 7rem); line-height: .9; letter-spacing: -.065em; }
  .not-found__copy p { max-width: 37rem; margin: 1.5rem auto 0; color: var(--muted); }
  .not-found__copy > div { display: flex; justify-content: center; gap: .75rem; margin-top: 2rem; }
  .not-found-page .site-footer { display: none; }
}

@layer responsive {
  @media (max-width: 1120px) {
    .role-node--1 { --tx: -19rem; --ty: -16rem; }.role-node--2 { --tx: 0rem; --ty: -21rem; }.role-node--3 { --tx: 19rem; --ty: -16rem; }.role-node--4 { --tx: 24rem; --ty: 0rem; }
    .role-node--5 { --tx: 19rem; --ty: 16rem; }.role-node--6 { --tx: 0rem; --ty: 21rem; }.role-node--7 { --tx: -19rem; --ty: 16rem; }.role-node--8 { --tx: -24rem; --ty: 0rem; }
    .home-posts { grid-template-columns: 1fr 1fr; }.home-post:first-child { grid-column: 1 / -1; }.home-post { min-height: 25rem; }
    .article-card { grid-column: span 6 !important; }
  }

  @media (max-width: 900px) {
    .desktop-nav { display: none; }.menu-toggle { display: flex; }
    .site-header { min-height: 4.7rem; }.site-header.is-compact { min-height: 4.1rem; }
    .hero { padding-top: 6rem; }.hero-title-wrap { top: 42%; }.hero-title, .hero-title-outline { font-size: 15vw; }.hero-title-outline { top: 1.4rem; }
    .hero-kinetic { width: calc(100% - 4rem); grid-template-columns: 7rem 1fr; }.hero-scroll { right: 1rem; }
    .section-head, .path-intro { grid-template-columns: 1fr; }.section-head h2, .path-intro h2 { max-width: 13ch; }
    .section-head > p, .path-intro p { margin-left: 28%; }
    .role-constellation { min-height: auto; margin-top: 4rem; padding: 1rem; border-radius: 0; background: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .role-constellation::before, .role-constellation::after, .constellation-lines, .constellation-core { display: none; }
    .role-node { position: static; min-width: 0; text-align: left; transform: none; }
    .role-node:hover, .role-node[aria-pressed='true'] { transform: none; }
    .role-detail { position: relative; grid-column: 1 / -1; left: auto; bottom: auto; width: 100%; min-height: 13rem; display: grid; align-content: center; transform: none; }
    .portrait-story { grid-template-columns: .85fr 1fr; gap: 3rem; }
    .timeline { grid-template-columns: 1fr; }.timeline-stage { display: none; }.timeline-step { min-height: 18rem; opacity: .65; }.timeline-step.is-active { transform: none; }
    .now { grid-template-columns: 1fr; }.now-title { position: static; }.now-title p { max-width: 36rem; }
    .build-head { grid-template-columns: 1fr; }.build-system { min-height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; padding: 1rem; }
    .build-system::before, .build-system::after, .build-system__grid, .build-core { display: none; }
    .build-node { position: static; min-width: 0; text-align: left; }.build-output { position: relative; grid-column: 1 / -1; left: auto; bottom: auto; width: 100%; margin-top: 1rem; }
    .sport { min-height: 50rem; }.sport-content { grid-template-columns: 1fr; gap: 3rem; }.sport-type { top: 11%; }
    .music-head, .writing { grid-template-columns: 1fr; }.music-head p { max-width: 36rem; }.writing-ledger { width: min(100%, 38rem); margin-left: auto; }
    .journal-head { grid-template-columns: 1fr; }.journal-head > a { justify-self: start; }
    .footer-statement, .footer-grid { grid-template-columns: 1fr; }.footer-bng { justify-self: start; }.footer-social { max-width: 35rem; }
    .featured-post article { grid-template-columns: 1fr; }.featured-post__visual { min-height: 25rem; }.featured-post__copy { min-height: 28rem; }
    .article-layout { grid-template-columns: 1fr; max-width: 760px; }.article-toc { position: relative; top: auto; order: 0; }.article-body { order: 1; }.article-tools { position: relative; top: auto; order: 2; display: flex; justify-content: flex-start; }.article-tools > span { writing-mode: horizontal-tb; margin: 0 1rem 0 0; }
  }

  @media (max-width: 640px) {
    :root { --gutter: 1rem; }
    .section-kicker { font-size: .6rem; }
    .site-brand { font-size: .73rem; }
    .hero { min-height: 100svh; padding-bottom: 2rem; }
    .hero-grid { background-size: 4rem 4rem; }
    .hero-orbit span:nth-child(n+6) { display: none; }
    .hero-title-wrap { top: 36%; width: calc(100% - 2rem); }
    .hero-overline span:last-child { display: none; }
    .hero-title, .hero-title-outline { font-size: 14.6vw; letter-spacing: -.075em; }
    .hero-title-outline { top: 1rem; left: .35rem; }
    .hero-kinetic { width: calc(100% - 1rem); grid-template-columns: 1fr; gap: .6rem; }
    .hero-kinetic__label { grid-row: auto; }.hero-phrase { font-size: clamp(1.45rem, 7.4vw, 2rem); }.hero-kinetic__final { grid-column: 1; max-width: 23rem; }
    .hero-scroll { right: .4rem; bottom: 2rem; }.hero-scroll span { display: none; }.hero-scroll i { height: 2.5rem; }
    .section-head h2, .portrait-copy h2, .path-intro h2, .now-title h2, .build-head h2, .music-head h2, .writing-statement h2, .journal-head h2, .bng-portal h2, .blog-hero h1, .library-head h2 { font-size: clamp(2.45rem, 13vw, 4.8rem); }
    .section-head > p, .path-intro p { margin-left: 0; }
    .identity { padding-top: 6rem; }.role-constellation { grid-template-columns: 1fr; }.role-detail { grid-column: 1; min-height: 15rem; }
    .portrait-story { grid-template-columns: 1fr; padding-top: 2rem; }.portrait-frame { width: calc(100% - 2rem); margin-left: auto; }.portrait-copy { order: -1; }
    .timeline { margin-top: 4rem; }.timeline-step { grid-template-columns: 2.5rem 1fr; gap: 1rem; min-height: 21rem; }.timeline-step h3 { font-size: 2.4rem; }
    .now-row { grid-template-columns: 3.5rem 1fr 1.5rem; min-height: 8rem; }.now-row p { grid-column: 2 / 4; margin-top: -1.6rem; padding-bottom: 1.2rem; }.now-row > span:last-child { grid-column: 3; grid-row: 1; }.now-row h3 { font-size: 1.7rem; }
    .build-system { grid-template-columns: 1fr; }.build-output { grid-column: 1; }
    .sport { min-height: 48rem; }.sport-content { padding-bottom: 3rem; }.sport-type { top: 14%; font-size: 28vw; }.sport-copy h2 { font-size: clamp(2.5rem, 12vw, 4.3rem); }.sport-facts div { grid-template-columns: 5.5rem 1fr; }
    .track-row { grid-template-columns: 2.5rem 1fr 4rem; gap: .6rem; min-height: 7rem; }.track-row .equalizer { display: none; }.track-state { text-align: right; font-size: .48rem; }.track-row strong { font-size: 1.5rem; }
    .music-actions { flex-direction: column; }.writing-ledger { margin-left: 0; }
    .home-posts { grid-template-columns: 1fr; }.home-post:first-child { grid-column: auto; }.home-post { min-height: 23rem; }
    .bng-portal { min-height: 38rem; padding: 2rem 1.2rem; }.bng-portal h2 { font-size: clamp(2.4rem, 12vw, 4rem); }.bng-portal__rings i:nth-child(3) { display: none; }
    .footer-statement p { font-size: 18vw; }.footer-grid { margin-top: 4rem; }.footer-social { grid-template-columns: 1fr; }.footer-base { display: grid; gap: .65rem; }
    .blog-index { padding-top: 5rem; }.blog-hero { min-height: 32rem; }.blog-hero__foot { grid-template-columns: 1fr; gap: 1.5rem; }
    .featured-post article { min-height: 0; }.featured-post__visual { min-height: 18rem; }.featured-post__visual strong { font-size: 13rem; }.featured-post__copy { min-height: 25rem; padding: 1.5rem; }
    .library-head { display: grid; }.blog-search { width: 100%; }.article-card { grid-column: 1 / -1 !important; min-height: 34rem; }
    .article-head h1 { font-size: clamp(3rem, 15vw, 5rem); }.article-byline { flex-wrap: wrap; }.article-byline > p { width: 100%; margin: .5rem 0 0; }
    .breadcrumbs li:last-child { max-width: 10rem; }.article-cover { min-height: 19rem; }.article-cover--generated strong { font-size: 12rem; }
    .article-layout { padding-top: 3.5rem; }.article-body { font-size: 1rem; }.article-body blockquote { padding: 1.7rem 1rem 1.7rem 2.4rem; }.article-end { display: grid; padding-bottom: 5rem; }
    .article-related > div:last-child { grid-template-columns: 1fr; }.article-related article { min-height: 14rem; }
    .not-found__copy > div { flex-direction: column; }.not-found__field { font-size: 48vw; }
  }

  @media (max-width: 380px) {
    .menu-label { display: none; }
    .hero-title, .hero-title-outline { font-size: 14.4vw; }
    .hero-kinetic__final { font-size: .68rem; max-width: 16rem; }
    .role-node { padding: .72rem; }
    .now-row__mark { font-size: .48rem; }
    .button { width: 100%; }
  }
}

@layer motion {
  @keyframes scan { to { transform: translateX(80%); } }
  @keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
  @keyframes equalize { to { transform: scaleY(.25); } }
  @keyframes slowSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .cursor { display: none; }
  }

  @media (hover: none), (pointer: coarse) {
    .cursor { display: none; }
    .hero-kinetic { cursor: default; }
  }
}
