:root {
    --ink: #171513;
    --paper: #deded8;
    --white: #f4f2ea;
    --muted: #69645c;
    --muted-dark: #b9b2a6;
    --black: #121313;
    --black-2: #1d1c19;
    --accent: #1e9cff;
    --accent-hot: #75d7ff;
    --accent-dark: #0b4f91;
    --steel: #7f8991;
    --smoke: #282a29;
    --line: rgba(23, 21, 19, 0.14);
    --line-light: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --font-main: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
    --font-heading: 'Bungee Inline', Impact, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    color: var(--ink);
    background: var(--black);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30,156,255,0.035) 1px, transparent 1px),
        var(--black);
    background-size: 42px 42px;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 0;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow:
        2px 2px 0 rgba(8, 14, 18, 0.92),
        5px 5px 0 rgba(30, 156, 255, 0.32);
}

p {
    line-height: 1.72;
}

.highlight {
    color: var(--accent);
    text-shadow:
        2px 2px 0 rgba(8, 14, 18, 0.95),
        5px 5px 0 rgba(117, 215, 255, 0.34);
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: 78px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    background: rgba(18, 19, 19, 0.78);
    border-bottom: 1px solid var(--line-light);
    backdrop-filter: blur(16px);
    transition: height 0.25s ease, background 0.25s ease;
}

.navbar.scrolled {
    height: 64px;
    background: rgba(18, 19, 19, 0.94);
}

.logo {
    position: relative;
    z-index: 1002;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    text-shadow: 2px 2px 0 rgba(30, 156, 255, 0.68), 4px 4px 0 rgba(0, 0, 0, 0.55);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.84rem;
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.12rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.hamburger {
    position: relative;
    z-index: 1002;
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: min(900px, calc(100svh - 42px));
    padding: 7.5rem 5vw 4rem;
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(30, 156, 255, 0.16), transparent 34%),
        linear-gradient(90deg, #121313 0%, #24231f 56%, #d6d7d1 56%, #d6d7d1 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(30,156,255,0.08), transparent 32%),
        repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,0.045) 26px 27px);
    background-size: auto, auto;
    opacity: 0.58;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 156, 255, 0.72), transparent);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    align-items: center;
    gap: 4rem;
}

.hero-content {
    max-width: 700px;
}

.eyebrow,
.section-kicker p,
.wave-copy span,
.release-details span,
.amp-label {
    color: var(--muted-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow {
    color: var(--accent);
    margin-bottom: 1.3rem;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.72);
}

.main-logo-img {
    max-width: 480px;
    width: 100%;
    transform: rotate(-10deg);
    margin-bottom: 2rem;
    margin-top: 1rem;
    filter: drop-shadow(0 15px 28px rgba(0, 0, 0, 0.45));
}

.subtitle {
    margin-top: 1.4rem;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.35rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.primary-btn {
    color: var(--white);
    background: var(--accent-dark);
    border: 2px solid var(--accent);
    box-shadow: 0 8px 18px rgba(30, 156, 255, 0.24);
}

.primary-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 12px 24px rgba(30, 156, 255, 0.36);
}

.ghost-btn {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.8rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.72rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border: 1px solid var(--line-light);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-stage {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1100px;
    transform-style: preserve-3d;
    isolation: isolate;
}

.hero-stage::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: min(560px, 96%);
    height: 56%;
    bottom: 1.6rem;
    background:
        repeating-linear-gradient(118deg, rgba(30, 156, 255, 0.18) 0 2px, transparent 2px 18px),
        linear-gradient(135deg, rgba(247, 244, 236, 0.12), rgba(40, 42, 41, 0.14));
    border: 1px solid rgba(247, 244, 236, 0.2);
    clip-path: polygon(12% 0, 100% 18%, 86% 100%, 0 76%);
    transform: rotateX(64deg) rotateZ(-7deg) translateY(66px);
    transform-origin: center bottom;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.hero-stage::after {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 12% 8% 15%;
    background:
        repeating-linear-gradient(0deg, transparent 0 30px, rgba(255, 255, 255, 0.055) 30px 31px),
        linear-gradient(150deg, rgba(127, 137, 145, 0.18), rgba(18, 19, 19, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    clip-path: polygon(4% 16%, 100% 0, 95% 82%, 0 100%);
    transform: translateZ(-90px) rotateY(-12deg);
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    max-height: 590px;
    object-fit: contain;
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.5));
}

.hero-signature {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 2rem;
    width: 280px;
    transform: rotate(-7deg);
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.26));
}

