@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../../assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../../assets/fonts/cormorant-garamond-400.ttf") format("truetype");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --lab-white: #ffffff;
    --lab-black: #111111;
    --lab-release-scale: 0.85;
    --lab-nav-shell-height: 52px;
    --lab-nav-divider-height: 1px;
    /* Header band = visible fixed top shell that must stay outside the landing canvas. */
    --lab-nav-total-height: calc(var(--lab-nav-shell-height) + var(--lab-nav-divider-height));
    --lab-inline-padding: clamp(14px, 4.5vw, 22px);
    --lab-stable-vh: 100svh;
    --lab-dynamic-vh: 100dvh;
    --lab-header-height: var(--lab-nav-total-height);
    /* Effective area = real visible canvas under the header. */
    --lab-effective-height: calc(var(--lab-stable-vh) - var(--lab-header-height));
    --lab-total-height: calc(var(--lab-header-height) + var(--lab-effective-height));
    --lab-footer-test-height: clamp(79px, calc(var(--lab-effective-height) * 0.16 - 13px), 127px);
}

@supports not (height: 100svh) {
    :root {
        --lab-stable-vh: 100vh;
    }
}

@supports not (height: 100dvh) {
    :root {
        --lab-dynamic-vh: 100vh;
    }
}

html,
body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-height: var(--lab-total-height);
    height: auto;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    color: var(--lab-black);
}

.lab-probe,
.lab-safe-probe {
    position: fixed;
    left: -9999px;
    top: -9999px;
    pointer-events: none;
    visibility: hidden;
}

.lab-probe {
    width: 1px;
}

.lab-probe--vh {
    height: 100vh;
}

.lab-probe--lvh {
    height: 100lvh;
}

.lab-probe--svh {
    height: 100svh;
}

.lab-probe--dvh {
    height: 100dvh;
}

.lab-safe-probe {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.lab-app {
    min-height: var(--lab-total-height);
    height: auto;
    max-height: none;
    overflow: visible;
    background: #ffffff;
}

.lab-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    min-height: var(--lab-nav-total-height);
    overflow: hidden;
    isolation: isolate;
    background: var(--lab-white);
    box-shadow:
        0 1px 0 rgba(17, 17, 17, 0.05),
        0 10px 26px rgba(17, 17, 17, 0.035),
        0 22px 44px rgba(17, 17, 17, 0.045);
}

.lab-nav-wrapper::before,
.lab-nav-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lab-nav-wrapper::before {
    opacity: 0.84;
    background:
        radial-gradient(148% 180% at 10% -42%, rgba(242, 242, 242, 0.18) 0%, rgba(242, 242, 242, 0) 46%),
        radial-gradient(132% 168% at 88% -38%, rgba(198, 198, 198, 0.14) 0%, rgba(198, 198, 198, 0) 44%),
        radial-gradient(96% 156% at 56% -64%, rgba(120, 120, 120, 0.09) 0%, rgba(120, 120, 120, 0) 38%),
        linear-gradient(108deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.52) 50%, rgba(255, 255, 255, 0) 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 255, 255, 0.93) 100%);
}

.lab-nav-wrapper::after {
    inset: -24% -20%;
    opacity: 0.74;
    background:
        linear-gradient(
            103deg,
            rgba(255, 255, 255, 0) 16%,
            rgba(255, 255, 255, 0.38) 34%,
            rgba(255, 255, 255, 0.82) 44%,
            rgba(255, 255, 255, 0.97) 48%,
            rgba(210, 210, 210, 0.08) 52%,
            rgba(124, 124, 124, 0.072) 57%,
            rgba(236, 236, 236, 0.06) 62%,
            rgba(255, 255, 255, 0.14) 68%,
            rgba(255, 255, 255, 0) 78%
        );
    transform: translate3d(-24%, 0, 0);
    animation: labNavHeaderSheen 12.5s cubic-bezier(0.37, 0, 0.18, 1) infinite;
}

.lab-nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    height: var(--lab-nav-shell-height);
    padding: 0 var(--lab-inline-padding);
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
}

.lab-nav-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.56;
    background:
        radial-gradient(120% 120% at 50% -36%, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 72%);
}

.lab-nav-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    align-self: center;
    width: max-content;
    height: auto;
    min-height: 1em;
    min-width: 0;
    max-width: 100%;
}

