@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:ital,wght@0,500;0,700;0,900;1,700&family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
    color-scheme: dark;
    --lab-height: 64px;
    --switch-height: 62px;
    --evaluation-height: 38px;
    --page-gutter: clamp(20px, 3.2vw, 56px);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: #0a0a0a;
    color: #f5f1e8;
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .07;
    z-index: 90;
    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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

a {
    color: inherit;
}

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

button:focus-visible,
a:focus-visible {
    outline: 3px solid #b8ff25;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 200;
    padding: 12px 18px;
    background: #fff;
    color: #000;
}

.skip-link:focus {
    top: 12px;
}

.lab-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--lab-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--page-gutter);
    background: rgba(7, 7, 7, .9);
    border-bottom: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(18px);
}

.lab-brand {
    width: max-content;
    text-decoration: none;
    line-height: .7;
}

.brand-word {
    display: block;
    font-family: "Archivo Black", Impact, sans-serif;
    font-size: 22px;
    letter-spacing: -.08em;
    transform: scaleX(.78);
    transform-origin: left;
}

.brand-music {
    display: block;
    padding-left: 2px;
    font: 600 6px/1 "IBM Plex Mono", monospace;
    letter-spacing: .72em;
}

.lab-kicker,
.info-toggle,
.territory-switcher button,
.evaluation-bar {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lab-kicker {
    margin: 0;
    font-size: 10px;
    color: rgba(255,255,255,.58);
}

.info-toggle {
    justify-self: end;
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 4px 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 10px;
}

.territory-switcher {
    position: fixed;
    top: var(--lab-height);
    inset-inline: 0;
    z-index: 99;
    height: var(--switch-height);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.territory-switcher button {
    position: relative;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.16);
    padding: 0 24px;
    background: transparent;
    color: rgba(255,255,255,.48);
    cursor: pointer;
    font-size: clamp(9px, .9vw, 12px);
    transition: color 220ms ease, background 220ms ease;
}

.territory-switcher button::after {
    content: "";
    position: absolute;
    height: 3px;
    inset: auto 0 0;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 360ms var(--ease-out);
}

.territory-switcher button:hover {
    color: #fff;
}

.territory-switcher button[aria-pressed="true"] {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.territory-switcher button[aria-pressed="true"]::after {
    transform: scaleX(1);
}

.territory-switcher span {
    margin-right: 12px;
    color: rgba(255,255,255,.32);
}

.territory-notes {
    position: fixed;
    z-index: 130;
    inset: 0 0 0 auto;
    width: min(520px, 100vw);
    padding: 90px clamp(28px, 5vw, 72px);
    background: #ece8de;
    color: #111;
    transform: translateX(101%);
    transition: transform 520ms var(--ease-out);
    box-shadow: -30px 0 90px rgba(0,0,0,.4);
}

.territory-notes.is-open {
    transform: translateX(0);
}

.notes-close {
    position: absolute;
    top: 24px;
    right: 30px;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 36px;
    cursor: pointer;
}

.territory-notes h2 {
    margin: 18px 0 28px;
    font: 900 clamp(42px, 5vw, 76px)/.88 "Barlow Condensed", sans-serif;
    text-transform: uppercase;
}

.territory-notes > p:not(.eyebrow),
.territory-notes li {
    font-size: 15px;
    line-height: 1.6;
}

.territory-notes ul {
    margin: 30px 0 0;
    padding-left: 18px;
}

main {
    padding-top: calc(var(--lab-height) + var(--switch-height));
}

.territory {
    min-height: 100vh;
    padding-bottom: var(--evaluation-height);
}

.territory[hidden] {
    display: none;
}

.territory.is-entering {
    animation: territory-in 650ms var(--ease-out) both;
}

@keyframes territory-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.territory-hero {
    position: relative;
    min-height: calc(100svh - var(--lab-height) - var(--switch-height));
    overflow: hidden;
    isolation: isolate;
}

.hero-media {
    position: absolute;
    z-index: -3;
    inset: -5%;
    width: 110%;
    height: 110%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.38) 48%, rgba(0,0,0,.18) 100%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 48%);
}