section {
    padding: 7.5rem 0;
}

section h2 {
    font-size: 3.2rem;
    line-height: 1.03;
    display: inline-block;
    max-width: 100%;
    color: var(--white);
    padding: 0.08em 0.22em 0.14em;
    background:
        linear-gradient(105deg, rgba(18, 19, 19, 0.97) 0 58%, rgba(30, 156, 255, 0.28) 58% 100%);
    border-left: 7px solid var(--accent);
    transform: skewX(-7deg);
    transform-origin: left center;
    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.14);
    overflow-wrap: anywhere;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-kicker p {
    color: var(--muted);
}

.about,
.vision {
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(23,21,19,0.04) 1px, transparent 1px),
        var(--paper);
    background-size: 34px 34px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 3rem;
    align-items: start;
}

.about-text {
    max-width: 740px;
}

.about-text p,
.vision-content p {
    margin-bottom: 1.35rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.manifesto {
    position: relative;
    margin: 2.2rem 0;
    padding: 1.4rem 1.6rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.9rem;
    line-height: 1.35;
    text-transform: uppercase;
    background: rgba(247, 244, 236, 0.72);
    border-left: 8px solid var(--accent);
    box-shadow: 12px 12px 0 rgba(30, 156, 255, 0.14);
    overflow-wrap: anywhere;
}

.identity-panel {
    position: sticky;
    top: 96px;
    padding: 1.2rem;
    background: var(--smoke);
    color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.panel-title {
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.identity-panel dl {
    display: grid;
    gap: 0.85rem;
}

.identity-panel div {
    padding-top: 0.85rem;
    border-top: 1px solid var(--line-light);
}

.identity-panel dt {
    color: var(--muted-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.identity-panel dd {
    margin-top: 0.25rem;
    font-weight: 800;
}

.sound {
    position: relative;
    color: var(--white);
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 90px),
        linear-gradient(180deg, #121313 0%, #211f1a 100%);
}

.sound .section-kicker p,
.sound .section-heading h2 {
    color: var(--white);
}

.sound-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sound-card {
    min-height: 255px;
    padding: 1.5rem;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.sound-card i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    color: var(--white);
    background: var(--accent-dark);
    border: 1px solid rgba(117, 215, 255, 0.7);
    border-radius: 8px;
}

.sound-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.55rem;
    display: inline-block;
    transform: skewX(-8deg);
    color: var(--white);
}

.sound-card p {
    color: rgba(255, 255, 255, 0.7);
}

.wave-panel {
    margin-top: 1rem;
    min-height: 142px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 220px;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem;
    color: var(--white);
    background:
        repeating-linear-gradient(90deg, rgba(30, 156, 255, 0.06) 0 1px, transparent 1px 22px),
        var(--black-2);
    border: 1px solid var(--line-light);
    border-radius: 8px;
}

.wave-copy strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 0 rgba(30, 156, 255, 0.34);
}

.waveform {
    height: 86px;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    align-items: center;
    gap: 0.45rem;
}

.waveform span {
    height: var(--h);
    min-height: 16px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent), var(--steel));
    animation: wave 1.4s ease-in-out infinite alternate;
    animation-delay: calc(var(--h) * -0.01s);
}

@keyframes wave {
    from { transform: scaleY(0.65); opacity: 0.7; }
    to { transform: scaleY(1); opacity: 1; }
}

.wave-note {
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
}

.album {
    color: var(--ink);
    background: #e8e8e2;
}

.album-container {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: 4rem;
}

.album-cover-wrapper {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
    isolation: isolate;
    --album-tilt-x: 0deg;
    --album-tilt-y: 0deg;
    --album-shift-x: 0px;
    --album-shift-y: 0px;
}

.album-cover-wrapper::before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 2%;
    width: min(500px, 88%);
    height: 78%;
    background:
        repeating-linear-gradient(116deg, rgba(30, 156, 255, 0.2) 0 2px, transparent 2px 18px),
        linear-gradient(135deg, rgba(18, 19, 19, 0.96), rgba(37, 40, 43, 0.92));
    border: 1px solid rgba(30, 156, 255, 0.28);
    clip-path: polygon(7% 0, 100% 12%, 92% 100%, 0 86%);
    transform: translate3d(-22px, 18px, -120px) rotateX(58deg) rotateZ(-8deg);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.album-cover {
    position: relative;
    z-index: 2;
    width: min(440px, 82%);
    border-radius: 8px;
    box-shadow:
        18px 18px 0 rgba(18, 19, 19, 0.95),
        0 0 0 1px rgba(30, 156, 255, 0.26),
        0 28px 80px rgba(0,0,0,0.36);
    transform-origin: center;
    transform-style: preserve-3d;
    animation: albumCover3d 7s ease-in-out infinite;
    will-change: transform;
}

.record {
    position: absolute;
    z-index: 1;
    right: 6%;
    width: min(410px, 70%);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--accent-hot) 0 9%, var(--accent-dark) 9.6% 13%, #151514 13.6% 16%, transparent 16.4%),
        repeating-radial-gradient(circle, #20201e 0 7px, #101111 8px 10px);
    box-shadow: inset 0 0 30px rgba(255,255,255,0.08), 0 22px 50px rgba(0,0,0,0.32);
    animation: spin 14s linear infinite;
    transform: translateZ(-30px);
}

@keyframes spin {
    to { transform: translateZ(-30px) rotate(360deg); }
}

.release-badge {
    position: absolute;
    z-index: 3;
    top: 0.6rem;
    left: 0.15rem;
    padding: 0.5rem 0.86rem;
    color: var(--white);
    background: var(--accent-dark);
    border: 1px solid rgba(117, 215, 255, 0.72);
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.58);
    transform: translate3d(calc(var(--album-shift-x) - 12px), calc(var(--album-shift-y) - 8px), 150px) rotateZ(-9deg) skewX(-9deg);
    box-shadow: 6px 6px 0 rgba(18, 19, 19, 0.9), 0 0 24px rgba(30, 156, 255, 0.34);
}