.lab-nav-logo {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000;
    text-decoration: none;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.105em;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    display: inline-block;
    top: -1px;
    text-rendering: geometricPrecision;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    font-synthesis: none;
}

.lab-nav-glitch {
    position: relative;
    display: inline-block;
    isolation: isolate;
    transform-origin: center;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.lab-nav-glitch::before,
.lab-nav-glitch::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
    background: transparent;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    mix-blend-mode: multiply;
}

.lab-nav-glitch::before {
    color: rgba(238, 238, 238, 0.7);
}

.lab-nav-glitch::after {
    color: rgba(96, 96, 96, 0.62);
}

@media (hover: hover) and (pointer: fine) {
    .lab-nav-glitch:hover,
    .lab-nav-glitch:focus-visible {
        animation: labNavGlitchBase 0.86s steps(2, end) infinite;
    }

    .lab-nav-glitch:hover::before,
    .lab-nav-glitch:focus-visible::before {
        opacity: 1;
        animation: labGlitchIntroRgbA 0.82s steps(2, end) infinite;
    }

    .lab-nav-glitch:hover::after,
    .lab-nav-glitch:focus-visible::after {
        opacity: 1;
        animation: labGlitchIntroRgbB 0.78s steps(2, end) infinite;
    }
}

.lab-nav-logo-line {
    position: absolute;
    top: 50%;
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    background: var(--lab-black);
    transform-origin: center;
    pointer-events: none;
}

.lab-nav-hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px 0 6px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 3;
}

.lab-nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--lab-black);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lab-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 19;
    background: var(--lab-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--lab-nav-total-height) + 48px) 28px 56px;
}

.lab-mobile-overlay.is-open {
    display: flex;
}

.lab-mobile-overlay-shell {
    width: min(100%, 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.lab-nav-link-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    align-self: center;
    width: max-content;
    height: auto;
    min-height: 1em;
}

.lab-nav-link-line {
    position: absolute;
    top: 50%;
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    background: var(--lab-black);
    transform-origin: center;
    pointer-events: none;
}

.lab-mobile-overlay a {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lab-black);
    text-decoration: none;
    line-height: 1;
    text-rendering: geometricPrecision;
}

.lab-mobile-nav-link-wrap {
    height: auto;
    min-height: 1em;
}

.lab-mobile-overlay .lab-nav-glitch.active:not(.imploding):not(.restoring):not(:hover):not(:focus-visible) {
    animation: labNavActiveGlitchBase 2.6s steps(2, end) infinite;
}

.lab-mobile-overlay .lab-nav-glitch.active:not(.imploding):not(.restoring):not(:hover):not(:focus-visible)::before {
    animation: labNavActiveGlitchRgbA 2.6s steps(2, end) infinite;
}

.lab-mobile-overlay .lab-nav-glitch.active:not(.imploding):not(.restoring):not(:hover):not(:focus-visible)::after {
    animation: labNavActiveGlitchRgbB 2.6s steps(2, end) infinite;
}

.lab-nav-logo.active:not(.imploding):not(.restoring):not(:hover):not(:focus-visible) {
    animation: labNavActiveGlitchBase 2.6s steps(2, end) infinite;
}

.lab-nav-logo.active:not(.imploding):not(.restoring):not(:hover):not(:focus-visible)::before {
    animation: labNavActiveGlitchRgbA 2.6s steps(2, end) infinite;
}

.lab-nav-logo.active:not(.imploding):not(.restoring):not(:hover):not(:focus-visible)::after {
    animation: labNavActiveGlitchRgbB 2.6s steps(2, end) infinite;
}

@media (hover: hover) and (pointer: fine) {
    .lab-mobile-overlay .lab-nav-glitch:hover,
    .lab-mobile-overlay .lab-nav-glitch:focus-visible {
        animation: labNavGlitchBase 0.86s steps(2, end) infinite;
    }

    .lab-mobile-overlay .lab-nav-glitch:hover::before,
    .lab-mobile-overlay .lab-nav-glitch:focus-visible::before {
        opacity: 1;
        animation: labGlitchIntroRgbA 0.82s steps(2, end) infinite;
    }

    .lab-mobile-overlay .lab-nav-glitch:hover::after,
    .lab-mobile-overlay .lab-nav-glitch:focus-visible::after {
        opacity: 1;
        animation: labGlitchIntroRgbB 0.78s steps(2, end) infinite;
    }
}

body.lab-menu-open {
    overflow: hidden;
}

