:root {
    --paper: #ece8df;
    --paper-2: #d9d3c9;
    --ink: #141416;
    --ink-soft: #242327;
    --night: #09090a;
    --night-2: #111113;
    --night-3: #17171a;
    --line: rgba(255,255,255,.13);
    --line-dark: rgba(18,18,20,.16);
    --red: #b51221;
    --red-bright: #e01e32;
    --white: #f6f3ed;
    --muted: #a7a3a1;
    --shell: min(1180px, calc(100vw - 64px));
    --serif: Georgia, 'Times New Roman', Times, serif;
    --sans: Inter, Helvetica, Arial, sans-serif;
    --condensed: 'Arial Narrow', 'Roboto Condensed', Impact, sans-serif;
    --ease: cubic-bezier(.22,.8,.22,1);
    --player-accent: #e77b19;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
    margin: 0;
    min-width: 320px;
    color: var(--white);
    background: var(--night);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--red); color: #fff; }

.shell { width: var(--shell); margin-inline: auto; position: relative; }

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 12px;
    top: 12px;
    transform: translateY(-140%);
    background: #fff;
    color: #000;
    padding: 10px 14px;
    border-radius: 2px;
}
.skip-link:focus { transform: translateY(0); }

.grain {
    position: fixed;
    z-index: 200;
    inset: -60%;
    pointer-events: none;
    opacity: .055;
    background-image:
        repeating-radial-gradient(circle at 17% 32%, rgba(255,255,255,.8) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(117deg, transparent 0 5px, rgba(255,255,255,.22) 5px 6px, transparent 6px 12px);
    background-size: 7px 7px, 19px 19px;
    animation: grainShift .28s steps(2) infinite;
    mix-blend-mode: soft-light;
}
@keyframes grainShift {
    0% { transform: translate3d(-2%, 1%, 0); }
    25% { transform: translate3d(1%, -2%, 0); }
    50% { transform: translate3d(2%, 2%, 0); }
    75% { transform: translate3d(-1%, -1%, 0); }
    100% { transform: translate3d(-2%, 1%, 0); }
}
.cursor-glow {
    position: fixed;
    z-index: 1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(181,18,33,.10), rgba(181,18,33,0) 67%);
    opacity: 0;
    transition: opacity .4s ease;
}
body.has-pointer .cursor-glow { opacity: 1; }