@keyframes albumCover3d {
    0%,
    100% {
        transform: translate3d(var(--album-shift-x), calc(var(--album-shift-y) - 8px), 70px) rotateX(calc(var(--album-tilt-x) + 4deg)) rotateY(calc(var(--album-tilt-y) - 13deg)) rotateZ(-2deg);
    }

    50% {
        transform: translate3d(var(--album-shift-x), calc(var(--album-shift-y) + 10px), 105px) rotateX(calc(var(--album-tilt-x) - 3deg)) rotateY(calc(var(--album-tilt-y) + 10deg)) rotateZ(2deg);
    }
}

.album-info h2 {
    margin-bottom: 1rem;
}

.album-desc {
    max-width: 620px;
    margin-bottom: 1.8rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.tracklist {
    list-style: none;
    margin-bottom: 1rem;
    border-top: 1px solid var(--line);
}

.tracklist li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 70px;
    border-bottom: 1px solid var(--line);
}

.tracklist i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--smoke);
    border-radius: 50%;
    transition: background 0.2s ease;
}

.tracklist li:hover i {
    background: var(--accent-dark);
}

.tracklist span {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(30, 156, 255, 0.18);
}

.tracklist small {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

.release-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 1.4rem 0;
}

.release-details div {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fafafa;
}

.release-details span {
    display: block;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.release-details strong {
    font-size: 1rem;
}

.coming-soon {
    display: inline-flex;
    padding: 0.78rem 0.95rem;
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    background: rgba(30, 156, 255, 0.12);
    border-radius: 8px;
}

.vision-layout {
    display: grid;
    grid-template-columns: 0.86fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vision-content {
    padding-top: 0.25rem;
}

.process-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.process-strip div {
    min-height: 110px;
    padding: 1rem;
    color: var(--white);
    background: var(--smoke);
    border-radius: 8px;
    border-top: 5px solid var(--accent);
}

.process-strip span {
    display: block;
    color: var(--steel);
    font-weight: 900;
    margin-bottom: 0.7rem;
}

.process-strip strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(30, 156, 255, 0.32);
}

.contact {
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(30,156,255,0.1) 0 1px, transparent 1px),
        var(--paper);
    background-size: 44px 44px;
}