.hero-index {
    position: absolute;
    top: 28px;
    right: var(--page-gutter);
    margin: 0;
    font: 500 10px/1.2 "IBM Plex Mono", monospace;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-copy {
    position: absolute;
    left: var(--page-gutter);
    bottom: clamp(72px, 10vh, 128px);
    width: min(860px, calc(100% - var(--page-gutter) * 2));
}

.eyebrow {
    margin: 0;
    font: 600 10px/1.3 "IBM Plex Mono", monospace;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 20px 0 22px;
    font: 900 clamp(76px, 10.5vw, 180px)/.76 "Barlow Condensed", sans-serif;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.hero-copy h1 em {
    color: #ef3d22;
    font-weight: 900;
}

.hero-intro {
    max-width: 510px;
    margin: 0;
    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 196px;
    padding: 17px 18px;
    border: 1px solid transparent;
    text-decoration: none;
    font: 600 11px/1 "IBM Plex Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform 220ms var(--ease-out), background 220ms ease, color 220ms ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: #f3efe5;
    color: #0b0b0b;
}

.button-primary:hover {
    background: #ef3d22;
    color: #fff;
}

.text-link {
    padding: 10px 0;
    border-bottom: 1px solid currentColor;
    text-decoration: none;
    font: 500 11px/1 "IBM Plex Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-stamp {
    position: absolute;
    right: var(--page-gutter);
    bottom: 58px;
    margin: 0;
    writing-mode: vertical-rl;
    font: 500 9px/1 "IBM Plex Mono", monospace;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,.3);
    overflow: hidden;
}

.scroll-cue span {
    display: block;
    width: 100%;
    height: 50%;
    background: #fff;
    animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
    0% { transform: translateY(-110%); }
    65%, 100% { transform: translateY(220%); }
}

.documental-manifesto {
    position: relative;
    min-height: 860px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(40px, 7vw, 120px);
    padding: clamp(100px, 12vw, 180px) max(var(--page-gutter), calc((100vw - 1440px) / 2));
    background: #e8e2d7;
    color: #111;
    overflow: hidden;
}

.manifesto-image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.manifesto-image img,
.release-art img,
.urban-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto-image img {
    transform: scale(1.07);
    filter: saturate(.78) contrast(1.08);
}

.manifesto-copy {
    max-width: 560px;
}

.display-quote {
    margin: 32px 0;
    font: 700 clamp(52px, 6vw, 98px)/.92 "Barlow Condensed", sans-serif;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.manifesto-copy > p:last-child {
    max-width: 460px;
    line-height: 1.7;
}

.vertical-note {
    position: absolute;
    right: 18px;
    top: 50%;
    writing-mode: vertical-rl;
    font: 500 9px/1 "IBM Plex Mono", monospace;
    letter-spacing: .2em;
}

.release-proof {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: #ef3d22;
    color: #111;
}

.release-art {
    min-height: 640px;
    overflow: hidden;
}

.release-art img {
    filter: saturate(.9) contrast(1.03);
}

.release-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(54px, 8vw, 130px);
}

.release-copy h2 {
    margin: 22px 0;
    font: 900 clamp(58px, 7vw, 112px)/.84 "Barlow Condensed", sans-serif;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.button-dark {
    margin-top: 26px;
    background: #111;
    color: #fff;
}

.territory-verdict {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 32px var(--page-gutter) 48px;
    background: #0a0a0a;
    color: rgba(255,255,255,.66);
    font: 500 11px/1.5 "IBM Plex Mono", monospace;
    text-transform: uppercase;
}

.territory-verdict p {
    margin: 0;
}

.territory-verdict strong {
    color: #fff;
}

/* Urban editorial */
.territory-urbano {
    --acid: #c8ff19;
    --ink: #151515;
    position: relative;
    background: #ddd9cd;
    color: var(--ink);
    font-family: Inter, sans-serif;
    isolation: isolate;
}

.urban-grid {
    position: fixed;
    z-index: -1;
    inset: calc(var(--lab-height) + var(--switch-height)) 0 0;
    background-image: linear-gradient(rgba(0,0,0,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.06) 1px, transparent 1px);
    background-size: 64px 64px;
}

.urban-hero {
    min-height: 920px;
    background: var(--acid);
    color: var(--ink);
}

.urban-photo {
    position: absolute;
    inset: 0 0 0 48%;
    overflow: hidden;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.urban-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #5d39ff;
    mix-blend-mode: color;
    opacity: .56;
}

.urban-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    filter: grayscale(1) contrast(1.24);
}

.urban-copy {
    z-index: 2;
    top: 50%;
    bottom: auto;
    width: min(750px, 58vw);
    transform: translateY(-45%);
}

.urban-copy h1 {
    margin: 26px 0;
    font-family: "Archivo Black", Impact, sans-serif;
    font-size: clamp(74px, 9.7vw, 166px);
    line-height: .77;
    letter-spacing: -.075em;
}

.urban-copy h1 span {
    display: inline-block;
    transform: rotate(-2deg) scaleX(1.02);
}

.urban-copy h1 mark {
    padding: 0 .08em;
    background: #151515;
    color: var(--acid);
}

.urban-copy .hero-intro {
    max-width: 480px;
    font-weight: 600;
}

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

.urban-tag {
    position: absolute;
    z-index: 4;
    font-family: "Archivo Black", sans-serif;
    pointer-events: none;
}

.tag-one {
    top: 180px;
    right: 2vw;
    color: transparent;
    -webkit-text-stroke: 2px var(--acid);
    font-size: clamp(110px, 16vw, 270px);
    transform: rotate(8deg);
}

.tag-two {
    top: 790px;
    right: 3vw;
    padding: 12px 16px;
    background: #f04c2d;
    color: #111;
    font-size: clamp(22px, 3vw, 52px);
    line-height: .82;
    transform: rotate(-5deg);
}

.spray-note {
    position: absolute;
    right: 5vw;
    bottom: 58px;
    z-index: 3;
    margin: 0;
    color: var(--acid);
    font: italic 700 clamp(28px, 4vw, 68px)/1 "Barlow Condensed", sans-serif;
    letter-spacing: .02em;
    text-transform: uppercase;
    transform: rotate(-7deg);
    text-shadow: 2px 2px 0 #111;
}

.urban-manifesto {
    position: relative;
    min-height: 1100px;
    padding: 120px var(--page-gutter);
    overflow: hidden;
}

.mega-type {
    position: absolute;
    top: 70px;
    left: -.02em;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,0,0,.2);
    font: 900 clamp(160px, 24vw, 410px)/.62 "Archivo Black", sans-serif;
    letter-spacing: -.09em;
}

