:root {
    color-scheme: dark;
    --black: #000;
    --surface: #090a0c;
    --surface-strong: #111317;
    --text: #f2f2f3;
    --muted: rgba(242, 242, 243, .62);
    --faint: rgba(242, 242, 243, .34);
    --line: rgba(255, 255, 255, .16);
    --line-strong: rgba(255, 255, 255, .28);
    --glass: rgba(255, 255, 255, .07);
    --glass-strong: rgba(255, 255, 255, .11);
    --shadow: 0 40px 90px rgba(0, 0, 0, .72);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
    --safe-x: 24px;
    --font: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
    opacity: .28;
    z-index: -1;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

[hidden] {
    display: none !important;
}

.site-void {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .18), #000 72%),
        url("https://lh3.googleusercontent.com/aida-public/AB6AXuBefCecoxWh9yRDurAAIMS_7sIeRPlXYSZtwhkfPSIXfRBcFlEEH3SBEVmiEZ7uRGRPmcTUIZQpsRdEcMBxLZPRzzeH0Yf2ukmejKvTILGjGE1XXZXn8u-oQcxCqxCF0vq6LSNhZ_-eiTC5QzsDIYAnpNvtCua5Ul-NKFoIz5liwXB1fdekop5rsSHJmwn6rYgupYLcpaqe-OsaTmfvcGRmHBETn10L6EI6J-s2_Llqfi34oQ5a3UPM5UfLTpOlfIjdAkQMXlMhV1YO") center top / cover no-repeat;
    opacity: .24;
}

.site-main {
    min-height: 72vh;
}

.topbar-wrap {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0;
    pointer-events: none;
}

.topbar {
    width: min(calc(100% - var(--safe-x) * 2), 840px);
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 8px 14px 8px 26px;
    border-radius: 999px;
    background: rgba(18, 19, 23, .58);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(28px) saturate(145%);
    -webkit-backdrop-filter: blur(28px) saturate(145%);
    pointer-events: auto;
}

.glass-edge {
    position: relative;
}

.glass-edge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-left: 1px solid rgba(255, 255, 255, .18);
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .08);
}

.brand,
.footer-brand {
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 26px;
}

.nav-link,
.mobile-inline-link,
.footer-links a,
.footer-legal a {
    color: var(--faint);
    font-size: .74rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.nav-link {
    padding: 10px 0;
    border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-inline-link:hover,
.mobile-inline-link.is-active,
.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.nav-link.is-active {
    border-bottom-color: #fff;
}

.mobile-inline-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-inline-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
}

.mobile-inline-link.is-active {
    background: rgba(255, 255, 255, .1);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listen-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    color: #050505;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.listen-pill .material-symbols-outlined {
    font-size: 18px;
}

.icon-button {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, .68);
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.icon-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
}

.hero {
    position: relative;
    min-height: 84svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 116px var(--safe-x) 88px;
}

.home-hero {
    margin-bottom: 38px;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transform: scale(1.04);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .45) 58%, #000 100%);
    z-index: -1;
}

.hero-content {
    width: min(720px, 100%);
    max-width: 100%;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 18px;
}

.hero h1,
.page-hero h1,
.legal-page h1 {
    margin: 0;
    font-size: 4.3rem;
    line-height: .98;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.hero p,
.page-hero p,
.card-copy p,
.player-top p,
.bio-panel p,
.legal-page p,
.contact-aside a,
.contact-aside p {
    color: var(--muted);
    line-height: 1.68;
    overflow-wrap: break-word;
}

.hero-content > p:not(.eyebrow),
.page-hero > p {
    max-width: 660px;
    margin: 0;
    font-size: 1.08rem;
}

.eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, .48) !important;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-actions,
.player-controls,
.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-button,
.glass-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform .2s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.primary-button {
    background: #fff;
    color: #020202;
    box-shadow: 0 0 28px rgba(255, 255, 255, .16);
}

.primary-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .84);
}

.glass-button {
    background: rgba(255, 255, 255, .06);
    border-color: var(--line);
    color: #fff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.glass-button:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--line-strong);
}

.compact {
    min-height: 38px;
    padding: 0 18px;
    font-size: .72rem;
}

.material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.section-grid,
.music-layout,
.contact-layout {
    width: min(var(--container), calc(100% - var(--safe-x) * 2));
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.section-grid {
    grid-template-columns: 1.12fr .88fr;
}

.section-tight {
    margin-top: -16px;
}

.glass-panel {
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(26px) saturate(130%);
    -webkit-backdrop-filter: blur(26px) saturate(130%);
}

.feature-card {
    min-height: 318px;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    align-items: center;
    padding: 30px;
    overflow: hidden;
}

.album-cover {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 46px rgba(0, 0, 0, .42);
}

.album-cover img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
}

