:root {
    --paper: #f2efe6;
    --paper-deep: #e5e0d3;
    --ink: #111111;
    --muted: #706d66;
    --line: #bdb8aa;
    --signal: #3047ff;
    --signal-dark: #1d2cc2;
    --acid: #dfff55;
    --brand-spike-on-light: var(--acid);
    --brand-spike-on-dark: var(--acid);
    --coral: #ff6546;
    --white: #fffefa;
    --header-height: 76px;
    --flag-height: 0px;
    --gutter: clamp(1rem, 3.2vw, 3.5rem);
    --max: 1600px;
    --content-max: 1280px;
    --section-space: clamp(4.5rem, 8vw, 8rem);
    --section-space-compact: clamp(3.5rem, 6vw, 6rem);
    --tracking-display: -0.06em;
    --tracking-display-tight: -0.07em;
    --tracking-label: 0.06em;
    --font-sans: Arial, Helvetica, sans-serif;
    --font-display: "Arial Black", "Arial Narrow", Arial, Helvetica, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
    scroll-behavior: smooth;
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
        var(--paper);
    background-size: 100% 7px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-kerning: normal;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button,
input {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

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

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.skip-link {
    position: fixed;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    top: var(--flag-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    margin-top: var(--flag-height);
    padding: 0 var(--gutter);
    background: rgba(242, 239, 230, 0.94);
    border-bottom: 1px solid var(--ink);
    backdrop-filter: blur(12px);
}

.brand {
    display: grid;
    grid-template-columns: 38px auto auto;
    gap: 0.7rem;
    align-items: center;
    min-width: max-content;
}

.brand-mark {
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    background: var(--signal);
    border-radius: 50%;
    transform: rotate(10deg);
}

.brand-mark i:first-child {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 8px;
    height: 26px;
    background: var(--acid);
    clip-path: polygon(45% 0, 100% 0, 63% 42%, 100% 42%, 12% 100%, 38% 54%, 0 54%);
}

.brand-mark i:last-child {
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: inherit;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--brand-spike-on-light);
    -webkit-text-stroke: 0.65px var(--ink);
    paint-order: stroke fill;
}

.brand-kind {
    padding-left: 0.7rem;
    border-left: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.15rem, 2.5vw, 2.8rem);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    padding: 0.6rem 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.3rem;
    left: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.site-nav .nav-out {
    padding: 0.7rem 0.9rem;
    color: var(--white);
    background: var(--ink);
}

.site-nav .nav-out::after {
    display: none;
}

.site-nav .nav-out:hover {
    color: var(--acid);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height) - var(--flag-height));
    padding: clamp(3rem, 6vw, 6.5rem) var(--gutter) 5.4rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: clamp(2rem, 5vw, 5rem);
    right: clamp(-9rem, -5vw, -3rem);
    width: clamp(18rem, 33vw, 36rem);
    aspect-ratio: 1;
    border: clamp(4.5rem, 8vw, 9rem) solid var(--paper-deep);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 12%;
    right: 12%;
    width: 1px;
    height: 58%;
    background: var(--line);
    transform: rotate(32deg);
    transform-origin: center;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
    gap: clamp(3rem, 9vw, 9rem);
    align-items: end;
    width: min(100%, var(--max));
    margin: 0 auto;
}

.kicker,
.section-index,
.project-type,
.note-meta,
.release-copy > p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.live-dot {
    width: 0.65rem;
    height: 0.65rem;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 101, 70, 0.55);
    animation: signal-pulse 2s infinite;
}

@keyframes signal-pulse {
    0%, 40% { box-shadow: 0 0 0 0 rgba(255, 101, 70, 0.48); }
    70%, 100% { box-shadow: 0 0 0 8px rgba(255, 101, 70, 0); }
}

.hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4rem, 9.3vw, 10rem);
    font-weight: 900;
    letter-spacing: var(--tracking-display-tight);
    line-height: 0.8;
    text-transform: uppercase;
}