.contact-inner {
    max-width: 900px;
    text-align: center;
}

.contact .section-kicker {
    justify-content: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.email-link {
    display: inline-flex;
    max-width: 100%;
    padding: 1rem 1.1rem;
    color: var(--white);
    background: var(--smoke);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
    text-decoration: none;
    box-shadow: 10px 10px 0 var(--accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-link:hover,
.email-link:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 14px 14px 0 var(--accent);
}

footer {
    padding: 1.5rem 5vw;
    color: rgba(255,255,255,0.55);
    background: var(--black);
    text-align: center;
    border-top: 1px solid var(--line-light);
}

.scroll-reveal {
    opacity: 1;
    transform: none;
}

.js .scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.js .scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
        gap: 2rem;
    }

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

    .identity-panel {
        grid-column: auto;
        position: static;
    }
}

@media (max-width: 900px) {
    .navbar {
        height: 70px;
    }

    .hamburger {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.2rem;
        background: rgba(18, 19, 19, 0.97);
        transform: translateX(100%);
        transition: transform 0.28s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.35rem;
    }

    .hero {
        padding-top: 6.5rem;
        background:
            linear-gradient(180deg, #121313 0%, #24231f 58%, #d6d7d1 58%, #d6d7d1 100%);
    }

    .hero-grid,
    .album-container,
    .vision-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: 0;
    }

    .hero-stage {
        min-height: 540px;
    }

    .hero-signature {
        right: 8%;
        bottom: 0;
    }

    .sound-board {
        grid-template-columns: 1fr;
    }

    .wave-panel {
        grid-template-columns: 1fr;
    }

    .wave-note {
        max-width: 520px;
    }

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

    .album-cover-wrapper {
        min-height: 430px;
        justify-content: center;
    }

    .album-cover {
        width: min(390px, 80%);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    section {
        padding: 5.2rem 0;
    }

    section h2 {
        display: block;
        width: calc(100% - 8px);
        font-size: 1.62rem;
        line-height: 1.18;
        padding: 0.08em 0.16em 0.13em;
        transform: skewX(-5deg);
    }

    .logo {
        font-size: 1.62rem;
    }

    .subtitle {
        font-size: 1.08rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: min(100%, calc(100vw - 48px));
    }

    .btn {
        width: 100%;
    }

    .hero-proof span {
        width: 100%;
        justify-content: center;
    }

    .hero-proof {
        width: min(100%, calc(100vw - 48px));
    }

    .hero {
        padding-top: 5.4rem;
        padding-bottom: 2.2rem;
        background:
            linear-gradient(180deg, #121313 0%, #24231f 100%);
    }

    .hero-grid {
        gap: 1rem;
    }

    .hero-stage {
        min-height: 360px;
        margin: 1.4rem -5vw -2.2rem;
        padding: 1.4rem 5vw 0;
        overflow: hidden;
        background: #d6d7d1;
    }

    .hero-image {
        width: 100%;
        max-height: 305px;
    }

    .main-logo-img {
        max-width: 330px;
        transform: rotate(-6deg);
        margin-bottom: 1.6rem;
    }

    .hero-signature {
        width: 148px;
        right: 12%;
        bottom: 1.6rem;
    }

    .manifesto {
        padding: 1rem;
        font-size: 1rem;
        line-height: 1.45;
    }

    .sound-card {
        min-height: 0;
    }

    .waveform {
        gap: 0.28rem;
    }

    .album-cover-wrapper {
        min-height: 340px;
    }

    .record {
        display: none;
    }

    .album-cover {
        width: min(320px, 100%);
        box-shadow: 12px 12px 0 var(--smoke), 0 18px 48px rgba(0,0,0,0.22);
    }

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

    .tracklist li {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .tracklist small {
        grid-column: 2;
        margin-top: -0.9rem;
        padding-bottom: 0.8rem;
    }

    .email-link {
        font-size: 1.62rem;
        box-shadow: 7px 7px 0 var(--accent);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
