@font-face {
    font-family: 'Helvetica Neue';
    src: url('src/fonts/HelveticaNeue-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica OTF';
    src: url('src/fonts/Helvetica.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    position: relative;
}

:root {
    /* Hero + post-video ghost row: vertical gap equals one button height */
    --menu-button-height: 25px;
}

/* Page video overlay (Sound/Visual/Content) */
.page-video-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 260; /* above pages (200) + buttons (210) */
    pointer-events: none;
}

.page-video-overlay.active {
    display: flex;
}

/* Underlay only behind the studio clip box — not full viewport — so EXIT / section buttons (z-index 210) stay visible. */
.page-video-center-stack {
    position: relative;
    flex-shrink: 0;
}

.page-video-studio-underlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-video-bg-mirror {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 100%;
    height: 56.25vw;
    border: 0;
    opacity: 1;
    pointer-events: none;
    transform: translate(-50%, -50%) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Self-hosted <video> mirror fallback */
video.page-video-bg-mirror {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateZ(0);
}

/* Blur/dim on the mirror only (no backdrop-filter — that blurred side UI under the overlay). */
body.studio-subpage-open .page-video-bg-mirror {
    filter: grayscale(1) blur(6px) brightness(0.5);
}

.page-video-studio-frost {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.04);
}

.page-video-bg-mirror::-webkit-media-controls {
    display: none !important;
}

.page-video-bg-mirror::-webkit-media-controls-enclosure {
    display: none !important;
}

.page-video-wrap {
    position: relative;
    z-index: 1;
    pointer-events: none;
    flex-shrink: 0;
}

.page-video {
    /* JS sizes from videoWidth/videoHeight; caps match script.js (5068×5068 masters → ~498px wide on screen). */
    display: block;
    width: auto;
    height: auto;
    max-width: min(900px, 80vw);
    max-height: min(506px, 45vh);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.0);
    pointer-events: none;
}

.page-video-error {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(640px, 92vw);
    padding: 0.6rem 0.8rem;
    font-size: 10pt;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    pointer-events: none;
}

.page-video-error.active {
    display: block;
}

/* After studio overlay video ends: empty placeholders matching .hero-menu layout; 4th row for Sound, Visual, Content or Strategy; 5th row Strategy only. Labeled stacks: rowGap set in JS to match pill height. */
.page-video-end-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 265;
    display: flex;
    flex-direction: column;
    gap: var(--menu-button-height);
    align-items: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.31s ease, visibility 0.31s ease;
}

.page-video-end-menu.is-visible {
    opacity: 1;
    visibility: visible;
}

.page-video-end-menu-button {
    box-sizing: border-box;
    width: 240px;
    height: var(--menu-button-height);
    padding: 0.75rem 1.5rem;
    margin: 0;
    background: transparent;
    border: 1px solid #fff;
    color: transparent;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    cursor: default;
    font-family: 'Helvetica', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    opacity: 0;
    transform: translateY(1.125rem) scale(0.97);
    transition:
        opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-video-end-menu:not(.is-visible) .page-video-end-menu-button {
    transition-delay: 0ms;
}

.page-video-end-menu.is-visible .page-video-end-menu-button:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.06s;
}

.page-video-end-menu.is-visible .page-video-end-menu-button:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.135s;
}

.page-video-end-menu.is-visible .page-video-end-menu-button:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.21s;
}

.page-video-end-menu-button--end-slot-4 {
    display: none;
}

.page-video-end-menu--sound .page-video-end-menu-button--end-slot-4,
.page-video-end-menu--visual .page-video-end-menu-button--end-slot-4,
.page-video-end-menu--content .page-video-end-menu-button--end-slot-4,
.page-video-end-menu--strategy .page-video-end-menu-button--end-slot-4 {
    display: flex;
}

.page-video-end-menu-button--strategy-only {
    display: none;
}

.page-video-end-menu--strategy .page-video-end-menu-button--strategy-only {
    display: flex;
}

/* Final stage: About grey + clip-path holes; sizing restored to pre-About compact pills. */
.page-video-end-menu--sound.page-video-end-menu--bg-through .page-video-end-menu-button,
.page-video-end-menu--visual.page-video-end-menu--bg-through .page-video-end-menu-button,
.page-video-end-menu--content.page-video-end-menu--bg-through .page-video-end-menu-button,
.page-video-end-menu--strategy.page-video-end-menu--bg-through .page-video-end-menu-button {
    background-color: rgba(128, 128, 128, 0.49);
    color: #fff;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 8.5pt;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: none;
    white-space: normal;
    min-height: var(--menu-button-height);
    height: auto;
    padding: 0.45rem 0.85rem;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
}