.hero h1 em {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: clamp(3px, 0.25vw, 5px) var(--ink);
    font-style: normal;
}

.hero h1 em::after {
    position: absolute;
    inset: 0;
    color: transparent;
    content: attr(data-text);
    -webkit-text-stroke: clamp(1.5px, 0.14vw, 3px) var(--brand-spike-on-light);
    pointer-events: none;
}

.hero-deck {
    max-width: 610px;
    margin: clamp(2rem, 4vw, 4rem) 0 1.7rem;
    font-size: clamp(1.1rem, 1.55vw, 1.5rem);
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.arrow-link,
.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 0.8rem 0;
    border-bottom: 2px solid currentColor;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.arrow-link span,
.project-link span {
    transition: transform 180ms ease;
}

.arrow-link:hover span,
.project-link:hover span {
    transform: translate(3px, -3px);
}

.transmission {
    position: relative;
    color: var(--white);
    background: var(--ink);
    border: 1px solid var(--ink);
    box-shadow: 12px 12px 0 var(--signal);
}

.transmission-head,
.transmission-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.transmission-head {
    color: var(--ink);
    background: var(--acid);
}

.transmission-item {
    display: grid;
    grid-template-columns: 2.2rem 1fr auto;
    gap: 0.8rem;
    align-items: center;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #3e3e3e;
    transition: color 150ms ease, background 150ms ease;
}

.transmission-item:hover {
    color: var(--ink);
    background: var(--white);
}

.transmission-item strong,
.transmission-item small {
    display: block;
}

.transmission-item strong {
    margin-bottom: 0.18rem;
    font-size: 1.05rem;
}

.transmission-item small,
.transmission-num {
    font-family: var(--font-mono);
    font-size: 0.61rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.transmission-foot {
    display: grid;
    gap: 0.25rem;
}

.transmission-foot span {
    color: #aaa;
}

.hero-marquee {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: var(--white);
    background: var(--signal);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    overflow: hidden;
}

.hero-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 42s linear infinite;
}

.hero-marquee-group {
    display: flex;
    flex: none;
    gap: 2.5rem;
    align-items: center;
    width: max-content;
    min-width: 100vw;
    padding: 0.72rem 2.5rem 0.72rem 0;
    font-family: var(--font-display);
    font-size: 0.87rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-marquee-group a {
    display: block;
    flex: none;
    transition: color 150ms ease;
}

.hero-marquee-group a:hover,
.hero-marquee-group a:focus-visible {
    color: var(--acid);
}

.hero-marquee-group i {
    flex: none;
    color: var(--acid);
    font-style: normal;
}

.hero-marquee:hover .hero-marquee-track,
.hero-marquee:focus-within .hero-marquee-track {
    animation-play-state: paused;
}

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

.work,
.archive,
.tools,
.notes {
    padding: var(--section-space) var(--gutter);
}

.work,
.tools,
.notes {
    width: min(100%, calc(var(--max) + (2 * var(--gutter))));
    margin: 0 auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(150px, 0.45fr) minmax(360px, 1.5fr) minmax(220px, 0.65fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading h2 {
    max-width: 830px;
    margin: -0.12em 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 6.5rem);
    font-weight: 900;
    letter-spacing: var(--tracking-display);
    line-height: 0.9;
    text-wrap: balance;
    text-transform: uppercase;
}

.section-heading > p:last-child {
    max-width: 400px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
}

.section-index {
    color: var(--signal);
}

.feature {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.75fr);
    border: 1px solid var(--ink);
    background: var(--white);
}

.feature-media {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #171225;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.feature-media:hover img,
.project-card-media:hover img,
.release-art:hover img {
    transform: scale(1.025);
}

.feature-media--carousel > .carousel-frame {
    position: absolute;
    inset: 0;
    opacity: 0;
    object-fit: contain;
    background: #070707;
    transition:
        opacity 700ms ease,
        transform 650ms cubic-bezier(.2,.7,.2,1);
}

.feature-media--carousel > .carousel-frame.is-active {
    opacity: 1;
}

.carousel-count {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.55rem;
    color: var(--white);
    background: rgba(17, 17, 17, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.feature-media--carousel .media-stamp,
.feature-media--carousel .carousel-count {
    z-index: 2;
}

.media-stamp {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 0.65rem;
    color: var(--ink);
    background: var(--acid);
    border: 1px solid var(--ink);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-copy {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: clamp(3rem, 8vw, 8rem);
    padding: clamp(1.3rem, 3vw, 3rem);
    border-left: 1px solid var(--ink);
}

.feature-order,
.card-number {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
}

.feature-copy h3,
.project-card-copy h3,
.release-copy h3 {
    margin: 0.4rem 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.052em;
    line-height: 0.92;
    text-wrap: balance;
    text-transform: uppercase;
}

.feature-copy h3 a,
.project-card-copy h3 a,
.release-copy h3 a {
    text-decoration-thickness: 0.07em;
    text-underline-offset: 0.07em;
}

.feature-copy h3 a:hover,
.project-card-copy h3 a:hover,
.release-copy h3 a:hover {
    text-decoration: underline;
}

.feature-copy p:not(.project-type) {
    max-width: 460px;
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.project-type {
    color: var(--signal);
}

.project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.project-specs li {
    padding: 0.4rem 0.55rem;
    background: var(--paper-deep);
    border: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.project-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: clamp(2rem, 5vw, 5rem);
    border: 1px solid var(--ink);
}

.project-card {
    display: grid;
    grid-template-rows: minmax(330px, 0.85fr) auto;
}

.project-card + .project-card {
    border-left: 1px solid var(--ink);
}

.project-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--ink);
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.card-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.project-card-copy {
    min-height: 355px;
    padding: clamp(1.4rem, 3vw, 3rem);
}

.project-card-copy h3 {
    font-size: clamp(2.6rem, 5vw, 5.6rem);
}

.project-card-copy > p:not(.project-type) {
    max-width: 560px;
    min-height: 3.1em;
    margin: 0 0 2.5rem;
    font-size: 1.05rem;
}

.project-card--dark .project-card-copy {
    color: var(--white);
    background: var(--ink);
}

.project-card--dark .project-type,
.project-card--dark .project-link {
    color: var(--acid);
}

.project-card--dvd .project-card-copy {
    background: var(--coral);
}

.project-card--dvd .project-type {
    color: var(--ink);
}

.release-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(2rem, 5vw, 5rem);
    border: 1px solid var(--ink);
}

.release-card + .release-card {
    border-left: 1px solid var(--ink);
}

.release-art {
    display: grid;
    place-items: center;
    aspect-ratio: 1.2;
    padding: clamp(1.5rem, 4vw, 4rem);
    overflow: hidden;
    background: var(--paper-deep);
}

.release-art img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.release-card--kasino .release-art {
    background: #1b3528;
}

.release-card--vexel .release-art {
    padding: 0;
}

.release-card--vexel .release-art img {
    height: 100%;
    object-fit: cover;
}

.release-art--null {
    position: relative;
    background:
        radial-gradient(circle at 50% 50%, #191c22 0 2px, transparent 3px),
        #050505;
}

.release-art--null::before,
.release-art--null::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38%;
    aspect-ratio: 1;
    border: 1px solid #30333a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.release-art--null::after {
    width: 67%;
}

.release-art--null img {
    position: relative;
    z-index: 2;
    filter: grayscale(1) brightness(3);
}

.release-art--null i {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 4px;
    height: 4px;
    background: var(--acid);
    box-shadow: 0 0 16px 4px rgba(223, 255, 85, 0.45);
    transform: translate(-50%, -50%);
}

.release-copy {
    min-height: 230px;
    padding: clamp(1.2rem, 2.4vw, 2.3rem);
    border-top: 1px solid var(--ink);
}

.release-copy h3 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 3.6vw, 4rem);
}

.release-copy > span {
    display: block;
    max-width: 420px;
    font-size: 0.96rem;
}

.archive {
    max-width: none;
    color: var(--white);
    background: var(--ink);
}

.section-heading--archive {
    width: min(100%, var(--max));
    margin-right: auto;
    margin-left: auto;
}

.section-heading--archive .section-index {
    color: var(--acid);
}

.section-heading--archive > p:last-child {
    color: #b7b7b7;
}

.archive-tools,
.archive-list {
    width: min(100%, var(--max));
    margin-right: auto;
    margin-left: auto;
}

.archive-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-button {
    padding: 0.65rem 0.8rem;
    color: var(--white);
    background: transparent;
    border: 1px solid #525252;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.filter-button span {
    margin-left: 0.5rem;
    color: #888;
}

.filter-button:hover,
.filter-button.is-active {
    color: var(--ink);
    background: var(--acid);
    border-color: var(--acid);
}

.filter-button.is-active span {
    color: var(--ink);
}

.archive-list {
    border-top: 1px solid #555;
}

.archive-row {
    display: grid;
    grid-template-columns: 4.5rem minmax(210px, 1.15fr) minmax(190px, 1fr) minmax(100px, 0.55fr) 5rem 1.5rem;
    gap: 1rem;
    align-items: center;
    min-height: 74px;
    padding: 0.9rem 0;
    border-bottom: 1px solid #444;
    transition: color 150ms ease, padding 150ms ease, background 150ms ease;
}

a.archive-row:hover {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    color: var(--ink);
    background: var(--white);
}

.archive-row strong {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.archive-row > span:not(.archive-no):not(.archive-state),
.archive-row time,
.archive-no,
.archive-state {
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.archive-no,
.archive-state {
    color: #909090;
}

a.archive-row:hover .archive-no,
a.archive-row:hover .archive-state {
    color: var(--signal);
}

.section-heading--tools {
    align-items: end;
}

.tool-feature {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    color: var(--white);
    background: var(--ink);
    border: 1px solid var(--ink);
    box-shadow: 12px 12px 0 var(--signal);
}

.tool-feature-media {
    min-height: 420px;
    overflow: hidden;
    background: #141216;
}

.tool-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.tool-feature-media:hover img {
    transform: scale(1.025);
}

.tool-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 5rem);
    border-left: 1px solid #4a4a4a;
}

.tool-feature-copy .project-type,
.tool-feature-copy .project-link {
    color: var(--acid);
}

.tool-feature-copy h3 {
    max-width: 760px;
    margin: 0.8rem 0 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    letter-spacing: var(--tracking-display);
    line-height: 0.9;
    text-transform: uppercase;
    text-wrap: balance;
}

.tool-feature-copy > p:not(.project-type) {
    max-width: 680px;
    margin: 0 0 2rem;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.55;
}

.tool-feature-copy .project-link {
    align-self: flex-start;
}

.notes {
    padding-bottom: clamp(6rem, 12vw, 12rem);
}

.section-heading--notes {
    grid-template-columns: minmax(150px, 0.45fr) minmax(360px, 1.5fr) minmax(220px, 0.65fr);
    align-items: end;
}

.section-heading--notes .arrow-link {
    justify-self: start;
}

.notes-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border: 1px solid var(--ink);
}

.note {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: clamp(1.5rem, 3vw, 3rem);
    transition: color 170ms ease, background 170ms ease;
}

.note + .note {
    border-left: 1px solid var(--ink);
}

.note:hover {
    color: var(--white);
    background: var(--signal);
}

.note--lead {
    background: var(--acid);
}

.note-meta {
    margin-bottom: clamp(3rem, 8vw, 8rem);
}

.note strong {
    display: block;
    max-width: 680px;
    margin-top: auto;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.95;
    text-transform: uppercase;
}

.note:not(.note--lead) strong {
    font-size: clamp(1.7rem, 2.5vw, 2.7rem);
}

.note-arrow {
    position: absolute;
    right: 1.2rem;
    bottom: 1rem;
    font-size: 1.2rem;
}

.studio {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.5fr);
    min-height: 620px;
    padding: var(--section-space-compact) var(--gutter);
    color: var(--white);
    background: var(--signal);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    overflow: hidden;
}

.studio-mark {
    position: relative;
    min-height: 420px;
}

.studio-mark span {
    position: absolute;
    top: 50%;
    left: 42%;
    width: clamp(10rem, 23vw, 25rem);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.studio-mark span:nth-child(2) {
    width: clamp(6rem, 15vw, 16rem);
}

.studio-mark span:nth-child(3) {
    width: clamp(2rem, 6vw, 6rem);
    background: var(--acid);
    border: 0;
    box-shadow: 0 0 80px rgba(223, 255, 85, 0.4);
}

.studio-mark::before,
.studio-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 42%;
    z-index: 2;
    width: 1px;
    height: 75%;
    background: var(--white);
    transform: translate(-50%, -50%) rotate(42deg);
}

.studio-mark::after {
    transform: translate(-50%, -50%) rotate(-42deg);
}

.studio-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 960px;
}