.lab-nav-logo.imploding,
.lab-nav-link-wrap a.imploding {
    animation: labNavImplode 0.45s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
    transform-origin: center;
}

.lab-nav-logo.imploding ~ .lab-nav-logo-line,
.lab-nav-link-wrap a.imploding ~ .lab-nav-link-line {
    animation: labNavImplodeLine 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.lab-nav-logo.restoring,
.lab-nav-link-wrap a.restoring {
    animation: labNavImplodeRestore 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center;
}

#labMobileMenu .lab-nav-link-line {
    transform-origin: center;
}

#labMobileMenu .lab-nav-link-wrap a.imploding {
    animation: labNavImplode 0.45s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
}

#labMobileMenu .lab-nav-link-wrap a.imploding ~ .lab-nav-link-line {
    animation: labNavImplodeLine 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

#labMobileMenu .lab-nav-link-wrap a.restoring {
    animation: labNavImplodeRestore 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes labNavImplode {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

@keyframes labNavImplodeLine {
    0%   { transform: scaleX(0); opacity: 0.7; }
    50%  { transform: scaleX(1); opacity: 0.6; }
    100% { transform: scaleX(1); opacity: 0; }
}

@keyframes labNavImplodeRestore {
    0%   { transform: scale(0.001); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes labNavHeaderSheen {
    0%, 100% {
        transform: translate3d(-26%, 0, 0);
        opacity: 0.38;
    }
    38% {
        opacity: 0.74;
    }
    52% {
        transform: translate3d(8%, 0, 0);
        opacity: 0.46;
    }
    72% {
        opacity: 0.26;
    }
}

@keyframes labNavDividerFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes labNavDividerGlow {
    0%, 100% {
        transform: translate3d(-8%, 0, 0);
        opacity: 0.42;
    }
    50% {
        transform: translate3d(8%, 0, 0);
        opacity: 0.74;
    }
}

@keyframes labNavGlitchBase {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        filter: none;
    }
    20% {
        transform: translate3d(0.35px, -0.2px, 0);
    }
    40% {
        transform: translate3d(-0.45px, 0.25px, 0);
    }
    60% {
        transform: translate3d(0.55px, 0.1px, 0);
    }
    80% {
        transform: translate3d(-0.35px, -0.15px, 0);
    }
}

@keyframes labNavActiveGlitchBase {
    0%, 72%, 100% {
        transform: translate(0, 0);
        text-shadow: none;
    }
    76% {
        transform: translate(-0.7px, 0);
        text-shadow:
            2px 0 rgba(232, 232, 232, 0.24),
            -2px 0 rgba(96, 96, 96, 0.2);
    }
    80% {
        transform: translate(0.9px, -0.1px);
        text-shadow:
            -2px 0 rgba(240, 240, 240, 0.26),
            2px 0 rgba(108, 108, 108, 0.22);
    }
    84% {
        transform: translate(-0.5px, 0.1px);
        text-shadow:
            1.5px 0 rgba(250, 250, 250, 0.2),
            -1.5px 0 rgba(124, 124, 124, 0.2);
    }
    88% {
        transform: translate(0, 0);
        text-shadow: none;
    }
}

@keyframes labNavActiveGlitchRgbA {
    0%, 72%, 100% {
        opacity: 0;
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
    76% {
        opacity: 0.95;
        transform: translate(5px, -0.4px);
        clip-path: inset(10% 0 58% 0);
    }
    80% {
        opacity: 0.92;
        transform: translate(-4px, 0.3px);
        clip-path: inset(58% 0 12% 0);
    }
    84% {
        opacity: 0.82;
        transform: translate(2px, 0);
        clip-path: inset(28% 0 34% 0);
    }
    88% {
        opacity: 0;
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes labNavActiveGlitchRgbB {
    0%, 72%, 100% {
        opacity: 0;
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
    77% {
        opacity: 0.92;
        transform: translate(-5px, 0.4px);
        clip-path: inset(55% 0 16% 0);
    }
    81% {
        opacity: 0.88;
        transform: translate(4px, -0.3px);
        clip-path: inset(12% 0 60% 0);
    }
    85% {
        opacity: 0.78;
        transform: translate(-2px, 0);
        clip-path: inset(36% 0 28% 0);
    }
    89% {
        opacity: 0;
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes labGlitchIntroRgbA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        clip-path: inset(0 0 0 0);
    }
    25% {
        transform: translate3d(-0.8px, -0.2px, 0);
        clip-path: inset(0 0 42% 0);
    }
    50% {
        transform: translate3d(0.7px, 0.3px, 0);
        clip-path: inset(58% 0 0 0);
    }
    75% {
        transform: translate3d(-0.4px, 0.1px, 0);
        clip-path: inset(20% 0 26% 0);
    }
}

@keyframes labGlitchIntroRgbB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        clip-path: inset(0 0 0 0);
    }
    25% {
        transform: translate3d(0.9px, 0.2px, 0);
        clip-path: inset(62% 0 0 0);
    }
    50% {
        transform: translate3d(-0.65px, -0.3px, 0);
        clip-path: inset(0 0 48% 0);
    }
    75% {
        transform: translate3d(0.5px, -0.12px, 0);
        clip-path: inset(24% 0 18% 0);
    }
}

.lab-nav-divider {
    width: 100%;
    height: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(236, 236, 236, 0.1) 0%,
            rgba(17, 17, 17, 0.14) 18%,
            rgba(17, 17, 17, 0.12) 50%,
            rgba(132, 132, 132, 0.11) 78%,
            rgba(220, 220, 220, 0.12) 100%
        );
    background-size: 180% 100%;
    animation: labNavDividerFlow 11.5s ease-in-out infinite;
}

.lab-nav-divider::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    top: -1px;
    height: 3px;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(224, 224, 224, 0.22) 26%,
            rgba(255, 255, 255, 0.28) 50%,
            rgba(118, 118, 118, 0.2) 74%,
            rgba(255, 255, 255, 0) 100%
        );
    opacity: 0.55;
    filter: blur(1.7px);
    transform: translate3d(-8%, 0, 0);
    animation: labNavDividerGlow 9.5s ease-in-out infinite;
}

.lab-stage {
    margin-top: var(--lab-header-height);
    width: 100%;
    height: var(--lab-effective-height);
    min-height: var(--lab-effective-height);
    max-height: var(--lab-effective-height);
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

/* Layer 01 (mobile only): dynamic landing background canvas.
   This layer reuses the real landing artwork but stays isolated in the lab. */
.lab-effective-area {
    flex: 0 0 var(--lab-effective-height);
    position: relative;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    background: #000;
}

/* Footer reconstruction band: starts exactly after the effective canvas.
   This band is outside the canvas and outside the browser UI area. */
.lab-footer-band {
    position: relative;
    width: 100%;
    height: var(--lab-footer-test-height);
    min-height: var(--lab-footer-test-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    row-gap: 0;
    padding: 6px 22px 4px;
    background: #0b0b0b;
    overflow: hidden;
}

.lab-footer-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.lab-footer-legal-texts {
    grid-column: 1 / -1;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    width: 100%;
    margin-top: -8px;
    text-align: center;
}

.lab-footer-legal-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1.05;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.lab-footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    line-height: 0;
    opacity: 0.48;
}

.lab-footer-logo--left {
    order: 2;
    justify-self: start;
    height: 32px;
    transform: translate(-5px, -10px);
}

.lab-footer-logo--right {
    order: 3;
    justify-self: end;
    height: 38px;
    transform: translate(5px, -10px);
}

.lab-footer-logo-image {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    filter: brightness(0) invert(1);
}

.lab-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lab-layer--bg {
    background-image: url("../../assets/releases/wild-heart/wild-heart-front-2200.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.72) saturate(1.1);
}

/* Layer 02 (mobile only): top hero identity strip.
   Desktop will be handled later outside this lab pass. */
.lab-hero-top {
    position: absolute;
    top: clamp(18px, calc(var(--lab-effective-height) * 0.038), 34px);
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: min(100%, 520px);
    margin: 0;
    padding:
        0
        clamp(12px, 3.4vw, 20px)
        0;
    text-align: center;
}

.lab-hero-label {
    margin: 0 0 clamp(14px, calc(var(--lab-effective-height) * 0.024), 24px);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: clamp(10px, 2.75vw, 12px);
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.34),
        0 0 18px rgba(255, 255, 255, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.18);
}

.lab-hero-title {
    width: min(100%, clamp(314px, 87vw, 356px));
    margin: 0 auto;
    font-size: 0;
    line-height: 0;
}

.lab-hero-title-image {
    display: block;
    width: 100%;
    height: auto;
    filter:
        brightness(0) invert(1)
        drop-shadow(0 18px 34px rgba(0, 0, 0, 0.26))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.08));
}