.card-copy {
    display: grid;
    gap: 14px;
}

.card-copy h2,
.player-top h2,
.section-heading h2,
.album-card h2,
.tour-card h2,
.bio-panel h2,
.contact-aside h2,
.legal-page h2 {
    margin: 0;
    color: #fff;
    font-size: 2rem;
    line-height: 1.15;
}

.card-copy p,
.player-top p {
    margin: 0;
}

.player-card {
    padding: 28px;
    display: grid;
    align-content: center;
    gap: 18px;
}

.player-card.large {
    align-content: stretch;
}

.player-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.player-top h2 {
    font-size: 1.45rem;
    margin: 6px 0 3px;
}

.visualizer {
    height: 70px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 7px;
    opacity: .72;
}

.visualizer.tall {
    height: 136px;
}

.visualizer i {
    width: 6px;
    height: 32%;
    border-radius: 999px;
    background: #fff;
    animation: none;
}

.visualizer i:nth-child(2),
.visualizer i:nth-child(8) { height: 52%; }
.visualizer i:nth-child(3),
.visualizer i:nth-child(7) { height: 86%; }
.visualizer i:nth-child(4),
.visualizer i:nth-child(6) { height: 68%; }
.visualizer i:nth-child(5) { height: 100%; }
.visualizer i:nth-child(10) { height: 46%; }
.visualizer i:nth-child(11) { height: 74%; }

.is-playing .visualizer i {
    animation: pulse-bar .9s ease-in-out infinite alternate;
}

.is-playing .visualizer i:nth-child(2n) {
    animation-delay: .12s;
}

.is-playing .visualizer i:nth-child(3n) {
    animation-delay: .24s;
}

@keyframes pulse-bar {
    from { transform: scaleY(.58); opacity: .54; }
    to { transform: scaleY(1); opacity: 1; }
}

.progress {
    width: 100%;
    height: 8px;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
}

.progress span {
    display: block;
    width: 34%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    box-shadow: 0 0 16px rgba(255, 255, 255, .42);
}

.time-row {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: .82rem;
}

.round-play {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.round-play:hover {
    background: rgba(255, 255, 255, .18);
}

.tour-preview,
.page-hero,
.tour-page-list,
.bio-panel,
.archive,
.legal-page {
    width: min(var(--container), calc(100% - var(--safe-x) * 2));
    margin: 0 auto;
}

.tour-preview {
    padding: 88px 0 68px;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading.left {
    text-align: left;
}

.tour-list,
.tour-page-list {
    display: grid;
    gap: 14px;
}

.tour-row {
    min-height: 74px;
    display: grid;
    grid-template-columns: 110px 1.2fr 1fr auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: var(--muted);
}

.tour-row strong {
    color: #fff;
    font-size: 1.1rem;
}

.status-muted {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .38);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.page-hero {
    padding: 160px 0 58px;
    text-align: center;
}

.page-hero h1 {
    margin: 8px 0 14px;
    font-size: 4rem;
}

.music-layout {
    grid-template-columns: .88fr 1.12fr;
    align-items: start;
    padding-bottom: 86px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.album-card {
    min-height: 100%;
    display: grid;
    gap: 18px;
    padding: 12px;
    overflow: hidden;
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 24px;
    opacity: .88;
}

.album-card > div,
.album-card > a {
    margin-left: 10px;
    margin-right: 10px;
}

.album-card > a {
    margin-bottom: 12px;
}

.platforms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.platforms a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--muted);
    font-size: .82rem;
}

.platforms a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.tour-card {
    min-height: 112px;
    display: grid;
    grid-template-columns: 170px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px;
}

.tour-date {
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
    text-transform: uppercase;
}

.tour-card p {
    margin: 6px 0 0;
    color: var(--muted);
}

.bio-hero {
    text-align: left;
}

.bio-panel {
    display: grid;
    grid-template-columns: .38fr .62fr;
    gap: 44px;
    padding: 48px;
}

.long-copy {
    display: grid;
    gap: 18px;
}

.long-copy p {
    margin: 0;
}

blockquote {
    margin: 8px 0 0;
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.archive {
    padding: 76px 0 90px;
}

.archive-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 260px;
    gap: 14px;
}

.archive-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.archive-main {
    grid-row: span 2;
}

.archive-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    filter: grayscale(.35);
}

.archive-grid figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .28);
    color: rgba(255, 255, 255, .64);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.archive-signal {
    display: grid;
    place-items: center;
}