.studio .section-index {
    margin-bottom: clamp(2rem, 4vw, 4rem);
    color: var(--acid);
}

.studio h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 7.8rem);
    font-weight: 900;
    letter-spacing: var(--tracking-display);
    line-height: 0.9;
    text-wrap: balance;
    text-transform: uppercase;
}

.studio-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.studio-columns p {
    max-width: 430px;
    margin: 0;
    font-size: 1.05rem;
}

.studio-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-width: 205px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--ink);
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 150ms ease, background 150ms ease;
}

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--outline {
    border-color: var(--white);
}

.button:hover {
    color: var(--ink);
    background: var(--acid);
    border-color: var(--ink);
}

.newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: clamp(3rem, 9vw, 10rem);
    align-items: end;
    padding: var(--section-space) var(--gutter);
    background: var(--acid);
    border-bottom: 1px solid var(--ink);
}

.newsletter > div,
.newsletter-form {
    width: 100%;
    max-width: 740px;
}

.newsletter h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 7rem);
    font-weight: 900;
    letter-spacing: var(--tracking-display);
    line-height: 0.9;
    text-transform: uppercase;
}

.newsletter > div > p:last-child {
    max-width: 540px;
    margin: 0;
    font-size: 1.05rem;
}

.newsletter-form > label {
    display: block;
    margin-bottom: 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.newsletter-field {
    display: flex;
    border-bottom: 3px solid var(--ink);
}

.newsletter-field input {
    min-width: 0;
    flex: 1;
    padding: 0.9rem 0.3rem;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.newsletter-field input::placeholder {
    color: rgba(17, 17, 17, 0.5);
}

.newsletter-field button {
    padding: 0.9rem 0.2rem 0.9rem 1rem;
    background: transparent;
    border: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.newsletter-field button:hover {
    color: var(--signal);
}

.newsletter-field button:disabled {
    cursor: wait;
    opacity: 0.6;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
}

.form-status {
    min-height: 1.5em;
    margin: 0.7rem 0 0;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
}

.form-status.is-error {
    color: #a31900;
}

.lightbox-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) var(--gutter);
    color: var(--white);
    background: rgba(8, 8, 8, 0.96);
    border: 0;
    overflow: hidden;
}

.lightbox-dialog::backdrop {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox-dialog[open] {
    display: grid;
    place-items: center;
}

.lightbox-dialog__figure {
    display: grid;
    width: 100%;
    height: 100%;
    margin: 0;
    place-items: center;
}

.lightbox-dialog__image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100dvh - clamp(5.5rem, 10vw, 8rem));
    object-fit: contain;
}