.page-video-end-menu.is-visible.page-video-end-menu--sound .page-video-end-menu-button:nth-child(4),
.page-video-end-menu.is-visible.page-video-end-menu--visual .page-video-end-menu-button:nth-child(4),
.page-video-end-menu.is-visible.page-video-end-menu--content .page-video-end-menu-button:nth-child(4),
.page-video-end-menu.is-visible.page-video-end-menu--strategy .page-video-end-menu-button:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.28s;
}

.page-video-end-menu.is-visible.page-video-end-menu--strategy .page-video-end-menu-button:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.35s;
}

/* White outline briefly, then border clears; fill comes from .page-video-end-menu--bg-through (About grey). */
@keyframes page-video-end-menu-to-transparent {
    from {
        border-color: #fff;
    }
    to {
        border-color: transparent;
    }
}

/* Border intro only before labeled pills; bg-through pills use border: none (see block above). */
.page-video-end-menu:not(.page-video-end-menu--bg-through).is-visible .page-video-end-menu-button {
    animation: page-video-end-menu-to-transparent 0.36s ease 1.25s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .page-video-end-menu,
    .page-video-end-menu-button {
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .page-video-end-menu-button {
        transform: none;
    }

    .page-video-end-menu.is-visible .page-video-end-menu-button {
        opacity: 1;
        transform: none;
        animation: none;
        background-color: rgba(128, 128, 128, 0.49);
        border-color: transparent;
    }

    .page-video-end-menu.page-video-end-menu--bg-through.is-visible .page-video-end-menu-button {
        border: none;
    }
}

/* Service copy overlay: sibling of end menu under #page-video-overlay (z-index above pills). */
.page-video-end-menu--sound.page-video-end-menu--bg-through:not(.page-video-end-menu--detail),
.page-video-end-menu--visual.page-video-end-menu--bg-through:not(.page-video-end-menu--detail),
.page-video-end-menu--content.page-video-end-menu--bg-through:not(.page-video-end-menu--detail),
.page-video-end-menu--strategy.page-video-end-menu--bg-through:not(.page-video-end-menu--detail) {
    pointer-events: auto;
}

.page-video-end-menu--sound.page-video-end-menu--bg-through:not(.page-video-end-menu--detail) .page-video-end-menu-button,
.page-video-end-menu--visual.page-video-end-menu--bg-through:not(.page-video-end-menu--detail) .page-video-end-menu-button,
.page-video-end-menu--content.page-video-end-menu--bg-through:not(.page-video-end-menu--detail) .page-video-end-menu-button,
.page-video-end-menu--strategy.page-video-end-menu--bg-through:not(.page-video-end-menu--detail) .page-video-end-menu-button {
    cursor: pointer;
}

.page-video-end-menu--detail {
    pointer-events: none;
}

.page-video-end-menu--detail .page-video-end-menu-button {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Sibling of .page-video-end-menu under #page-video-overlay — z-index above pills (265). */
.page-video-sound-detail {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: clamp(4px, 1.5vmin, 10px) clamp(6px, 2vmin, 12px);
    box-sizing: border-box;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.page-video-sound-detail.is-visible {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    z-index: 266;
}

/* Same coordinate system as .page-video-end-menu (fixed, viewport-centered column). */
.page-video-sound-detail.page-video-sound-detail--from-anchor.is-visible {
    position: fixed;
    inset: auto;
    top: var(--sound-detail-fixed-top);
    left: var(--sound-detail-fixed-left);
    transform: translateX(-50%);
    width: var(--sound-detail-anch-width);
    height: auto;
    max-height: min(506px, calc(100vh - var(--sound-detail-fixed-top) - 12px));
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@keyframes page-video-sound-detail-inner-in {
    from {
        opacity: 0;
        transform: scaleY(0.06);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.page-video-sound-detail-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: center;
    /* Same vertical rhythm as stacked service pills (Sound / Visual / … end menu). */
    gap: var(--menu-button-height);
    width: 100%;
    max-width: min(196px, 76%);
    min-height: 0;
    flex: 0 1 auto;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    padding: 0.1rem 0;
    transform-origin: top center;
}

.page-video-sound-detail.is-visible.page-video-sound-detail--from-anchor .page-video-sound-detail-inner {
    max-width: none;
}

.page-video-sound-detail:not(.page-video-sound-detail--from-anchor) .page-video-sound-detail-inner {
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.page-video-sound-detail.is-visible .page-video-sound-detail-inner {
    animation: page-video-sound-detail-inner-in 0.46s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

/*
 * Chrome matches pills; typography matches .page-video-end-menu--bg-through .page-video-end-menu-button (8.5pt / 400 / 0.03em).
 */
.page-video-sound-detail-title,
.page-video-sound-detail-body,
.page-video-sound-detail-message-text,
.page-video-sound-detail-message-email,
.page-video-sound-detail-message-submit,
.page-video-sound-detail-message,
.page-video-sound-detail-back {
    background-color: rgba(128, 128, 128, 0.49);
    color: #fff;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 8.5pt;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.page-video-sound-detail-message-form {
    display: flex;
    flex-direction: column;
    gap: var(--menu-button-height);
    width: 100%;
    box-sizing: border-box;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    touch-action: manipulation;
}

/* `[hidden]` must win over `display: flex` above, or the message/email/submit block stays visible. */
.page-video-sound-detail-message-form[hidden] {
    display: none !important;
}

.page-video-sound-detail-message-text {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    min-height: 4.5rem;
    padding: clamp(0.22rem, 0.9vmin, 0.35rem) clamp(0.35rem, 1.2vmin, 0.5rem);
    line-height: 1.25;
    text-align: left;
    resize: vertical;
}

.page-video-sound-detail-message-text::placeholder,
.page-video-sound-detail-message-email::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.page-video-sound-detail-message-email {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    min-height: var(--menu-button-height);
    padding: clamp(0.22rem, 0.9vmin, 0.35rem) clamp(0.35rem, 1.2vmin, 0.5rem);
    line-height: 1.25;
}

.page-video-sound-detail-message-text:focus,
.page-video-sound-detail-message-email:focus,
.page-video-sound-detail-message-submit:focus {
    outline: 1px solid rgba(255, 255, 255, 0.65);
    outline-offset: 2px;
}

.page-video-sound-detail-message-submit {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    min-height: var(--menu-button-height);
    padding: clamp(0.22rem, 0.9vmin, 0.35rem) clamp(0.4rem, 1.2vmin, 0.55rem);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.page-video-sound-detail-message-submit:hover {
    opacity: 0.85;
}

.page-video-sound-detail-message-status {
    margin: 0;
    padding: 0 clamp(0.2rem, 0.8vmin, 0.35rem);
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 8pt;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.03em;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

.page-video-sound-detail-message-status--ok {
    color: #bfe9bf;
}

.page-video-sound-detail-message-status--error {
    color: #ffc9c9;
}

.page-video-sound-detail-actions {
    display: flex;
    flex-direction: column;
    gap: var(--menu-button-height);
    width: 100%;
    align-items: stretch;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    touch-action: manipulation;
}

/* Message flow: only fields + submit + Back; service title/body and MESSAGE hidden while composing. */
.page-video-sound-detail--compose .page-video-sound-detail-title,
.page-video-sound-detail--compose .page-video-sound-detail-body,
.page-video-sound-detail--compose .page-video-sound-detail-message {
    display: none !important;
}

.page-video-sound-detail-message {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    min-height: var(--menu-button-height);
    padding: clamp(0.22rem, 0.9vmin, 0.35rem) clamp(0.4rem, 1.2vmin, 0.55rem);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.page-video-sound-detail-message:hover,
.page-video-sound-detail-message.is-active {
    opacity: 0.85;
}

.page-video-sound-detail-title {
    margin: 0;
    padding: clamp(0.22rem, 0.9vmin, 0.35rem) clamp(0.35rem, 1.2vmin, 0.5rem);
    box-sizing: border-box;
    width: 100%;
    min-height: var(--menu-button-height);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    text-transform: none;
    text-align: center;
    white-space: normal;
}

.page-video-sound-detail-body {
    margin: 0;
    padding: clamp(0.18rem, 0.65vmin, 0.28rem) clamp(0.35rem, 1vmin, 0.45rem);
    box-sizing: border-box;
    width: 100%;
    flex: 0 1 auto;
    min-height: 0;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    text-wrap: pretty;
}

.page-video-sound-detail-back {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    min-height: var(--menu-button-height);
    padding: clamp(0.22rem, 0.9vmin, 0.35rem) clamp(0.4rem, 1.2vmin, 0.55rem);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.page-video-sound-detail-back:hover {
    opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
    .page-video-sound-detail.is-visible .page-video-sound-detail-inner {
        animation: none;
    }
}

/* Loading Page Styles */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.loading-page.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-tagline {
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-size: 18pt;
    width: 1108px;
    height: 90px;
    line-height: 22pt;
    font-weight: 400; /* Regular */
    letter-spacing: 0;
    color: #000;
    margin: 0;
    text-align: left;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Match .main-x metrics so the loading “x” lands on the same optical position as in HIVE x LAB (no absolute positioning). */
.loading-x {
    font-size: 60pt;
    font-weight: 500;
    color: #000;
    line-height: 1;
    letter-spacing: 0;
    font-family: 'Helvetica', Arial, sans-serif;
    transform: translateY(-0.06em);
}

/* Full-width grid: same horizontal center as loading “x” (1fr | x | 1fr), no % sizing of a zero-width box */
.main-title-container {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    opacity: 1;
    transition: opacity 1s ease-out;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.main-title-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.main-title-container.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 50;
}

/* Main X — viewport-centered column; nudge matches .loading-x */
.main-x {
    grid-column: 2;
    justify-self: center;
    margin: 0;
    font-size: 60pt;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
    font-family: 'Helvetica', Arial, sans-serif;
    transform: translateY(-0.06em);
}

.main-hive {
    grid-column: 1;
    justify-self: end;
    padding-right: 5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 60pt;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.main-lab {
    grid-column: 3;
    justify-self: start;
    padding-left: 5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 60pt;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* Hero menu buttons */
.hero-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: var(--menu-button-height);
    align-items: center;
    z-index: 101;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-menu.show {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.hero-menu:not(.show) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
}

/* Cursor-following play/pause control (only when hovering HIVE x LAB button) */
.music-cursor-control {
    display: none;
}

.music-cursor-control .music-cursor-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 11pt;
    line-height: 1;
    cursor: pointer;
}

.menu-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 10pt;
    font-weight: 400;
    letter-spacing: 0;
    cursor: pointer;
    font-family: 'Helvetica', Arial, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 240px;
    height: var(--menu-button-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 14.4pt;
}

#hive-lab-button .hive-lab-icon {
    display: none;
}
#hive-lab-button .hive-lab-text {
    display: inline;
}
#hive-lab-button.show-icon .hive-lab-text {
    display: none;
}
#hive-lab-button.show-icon .hive-lab-icon {
    display: inline;
    font-size: 12pt;
    line-height: 1;
}


/* Cross Menu */
.cross-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    z-index: 102;
    opacity: 1;
    pointer-events: none;
}

.cross-menu.active {
    pointer-events: all;
}

.cross-menu-top,
.cross-menu-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: center;
    width: 25px;
    height: 240px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    cursor: pointer;
}

.cross-menu-top {
    top: calc(50% - 50px + 1.5rem - 250px);
}

.cross-menu.active.anim-5 .cross-menu-top,
.cross-menu.active .cross-menu-top {
    animation: slideFromTop 0.5s ease-out 0s forwards;
}

.cross-menu-bottom {
    top: calc(50% - 50px + 1.5rem + 25px + 40px);
}

.cross-menu.active.anim-5 .cross-menu-bottom,
.cross-menu.active .cross-menu-bottom {
    animation: slideFromBottom 0.5s ease-out 0s forwards;
}

/* Horizontal Bar: Sound, About, Visual */
.cross-menu-horizontal {
    position: absolute;
    top: calc(50% - 50px + 1.5rem);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
}

.cross-menu-horizontal .menu-item:nth-child(2) {
    margin-top: 15px;
}

.cross-menu-horizontal .menu-item:nth-child(1),
.cross-menu-horizontal .menu-item:nth-child(3) {
    margin-top: -10px;
}

.cross-menu.active.anim-5 .cross-menu-horizontal,
.cross-menu.active .cross-menu-horizontal {
    animation: slideFromCenter 0.5s ease-out 0s forwards;
}

/* Left Column: Connect, Strategy (below Sound) */
.cross-menu-left {
    position: absolute;
    top: calc(50% - 50px + 1.5rem + 15px);
    left: calc(50% - 360px);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-60px) scale(0.9);
}

.cross-menu.active.anim-5 .cross-menu-left,
.cross-menu.active .cross-menu-left {
    animation: slideFromLeft 0.5s ease-out 0s forwards;
}

/* Right Column: Instagram, Content (below Visual) */
.cross-menu-right {
    position: absolute;
    top: calc(50% - 50px + 1.5rem + 15px);
    left: calc(50% + 120px);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(60px) scale(0.9);
}

.cross-menu.active.anim-5 .cross-menu-right,
.cross-menu.active .cross-menu-right {
    animation: slideFromRight 0.5s ease-out 0s forwards;
}

.vertical-text {
    color: #fff;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 9pt;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 10pt;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cross-menu-top .cross-menu-top-icon {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14pt;
    line-height: 1;
}
.cross-menu-top .cross-menu-top-text {
    display: flex;
}
.cross-menu-top.show-icon .cross-menu-top-text {
    display: none;
}
.cross-menu-top.show-icon .cross-menu-top-icon {
    display: flex;
}

.menu-item {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 10pt;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 14.4pt;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 240px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.menu-item.active {
    background-color: rgba(128, 128, 128, 0.49);
    border: 1px solid transparent;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-80px) scaleY(0.3);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px) scaleY(1.05);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(80px) scaleY(0.3);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px) scaleY(1.05);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-80px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(5px) scale(1.02);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(-5px) scale(1.02);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.7);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* Animation Set 2: Fade from center */
@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes fadeInCenterHorizontal {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes fadeInCenterSide {
    from {
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Animation Set 3: Rotate and scale */
@keyframes rotateScaleDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-80px) scaleY(0.3) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1) rotate(0deg);
    }
}

@keyframes rotateScaleUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(80px) scaleY(0.3) rotate(180deg);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1) rotate(0deg);
    }
}