.urban-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    box-shadow: 14px 14px 0 rgba(0,0,0,.12);
}

.urban-card span {
    font: 600 11px/1 "IBM Plex Mono", monospace;
}

.urban-card p {
    margin: 0;
    font: 900 clamp(34px, 4vw, 68px)/.9 "Barlow Condensed", sans-serif;
    text-transform: uppercase;
}

.card-dark {
    top: 140px;
    right: 8vw;
    width: min(420px, 38vw);
    height: 410px;
    background: #171717;
    color: #eee9df;
    transform: rotate(3deg);
}

.card-photo {
    top: 510px;
    left: 10vw;
    width: min(570px, 46vw);
    height: 440px;
    padding: 0;
    transform: rotate(-2deg);
    overflow: hidden;
}

.card-photo img {
    filter: grayscale(1) contrast(1.12);
}

.card-acid {
    top: 650px;
    right: 10vw;
    width: min(470px, 40vw);
    height: 390px;
    background: var(--acid);
    transform: rotate(2deg);
}

.urban-release {
    position: relative;
    min-height: 850px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8vw;
    padding: 120px 8vw;
    background: #5d39ff;
    color: #f3efe4;
    overflow: hidden;
}

.release-tape {
    position: absolute;
    z-index: 2;
    top: 56px;
    left: -3%;
    width: 106%;
    padding: 12px 0;
    background: var(--acid);
    color: #111;
    font: 600 12px/1 "IBM Plex Mono", monospace;
    white-space: nowrap;
    transform: rotate(-2deg);
}

.urban-release-copy h2 {
    margin: 14px 0;
    font: 900 clamp(90px, 13vw, 210px)/.75 "Archivo Black", sans-serif;
    letter-spacing: -.09em;
}

.urban-release-copy > p:last-child {
    max-width: 430px;
    font-size: 19px;
    line-height: 1.5;
}

.urban-release > img {
    width: min(520px, 100%);
    aspect-ratio: 1;
    object-fit: cover;
    transform: rotate(4deg);
    box-shadow: 24px 24px 0 #171717;
}

.round-link {
    position: absolute;
    right: 5vw;
    bottom: 48px;
    width: 116px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--acid);
    color: #111;
    text-decoration: none;
    font: 900 22px/1 "Barlow Condensed", sans-serif;
    transition: transform 300ms var(--ease-out);
}

.round-link:hover {
    transform: rotate(8deg) scale(1.07);
}

/* Energy experimental */
.territory-energia {
    --signal: #ff4527;
    --electric: #75f8ee;
    --violet: #5e35ff;
    background: #050505;
}

.energy-hero {
    min-height: 920px;
}

.energy-video {
    filter: contrast(1.15) saturate(1.25);
}