.lab-hero-separator {
    width: 48px;
    height: 1px;
    margin: 10px auto 8px;
    background: rgba(255, 255, 255, 0.25);
}

.lab-hero-meta {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: clamp(11px, 2.95vw, 14px);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    text-shadow:
        0 0 7px rgba(255, 255, 255, 0.32),
        0 0 16px rgba(255, 255, 255, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.16);
}

/* Layer 03 (mobile only): release presentation block. */
.lab-release-panel-anchor {
    position: absolute;
    left: 50%;
    top: clamp(187px, calc(var(--lab-effective-height) * 0.27 + 15px), 263px);
    z-index: 2;
    width: 82vw;
    max-width: 100%;
    transform: translateX(-50%) scale(var(--lab-release-scale));
    transform-origin: top center;
}

.lab-release-panel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px clamp(12px, 3.6vw, 18px) 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: clamp(26px, 6.8vw, 34px);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            140deg,
            rgba(250, 252, 255, 0.2) 0%,
            rgba(242, 246, 252, 0.14) 18%,
            rgba(210, 219, 232, 0.1) 48%,
            rgba(151, 164, 182, 0.08) 78%,
            rgba(114, 126, 144, 0.07) 100%
        );
    box-shadow:
        0 42px 120px rgba(0, 0, 0, 0.34),
        0 18px 40px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 20px 42px rgba(255, 255, 255, 0.045) inset,
        0 -1px 0 rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(40px) saturate(150%) brightness(1.05) contrast(1.03);
    -webkit-backdrop-filter: blur(40px) saturate(150%) brightness(1.05) contrast(1.03);
}

