/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        #08050c;
    color: #f3edf5;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

body.lyrics-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --bg: #08050c;
    --panel: #100a14;
    --panel-soft: #151019;
    --line: rgba(255, 255, 255, 0.07);

    --text: #f0e9f2;
    --muted: #918497;
    --soft: #b2a5b6;

    --pink: #f032b5;
    --pink-soft: #d268bc;
    --purple: #9153cf;
    --violet: #6338a2;

    --shell: 1360px;
}


/* =========================================
   BACKGROUND
========================================= */

.ambient {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(4px);
}

.ambient-one {
    width: 900px;
    height: 900px;
    top: -480px;
    right: -320px;
    background:
        radial-gradient(
            circle,
            rgba(199, 42, 155, 0.12),
            rgba(84, 41, 130, 0.055) 42%,
            transparent 70%
        );
}

.ambient-two {
    width: 700px;
    height: 700px;
    left: -380px;
    top: 700px;
    background:
        radial-gradient(
            circle,
            rgba(91, 50, 154, 0.10),
            transparent 70%
        );
}


/* =========================================
   HEADER
========================================= */

.site-header {
    width: min(var(--shell), calc(100% - 64px));
    height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.055);
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.header-brand {
    gap: 14px;
}

.header-pilot-logo {
    display: block;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow:
        0 0 0 1px rgba(232, 63, 184, 0.18),
        0 0 24px rgba(232, 63, 184, 0.10);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.header-brand:hover .header-pilot-logo {
    transform: scale(1.045);
    box-shadow:
        0 0 0 1px rgba(232, 63, 184, 0.34),
        0 0 30px rgba(232, 63, 184, 0.16);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-copy strong {
    color: #f3edf5;
    font-size: 15px;
    font-weight: 550;
    letter-spacing: 0.19em;
    line-height: 1;
}

.brand-copy small {
    color: #a276a6;
    font-size: 9px;
    letter-spacing: 0.28em;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav a {
    color: #817586;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition:
        color 0.2s ease;
}

.site-nav a:hover {
    color: #d9cddc;
}


/* =========================================
   GLOBAL TYPOGRAPHY
========================================= */

.eyebrow {
    margin: 0;
    color: #9d729f;
    font-size: 11px;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 span,
h2 span {
    color: #c069b2;
}


/* =========================================
   HERO
========================================= */

.hero {
    width: min(var(--shell), calc(100% - 64px));
    min-height: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        1.05fr
        0.95fr;
    align-items: center;
    gap: 80px;
    padding:
        80px
        0
        100px;
}

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

.hero h1 {
    margin:
        20px
        0
        28px;
    max-width: 800px;
    font-size:
        clamp(
            65px,
            7vw,
            108px
        );
    line-height: 0.90;
    letter-spacing: -0.065em;
    font-weight: 450;
}

.hero h1 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            #e745bd,
            #a15dcc 72%
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 640px;
    color: #a89aaa;
    font-size: 20px;
    line-height: 1.72;
}

.hero-listen {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 26px;
    color: #dfd5e2;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-play {
    width: 48px;
    height: 48px;
    border:
        1px solid
        rgba(231, 69, 189, 0.40);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e746bc;
    font-size: 13px;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.hero-listen:hover .hero-play {
    transform: scale(1.07);
    background:
        rgba(231, 69, 189, 0.08);
}


/* =========================================
   HERO ORBIT
========================================= */

.hero-orbit {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border:
        1px solid
        rgba(222, 80, 184, 0.08);
}

.orbit-outer {
    width: 500px;
    height: 500px;
}

.orbit-middle {
    width: 390px;
    height: 390px;
    border-color:
        rgba(149, 76, 199, 0.13);
}

.hero-core {
    position: relative;
    z-index: 3;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border:
        1px solid
        rgba(232, 82, 190, 0.17);
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(212, 47, 161, 0.19),
            rgba(75, 37, 90, 0.16) 43%,
            rgba(8, 5, 12, 0.96) 72%
        );
    box-shadow:
        0 0 120px
        rgba(203, 45, 157, 0.10);
}

.core-label {
    color: #b388b2;
    font-size: 10px;
    letter-spacing: 0.32em;
}

.core-label-bottom {
    color: #d36abc;
}

.core-wave {
    height: 92px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.core-wave i {
    display: block;
    width: 3px;
    border-radius: 100px;
    background:
        linear-gradient(
            180deg,
            var(--pink),
            var(--purple)
        );
}

.core-wave i:nth-child(1),
.core-wave i:nth-child(11) {
    height: 20px;
}

.core-wave i:nth-child(2),
.core-wave i:nth-child(10) {
    height: 38px;
}

.core-wave i:nth-child(3),
.core-wave i:nth-child(9) {
    height: 58px;
}

.core-wave i:nth-child(4),
.core-wave i:nth-child(8) {
    height: 78px;
}

.core-wave i:nth-child(5),
.core-wave i:nth-child(7) {
    height: 52px;
}

.core-wave i:nth-child(6) {
    height: 88px;
}


/* =========================================
   LIBRARY
========================================= */

.library {
    width: min(var(--shell), calc(100% - 64px));
    margin: 0 auto;
    padding:
        110px
        0
        150px;
}

.library-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.library-heading h2,
.about-hypnopop h2,
.practitioner-section h2 {
    margin:
        16px
        0
        0;
    max-width: 700px;
    color: #ece4ef;
    font-size:
        clamp(
            42px,
            4.7vw,
            68px
        );
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 450;
}

.library-heading h2 span,
.about-hypnopop h2 span,
.practitioner-section h2 span {
    display: block;
}

.search-wrap input {
    width: 260px;
    padding:
        14px
        0;
    border: 0;
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.10);
    outline: 0;
    background: transparent;
    color: #ddd3df;
    font-size: 14px;
}

.search-wrap input::placeholder {
    color: #625767;
}

.search-wrap input:focus {
    border-color:
        rgba(229, 65, 184, 0.45);
}


/* =========================================
   FILTERS
========================================= */

.purpose-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 48px;
    padding-bottom: 40px;
    border-bottom:
        1px solid
        var(--line);
}

.purpose-filter {
    padding:
        11px
        17px;
    border:
        1px solid
        rgba(255, 255, 255, 0.065);
    border-radius: 100px;
    background:
        rgba(255, 255, 255, 0.015);
    color: #837787;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.065em;
    transition:
        border 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.purpose-filter:hover,
.purpose-filter.active {
    border-color:
        rgba(232, 63, 184, 0.34);
    background:
        rgba(232, 63, 184, 0.06);
    color: #d58ac4;
}


/* =========================================
   EXPERIENCE GRID
========================================= */

.experience-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(360px, 0.84fr);
    gap: 24px;
    margin-top: 45px;
}


/* =========================================
   TRACK LIBRARY
========================================= */

.track-library {
    min-width: 0;
}

.track-library-top {
    display: flex;
    justify-content: space-between;
    padding:
        0
        10px
        14px;
    color: #5f5563;
    font-size: 10px;
    letter-spacing: 0.15em;
}

.track-list {
    border-top:
        1px solid
        var(--line);
}

.loading-message,
.empty-results {
    padding: 50px 8px;
    color: #6e6372;
    font-size: 15px;
}

.track-card {
    display: grid;
    grid-template-columns:
        54px
        minmax(0, 1fr)
        auto;
    gap: 20px;
    align-items: center;
    min-height: 112px;
    padding:
        20px
        10px;
    border-bottom:
        1px solid
        var(--line);
    cursor: pointer;
    transition:
        background 0.2s ease,
        padding 0.2s ease;
}

.track-card:hover {
    padding-left: 18px;
    background:
        linear-gradient(
            90deg,
            rgba(218, 50, 168, 0.05),
            transparent 72%
        );
}

.track-card.active {
    background:
        linear-gradient(
            90deg,
            rgba(218, 50, 168, 0.085),
            transparent 78%
        );
}

.track-play {
    width: 46px;
    height: 46px;
    border:
        1px solid
        rgba(222, 74, 183, 0.23);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
    color: #d94bae;
    cursor: pointer;
    font-size: 11px;
}

.track-card.active .track-play {
    background:
        rgba(223, 51, 175, 0.11);
    border-color:
        rgba(223, 51, 175, 0.43);
}

.track-main {
    min-width: 0;
}

.track-index {
    display: inline-block;
    margin-right: 12px;
    color: #66596a;
    font-size: 11px;
}

.track-title {
    color: #dcd3df;
    font-size: 18px;
    font-weight: 480;
}

.track-description {
    margin:
        8px
        0
        0;
    max-width: 820px;
    color: #776c7b;
    font-size: 14px;
    line-height: 1.55;
}

.track-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
    max-width: 225px;
}

.track-tag {
    padding:
        6px
        9px;
    border:
        1px solid
        rgba(255, 255, 255, 0.055);
    border-radius: 100px;
    color: #695e6d;
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* =========================================
   NOW PLAYING PANEL
========================================= */

.now-panel {
    position: sticky;
    top: 24px;
    min-height: 575px;
    max-height: 720px;
    overflow: hidden;
    border:
        1px solid
        rgba(255, 255, 255, 0.065);
    border-radius: 22px;
    background:
        linear-gradient(
            155deg,
            rgba(210, 46, 163, 0.055),
            rgba(14, 9, 17, 0.97) 46%
        );
}

.now-panel-empty {
    min-height: 575px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.empty-mark {
    margin-bottom: 30px;
    color: #713e7f;
    font-size: 50px;
}

.now-panel-empty h3 {
    margin:
        15px
        0
        10px;
    color: #d8cedb;
    font-size: 30px;
    font-weight: 450;
}

.now-panel-empty > p:last-child {
    max-width: 280px;
    color: #6f6473;
    font-size: 14px;
    line-height: 1.6;
}

.now-panel-content {
    height: 100%;
    padding:
        34px
        34px
        30px;
}

.now-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.now-heading h3 {
    margin:
        12px
        0
        6px;
    color: #ede5ef;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 450;
}

.now-purpose {
    color: #976b9a;
    font-size: 11px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lyrics-expand {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    border:
        1px solid
        rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: transparent;
    color: #776b7b;
    cursor: pointer;
}

.lyrics-expand:hover {
    color: #d98ac5;
    border-color:
        rgba(220, 85, 183, 0.25);
}

.now-description {
    margin:
        24px
        0
        32px;
    color: #786d7c;
    font-size: 14px;
    line-height: 1.65;
}

.lyrics-label {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
    color: #5e5362;
    font-size: 9px;
    letter-spacing: 0.16em;
}

.lyrics-status {
    color: #9f5f99;
}

.lyrics-window {
    height: 350px;
    overflow-y: auto;
    padding:
        30px
        5px
        60px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.lyrics-window::-webkit-scrollbar {
    display: none;
}

.lyrics-placeholder {
    color: #615765;
    font-size: 17px;
    line-height: 1.7;
}

.lyric-line {
    margin:
        0
        0
        22px;
    border: 0;
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    color: #504753;
    cursor: pointer;
    text-align: left;
    font-size: 19px;
    line-height: 1.5;
    transition:
        color 0.22s ease,
        transform 0.22s ease,
        opacity 0.22s ease;
}

.lyric-line.near {
    color: #776a7b;
}

.lyric-line.active {
    color: #f0d8ea;
    transform:
        translateX(5px);
    text-shadow:
        0 0 24px
        rgba(234, 65, 184, 0.19);
}


/* =========================================
   ABOUT
========================================= */

.about-hypnopop,
.practitioner-section {
    width: min(var(--shell), calc(100% - 64px));
    margin: 0 auto;
    padding:
        120px
        0;
    border-top:
        1px solid
        var(--line);
}

.about-hypnopop {
    display: grid;
    grid-template-columns:
        80px
        0.9fr
        1fr;
    gap: 60px;
}

.about-number {
    color: #594c5e;
    font-size: 12px;
    letter-spacing: 0.15em;
}

.about-copy p,
.practitioner-section > div:last-child p {
    color: #928696;
    font-size: 18px;
    line-height: 1.75;
}

.about-copy p + p {
    margin-top: 22px;
}


/* =========================================
   PRACTITIONER
========================================= */

.practitioner-section {
    display: grid;
    grid-template-columns:
        1fr
        0.9fr;
    gap: 100px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding-bottom: 7px;
    border-bottom:
        1px solid
        rgba(221, 81, 185, 0.25);
    color: #c77bb7;
    font-size: 13px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: min(var(--shell), calc(100% - 64px));
    margin: 0 auto;
    padding:
        70px
        0
        190px;
    border-top:
        1px solid
        var(--line);
    display: grid;
    grid-template-columns:
        180px
        1fr
        auto;
    gap: 40px;
    align-items: center;
    color: #615666;
    font-size: 12px;
}

.site-footer > * {
    min-width: 0;
}

.footer-brand,
.footer-brand-logo {
    display: flex;
    align-items: center;
    width: 160px;
    max-width: 160px;
    min-width: 0;
}

/*
   IMPORTANT:
   This catches the footer logo even if an older class or image rule
   is still present elsewhere. The image can never render at its
   original 1024px size inside the footer.
*/
.site-footer .footer-brand img,
.site-footer .footer-brand-logo img,
.site-footer img.footer-logo-image {
    display: block !important;
    width: 150px !important;
    min-width: 0 !important;
    max-width: 150px !important;
    height: auto !important;
    max-height: 150px !important;
    object-fit: contain !important;
}

.brand-mark-small {
    width: 26px;
    height: 26px;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-brand strong {
    color: #9d8da1;
    font-size: 11px;
    letter-spacing: 0.14em;
}

.footer-brand div span {
    font-size: 8px;
    letter-spacing: 0.18em;
}

.site-footer > p {
    margin: 0;
    color: #615666;
}

.site-footer > a {
    justify-self: end;
    color: #756979;
    transition: color 0.2s ease;
}

.site-footer > a:hover {
    color: #c77bb7;
}


/* =========================================
   PERSISTENT PLAYER
========================================= */

.player-shell {
    position: fixed;
    z-index: 100;
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 100px;
    padding:
        14px
        20px;
    border:
        1px solid
        rgba(226, 73, 183, 0.13);
    border-radius: 18px;
    display: grid;
    grid-template-columns:
        minmax(220px, 0.8fr)
        minmax(400px, 1.4fr)
        minmax(210px, 0.7fr);
    gap: 25px;
    align-items: center;
    background:
        rgba(10, 6, 13, 0.94);
    box-shadow:
        0 18px 80px
        rgba(0, 0, 0, 0.50);
    backdrop-filter:
        blur(22px);
}

.player-track {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-art {
    width: 53px;
    height: 53px;
    flex: 0 0 auto;
    border:
        1px solid
        rgba(229, 59, 180, 0.19);
    border-radius: 10px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 40% 35%,
            rgba(218, 48, 168, 0.21),
            rgba(59, 28, 73, 0.4)
        );
    color: #ca79b9;
    font-size: 10px;
    letter-spacing: 0.11em;
}

.player-track-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.player-track-copy strong {
    overflow: hidden;
    color: #d8cfdc;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-track-copy span {
    overflow: hidden;
    color: #6b5e70;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.player-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
}

.player-icon,
.player-skip,
.player-play,
.lyrics-button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.player-icon {
    color: #796c7d;
    font-size: 25px;
}

.player-skip {
    color: #695d6d;
    font-size: 10px;
}

.player-play {
    width: 43px;
    height: 43px;
    border:
        1px solid
        rgba(233, 64, 184, 0.38);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e849bd;
    font-size: 11px;
}

.player-progress-row {
    display: grid;
    grid-template-columns:
        40px
        1fr
        40px;
    gap: 9px;
    align-items: center;
}

.player-progress-row span {
    color: #5f5463;
    font-size: 9px;
    text-align: center;
}

.progress-range,
.volume-range {
    appearance: none;
    height: 2px;
    border-radius: 100px;
    background:
        rgba(255, 255, 255, 0.10);
    cursor: pointer;
}

.progress-range::-webkit-slider-thumb,
.volume-range::-webkit-slider-thumb {
    appearance: none;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c75baa;
}

.player-tools {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 13px;
}

.lyrics-button {
    padding:
        9px
        12px;
    border:
        1px solid
        rgba(255, 255, 255, 0.065);
    border-radius: 100px;
    color: #756979;
    font-size: 9px;
    letter-spacing: 0.12em;
}

.lyrics-button:hover {
    color: #cb7bbb;
    border-color:
        rgba(219, 73, 177, 0.24);
}

.volume-icon {
    color: #6f6272;
}

.volume-range {
    width: 80px;
}


/* =========================================
   FULL SCREEN LYRICS
========================================= */

.lyrics-overlay {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: none;
    overflow-y: auto;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(177, 41, 140, 0.16),
            transparent 40%
        ),
        rgba(6, 3, 8, 0.985);
}

.lyrics-overlay.open {
    display: block;
}

.lyrics-close {
    position: fixed;
    z-index: 502;
    top: 30px;
    right: 35px;
    width: 48px;
    height: 48px;
    border:
        1px solid
        rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    background:
        rgba(12, 7, 15, 0.80);
    color: #9b8c9f;
    cursor: pointer;
    font-size: 25px;
}

.lyrics-overlay-inner {
    width: min(840px, calc(100% - 50px));
    margin: 0 auto;
    padding:
        100px
        0
        170px;
}

.lyrics-overlay-inner h2 {
    margin:
        16px
        0
        65px;
    color: #ede4f0;
    font-size:
        clamp(
            42px,
            6vw,
            78px
        );
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 450;
}

.overlay-lyrics .lyric-line {
    margin-bottom: 30px;
    font-size:
        clamp(
            24px,
            3vw,
            38px
        );
    line-height: 1.35;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-copy {
        padding-top: 45px;
    }

    .hero-orbit {
        min-height: 460px;
    }

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

    .now-panel {
        position: relative;
        top: auto;
        min-height: 500px;
    }

    .about-hypnopop {
        grid-template-columns:
            55px
            1fr;
    }

    .about-copy {
        grid-column: 2;
    }

    .player-shell {
        grid-template-columns:
            minmax(180px, 0.75fr)
            minmax(350px, 1.3fr);
    }

    .player-tools {
        display: none;
    }

}


@media (max-width: 760px) {

    body {
        padding-bottom: 125px;
    }

    .site-header,
    .hero,
    .library,
    .about-hypnopop,
    .practitioner-section,
    .site-footer {
        width:
            min(
                100% - 30px,
                var(--shell)
            );
    }

    .site-header {
        height: 78px;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav a {
        font-size: 9px;
    }

    .brand-copy strong {
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding:
            60px
            0
            55px;
    }

    .hero h1 {
        font-size: 59px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-orbit {
        min-height: 390px;
        transform: scale(0.88);
        margin:
            -25px
            -30px;
    }

    .library {
        padding:
            80px
            0
            100px;
    }

    .library-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .library-heading h2,
    .about-hypnopop h2,
    .practitioner-section h2 {
        font-size: 43px;
    }

    .search-wrap,
    .search-wrap input {
        width: 100%;
    }

    .purpose-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 22px;
        scrollbar-width: none;
    }

    .purpose-filters::-webkit-scrollbar {
        display: none;
    }

    .purpose-filter {
        flex: 0 0 auto;
    }

    .track-card {
        grid-template-columns:
            44px
            minmax(0, 1fr);
        gap: 14px;
    }

    .track-play {
        width: 39px;
        height: 39px;
    }

    .track-title {
        font-size: 16px;
    }

    .track-description {
        font-size: 13px;
    }

    .track-tags {
        display: none;
    }

    .now-panel-content {
        padding:
            27px
            22px;
    }

    .lyrics-window {
        height: 310px;
    }

    .about-hypnopop,
    .practitioner-section {
        grid-template-columns: 1fr;
        gap: 35px;
        padding:
            85px
            0;
    }

    .about-number,
    .about-copy {
        grid-column: auto;
    }

    .about-copy p,
    .practitioner-section > div:last-child p {
        font-size: 17px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding-bottom: 145px;
    }


    /* Mobile Player */

    .player-shell {
        left: 8px;
        right: 8px;
        bottom: 8px;
        min-height: 104px;
        padding:
            11px
            13px;
        grid-template-columns:
            1fr
            auto;
        gap: 10px;
    }

    .player-art {
        width: 43px;
        height: 43px;
    }

    .player-center {
        display: contents;
    }

    .player-controls {
        grid-column: 2;
        grid-row: 1;
        gap: 7px;
    }

    .player-icon,
    .player-skip {
        display: none;
    }

    .player-play {
        width: 42px;
        height: 42px;
    }

    .player-progress-row {
        grid-column:
            1 / -1;
        width: 100%;
    }

    .player-tools {
        display: none;
    }

    .lyrics-close {
        top: 18px;
        right: 18px;
    }

    .lyrics-overlay-inner {
        width: calc(100% - 34px);
        padding-top: 90px;
    }


    .footer-brand,
    .footer-brand-logo {
        width: 130px;
        max-width: 130px;
    }

    .site-footer .footer-brand img,
    .site-footer .footer-brand-logo img,
    .site-footer img.footer-logo-image {
        width: 125px !important;
        max-width: 125px !important;
        max-height: 125px !important;
    }

}


@media (max-width: 420px) {

    .site-nav a:first-child {
        display: none;
    }

    .hero h1 {
        font-size: 51px;
    }

    .hero-orbit {
        transform: scale(0.78);
    }

}

/* =========================================
   HEADER BRAND - PILOT ONLY
========================================= */

.brand.header-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-pilot-logo {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    filter: drop-shadow(0 0 14px rgba(229, 61, 182, 0.16));
    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        opacity 0.22s ease;
}

.brand.header-brand:hover .header-pilot-logo {
    transform: scale(1.04);
    filter: drop-shadow(0 0 18px rgba(229, 61, 182, 0.24));
}

/* If the old brand text still exists anywhere in header */
.header-brand .brand-copy,
.header-brand strong,
.header-brand small,
.header-brand .brand-mark {
    display: none !important;
}