.energy-color-wash {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(117,248,238,.2), transparent 35%), linear-gradient(105deg, rgba(0,0,0,.9) 4%, rgba(0,0,0,.15) 68%, rgba(94,53,255,.28));
}

.energy-copy {
    z-index: 2;
}

.energy-copy h1 {
    font-family: "Archivo Black", Impact, sans-serif;
    font-size: clamp(70px, 10.5vw, 178px);
    line-height: .78;
    letter-spacing: -.075em;
}

.energy-copy h1 span {
    display: inline-block;
    color: var(--signal);
    text-shadow: 7px 7px 0 var(--violet), -3px -3px 0 var(--electric);
}

.button-signal {
    background: var(--signal);
    color: #fff;
}

.energy-orbit {
    position: absolute;
    z-index: 1;
    border: 2px solid rgba(117,248,238,.72);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: min(50vw, 720px);
    aspect-ratio: 1;
    top: -8%;
    right: -10%;
}

.orbit-two {
    width: min(29vw, 420px);
    aspect-ratio: 1;
    right: 22%;
    bottom: -18%;
    border-color: rgba(255,69,39,.7);
}

.sound-bars {
    position: absolute;
    z-index: 3;
    right: var(--page-gutter);
    bottom: 48px;
    height: 66px;
    display: flex;
    gap: 6px;
    align-items: flex-end;
}

.sound-bars i {
    width: 5px;
    height: 20%;
    background: var(--electric);
    animation: sound 1.2s ease-in-out infinite alternate;
}

.sound-bars i:nth-child(2n) { animation-delay: -.35s; }
.sound-bars i:nth-child(3n) { animation-delay: -.7s; }
.sound-bars i:nth-child(4n) { animation-delay: -.1s; }

@keyframes sound {
    to { height: 100%; }
}

.energy-manifesto {
    min-height: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6vw;
    padding: 130px var(--page-gutter);
    background: var(--electric);
    color: #080808;
    overflow: hidden;
}

.kinetic-copy p {
    width: max-content;
    margin: 0;
    font: 900 clamp(58px, 7vw, 120px)/.83 "Barlow Condensed", sans-serif;
    letter-spacing: -.05em;
    text-transform: uppercase;
}

.kinetic-copy p:nth-child(2) {
    margin: 8px 0;
    padding: .02em .12em .08em;
    background: #080808;
    color: var(--electric);
    transform: rotate(-2deg);
}

.kinetic-copy p:nth-child(3) {
    font-size: clamp(34px, 4.2vw, 72px);
}

.kinetic-copy p:nth-child(4) {
    margin-top: 18px;
    color: var(--signal);
}

.kinetic-copy span {
    color: var(--violet);
}

.energy-photo-stack {
    position: relative;
    min-height: 690px;
}

.energy-photo-stack img {
    position: absolute;
    width: 72%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: 20px 20px 0 rgba(0,0,0,.22);
}

.stack-back {
    top: 0;
    right: 0;
    filter: grayscale(1) contrast(1.2);
    transform: rotate(6deg);
}

.stack-front {
    left: 0;
    bottom: 0;
    transform: rotate(-5deg);
}

.energy-release {
    min-height: 820px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--violet);
}

.energy-release-media {
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

.energy-release-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 50%, var(--violet));
}

.energy-release-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.18) saturate(1.2);
}

.energy-release-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8vw 7vw 8vw 2vw;
}

.energy-release-copy h2 {
    margin: 20px 0;
    font: 900 clamp(70px, 8vw, 138px)/.8 "Archivo Black", sans-serif;
    letter-spacing: -.07em;
}

.energy-release-copy > p:not(.eyebrow) {
    max-width: 440px;
    font-size: 18px;
    line-height: 1.55;
}

.energy-release-copy .button {
    margin-top: 24px;
}

.evaluation-bar {
    position: fixed;
    z-index: 101;
    inset: auto 0 0;
    height: var(--evaluation-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--page-gutter);
    background: #0a0a0a;
    color: rgba(255,255,255,.42);
    border-top: 1px solid rgba(255,255,255,.15);
    font-size: 8px;
}

.evaluation-bar span:nth-child(2) {
    color: #fff;
}

.evaluation-bar span:last-child {
    text-align: right;
}