@keyframes rotateScaleHorizontal {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0) rotate(360deg);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
}

@keyframes rotateScaleLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) scale(0.8) rotate(-90deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

@keyframes rotateScaleRight {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.8) rotate(90deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

/* Animation Set 4: Bounce */
@keyframes bounceDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-200px) scaleY(0.3);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(20px) scaleY(1.1);
    }
    80% {
        transform: translateX(-50%) translateY(-10px) scaleY(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
}

@keyframes bounceUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(200px) scaleY(0.3);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(-20px) scaleY(1.1);
    }
    80% {
        transform: translateX(-50%) translateY(10px) scaleY(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
}

@keyframes bounceHorizontal {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
    80% {
        transform: translateX(-50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes bounceLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(20px) scale(1.1);
    }
    80% {
        transform: translateX(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes bounceRight {
    0% {
        opacity: 0;
        transform: translateX(200px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(-20px) scale(1.1);
    }
    80% {
        transform: translateX(10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Animation Set 5: Slide from all directions simultaneously */
@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-150px) scaleY(0.3);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
}

@keyframes slideFromBottom {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(150px) scaleY(0.3);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
}

@keyframes slideFromCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-150px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(150px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Animation Set Classes */
.cross-menu.anim-1 .cross-menu-top {
    animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.cross-menu.anim-1 .cross-menu-bottom {
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.cross-menu.anim-1 .cross-menu-horizontal {
    animation: fadeInScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0s forwards;
}

.cross-menu.anim-1 .cross-menu-left {
    animation: slideRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.cross-menu.anim-1 .cross-menu-right {
    animation: slideLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

/* Animation Set 2 */
.cross-menu.active.anim-2 .cross-menu-top {
    animation: fadeInCenter 0.8s ease-out 0.1s forwards;
}

.cross-menu.active.anim-2 .cross-menu-bottom {
    animation: fadeInCenter 0.8s ease-out 0.1s forwards;
}

.cross-menu.active.anim-2 .cross-menu-horizontal {
    animation: fadeInCenterHorizontal 0.8s ease-out 0s forwards;
}

.cross-menu.active.anim-2 .cross-menu-left {
    animation: fadeInCenterSide 0.8s ease-out 0.2s forwards;
}

.cross-menu.active.anim-2 .cross-menu-right {
    animation: fadeInCenterSide 0.8s ease-out 0.2s forwards;
}

/* Animation Set 3 */
.cross-menu.active.anim-3 .cross-menu-top {
    animation: rotateScaleDown 0.7s ease-out 0.1s forwards;
}

.cross-menu.active.anim-3 .cross-menu-bottom {
    animation: rotateScaleUp 0.7s ease-out 0.1s forwards;
}

.cross-menu.active.anim-3 .cross-menu-horizontal {
    animation: rotateScaleHorizontal 0.7s ease-out 0s forwards;
}

.cross-menu.active.anim-3 .cross-menu-left {
    animation: rotateScaleLeft 0.7s ease-out 0.2s forwards;
}

.cross-menu.active.anim-3 .cross-menu-right {
    animation: rotateScaleRight 0.7s ease-out 0.2s forwards;
}

/* Animation Set 4 */
.cross-menu.active.anim-4 .cross-menu-top {
    animation: bounceDown 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
}

.cross-menu.active.anim-4 .cross-menu-bottom {
    animation: bounceUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
}

.cross-menu.active.anim-4 .cross-menu-horizontal {
    animation: bounceHorizontal 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s forwards;
}

.cross-menu.active.anim-4 .cross-menu-left {
    animation: bounceLeft 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
}

.cross-menu.active.anim-4 .cross-menu-right {
    animation: bounceRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
}

/* Animation Set 5 */
.cross-menu.active.anim-5 .cross-menu-top {
    animation: slideFromTop 0.5s ease-out 0s forwards;
}

.cross-menu.active.anim-5 .cross-menu-bottom {
    animation: slideFromBottom 0.5s ease-out 0s forwards;
}

.cross-menu.active.anim-5 .cross-menu-horizontal {
    animation: slideFromCenter 0.5s ease-out 0s forwards;
}

.cross-menu.active.anim-5 .cross-menu-left {
    animation: slideFromLeft 0.5s ease-out 0s forwards;
}

.cross-menu.active.anim-5 .cross-menu-right {
    animation: slideFromRight 0.5s ease-out 0s forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
    overflow: hidden;
    transform: translateZ(0);
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Self-hosted <video> fallback */
.background-video:not(.background-video--vimeo) {
    object-fit: cover;
}

/* Vimeo iframe: 16:9 cover — same full-bleed look as object-fit:cover video */
.background-video--vimeo iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 100%;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Sound / Visual / Content / Strategy: B&W footage + frosted blur (~15% strength ≈ 6px radius) */
body.studio-subpage-open .background-video {
    filter: grayscale(1);
}

.studio-bg-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.studio-subpage-open .studio-bg-overlay {
    opacity: 1;
    visibility: visible;
}

.background-video::-webkit-media-controls {
    display: none !important;
}

.background-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.background-video::-webkit-media-controls-panel {
    display: none !important;
}

.background-video::-webkit-media-controls-play-button {
    display: none !important;
}

.background-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}


.tagline {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 1108px;
    height: 90px;
    font-family: 'Helvetica OTF', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400; /* Regular */
    font-style: normal;
    line-height: 22pt;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
    margin: 0;
    opacity: 1;
}

body.about-page-open .tagline {
    display: none;
}

body.studio-subpage-open .tagline {
    display: none;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.7;
}

.exit-link {
    color: #ff0000;
}

main {
    flex: 1;
    margin-top: 120px;
    overflow: hidden;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.section {
    padding: 2rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section h2 {
    font-size: 3rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.section p {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.exit-section {
    background-color: rgba(255, 0, 0, 0.05);
}

.exit-section h2 {
    color: #ff0000;
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    nav {
        gap: 1.5rem;
    }

    .tagline {
        font-size: 0.7rem;
        top: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    .section {
        padding: 4rem 2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    main {
        margin-top: 180px;
    }

    /* Cross Menu Mobile Optimizations */
    .menu-item {
        width: 120px;
        height: 20px;
        font-size: 8pt;
        line-height: 10pt;
        padding: 0.5rem 0.75rem;
    }

    .cross-menu-top,
    .cross-menu-bottom {
        width: 15px;
        height: 140px;
    }

    .vertical-text {
        font-size: 7pt;
        line-height: 9pt;
    }

    .cross-menu-top {
        top: calc(50% - 140px - 10px - 0.75rem);
    }

    .cross-menu-bottom {
        bottom: calc(50% - 140px - 10px - 0.75rem);
    }

    .cross-menu-horizontal {
        top: calc(50% - 40px + 0.75rem);
    }

    .cross-menu-horizontal .menu-item:nth-child(1),
    .cross-menu-horizontal .menu-item:nth-child(3) {
        margin-top: 0px;
    }

    .cross-menu-horizontal .menu-item:nth-child(2) {
        margin-top: 20px;
    }

    .cross-menu-left {
        top: calc(50% - 40px + 0.75rem + 20px);
        left: calc(50% - 180px);
    }

    .cross-menu-right {
        top: calc(50% - 40px + 0.75rem + 20px);
        left: calc(50% + 60px);
    }

    /* Loading Page Mobile Optimizations */
    .loading-tagline {
        top: 1rem;
        left: 1rem;
        font-size: 0.7rem;
        max-width: calc(100% - 2rem);
    }

    .loading-x {
        font-size: 40pt;
        line-height: 1;
        transform: translateY(-0.06em);
    }

    .main-hive {
        font-size: 40pt;
        line-height: 1;
        padding-right: 2.5rem;
    }

    .main-lab {
        font-size: 40pt;
        line-height: 1;
        padding-left: 2.5rem;
    }

    .main-x {
        font-size: 40pt;
        line-height: 1;
    }
}

/* About Page Styles */
.about-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
    flex-direction: row;
    align-items: stretch;
}

.about-page.active {
    display: flex;
}

.about-left {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    padding-bottom: 2rem;
    max-width: calc(100% - 600px);
    min-width: 0;
}

.about-tagline {
    font-family: 'Helvetica OTF', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400;
    line-height: 22pt;
    letter-spacing: 0;
    color: #ffffff;
    max-width: 1108px;
    text-align: left;
}

/* About + studio subpages: same bottom-centre column as About (EXIT below section label). */
.about-bottom-buttons,
.sound-buttons,
.strategy-buttons,
.visual-buttons,
.content-buttons {
    position: fixed;
    bottom: 2rem;
    left: 50vw;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 210;
}

.about-bottom-button {
    background-color: rgba(128, 128, 128, 0.49);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 9pt;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: default;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    width: 240px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 14.4pt;
}

#about-bottom-exit {
    background-color: #000;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    pointer-events: auto;
}

.about-right {
    flex: 0 0 auto;
    min-width: 500px;
    width: 42.5%;
    height: 100%;
    padding: 3vh 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    margin-left: auto;
    position: relative;
}

.about-right-bg {
    position: absolute;
    inset: 0;
    background-color: #000;
    z-index: 0;
    /* Three button-sized cutouts only (FOUNDER, INSTAGRAM, CONTACT) */
    -webkit-mask-image:
        linear-gradient(white, white),
        linear-gradient(white, white),
        linear-gradient(white, white),
        linear-gradient(white, white);
    mask-image:
        linear-gradient(white, white),
        linear-gradient(white, white),
        linear-gradient(white, white),
        linear-gradient(white, white);
    -webkit-mask-size: 100% 100%, 240px 25px, 240px 25px, 240px 25px;
    mask-size: 100% 100%, 240px 25px, 240px 25px, 240px 25px;
    -webkit-mask-position: 0 0, 54% 53%, 54% 72%, 54% 91%;
    mask-position: 0 0, 54% 53%, 54% 72%, 54% 91%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.about-right .about-description,
.about-right .about-info-section {
    position: relative;
    z-index: 1;
}

.about-description {
    font-family: 'Helvetica OTF', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400;
    line-height: 22pt;
    letter-spacing: 0;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 4vh;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    white-space: pre-line;
    flex-shrink: 0;
    max-width: 100%;
}

.about-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6rem;
    align-items: center;
    flex-shrink: 0;
}

.about-info-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.about-info-label {
    background-color: rgba(128, 128, 128, 0.49);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 9pt;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    width: 240px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 14.4pt;
}

.about-info-value {
    color: #fff;
    font-family: 'Helvetica OTF', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    line-height: 22pt;
}

.about-info-item {
    cursor: default;
}

.about-info-value-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.about-info-value-link:hover {
    opacity: 0.7;
}

.about-info-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.about-info-link:hover {
    opacity: 0.7;
}

/* Sound Page Styles */
.sound-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    pointer-events: none;
}

.sound-page.active {
    display: flex;
    pointer-events: auto;
}

.sound-content {
    /* 30px matches tagline/strategy button inset; tagline is hidden on this page so no need for extra top offset */
    padding: 30px;
    max-width: 1108px;
}

.sound-text {
    font-family: 'Helvetica OTF', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400;
    line-height: 22pt;
    letter-spacing: 0;
    color: #fff;
    text-align: left;
    margin: 0 0 2rem 0;
}

.sound-page-button {
    background-color: #000;
    color: #fff;
    border: none;
    /* Equal top/bottom padding inside pill; avoid height + padding fight (border-box was squeezing the label to the top). */
    padding: 6px 1.5rem;
    font-size: 9pt;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Helvetica', Arial, sans-serif;
    width: 240px;
    min-height: 25px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
}

.sound-page-button:hover {
    opacity: 0.9;
}

#sound-page-sound {
    background-color: rgba(128, 128, 128, 0.49);
    cursor: default;
    pointer-events: none;
    text-transform: none;
}

#sound-page-sound:hover {
    opacity: 1;
}

/* Visual Page Styles */
.visual-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    pointer-events: none;
}

.visual-page.active {
    display: flex;
    pointer-events: auto;
}

.visual-content {
    padding: 3rem;
    max-width: 1108px;
    position: relative;
    width: 100%;
}

.visual-viewer {
    width: 100%;
    height: 70vh;
    min-height: 320px;
    background: transparent;
    position: relative;
}

.visual-viewer canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.visual-text {
    font-family: 'Helvetica OTF', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400;
    line-height: 22pt;
    letter-spacing: 0;
    color: #fff;
    text-align: left;
    margin: 0;
}

.visual-page-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 9pt;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Helvetica', Arial, sans-serif;
    width: 240px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 14.4pt;
}

.visual-page-button:hover {
    opacity: 0.9;
}

#visual-page-visual {
    background-color: rgba(128, 128, 128, 0.49);
    cursor: default;
    pointer-events: none;
    text-transform: none;
}

#visual-page-visual:hover {
    opacity: 1;
}

/* Strategy Page Styles – like Sound: video visible, text + buttons in left corner */
.strategy-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    pointer-events: none;
}

.strategy-page.active {
    display: flex;
    pointer-events: auto;
}

.strategy-content {
    padding: 3rem;
    max-width: 1108px;
}

.strategy-text {
    font-family: 'Helvetica OTF', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400;
    line-height: 22pt;
    letter-spacing: 0;
    color: #fff;
    text-align: left;
    margin: 0 0 2rem 0;
}

.strategy-page-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 6px 1.5rem;
    font-size: 9pt;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Helvetica', Arial, sans-serif;
    width: 240px;
    min-height: 25px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
}

.strategy-page-button:hover {
    opacity: 0.9;
}

#strategy-page-strategy {
    background-color: rgba(128, 128, 128, 0.49);
    cursor: default;
    pointer-events: none;
    text-transform: none;
}

#strategy-page-strategy:hover {
    opacity: 1;
}

/* Content Page Styles */
.content-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    pointer-events: none;
}

.content-page.active {
    display: flex;
    pointer-events: auto;
}

.content-content {
    padding: 3rem;
    max-width: 1108px;
}

.content-text {
    font-family: 'Helvetica OTF', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18pt;
    font-weight: 400;
    line-height: 22pt;
    letter-spacing: 0;
    color: #fff;
    text-align: left;
    margin: 0 0 2rem 0;
}

.content-page-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 9pt;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Helvetica', Arial, sans-serif;
    width: 240px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 14.4pt;
}

.content-page-button:hover {
    opacity: 0.9;
}

#content-page-content {
    background-color: rgba(128, 128, 128, 0.49);
    cursor: default;
    pointer-events: none;
    text-transform: none;
}

#content-page-content:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .about-page {
        flex-direction: column;
        overflow: hidden;
        height: 50vh;
        min-height: 0;
        top: auto;
        bottom: 0;
    }

    .about-left {
        flex: 0 0 auto;
        min-height: 0;
        padding: 0.75rem 1rem;
    }

    .about-tagline {
        font-size: 12pt;
        line-height: 16pt;
        max-width: 100%;
    }

    .about-bottom-buttons,
    .sound-buttons,
    .strategy-buttons,
    .visual-buttons,
    .content-buttons {
        top: 1rem;
        bottom: auto;
        left: 50vw;
        transform: translateX(-50%);
        padding-top: 0;
        padding-bottom: 0;
        gap: 0.75rem;
        flex-direction: column;
    }

    .about-bottom-button {
        font-size: 8pt;
        padding: 0.35rem 0.7rem;
        width: 100px;
        min-width: 90px;
        height: 20px;
        flex-shrink: 0;
    }

    .about-right {
        width: 100%;
        min-width: 0;
        flex: 1 1 auto;
        padding: 0.75rem 1rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
    }

    /* Simplify About background on mobile so cutouts don't misalign */
    .about-right-bg {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .about-description {
        font-size: 8pt;
        line-height: 1.35;
        margin: 0 0 0.5rem 0;
        flex-shrink: 0;
    }

    .about-info-section {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .about-info-label {
        font-size: 7pt;
        padding: 0.25rem 0.5rem;
        width: auto;
        min-width: 80px;
        max-width: 100%;
    }

    .about-info-value {
        font-size: 8pt;
    }

    .sound-content {
        padding: 1.5rem;
    }

    .sound-text {
        font-size: 14pt;
        line-height: 1.5;
    }

    .sound-page-button {
        font-size: 8pt;
        padding: 5px 0.8rem;
        width: 120px;
        min-width: 100px;
        min-height: 20px;
        height: auto;
        line-height: 1.15;
    }

    .visual-content {
        padding: 1.5rem;
    }

    .visual-viewer {
        height: 50vh;
        min-height: 240px;
    }

    .visual-text {
        font-size: 14pt;
        line-height: 1.5;
    }

    .visual-page-button {
        font-size: 8pt;
        padding: 0.4rem 0.8rem;
        width: 120px;
        min-width: 100px;
        height: 20px;
    }

    .content-content {
        padding: 1.5rem;
    }

    .content-text {
        font-size: 14pt;
        line-height: 1.5;
    }

    .content-page-button {
        font-size: 8pt;
        padding: 0.4rem 0.8rem;
        width: 120px;
        min-width: 100px;
        height: 20px;
    }

    .strategy-content {
        padding: 1.5rem;
    }

    .strategy-text {
        font-size: 14pt;
        line-height: 1.5;
    }

    .strategy-page-button {
        font-size: 8pt;
        padding: 5px 0.8rem;
        width: 120px;
        min-width: 100px;
        min-height: 20px;
        height: auto;
        line-height: 1.15;
    }
}