.lightbox-dialog__close {
    position: absolute;
    top: 1rem;
    right: var(--gutter);
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    font-size: 1.35rem;
    line-height: 1;
}

.lightbox-dialog__close:hover {
    color: var(--ink);
    background: var(--acid);
    border-color: var(--acid);
}

.is-lightbox-image {
    cursor: zoom-in;
}

.site-footer {
    padding: clamp(4rem, 8vw, 8rem) var(--gutter) 2rem;
    color: var(--white);
    background: var(--ink);
}

.footer-brand {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: clamp(5rem, 11vw, 11rem);
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 10vw, 11rem);
    font-weight: 900;
    letter-spacing: var(--tracking-display-tight);
    line-height: 0.78;
    text-transform: uppercase;
}

.footer-brand span:nth-child(2) {
    color: var(--brand-spike-on-dark);
}

.footer-brand span:last-child {
    text-align: right;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: end;
    padding-top: 1.2rem;
    border-top: 1px solid #4a4a4a;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.footer-bottom > a {
    justify-self: end;
}

.footer-bottom a:hover {
    color: var(--acid);
}

html.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

html.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1150px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
        gap: 3rem;
    }

    .hero h1 {
        font-size: clamp(4rem, 9vw, 7rem);
    }

    .section-heading {
        grid-template-columns: 150px 1fr;
    }

    .section-heading > p:last-child,
    .section-heading--notes .arrow-link {
        grid-column: 2;
    }

    .feature {
        grid-template-columns: 1.45fr 0.85fr;
    }

    .feature-media {
        min-height: 500px;
    }

    .feature-copy {
        gap: 3rem;
    }

    .release-copy {
        min-height: 250px;
    }

    .archive-row {
        grid-template-columns: 3.5rem minmax(180px, 1.2fr) minmax(160px, 1fr) 100px 4.2rem 1.5rem;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        background: var(--paper);
        backdrop-filter: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        display: flex;
        align-items: center;
        gap: 0.7rem;
        padding: 0;
        font-family: var(--font-mono);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .menu-toggle i,
    .menu-toggle i::before {
        display: block;
        width: 22px;
        height: 2px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .menu-toggle i {
        position: relative;
    }

    .menu-toggle i::before {
        content: "";
        position: absolute;
        top: -7px;
    }

    .menu-toggle[aria-expanded="true"] i {
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] i::before {
        top: 0;
        transform: rotate(90deg);
    }

    .site-nav {
        position: fixed;
        top: calc(var(--flag-height) + var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        display: grid;
        grid-auto-rows: min-content;
        gap: 0;
        align-content: start;
        padding: 2rem var(--gutter);
        color: var(--white);
        background: var(--ink);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .site-nav a,
    .site-nav .nav-out {
        padding: 1rem 0;
        background: transparent;
        border-bottom: 1px solid #444;
        font-family: var(--font-display);
        font-size: clamp(2rem, 8vw, 4rem);
        letter-spacing: -0.035em;
    }

    .site-nav .nav-out {
        color: var(--acid);
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
    }

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

    .hero-copy {
        max-width: 800px;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 14vw, 7rem);
    }

    .transmission {
        width: min(100%, 520px);
        margin-bottom: 1.2rem;
    }

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

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

    .tool-feature-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .tool-feature-copy {
        border-top: 1px solid #4a4a4a;
        border-left: 0;
    }

    .feature-media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .feature-copy {
        grid-template-columns: 3rem 1fr;
        grid-template-rows: none;
        gap: 1.5rem;
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .project-pair {
        grid-template-columns: 1fr;
    }

    .project-card + .project-card {
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .project-card-copy {
        min-height: 300px;
    }

    .release-strip {
        grid-template-columns: 1fr 1fr;
    }

    .release-card + .release-card {
        border-left: 1px solid var(--ink);
    }

    .release-card:nth-child(3) {
        grid-column: 1 / -1;
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .release-card:nth-child(3) {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .release-card:nth-child(3) .release-copy {
        border-top: 0;
        border-left: 1px solid var(--ink);
    }

    .release-copy {
        min-height: 220px;
    }

    .archive-row {
        grid-template-columns: 3rem minmax(190px, 1.2fr) minmax(130px, 0.8fr) 5rem 1.5rem;
    }

    .archive-row .archive-state {
        display: none;
    }

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

    .note--lead {
        grid-column: 1 / -1;
    }

    .note:nth-child(2) {
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

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

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

    .studio-mark {
        min-height: 300px;
    }

    .studio-mark span,
    .studio-mark::before,
    .studio-mark::after {
        left: 50%;
    }

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

    .footer-brand {
        grid-template-columns: 1fr;
        gap: 0.15em;
        font-size: clamp(4rem, 18vw, 8rem);
    }

    .footer-brand span:nth-child(2) {
        margin-left: 12%;
    }

    .footer-brand span:last-child {
        margin-left: 25%;
        text-align: left;
    }

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

    .footer-bottom nav {
        grid-column: 1 / -1;
        grid-row: 1;
    }
}

@media (max-width: 650px) {
    .brand {
        grid-template-columns: 32px auto;
        gap: 0.5rem;
    }

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

    .brand-mark i:first-child {
        top: 4px;
        left: 12px;
        height: 23px;
    }

    .brand-kind {
        display: none;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero::before {
        opacity: 0.65;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 17.2vw, 5.4rem);
        line-height: 0.8;
    }

    .hero-deck {
        max-width: 92%;
        font-size: 1.03rem;
    }

    .transmission {
        width: calc(100% - 10px);
        box-shadow: 8px 8px 0 var(--signal);
    }

    .section-heading,
    .section-heading--notes {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .section-heading > p:last-child,
    .section-heading--notes .arrow-link {
        grid-column: auto;
    }

    .section-heading h2 {
        font-size: clamp(2.7rem, 14vw, 4.6rem);
    }

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

    .feature-copy h3 {
        font-size: 3.1rem;
    }

    .tool-feature {
        width: calc(100% - 8px);
        box-shadow: 8px 8px 0 var(--signal);
    }

    .tool-feature-copy h3 {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
    }

    .feature-order {
        display: none;
    }

    .project-card {
        grid-template-rows: auto auto;
    }

    .project-card-media {
        aspect-ratio: 16 / 10;
    }

    .project-card-copy {
        min-height: 0;
    }

    .release-strip {
        grid-template-columns: 1fr;
    }

    .release-card + .release-card,
    .release-card:nth-child(3) {
        display: block;
        grid-column: auto;
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .release-card:nth-child(3) .release-copy {
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .release-art {
        aspect-ratio: 1.4;
    }

    .release-copy {
        min-height: 0;
    }

    .archive-tools {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .filter-button {
        text-align: left;
    }

    .archive-row {
        grid-template-columns: 2.7rem 1fr 3.7rem 1rem;
        gap: 0.6rem;
        min-height: 66px;
    }

    .archive-row > span:nth-child(3),
    .archive-row .archive-state {
        display: none;
    }

    .archive-row strong {
        font-size: 1.15rem;
    }

    .archive-row time {
        font-size: 0.58rem;
    }

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

    .note--lead {
        grid-column: auto;
    }

    .note + .note,
    .note:nth-child(3) {
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .note {
        min-height: 240px;
    }

    .studio {
        min-height: 0;
    }

    .studio-mark {
        min-height: 230px;
    }

    .studio h2 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

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

    .button {
        width: 100%;
    }

    .newsletter {
        gap: 2.5rem;
    }

    .newsletter-field {
        display: block;
    }

    .newsletter-field button {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding-left: 0.3rem;
        border-top: 1px solid rgba(17, 17, 17, 0.25);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-bottom nav {
        grid-column: auto;
        grid-row: auto;
        gap: 1rem 1.4rem;
    }

    .footer-bottom > a {
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    html.js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