.lab-release-panel::before,
.lab-release-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lab-release-panel::before {
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.16) 14%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 88% 11%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 16%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 12%, rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(
            112deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.035) 26%,
            rgba(255, 255, 255, 0) 46%,
            rgba(255, 0, 102, 0.025) 64%,
            rgba(0, 229, 255, 0.03) 84%,
            rgba(255, 255, 255, 0.08) 100%
        );
    mix-blend-mode: screen;
}

.lab-release-panel::after {
    z-index: 0;
    inset: 1px;
    opacity: 0.34;
    border-radius: inherit;
    background:
        linear-gradient(104deg, transparent 0%, transparent 18%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.04) 42%, transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.015) 16%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.06) 100%),
        linear-gradient(90deg, rgba(255, 0, 102, 0.022) 0%, transparent 28%, rgba(255, 255, 255, 0.05) 48%, transparent 72%, rgba(0, 229, 255, 0.022) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07) inset,
        0 10px 22px rgba(255, 255, 255, 0.03) inset;
    mix-blend-mode: soft-light;
}

.lab-release-panel > * {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.lab-release-artwork {
    width: min(100%, 72vw);
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-release-cover {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 auto;
    filter: saturate(1.03) contrast(1.02);
    box-shadow:
        0 34px 94px rgba(0, 0, 0, 0.44),
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lab-release-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lab-release-kicker {
    margin: 0 0 14px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    text-shadow:
        0 0 7px rgba(255, 255, 255, 0.3),
        0 0 16px rgba(255, 255, 255, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 18px rgba(0, 0, 0, 0.22);
}

.lab-release-divider {
    width: 52px;
    height: 1px;
    margin: 0 auto 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.lab-release-subline {
    margin: 0 0 14px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.26),
        0 0 14px rgba(255, 255, 255, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 18px rgba(0, 0, 0, 0.18);
}

.lab-countdown-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
}

.lab-countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 48px;
}

.lab-countdown-num {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 28px;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.98);
    text-shadow:
        3px 0 rgba(255, 0, 102, 0.36),
        -3px 0 rgba(0, 229, 255, 0.36),
        0 0 10px rgba(255, 255, 255, 0.12);
    font-variant-numeric: tabular-nums;
}

.lab-countdown-label {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.lab-home-cta {
    width: 100%;
    max-width: 248px;
    padding: 13px 18px;
    margin-top: -5px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.11) 48%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 1px 0 rgba(255, 255, 255, 0.24) inset;
    backdrop-filter: blur(18px) saturate(142%);
    -webkit-backdrop-filter: blur(18px) saturate(142%);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    text-align: center;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.12),
        0 1px 0 rgba(0, 0, 0, 0.28);
}