.kicker {
    margin: 0 0 18px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-weight: 700;
}
.kicker--red { color: var(--red-bright); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    border: 0;
    background: none;
    padding: 0 0 7px;
    color: inherit;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    transition: gap .25s var(--ease), color .25s ease;
}
.text-link:hover, .text-link:focus-visible { gap: 30px; color: var(--red-bright); }
.text-link--light { color: rgba(255,255,255,.85); }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--red { background: var(--red); color: #fff; border-color: var(--red); }
.button--red:hover { background: var(--red-bright); border-color: var(--red-bright); }
.button--ghost-dark { color: #171719; border-color: rgba(20,20,22,.28); background: rgba(255,255,255,.08); }
.button--ghost-dark:hover { background: #171719; color: #fff; }
.button--artist { color: #fff; border-color: color-mix(in srgb, var(--artist-accent) 70%, white 10%); background: rgba(8,8,10,.46); backdrop-filter: blur(12px); }
.button--artist:hover { background: var(--artist-accent); color: #09090a; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

/* Header */
.site-header {
    position: fixed;
    z-index: 150;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    padding: 0 max(24px, calc((100vw - 1360px) / 2));
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    align-items: center;
    color: #171719;
    transition: height .35s var(--ease), color .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
    border-bottom: 1px solid transparent;
}
.site-header:not(.is-scrolled) { text-shadow: 0 1px 0 rgba(255,255,255,.22); }
.site-header.is-scrolled {
    height: 64px;
    color: var(--white);
    background: rgba(8,8,9,.88);
    border-color: rgba(255,255,255,.11);
    backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand img { width: 54px; height: auto; }
.brand__type { display: grid; line-height: 1; }
.brand__type strong {
    font-family: var(--serif);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 20px;
    font-weight: 500;
}
.brand__type small {
    margin-top: 6px;
    color: var(--red);
    font-size: 7px;
    letter-spacing: .5em;
    text-transform: uppercase;
    font-weight: 800;
}
.desktop-nav { justify-self: center; display: flex; align-items: stretch; height: 100%; gap: 36px; }
.desktop-nav a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 9px;
    letter-spacing: .19em;
    text-transform: uppercase;
    font-weight: 800;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 14px;
    height: 2px;
    background: var(--red);
    transition: right .25s var(--ease);
}
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 18px; }
.sound-toggle {
    border: 0;
    background: none;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 8px;
    font-weight: 800;
}
.sound-toggle span { margin-right: 7px; }
.sound-toggle i { width: 2px; height: 12px; background: currentColor; animation: sound 1.1s ease-in-out infinite alternate; transform-origin: center; }
.sound-toggle i:nth-child(2) { animation-delay: -.3s; height: 8px; }
.sound-toggle i:nth-child(3) { animation-delay: -.7s; height: 16px; }
.sound-toggle.is-muted i { animation: none; height: 3px; opacity: .45; }
@keyframes sound { to { transform: scaleY(.3); } }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; padding: 10px; }
.menu-toggle span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; margin-right: 8px; }
.menu-toggle b { display: block; width: 20px; height: 1px; background: currentColor; margin: 4px 0; transition: transform .25s ease; }
.mobile-menu {
    position: fixed;
    z-index: 140;
    inset: 0;
    background: #0b0b0c;
    padding: 120px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(34px, 10vw, 58px); line-height: 1.1; }
.mobile-menu p { margin-top: auto; color: #777; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }

/* Hero */
.hero {
    --hero-x: 0;
    --hero-y: 0;
    --hero-scroll: 0;
    min-height: 760px;
    height: min(88vh, 930px);
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    color: #171719;
    background: #cbc5ba;
    isolation: isolate;
}
.hero__scene {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background: #bbb4a8;
}
.hero__layer {
    position: absolute;
    max-width: none;
    user-select: none;
    pointer-events: none;
    transform-origin: center;
    will-change: transform;
}
.hero__background {
    z-index: 0;
    inset: -2.5%;
    width: 105%;
    height: 105%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(
        calc(var(--hero-x) * -4px),
        calc((var(--hero-y) * -3px) + (var(--hero-scroll) * 8px)),
        0
    ) scale(1.025);
    filter: contrast(1.04) saturate(.7) sepia(.08);
}
/* The supplied double-A sits in the sky and remains behind the mountain layer. */
.hero__aa {
    z-index: 1;
    top: 3%;
    right: -1%;
    width: min(64vw, 800px);
    height: auto;
    opacity: .22;
    mix-blend-mode: multiply;
    transform: translate3d(
        calc(var(--hero-x) * 10px),
        calc((var(--hero-y) * 6px) + (var(--hero-scroll) * 2px)),
        0
    ) scale(1.01);
    filter: grayscale(1) brightness(.58) contrast(1.12) sepia(.10);
}
.hero__mountains {
    z-index: 3;
    inset: -2.5%;
    width: 105%;
    height: 105%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(
        calc(var(--hero-x) * -18px),
        calc((var(--hero-y) * -8px) + (var(--hero-scroll) * 24px)),
        0
    ) scale(1.075);
    filter: contrast(1.12) saturate(.72) brightness(.83) drop-shadow(0 -10px 24px rgba(25,22,21,.14));
}
/* Fog is a true-alpha texture. Each pass drifts independently over the mountains. */
.hero__fog {
    position: absolute;
    left: -18%;
    width: 136%;
    pointer-events: none;
    overflow: visible;
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    will-change: transform, opacity;
}
.hero__fog img {
    width: 120%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    object-position: center bottom;
    transform-origin: center bottom;
    will-change: transform, opacity;
}
.hero__fog--rear {
    z-index: 6;
    bottom: 12%;
    height: 48%;
    opacity: .66;
    transform: translate3d(calc(var(--hero-x) * 5px), calc(var(--hero-y) * 2px), 0);
    filter: blur(3px) brightness(1.35) contrast(.82);
}
.hero__fog--rear img { animation: heroFogRear 30s ease-in-out infinite alternate; }
.hero__fog--middle {
    z-index: 7;
    bottom: -1%;
    height: 61%;
    opacity: .86;
    transform: translate3d(calc(var(--hero-x) * -7px), calc(var(--hero-y) * -3px), 0);
    filter: blur(1.5px) brightness(1.18) contrast(.9);
}
.hero__fog--middle img { animation: heroFogMiddle 22s ease-in-out infinite alternate; }
.hero__fog--front {
    z-index: 8;
    bottom: -18%;
    height: 76%;
    opacity: .98;
    transform: translate3d(calc(var(--hero-x) * 11px), calc(var(--hero-y) * 4px), 0);
    filter: blur(7px) brightness(.9) contrast(1.02);
}
.hero__fog--front img { animation: heroFogFront 36s ease-in-out infinite alternate; }
@keyframes heroFogRear {
    0% { transform: translate3d(-7%, 1%, 0) scale(1.04); opacity: .56; }
    44% { opacity: .92; }
    100% { transform: translate3d(5%, -2%, 0) scale(1.12); opacity: .62; }
}
@keyframes heroFogMiddle {
    0% { transform: translate3d(5%, 2%, 0) scale(1.06); opacity: .64; }
    52% { opacity: 1; }
    100% { transform: translate3d(-7%, -1%, 0) scale(1.14); opacity: .72; }
}
@keyframes heroFogFront {
    0% { transform: translate3d(-8%, 0, 0) scale(1.10); opacity: .42; }
    38% { opacity: .76; }
    100% { transform: translate3d(8%, -3%, 0) scale(1.18); opacity: .48; }
}
.hero__dust {
    position: absolute;
    z-index: 7;
    inset: -25%;
    opacity: .20;
    background:
        radial-gradient(circle at 11% 83%, rgba(130,12,21,.26) 0 1px, transparent 1.5px),
        radial-gradient(circle at 80% 71%, rgba(17,16,16,.42) 0 1px, transparent 1.6px),
        radial-gradient(circle at 53% 23%, rgba(255,255,255,.32) 0 .7px, transparent 1.4px);
    background-size: 83px 97px, 121px 109px, 71px 67px;
    animation: heroDust 18s linear infinite;
    mix-blend-mode: multiply;
}
@keyframes heroDust { to { transform: translate3d(5%, -4%, 0) rotate(.01deg); } }
.hero__scratches {
    position: absolute;
    z-index: 8;
    inset: 0;
    opacity: .12;
    background:
        repeating-linear-gradient(103deg, transparent 0 69px, rgba(25,22,20,.24) 70px, transparent 71px 169px),
        repeating-linear-gradient(12deg, transparent 0 113px, rgba(255,255,255,.22) 114px, transparent 116px 252px);
    mix-blend-mode: overlay;
}
.hero__vignette {
    position: absolute;
    z-index: 9;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12,11,11,.22), transparent 24%, transparent 70%, rgba(9,8,8,.36)),
        linear-gradient(0deg, rgba(5,5,6,.95) 0, rgba(7,7,8,.45) 17%, transparent 48%),
        radial-gradient(ellipse at center, transparent 42%, rgba(8,7,7,.12) 70%, rgba(4,4,4,.52) 118%);
}
.hero::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(100deg, rgba(238,233,223,.26) 0 29%, transparent 54%),
        radial-gradient(circle at 23% 48%, rgba(240,235,224,.20), transparent 35%);
    mix-blend-mode: soft-light;
}
/* Copy, wordmark and crest are one static foreground composition. */
.hero__inner {
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(250px, .58fr);
    align-items: center;
    gap: 44px;
    padding-top: 54px;
}
.hero__copy {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-shadow: 0 1px 0 rgba(255,255,255,.24);
}
.hero__copy .kicker { color: rgba(29,27,27,.72); }
.hero__title {
    width: min(100%, 760px);
    margin: 0;
    line-height: 1;
}
.hero__wordmark {
    display: block;
    width: 85%;
    margin-left:-6px;
    height: auto;
    filter: drop-shadow(0 2px 0 rgba(255,255,255,.18)) drop-shadow(0 17px 28px rgba(10,8,8,.12));
}
.hero__tagline {
    max-width: 570px;
    margin: 35px 0 9px;
    font-family: var(--condensed);
    font-size: clamp(18px, 1.9vw, 29px);
    line-height: 1.22;
    letter-spacing: .17em;
    text-transform: uppercase;
    font-weight: 750;
    color: #242225;
}
.hero__intro {
    max-width: 530px;
    margin: 0;
    color: rgba(235,235,235,.76);
    font-size: 14px;
    line-height: 1.65;
}
.hero__actions { display: flex; gap: 12px; margin-top: 35px; }
.hero .button {
    box-shadow: 0 11px 28px rgba(8,7,8,.12);
    backdrop-filter: blur(4px);
}
.hero .button--red {
    background: linear-gradient(180deg, #a81824, #86101a);
    border-color: rgba(98,5,13,.72);
    box-shadow: inset 0 1px rgba(255,255,255,.12), 0 14px 34px rgba(69,1,8,.20);
}
.hero .button--red:hover { background: linear-gradient(180deg, #c21b2a, #98121e); }
.hero .button--ghost-dark { background: rgba(226,220,209,.24); border-color: rgba(18,17,19,.34); }
.hero__seal-wrap {
    position: relative;
    justify-self: end;
    width: clamp(218px, 22vw, 320px);
    margin-top: 174px;
}
.hero__seal {
    position: relative;
    width: 100%;
    transform: rotate(1.5deg);
    filter: drop-shadow(0 29px 29px rgba(0,0,0,.42)) drop-shadow(0 5px 8px rgba(0,0,0,.25));
}
.hero__seal::after {
    content: '';
    position: absolute;
    inset: 12% 15%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(118,7,16,.28);
    filter: blur(28px);
}
.hero__seal img { width: 100%; }
.hero__edition {
    position: absolute;
    z-index: 11;
    right: max(30px, calc((100vw - 1360px) / 2));
    bottom: 54px;
    display: flex;
    gap: 24px;
    color: rgba(255,255,255,.66);
    text-shadow: 0 1px 9px #000;
    font-size: 8px;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.scroll-cue {
    z-index: 11;
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 7px;
    color: rgba(255,255,255,.72);
    text-shadow: 0 1px 9px #000;
    font-size: 8px;
    letter-spacing: .23em;
    text-transform: uppercase;
}
.scroll-cue i { width: 1px; height: 24px; background: linear-gradient(#fff, transparent); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 50% { transform: translateY(7px); opacity: .4; } }

/* Manifesto */
.manifesto {
    position: relative;
    overflow: hidden;
    padding: 94px 0;
    background:
        radial-gradient(circle at 56% 45%, rgba(94,70,52,.2), transparent 22%),
        linear-gradient(95deg, #111112, #09090a 72%);
    border-bottom: 1px solid var(--line);
}
.manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .15;
    background: repeating-linear-gradient(18deg, transparent 0 38px, rgba(255,255,255,.055) 39px 40px, transparent 41px 92px);
}
.manifesto__mark { position: absolute; left: -130px; bottom: -160px; width: 520px; opacity: .035; }
.manifesto__grid { display: grid; grid-template-columns: 1.1fr .75fr .9fr; gap: 58px; align-items: center; }
.manifesto__copy h2 { margin: 0 0 24px; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 3.6vw, 54px); line-height: 1.05; text-transform: uppercase; }
.manifesto__copy > p:not(.kicker) { margin: 0 0 22px; color: #b7b3ae; max-width: 540px; }
.manifesto__copy strong { display: block; margin: 28px 0; color: var(--red-bright); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.manifesto__portal {
    position: relative;
    height: 380px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(ellipse at center bottom, rgba(255,217,163,.3), transparent 22%),
        linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
    clip-path: polygon(15% 100%, 27% 14%, 50% 0, 73% 14%, 85% 100%);
    overflow: hidden;
}
.manifesto__portal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #09090a 0 32%, transparent 32% 68%, #09090a 68%), linear-gradient(#1a1919, #060607);
    opacity: .75;
}
.manifesto__portal img { position: relative; z-index: 2; width: 75%; opacity: .15; filter: grayscale(1) brightness(2); }
.manifesto__door { position: absolute; z-index: 1; width: 28%; height: 72%; bottom: 0; background: linear-gradient(#2e2926, #d7a96e); box-shadow: 0 0 55px rgba(255,200,124,.26); }
.principles { display: grid; }
.principle { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principle:first-child { border-top: 1px solid var(--line); }
.principle > span { color: var(--red-bright); font-family: var(--serif); font-size: 20px; }
.principle h3 { margin: 0 0 5px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.principle p { margin: 0; color: #989492; font-size: 13px; line-height: 1.45; }

/* Transmissions */
.transmissions { padding: 74px 0 84px; background: #0b0b0c; border-bottom: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 36px; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); font-weight: 400; text-transform: uppercase; line-height: 1; }
.transmission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.transmission-card {
    min-height: 205px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 126px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #141416, #0d0d0f);
    transition: border-color .3s ease, transform .35s var(--ease);
}
.transmission-card:hover { transform: translateY(-4px); border-color: rgba(224,30,50,.7); }
.transmission-card__copy { padding: 25px 14px 23px 24px; position: relative; z-index: 2; display: flex; flex-direction: column; }
.transmission-card__copy p { margin: 0 0 16px; color: var(--red-bright); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; }
.transmission-card__copy h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 22px; line-height: 1.08; font-weight: 400; text-transform: uppercase; }
.transmission-card__copy span, .transmission-card__copy time { display: block; color: #aaa6a3; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.transmission-card__copy time { margin-top: auto; color: #757270; }
.transmission-card__visual { position: relative; overflow: hidden; }
.transmission-card__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #111114 0, transparent 40%); }
.transmission-card__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.05); }
.transmission-card__visual--brand { display: grid; place-items: center; padding: 16px; }
.transmission-card__visual--brand img { height: auto; object-fit: contain; opacity: .75; }
.card-hit { position: absolute; z-index: 3; inset: 0; border: 0; background: transparent; cursor: pointer; }

/* Roster intro */
.roster-intro { padding: 90px 0; background: #0d0d0e; }
.roster-intro__grid { display: grid; grid-template-columns: 1.2fr .9fr .35fr; align-items: end; gap: 60px; }
.roster-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 72px); line-height: .98; font-weight: 400; text-transform: uppercase; }
.roster-intro__grid > p { margin: 0; color: #aaa6a2; max-width: 460px; }
.roster-stat { padding-left: 28px; border-left: 1px solid var(--line); }
.roster-stat strong { display: block; color: var(--red-bright); font-family: var(--serif); font-size: 48px; line-height: 1; font-weight: 400; }
.roster-stat span { display: block; color: #777; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; margin-top: 8px; }

/* Artists */
.artist-panel {
    position: relative;
    min-height: 510px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(255,255,255,.16);
}
.artist-panel__image {
    position: absolute;
    z-index: -3;
    inset: -5%;
    background-image: var(--artist-image);
    background-size: cover;
    background-position: var(--artist-position);
    filter: saturate(.93) contrast(1.03);
    transform: scale(1.03);
    transition: transform 1.3s var(--ease), filter .8s ease;
}
.artist-panel:hover .artist-panel__image { transform: scale(1.07); filter: saturate(1.06) contrast(1.08); }
.artist-panel__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,6,8,.92) 0, rgba(6,6,8,.65) 39%, rgba(6,6,8,.12) 66%, rgba(6,6,8,.72) 100%),
        linear-gradient(0deg, rgba(7,7,8,.7), transparent 34%, rgba(7,7,8,.18));
}
.artist-panel--pandaskins .artist-panel__shade { background: linear-gradient(90deg, rgba(22,10,2,.91), rgba(24,10,2,.56) 40%, rgba(17,8,2,.06) 66%, rgba(7,7,8,.76)); }
.artist-panel--sonic-milk-gymnasium .artist-panel__shade { background: linear-gradient(90deg, rgba(7,10,17,.90), rgba(13,17,27,.48) 44%, rgba(10,12,19,.05) 68%, rgba(8,10,15,.76)); }
.artist-panel--saint-john-mission .artist-panel__shade { background: linear-gradient(90deg, rgba(5,25,15,.91), rgba(5,22,14,.5) 46%, rgba(5,15,10,.08) 68%, rgba(7,10,8,.72)); }
.artist-panel__number {
    position: absolute;
    right: -10px;
    top: -48px;
    font-family: var(--serif);
    font-size: clamp(190px, 24vw, 360px);
    line-height: 1;
    color: rgba(255,255,255,.04);
    z-index: -1;
}
.artist-panel__inner { min-height: 510px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(220px, .35fr); align-items: center; gap: 80px; padding-block: 72px; }
.artist-panel__copy { width: min(590px, 100%); padding: 34px 38px 36px; border-left: 2px solid var(--artist-accent); background: linear-gradient(90deg, rgba(8,8,10,.42), transparent); backdrop-filter: blur(2px); }
.artist-panel__catalogue { margin: 0 0 20px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.artist-mark { margin: 0; font-size: clamp(42px, 5.4vw, 80px); line-height: .86; font-weight: 800; text-transform: uppercase; color: #fff; text-shadow: 0 6px 28px rgba(0,0,0,.4); }
.artist-mark--pandaskins { font-family: var(--condensed); font-style: italic; transform: skew(-6deg); letter-spacing: -.04em; }
.artist-mark--sonic-milk-gymnasium { font-family: var(--condensed); letter-spacing: -.03em; max-width: 680px; }
.artist-mark--saint-john-mission { font-family: var(--condensed); letter-spacing: .18em; font-weight: 400; line-height: 1.1; font-size: clamp(35px, 4.5vw, 67px); }
.artist-panel__release { margin: 16px 0 28px; color: var(--artist-accent); font-size: 11px; letter-spacing: .42em; text-transform: uppercase; font-weight: 800; }
.artist-panel__description { margin: 0; max-width: 550px; color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.65; }
.artist-panel__actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }
.artist-panel__meta { justify-self: end; align-self: end; margin-bottom: 16px; min-width: 190px; padding: 22px 0 5px; color: #fff; }
.artist-panel__meta span, .artist-panel__meta time { display: block; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.artist-panel__meta strong { display: block; margin: 7px 0; color: var(--artist-accent); font-size: 16px; letter-spacing: .16em; text-transform: uppercase; }
.artist-panel__meta i { display: block; width: 40px; height: 2px; background: var(--artist-accent); margin-top: 16px; }

/* Player */
.player-section {
    position: relative;
    overflow: hidden;
    padding: 104px 0 86px;
    background: radial-gradient(circle at 43% 48%, color-mix(in srgb, var(--player-accent) 12%, transparent), transparent 23%), #09090a;
    border-top: 1px solid var(--line);
}
.player-section__rings {
    position: absolute;
    left: 31%;
    top: 38%;
    width: 720px;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: .08;
    background: repeating-radial-gradient(circle, transparent 0 10px, rgba(255,255,255,.75) 11px 12px, transparent 13px 18px);
    mask-image: radial-gradient(circle, #000, transparent 69%);
    animation: slowSpin 80s linear infinite;
}
@keyframes slowSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.section-heading--player { align-items: start; margin-bottom: 44px; }
.section-heading--player > p { max-width: 440px; margin: 0; color: #85817f; }
.player {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, .78fr) minmax(340px, 1.08fr) minmax(280px, .84fr);
    gap: 0;
    min-height: 480px;
    border: 1px solid rgba(255,255,255,.15);
    background: linear-gradient(135deg, rgba(28,28,31,.95), rgba(10,10,12,.97));
    box-shadow: 0 35px 100px rgba(0,0,0,.35);
}
.player::after { content: ''; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.035); pointer-events: none; }
.player__art { position: relative; min-height: 480px; overflow: hidden; border-right: 1px solid var(--line); }
.player__art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,9,10,.55), transparent 50%); }
.player__art img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease, transform .8s var(--ease); }
.player__art:hover img { transform: scale(1.025); }
.player__art > span { position: absolute; z-index: 2; left: 24px; bottom: 20px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.player__main { position: relative; padding: 54px 50px 36px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.player__identity p { margin: 0 0 8px; color: var(--red-bright); font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.player__identity h3 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.player__identity h4 { margin: 12px 0 0; color: var(--player-accent); font-size: 11px; letter-spacing: .38em; text-transform: uppercase; }
.waveform { height: 72px; margin: 36px 0 28px; display: flex; align-items: center; gap: 3px; overflow: hidden; }
.waveform i { width: 2px; height: var(--h); background: var(--player-accent); opacity: .65; transform-origin: center; animation: wave 1.15s ease-in-out infinite alternate; animation-delay: calc(var(--h) * -0.018s); }
.player.is-playing .waveform i { animation-play-state: running; }
.player:not(.is-playing) .waveform i { animation-play-state: paused; transform: scaleY(.25); opacity: .28; }
@keyframes wave { 50% { transform: scaleY(.3); } 100% { transform: scaleY(1.15); } }
.player__controls { display: flex; align-items: center; gap: 18px; }
.player__controls button { width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; padding: 9px; opacity: .8; }
.player__controls button:hover { opacity: 1; }
.player__controls svg { width: 100%; height: 100%; fill: currentColor; }
.player__controls .player__play { width: 62px; height: 62px; border: 1px solid var(--player-accent); border-radius: 50%; color: var(--player-accent); padding: 16px; transition: background .25s ease, color .25s ease; }
.player__controls .player__play:hover { background: var(--player-accent); color: #09090a; }
.player__controls > span { margin-left: auto; color: #6f6c6b; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.player__progress { margin-top: auto; padding-top: 34px; }
.player__progress button { display: block; width: 100%; height: 18px; border: 0; background: transparent; padding: 8px 0; cursor: pointer; }
.player__progress button::before { content: ''; display: block; width: 100%; height: 1px; background: rgba(255,255,255,.18); }
.player__progress i { display: block; width: 0; height: 2px; margin-top: -2px; background: var(--player-accent); box-shadow: 0 0 10px var(--player-accent); }
.player__progress div { display: flex; justify-content: space-between; color: #777; font-size: 9px; }
.player__tracks { padding: 46px 35px 34px; display: flex; flex-direction: column; }
.player__track-heading { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: #676464; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.player__tracks ol { margin: 0; padding: 0; list-style: none; }
.player__tracks li button { width: 100%; min-height: 48px; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 9px; border: 0; border-bottom: 1px solid rgba(255,255,255,.08); background: transparent; color: #9e9a97; padding: 0; cursor: pointer; text-align: left; transition: color .2s ease, padding-left .2s ease; }
.player__tracks li button:hover { color: #fff; padding-left: 5px; }
.player__tracks li button span:first-child { font-size: 9px; }
.player__tracks li button strong { font-size: 12px; font-weight: 500; }
.player__tracks li button span:last-child { font-size: 9px; }
.player__tracks li.is-active button { color: var(--player-accent); }
.player__tracks > .text-link { margin-top: auto; align-self: flex-start; }
.record-selector { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.record-selector__item { min-height: 84px; display: grid; grid-template-columns: 74px 1fr; align-items: center; gap: 17px; border: 0; border-right: 1px solid var(--line); background: #0d0d0f; color: #fff; padding: 8px; text-align: left; cursor: pointer; transition: background .25s ease; }
.record-selector__item:last-child { border-right: 0; }
.record-selector__item:hover, .record-selector__item.is-active { background: #18181b; }
.record-selector__item.is-active { box-shadow: inset 0 -2px var(--player-accent); }
.record-selector__item img { width: 68px; height: 68px; object-fit: cover; }
.record-selector__item span { display: grid; }
.record-selector__item strong { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.record-selector__item small { color: #777; font-size: 9px; margin-top: 4px; }

/* Closing */
.closing {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background:
        linear-gradient(90deg, rgba(181,18,33,.18), transparent 52%),
        repeating-linear-gradient(130deg, transparent 0 27px, rgba(255,255,255,.02) 28px 29px),
        #121113;
    border-top: 1px solid rgba(181,18,33,.65);
}
.closing__seal { position: absolute; right: 3%; top: 50%; width: 260px; transform: translateY(-50%) rotate(-8deg); opacity: .18; filter: grayscale(.2); }
.closing__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.closing__statement h2 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(42px, 4.8vw, 68px); line-height: .96; font-weight: 400; text-transform: uppercase; }
.closing__statement > p:last-child { color: #aaa6a3; max-width: 600px; }
.signup { position: relative; z-index: 2; }
.signup > label:first-child { display: block; margin-bottom: 10px; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: #a7a3a1; }
.signup__row { display: grid; grid-template-columns: 1fr auto; }
.signup input[type="email"] { width: 100%; min-height: 54px; border: 1px solid rgba(255,255,255,.25); border-right: 0; background: rgba(8,8,10,.5); color: #fff; padding: 0 18px; outline: none; }
.signup input[type="email"]:focus { border-color: var(--red-bright); }
.signup__row .button { min-height: 54px; }
.signup__consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 13px; color: #777; font-size: 11px; }
.signup__consent input { accent-color: var(--red); margin-top: 4px; }
.signup__status { min-height: 24px; margin: 12px 0 0; color: var(--red-bright); font-size: 12px; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Footer */
.site-footer { padding: 70px 0 24px; background: #080809; border-top: 1px solid var(--line); }
.site-footer__grid { display: grid; grid-template-columns: 1.55fr repeat(4, .55fr); gap: 48px; padding-bottom: 58px; }
.brand--footer { color: #fff; }
.footer-brand p { margin: 26px 0 0; color: #767271; font-size: 9px; line-height: 1.8; letter-spacing: .16em; text-transform: uppercase; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-column h3 { margin: 0 0 13px; color: var(--red-bright); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.footer-column a { color: #918d8b; font-size: 12px; }
.footer-column a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: #555252; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }

/* Dialog */
.release-dialog {
    width: min(970px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 0;
    color: #fff;
    background: #0d0d0f;
    box-shadow: 0 35px 120px rgba(0,0,0,.7);
    overflow: auto;
}
.release-dialog::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(10px); }
.release-dialog[open] { display: grid; grid-template-columns: 1fr 1fr; }
.release-dialog__close { position: fixed; z-index: 3; right: max(28px, calc((100vw - min(970px, calc(100vw - 40px))) / 2 + 15px)); top: 28px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); background: #0b0b0c; color: #fff; cursor: pointer; font-size: 24px; }
.release-dialog__visual { min-height: 620px; }
.release-dialog__visual img { width: 100%; height: 100%; object-fit: cover; }
.release-dialog__copy { padding: 70px 58px 56px; }
.release-dialog__copy > p:first-child { color: var(--red-bright); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.release-dialog__copy h2 { margin: 22px 0 4px; font-family: var(--serif); font-size: 56px; line-height: .9; font-weight: 400; text-transform: uppercase; }
.release-dialog__copy h3 { margin: 0; color: var(--player-accent); font-size: 11px; letter-spacing: .34em; text-transform: uppercase; }
.release-dialog__copy blockquote { margin: 42px 0 26px; padding-left: 22px; border-left: 2px solid var(--red); font-family: var(--serif); font-size: 24px; line-height: 1.3; color: #dedad3; }
.release-dialog__copy > p:not(:first-child) { color: #aaa6a2; }
.release-dialog__copy [data-dialog-links] { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.release-dialog__copy [data-dialog-links] a { padding: 11px 14px; border: 1px solid var(--line); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.release-dialog__copy [data-dialog-links] a:hover { border-color: var(--red-bright); color: var(--red-bright); }
.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; max-width: 340px; padding: 14px 18px; background: #fff; color: #111; font-size: 13px; transform: translateY(150%); transition: transform .35s var(--ease); box-shadow: 0 16px 50px rgba(0,0,0,.3); }
.toast.is-visible { transform: translateY(0); }

@media (max-width: 1050px) {
    :root { --shell: min(100% - 40px, 940px); }
    .site-header { grid-template-columns: 220px 1fr 160px; }
    .desktop-nav { gap: 22px; }
    .manifesto__grid { grid-template-columns: 1fr .7fr; }
    .manifesto__copy { grid-column: 1; }
    .manifesto__portal { grid-column: 2; grid-row: 1 / 3; }
    .principles { grid-column: 1; }
    .transmission-grid { grid-template-columns: 1fr 1fr; }
    .transmission-card:last-child { grid-column: 1 / -1; }
    .roster-intro__grid { grid-template-columns: 1fr .8fr; }
    .roster-stat { display: none; }
    .artist-panel__inner { gap: 30px; }
    .player { grid-template-columns: .75fr 1fr; }
    .player__tracks { grid-column: 1 / -1; border-top: 1px solid var(--line); }
    .player__tracks ol { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
    .player__tracks > .text-link { margin-top: 28px; }
    .closing__grid { gap: 50px; }
}

@media (max-width: 820px) {
    :root { --shell: calc(100vw - 34px); }
    .site-header { grid-template-columns: 1fr auto; padding-inline: 17px; }
    .desktop-nav, .sound-toggle span { display: none; }
    .header-tools { grid-column: 2; }
    .menu-toggle { display: flex; align-items: center; }
    .hero { min-height: 790px; height: auto; padding: 122px 0 118px; }
    .hero__background { object-position: 58% center; }
    .hero__aa { top: 8%; right: -13%; width: min(82vw, 800px); opacity: .18; }
    .hero__mountains { object-position: 65% center; transform: translate3d(calc(var(--hero-x) * -13px), calc((var(--hero-y) * -7px) + (var(--hero-scroll) * 18px)), 0) scale(1.16); }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__copy { max-width: 670px; }
    .hero__title { width: min(100%, 670px); }
    .hero__seal-wrap { position: absolute; z-index: 1; right: -50px; bottom: -28px; width: 250px; margin: 0; opacity: .76; }
    .hero__fog { height: 58%; bottom: -3%; }
    .hero__fog--front { bottom: -16%; }
    .hero__edition { left: 17px; right: auto; bottom: 35px; }
    .scroll-cue { display: none; }
    .manifesto { padding: 72px 0; }
    .manifesto__grid { grid-template-columns: 1fr; }
    .manifesto__portal { display: none; }
    .principles { grid-column: auto; }
    .transmission-grid { grid-template-columns: 1fr; }
    .transmission-card:last-child { grid-column: auto; }
    .roster-intro { padding: 70px 0; }
    .roster-intro__grid { grid-template-columns: 1fr; gap: 28px; }
    .artist-panel { min-height: 610px; }
    .artist-panel__inner { min-height: 610px; grid-template-columns: 1fr; align-content: end; padding: 110px 0 55px; }
    .artist-panel__copy { padding: 29px 24px 30px; width: 100%; }
    .artist-panel__meta { justify-self: start; align-self: auto; margin: 0; padding: 0 0 0 26px; }
    .artist-panel__shade { background: linear-gradient(0deg, rgba(5,5,6,.94), rgba(5,5,6,.58) 52%, rgba(5,5,6,.12)); }
    .artist-panel__image { background-position: center; }
    .artist-mark { font-size: clamp(44px, 12vw, 72px); }
    .artist-mark--saint-john-mission { font-size: clamp(34px, 9vw, 58px); }
    .artist-panel__description { font-size: 14px; }
    .artist-panel__actions { flex-wrap: wrap; }
    .player-section { padding: 78px 0 64px; }
    .section-heading, .section-heading--player { display: grid; align-items: start; }
    .player { grid-template-columns: 1fr; }
    .player__art { min-height: 430px; border-right: 0; border-bottom: 1px solid var(--line); }
    .player__main { min-height: 420px; border-right: 0; border-bottom: 1px solid var(--line); padding: 42px 28px 30px; }
    .player__tracks { grid-column: auto; padding: 38px 28px 32px; }
    .player__tracks ol { grid-template-columns: 1fr; }
    .record-selector { grid-template-columns: 1fr; }
    .record-selector__item { border-right: 0; border-bottom: 1px solid var(--line); }
    .record-selector__item:last-child { border-bottom: 0; }
    .closing__grid { grid-template-columns: 1fr; gap: 36px; }
    .closing__seal { right: -80px; opacity: .1; }
    .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .site-footer__bottom { display: grid; }
    .release-dialog[open] { grid-template-columns: 1fr; }
    .release-dialog__visual { min-height: 420px; }
    .release-dialog__copy { padding: 44px 28px 42px; }
}

@media (max-width: 520px) {
    .brand__type strong { font-size: 17px; }
    .brand img { width: 44px; }
    .hero { min-height: 740px; padding: 108px 0 115px; }
    .hero__background { object-position: 61% center; }
    .hero__aa { top: 12%; right: -34%; width: 118vw; opacity: .14; }
    .hero__mountains { object-position: 69% center; filter: contrast(1.12) saturate(.68) brightness(.70); }
    .hero__actions { align-items: stretch; flex-direction: column; max-width: 286px; }
    .hero__title { width: min(100%, 560px); }
    .hero__wordmark { width: 108%; max-width: none; }
    .hero__tagline { max-width: 360px; font-size: 16px; letter-spacing: .13em; }
    .hero__intro { max-width: 350px; font-size: 13px; }
    .hero__seal-wrap { right: -74px; bottom: 4px; width: 220px; opacity: .64; }
    .hero__edition { gap: 13px; font-size: 7px; letter-spacing: .17em; }
    .manifesto__copy h2 { font-size: 38px; }
    .transmission-card { grid-template-columns: 1fr 112px; }
    .artist-panel__copy { backdrop-filter: none; background: rgba(8,8,10,.55); }
    .artist-panel__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .player__art { min-height: 360px; }
    .player__identity h3 { font-size: 42px; }
    .player__controls > span { display: none; }
    .signup__row { grid-template-columns: 1fr; }
    .signup input[type="email"] { border-right: 1px solid rgba(255,255,255,.25); border-bottom: 0; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
    .release-dialog__visual { min-height: 320px; }
    .release-dialog__copy h2 { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero { --hero-x: 0 !important; --hero-y: 0 !important; --hero-scroll: 0 !important; }
    .hero__background, .hero__aa, .hero__mountains { will-change: auto; }
    .hero__fog img, .hero__dust { animation: none !important; }
}

/* 2.2 ambient motion + supplied mail/footer artwork */
.hero__cloud {
    position: absolute;
    z-index: 2;
    left: -24%;
    width: 148%;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    will-change: transform, opacity;
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.hero__cloud img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    transform: scaleY(.48);
    transform-origin: center;
    filter: blur(8px) brightness(1.6) contrast(.62);
}
.hero__cloud--far {
    top: -3%;
    height: 42%;
    animation: heroCloudFar 34s linear infinite;
}
.hero__cloud--near {
    top: 14%;
    left: -38%;
    width: 176%;
    height: 45%;
    animation: heroCloudNear 26s linear -9s infinite;
}
.hero__cloud--near img {
    transform: scaleY(.38) scaleX(-1);
    filter: blur(12px) brightness(1.48) contrast(.68);
}
@keyframes heroCloudFar {
    0% { opacity: 0; transform: translate3d(-7%, -1%, 0); }
    15% { opacity: .16; }
    46% { opacity: .31; }
    72% { opacity: .13; }
    100% { opacity: 0; transform: translate3d(13%, 2%, 0); }
}
@keyframes heroCloudNear {
    0% { opacity: 0; transform: translate3d(-8%, 1%, 0); }
    18% { opacity: .12; }
    52% { opacity: .24; }
    82% { opacity: .10; }
    100% { opacity: 0; transform: translate3d(11%, -2%, 0); }
}

/* A restrained light sweep makes interactive elements feel machined rather than flashy. */
.button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.button::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -55%;
    bottom: -55%;
    left: -46%;
    width: 31%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform: skewX(-17deg) translateX(-210%);
    transition: transform .72s var(--ease);
    pointer-events: none;
}
.button:hover::before,
.button:focus-visible::before { transform: skewX(-17deg) translateX(650%); }

.closing {
    isolation: isolate;
    background: #121113;
    border-top-color: rgba(181,18,33,.72);
}
.closing::before {
    content: '';
    position: absolute;
    z-index: -2;
    inset: -4%;
    background: url('../img/textures/mailbk.png') center / cover no-repeat;
    transform: scale(1.035);
    animation: mailBackgroundDrift 20s ease-in-out infinite alternate;
    will-change: transform;
}
.closing::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7,6,7,.05), rgba(7,6,7,.20) 46%, rgba(7,6,7,.46) 100%),
        linear-gradient(0deg, rgba(5,5,6,.34), transparent 42%, rgba(5,5,6,.20));
}
@keyframes mailBackgroundDrift {
    from { transform: scale(1.035) translate3d(-.6%, 0, 0); filter: brightness(.92); }
    to { transform: scale(1.06) translate3d(.7%, -.5%, 0); filter: brightness(1.04); }
}
.closing__grid { z-index: 2; }
.closing__statement h2 {
    text-shadow: 0 15px 42px rgba(0,0,0,.48);
}
.signup {
    padding: 27px;
    border: 1px solid rgba(255,255,255,.15);
    background: linear-gradient(145deg, rgba(11,10,12,.70), rgba(17,14,16,.48));
    box-shadow: 0 26px 70px rgba(0,0,0,.27), inset 0 1px rgba(255,255,255,.045);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    transition: transform .45s var(--ease), border-color .35s ease, box-shadow .45s ease;
}
.signup:hover,
.signup:focus-within {
    transform: translateY(-4px);
    border-color: rgba(224,30,50,.42);
    box-shadow: 0 34px 84px rgba(0,0,0,.34), 0 0 0 1px rgba(181,18,33,.08), inset 0 1px rgba(255,255,255,.06);
}
.signup input[type="email"] {
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.signup input[type="email"]:focus {
    background: rgba(4,4,5,.68);
    box-shadow: inset 0 0 0 1px rgba(224,30,50,.18), 0 0 32px rgba(181,18,33,.08);
}

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #080809;
}
.site-footer::before {
    content: '';
    position: absolute;
    z-index: -2;
    inset: -6%;
    background: url('../img/textures/footbk.png') center 11% / cover no-repeat;
    transform: scale(1.03);
    animation: footerBackgroundBreath 24s ease-in-out infinite alternate;
    will-change: transform, filter;
}
.site-footer::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(4,4,5,.30), transparent 37%, transparent 66%, rgba(4,4,5,.24)),
        linear-gradient(0deg, rgba(3,3,4,.67), transparent 66%);
}
.site-footer > .shell { z-index: 1; }
@keyframes footerBackgroundBreath {
    from { transform: scale(1.03) translate3d(-.35%, 0, 0); filter: brightness(.88); }
    to { transform: scale(1.065) translate3d(.45%, -.55%, 0); filter: brightness(1.04); }
}
.brand--footer img {
    transform-origin: center;
    animation: footerMarkFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,.42));
}
@keyframes footerMarkFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-4px) rotate(-1.4deg); }
}
.footer-column h3 {
    position: relative;
    padding-bottom: 8px;
}
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 17px;
    height: 1px;
    background: var(--red-bright);
    box-shadow: 0 0 12px rgba(224,30,50,.42);
    transition: width .4s var(--ease);
}
.footer-column:hover h3::after { width: 42px; }
.footer-column a {
    position: relative;
    transition: color .25s ease, transform .25s var(--ease), text-shadow .25s ease;
}
.footer-column a::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 50%;
    width: 5px;
    height: 1px;
    background: var(--red-bright);
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity .25s ease, transform .25s var(--ease);
}
.footer-column a:hover,
.footer-column a:focus-visible {
    color: #fff;
    transform: translateX(8px);
    text-shadow: 0 0 18px rgba(255,255,255,.17);
}
.footer-column a:hover::before,
.footer-column a:focus-visible::before {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    .hero__cloud--far { top: 3%; height: 36%; }
    .hero__cloud--near { top: 16%; height: 38%; }
    .closing::before { background-position: 60% center; }
    .signup { padding: 24px; }
    .site-footer::before { background-position: 50% top; }
}

@media (max-width: 520px) {
    .hero__cloud { left: -70%; width: 230%; }
    .hero__cloud--near { left: -92%; width: 270%; }
    .closing { padding: 72px 0; }
    .closing::before { background-position: 62% center; }
    .closing::after { background: rgba(5,5,6,.42); }
    .signup { padding: 20px; }
    .site-footer::before { background-position: 48% top; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__cloud,
    .closing::before,
    .site-footer::before,
    .brand--footer img { animation: none !important; }
    .hero__cloud { opacity: .13; transform: none; }
}