.signal-ring {
    width: 126px;
    height: 126px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: inset 0 0 34px rgba(255, 255, 255, .18), 0 0 52px rgba(255, 255, 255, .08);
}

.contact-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    padding-bottom: 90px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, .66);
    font-size: .84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 14px 16px;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .09);
}

.contact-form small {
    color: #ffb4ab;
    text-transform: none;
    font-weight: 500;
}

.form-status {
    border-radius: 18px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 14px 16px;
    color: #fff;
}

.contact-aside {
    display: grid;
    gap: 16px;
    padding: 28px;
}

.contact-aside a {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-aside a:hover {
    color: #fff;
}

.legal-page {
    margin-top: 150px;
    margin-bottom: 90px;
    padding: 44px;
}

.legal-page h1 {
    font-size: 3rem;
    margin: 10px 0 22px;
}

.legal-page h2 {
    margin-top: 30px;
    font-size: 1.35rem;
}

.legal-page p {
    max-width: 860px;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #000;
    padding: 36px var(--safe-x);
}

.footer-inner {
    width: min(var(--container), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.footer-links,
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal {
    justify-content: flex-end;
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 255, 255, .38);
    font-size: .72rem;
    text-align: center;
}

.cookie-card {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: min(380px, calc(100% - 44px));
    padding: 20px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(12, 13, 16, .72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(30px) saturate(145%);
    -webkit-backdrop-filter: blur(30px) saturate(145%);
}

.cookie-copy {
    display: grid;
    gap: 8px;
}

.cookie-copy h2 {
    margin: 0;
    font-size: 1.15rem;
}

.cookie-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: .92rem;
}

.cookie-details a {
    display: inline-flex;
    margin-top: 8px;
    color: #fff;
    font-size: .9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-actions {
    justify-content: flex-end;
    margin-top: 16px;
}

@media (max-width: 980px) {
    .topbar {
        width: min(calc(100% - var(--safe-x) * 2), 680px);
        grid-template-columns: auto 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .mobile-inline-nav {
        display: flex;
    }

    .section-grid,
    .music-layout,
    .contact-layout,
    .bio-panel {
        grid-template-columns: 1fr;
    }

    .album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-row,
    .tour-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .tour-row {
        padding: 20px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    :root {
        --safe-x: 18px;
    }

    .topbar-wrap {
        top: 12px;
        display: block;
    }

    .topbar {
        min-height: 58px;
        gap: 10px;
        grid-template-columns: auto minmax(92px, 1fr) auto;
        width: auto;
        max-width: none;
        margin: 0 var(--safe-x);
        padding: 7px 8px 7px 16px;
    }

    .brand {
        font-size: 1rem;
    }

    .mobile-inline-nav {
        gap: 4px;
    }

    .mobile-inline-link {
        min-height: 38px;
        padding: 0 8px;
        font-size: .68rem;
    }

    .listen-pill {
        width: 42px;
        padding: 0;
    }

    .listen-pill span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .icon-button {
        width: 40px;
        height: 40px;
    }

    .topbar-actions > .icon-button {
        display: none;
    }

    .hero {
        min-height: 82svh;
        padding-top: 102px;
        padding-bottom: 62px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3.05rem;
    }

    .hero-content > p:not(.eyebrow),
    .page-hero > p {
        font-size: 1rem;
        width: min(100%, 330px);
        max-width: calc(100vw - var(--safe-x) * 2);
    }

    .hero-actions,
    .primary-button,
    .glass-button {
        width: 100%;
    }

    .hero-actions .primary-button,
    .hero-actions .glass-button {
        width: min(100%, 280px);
    }

    .section-tight {
        margin-top: 0;
    }

    .feature-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .album-cover {
        width: 190px;
    }

    .card-copy h2,
    .section-heading h2,
    .album-card h2,
    .bio-panel h2,
    .contact-aside h2 {
        font-size: 1.65rem;
    }

    .player-card,
    .contact-form,
    .contact-aside {
        padding: 22px;
    }

    .player-top {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero {
        padding-top: 132px;
    }

    .album-grid,
    .platforms,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-main {
        grid-row: auto;
    }

    .archive-grid {
        grid-auto-rows: 250px;
    }

    .bio-panel,
    .legal-page {
        padding: 26px;
    }

    .legal-page {
        margin-top: 120px;
        margin-bottom: 58px;
    }

    .legal-page h1 {
        font-size: 1.36rem;
        line-height: 1.14;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .legal-page h2 {
        font-size: 1.18rem;
    }

    .legal-page p {
        font-size: .98rem;
    }

    .cookie-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
    }
}