@media (max-width: 760px) {
    :root {
        --lab-height: 56px;
        --switch-height: 58px;
        --evaluation-height: 34px;
    }

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

    .lab-kicker {
        display: none;
    }

    .territory-switcher button {
        padding: 0 8px;
        font-size: 8px;
        line-height: 1.25;
    }

    .territory-switcher span {
        display: block;
        margin: 0 0 4px;
    }

    .territory-hero {
        min-height: calc(100svh - var(--lab-height) - var(--switch-height));
    }

    .hero-media {
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-scrim {
        background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08) 78%);
    }

    .hero-index {
        top: 18px;
    }

    .hero-copy {
        bottom: 54px;
    }

    .hero-copy h1 {
        font-size: clamp(64px, 22vw, 105px);
        line-height: .78;
        margin: 16px 0 20px;
    }

    .hero-intro {
        max-width: 330px;
        font-size: 14px;
    }

    .hero-actions {
        align-items: flex-start;
        gap: 18px;
        margin-top: 24px;
    }

    .button {
        min-width: 174px;
        padding: 15px 14px;
        font-size: 9px;
    }

    .text-link {
        font-size: 8px;
    }

    .live-stamp,
    .scroll-cue {
        display: none;
    }

    .documental-manifesto,
    .release-proof,
    .energy-manifesto,
    .energy-release {
        grid-template-columns: 1fr;
    }

    .documental-manifesto {
        min-height: auto;
        padding-block: 80px;
    }

    .manifesto-image {
        aspect-ratio: 4 / 3;
    }

    .display-quote {
        font-size: 52px;
    }

    .release-proof {
        min-height: auto;
    }

    .release-art {
        min-height: 390px;
    }

    .release-copy {
        padding: 64px var(--page-gutter) 80px;
    }

    .release-copy h2 {
        font-size: 58px;
    }

    .territory-verdict {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-bottom: 42px;
        font-size: 9px;
    }

    .urban-hero {
        min-height: 830px;
    }

    .urban-photo {
        inset: 0;
        clip-path: none;
    }

    .urban-photo::after {
        background: linear-gradient(0deg, var(--acid) 0%, rgba(200,255,25,.3) 72%, rgba(93,57,255,.65));
        mix-blend-mode: normal;
    }

    .urban-copy {
        top: auto;
        bottom: 58px;
        width: calc(100% - var(--page-gutter) * 2);
        transform: none;
    }

    .urban-copy h1 {
        font-size: clamp(60px, 19vw, 92px);
        margin: 16px 0;
    }

    .tag-one {
        top: 120px;
    }

    .tag-two {
        display: none;
    }

    .spray-note {
        top: 22px;
        bottom: auto;
    }

    .urban-manifesto {
        min-height: 1100px;
        padding-inline: var(--page-gutter);
    }

    .mega-type {
        font-size: 47vw;
    }

    .urban-card {
        width: calc(100% - var(--page-gutter) * 2);
        left: var(--page-gutter);
        right: auto;
    }

    .card-dark {
        top: 140px;
        height: 300px;
    }

    .card-photo {
        top: 470px;
        height: 300px;
    }

    .card-acid {
        top: 800px;
        height: 260px;
    }

    .urban-card p {
        font-size: 42px;
    }

    .urban-release {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 54px;
        padding: 110px var(--page-gutter) 100px;
    }

    .urban-release-copy h2 {
        font-size: 26vw;
    }

    .urban-release > img {
        width: 90%;
    }

    .round-link {
        right: 10px;
        bottom: 54px;
        width: 88px;
    }

    .energy-hero {
        min-height: 830px;
    }

    .energy-copy h1 {
        font-size: clamp(58px, 19vw, 94px);
    }

    .energy-copy h1 span {
        text-shadow: 4px 4px 0 var(--violet), -2px -2px 0 var(--electric);
    }

    .sound-bars {
        top: 24px;
        bottom: auto;
    }

    .energy-manifesto {
        min-height: auto;
        padding-block: 90px 120px;
    }

    .kinetic-copy p {
        max-width: 100%;
        font-size: 16vw;
    }

    .kinetic-copy p:nth-child(3) {
        font-size: 10vw;
    }

    .energy-photo-stack {
        min-height: 550px;
        margin-top: 60px;
    }

    .energy-release-media {
        min-height: 430px;
    }

    .energy-release-media::after {
        background: linear-gradient(0deg, var(--violet), transparent 60%);
    }

    .energy-release-copy {
        padding: 20px var(--page-gutter) 100px;
    }

    .energy-release-copy h2 {
        font-size: 18vw;
    }

    .evaluation-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .evaluation-bar span:not(.current-territory) {
        display: none;
    }
}

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

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

    .parallax {
        transform: none !important;
    }
}
