@font-face {
    font-family: "Rajdhani X";
    src: url("./assets/rajdhani.semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nomaden";
    src: url("./assets/Nomaden%20DEMO.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg: #040713;
    --panel: rgba(9, 14, 30, 0.16);
    --panel-strong: rgba(9, 13, 28, 0.4);
    --panel-border: rgba(189, 223, 255, 0.12);
    --panel-line: rgba(255, 255, 255, 0.06);
    --text: #edf3ff;
    --muted: rgba(225, 232, 255, 0.68);
    --soft: rgba(235, 241, 255, 0.42);
    --cyan: #4fd6ff;
    --violet: #7f54ff;
    --green: #95f5c8;
    --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --section-width: min(1380px, calc(100vw - 56px));
    --copy-width: 700px;
    --header-h: 88px;
    --header-alpha: 1;
    --header-surface-alpha: 1;
    --header-shift: 0px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Rajdhani X", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 14%, rgba(127, 84, 255, 0.2), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(79, 214, 255, 0.16), transparent 24%),
        radial-gradient(circle at 50% 65%, rgba(147, 245, 200, 0.08), transparent 24%),
        linear-gradient(180deg, #040612 0%, #060b1d 38%, #050918 100%);
}

.page-bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: -3;
    opacity: 0.38;
    filter: saturate(108%) contrast(112%) brightness(0.54);
    transform: scale(1.03);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        radial-gradient(circle at 18% 14%, rgba(111, 74, 255, 0.18), transparent 24%),
        radial-gradient(circle at 84% 22%, rgba(66, 201, 255, 0.1), transparent 22%),
        radial-gradient(circle at 52% 52%, rgba(23, 31, 74, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(3, 5, 14, 0.34), rgba(4, 7, 18, 0.52));
    opacity: 0.82;
    mix-blend-mode: normal;
    animation: bgDriftPrimary 42s ease-in-out infinite alternate;
}

body::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 24% 28%, rgba(117, 83, 255, 0.08), transparent 18%),
        radial-gradient(circle at 74% 62%, rgba(79, 214, 255, 0.05), transparent 22%),
        linear-gradient(90deg, rgba(10, 12, 32, 0.08), rgba(0, 0, 0, 0));
    opacity: 0.28;
    mix-blend-mode: screen;
    filter: blur(1px) saturate(106%);
    animation: bgDriftSecondary 54s ease-in-out infinite alternate;
}

body::selection {
    background: rgba(79, 214, 255, 0.2);
}

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

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

button,
audio {
    font: inherit;
}

.page-noise,
.page-grid,
.page-orb {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.page-noise {
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
    background-size: 4px 4px;
    mix-blend-mode: soft-light;
}

.page-grid {
    opacity: 0.1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), black 18%, black 78%, transparent);
}

.page-orb {
    filter: blur(110px);
    opacity: 0.24;
}

.page-orb--violet {
    background: radial-gradient(circle, rgba(127, 84, 255, 0.28), transparent 62%);
    transform: translate(-16%, -18%);
}

.page-orb--cyan {
    background: radial-gradient(circle, rgba(79, 214, 255, 0.2), transparent 58%);
    transform: translate(62%, 6%);
}

.page-orb--glass {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 52%);
    transform: translate(8%, 48%);
}

.scroll-meter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 120;
    background: rgba(255, 255, 255, 0.04);
}

.scroll-meter__fill {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--cyan), var(--green));
    box-shadow: 0 0 28px rgba(79, 214, 255, 0.65);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--section-width);
    margin: 0 auto;
    height: var(--header-h);
    padding: 0 8px;
    opacity: var(--header-alpha);
    transform: translateY(calc(var(--header-shift) * -1));
    transition: opacity 140ms linear, transform 180ms ease;
    will-change: opacity, transform;
}

.site-header.is-scrolled-away {
    pointer-events: none;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 14px 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, rgba(16, 22, 43, 0.4), rgba(10, 14, 28, 0.18)),
        rgba(8, 12, 22, 0.18);
    box-shadow:
        0 14px 42px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px) saturate(140%) contrast(106%);
    opacity: var(--header-surface-alpha);
    z-index: -1;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    color: var(--text);
    text-transform: uppercase;
}

.brand__word {
    font-family: "Nomaden", "Rajdhani X", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.015em;
}

.brand__signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--soft);
}

.brand__signal-icon {
    width: 14px;
    height: 14px;
    opacity: 0.72;
    filter: drop-shadow(0 0 12px rgba(79, 214, 255, 0.3));
}

.site-nav {
    display: flex;
    gap: 22px;
}

.site-nav a {
    text-decoration: none;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    transition: color 160ms ease;
}

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

.section {
    width: var(--section-width);
    margin: 0 auto;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 48px;
    min-height: calc(112vh - var(--header-h));
    padding: 30px 0 140px;
}

.hero-shell__copy {
    max-width: 660px;
}

.hero__mark {
    margin: 0 0 8px;
    font-family: "Nomaden", "Rajdhani X", sans-serif;
    font-size: clamp(3.8rem, 8vw, 6rem);
    line-height: 0.88;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: rgba(245, 240, 255, 0.96);
}

.eyebrow {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
}

.eyebrow--dolly {
    font-family: "Classic Dolly", "Rajdhani X", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: rgba(222, 206, 255, 0.78);
}

.hero-shell h1,
.manifesto__strip p,
.audio-cinema__heading h2,
.launch__heading h2,
.story-stage__caption h2 {
    margin: 0;
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.hero-shell h1 {
    font-size: clamp(3.4rem, 6.4vw, 6.8rem);
    line-height: 0.9;
}

.hero__lede,
.audio-cinema__lede {
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.42;
}

.hero__lede span,
.audio-cinema__lede span {
    color: var(--text);
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(117, 81, 255, 0.96), rgba(69, 201, 255, 0.84));
    box-shadow:
        0 18px 46px rgba(79, 214, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -10px 18px rgba(6, 10, 26, 0.18);
}

.button--ghost {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        rgba(8, 11, 24, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -10px 16px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.hero__chips li {
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(8, 11, 22, 0.16);
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    backdrop-filter: blur(8px) saturate(125%);
}

.hero-shell__visual {
    perspective: 2200px;
}

.hero-glass,
.story-stage,
.audio-card,
.showcase-card,
.story-panel,
.launch-card,
.manifesto__strip {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, rgba(16, 22, 43, 0.4), rgba(10, 14, 28, 0.18)),
        rgba(8, 12, 22, 0.18);
    box-shadow:
        0 14px 42px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px) saturate(140%) contrast(106%);
    -webkit-backdrop-filter: blur(12px) saturate(140%) contrast(106%);
}

.hero-glass::before,
.story-stage::before,
.audio-card::before,
.showcase-card::before,
.story-panel::before,
.launch-card::before,
.manifesto__strip::before {
    content: none;
}

.hero-glass::after,
.story-stage::after,
.audio-card::after,
.showcase-card::after,
.story-panel::after,
.launch-card::after,
.manifesto__strip::after {
    content: none;
}

.hero-glass {
    padding: 22px;
    transform-style: preserve-3d;
}

.hero-glass__wash {
    position: absolute;
    inset: 8% 10%;
    border-radius: 48px;
    background:
        radial-gradient(circle at 28% 24%, rgba(79, 214, 255, 0.14), transparent 24%),
        radial-gradient(circle at 74% 18%, rgba(127, 84, 255, 0.18), transparent 24%),
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.08), transparent 36%);
    filter: blur(18px);
}

.hero-glass__frame {
    position: relative;
    padding: 18px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, rgba(6, 10, 21, 0.62), rgba(8, 12, 22, 0.44));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -8px 14px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(7px) saturate(140%);
}

.hero-glass__screen {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-glass__float {
    position: absolute;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 46px rgba(0, 0, 0, 0.2),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.12),
        inset 0 -8px 12px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    overflow: hidden;
    backdrop-filter: blur(6px) saturate(142%);
}

.hero-glass__float--matrix {
    width: 40%;
    right: -4%;
    bottom: 6%;
    transform: rotate(5deg);
}

.hero-glass__float--osc {
    width: 24%;
    left: -3%;
    bottom: 11%;
    border-radius: 50%;
    transform: rotate(-7deg);
}

.hero-glass__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
}

.manifesto {
    padding: 10px 0 140px;
}

.manifesto__strip {
    display: grid;
    gap: 22px;
    padding: 32px;
}

.manifesto__strip p {
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: rgba(244, 247, 255, 0.94);
}

.story {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.9fr);
    gap: 28px;
    padding: 14px 0 160px;
}

.story__viewport {
    position: relative;
}

.story-stage {
    position: sticky;
    top: 104px;
    min-height: calc(100vh - 136px);
    padding: 20px;
}

.story-stage__glass,
.story-stage__rim {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.story-stage__glass {
    background:
        radial-gradient(circle at 24% 28%, rgba(79, 214, 255, 0.15), transparent 22%),
        radial-gradient(circle at 72% 18%, rgba(127, 84, 255, 0.18), transparent 24%),
        radial-gradient(circle at 56% 74%, rgba(255, 255, 255, 0.08), transparent 30%);
    filter: blur(26px);
}

.story-stage__rim {
    inset: 10px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.story-stage__surface {
    position: relative;
    height: 100%;
    min-height: calc(100vh - 176px);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, rgba(6, 10, 21, 0.58), rgba(9, 13, 24, 0.34));
    overflow: hidden;
    backdrop-filter: blur(9px) saturate(135%);
}

.stage-screen,
.stage-detail {
    position: absolute;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 620ms ease,
        filter 620ms ease;
}

.stage-screen--main {
    inset: 5% 5% 14%;
    z-index: 1;
}

.stage-screen--matrix {
    width: 48%;
    right: 3%;
    bottom: 6%;
    opacity: 0;
    transform: translateY(18%) rotate(6deg) scale(0.88);
    z-index: 3;
}

.stage-detail--osc {
    width: 28%;
    left: -2%;
    bottom: 12%;
    opacity: 0;
    transform: translateY(8%) rotate(-8deg) scale(0.82);
    border-radius: 50%;
    z-index: 4;
}

.stage-detail--filter-a {
    width: 25%;
    right: 10%;
    top: 6%;
    opacity: 0;
    transform: translateY(-8%) rotate(7deg) scale(0.82);
    z-index: 4;
}

.stage-detail--filter-b {
    width: 31%;
    left: 8%;
    bottom: 16%;
    opacity: 0;
    transform: translateY(12%) rotate(-7deg) scale(0.84);
    z-index: 4;
}

.stage-detail--fx {
    width: 58%;
    left: 18%;
    bottom: 7%;
    opacity: 0;
    transform: translateY(14%) scale(0.9);
    z-index: 4;
}

.story-stage__caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 22px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(15, 21, 42, 0.5), rgba(10, 14, 28, 0.24));
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.14),
        inset 0 -8px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px) saturate(138%);
    z-index: 5;
}

.story-stage__kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
}

.story-stage__caption h2 {
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.story__panels {
    display: grid;
    gap: 26px;
}

.story-panel {
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transform: translateY(calc((1 - var(--panel-focus, 0)) * 34px));
    opacity: calc(0.5 + (var(--panel-focus, 0) * 0.5));
    transition:
        border-color 220ms ease,
        background 220ms ease,
        opacity 220ms ease,
        transform 220ms ease;
}

.story-panel.is-active {
    border-color: rgba(79, 214, 255, 0.22);
}

.story-panel__index,
.launch-card__index {
    margin: 0 0 14px;
    color: rgba(79, 214, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
}

.story-panel h3,
.audio-card h3,
.showcase-card__copy h3,
.launch-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 2.2vw, 2.5rem);
    line-height: 0.98;
}

.story-panel p:last-child,
.audio-card__copy,
.showcase-card__copy p:last-child,
.launch-card p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.44;
}

.story-stage[data-scene="0"] .stage-screen--main {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
}

.story-stage[data-scene="1"] .stage-screen--main {
    opacity: 0.92;
    transform: translateX(-10%) scale(0.84);
}

.story-stage[data-scene="2"] .stage-screen--main {
    opacity: 0.48;
    transform: scale(0.88);
    filter: blur(4px);
}

.story-stage[data-scene="3"] .stage-screen--main {
    opacity: 0.28;
    transform: translateY(-4%) scale(0.8);
    filter: blur(8px);
}

.story-stage[data-scene="1"] .stage-screen--matrix {
    opacity: 1;
    transform: translateY(0) rotate(4deg) scale(1);
}

.story-stage[data-scene="2"] .stage-screen--matrix,
.story-stage[data-scene="3"] .stage-screen--matrix {
    opacity: 0.38;
    transform: translateY(0) rotate(2deg) scale(0.94);
}

.story-stage[data-scene="2"] .stage-detail--osc,
.story-stage[data-scene="2"] .stage-detail--filter-a {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}

.story-stage[data-scene="3"] .stage-detail--fx {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.story-stage[data-scene="3"] .stage-detail--filter-a {
    opacity: 0.42;
    transform: translateY(0) rotate(4deg) scale(0.9);
}

.story-stage[data-scene="3"] .stage-detail--filter-b {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}

.audio-cinema {
    padding: 26px 0 150px;
}

.audio-cinema__heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.audio-cinema__heading h2,
.launch__heading h2 {
    font-size: clamp(2.5rem, 4.6vw, 5.2rem);
}

.audio-cinema__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.audio-card,
.showcase-card {
    padding: 28px;
}

.audio-card--aggressive {
    background:
        radial-gradient(circle at top right, rgba(127, 84, 255, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        var(--panel);
}

.audio-card__eyebrow-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.audio-card__tag {
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
}

.audio-bars {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    align-items: end;
    height: 82px;
    margin-top: 24px;
}

.audio-bars span {
    display: block;
    height: 30%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(79, 214, 255, 0.94), rgba(127, 84, 255, 0.84));
    opacity: 0.82;
    transform-origin: bottom center;
}

.audio-card.is-playing .audio-bars span {
    animation: audioPulse 920ms ease-in-out infinite;
}

.audio-card.is-playing .audio-bars span:nth-child(2) { animation-delay: 90ms; }
.audio-card.is-playing .audio-bars span:nth-child(3) { animation-delay: 180ms; }
.audio-card.is-playing .audio-bars span:nth-child(4) { animation-delay: 270ms; }
.audio-card.is-playing .audio-bars span:nth-child(5) { animation-delay: 360ms; }
.audio-card.is-playing .audio-bars span:nth-child(6) { animation-delay: 450ms; }
.audio-card.is-playing .audio-bars span:nth-child(7) { animation-delay: 540ms; }
.audio-card.is-playing .audio-bars span:nth-child(8) { animation-delay: 630ms; }

.audio-controls {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
}

.audio-toggle {
    min-width: 82px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}

.audio-progress {
    position: relative;
    flex: 1;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
}

.audio-progress__fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--violet), var(--cyan), var(--green));
    box-shadow: 0 0 20px rgba(79, 214, 255, 0.52);
}

.audio-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

.showcase-card img {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-card video {
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    object-fit: cover;
}

.showcase-card--tall img {
    min-height: 100%;
    object-fit: cover;
}

.showcase-card--video {
    position: relative;
    min-height: 100%;
}

.showcase-card--video video {
    min-height: 100%;
}

.showcase-card__overlay-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px 20px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(14, 20, 40, 0.44), rgba(9, 13, 26, 0.18));
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.14),
        inset 0 -8px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px) saturate(138%);
}

.showcase-card__overlay-copy h3 {
    margin: 0;
    font-size: clamp(1.35rem, 1.8vw, 1.9rem);
    line-height: 1.02;
}

.showcase-card--split {
    display: grid;
    gap: 18px;
}

.showcase-card__copy {
    padding-top: 4px;
}

.launch {
    padding: 0 0 130px;
}

.launch__heading {
    max-width: 760px;
    margin-bottom: 34px;
}

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

.launch-card {
    min-height: 270px;
    padding: 30px;
}

.launch-card--pricing {
    background:
        radial-gradient(circle at top right, rgba(79, 214, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        var(--panel);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: var(--section-width);
    margin: 0 auto;
    padding: 76px 0 54px;
    color: var(--muted);
}

.site-footer__brand {
    margin: 0 0 8px;
    color: var(--text);
    font-family: "Nomaden", "Rajdhani X", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__tag,
.site-footer__meta {
    margin: 0;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.35;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-tilt] {
    transition: transform 240ms ease;
    transform-style: preserve-3d;
    will-change: transform;
}

@keyframes audioPulse {
    0% { transform: scaleY(0.34); opacity: 0.68; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.46); opacity: 0.74; }
}

@keyframes bgDriftPrimary {
    0% {
        transform: translate3d(0, 0, 0) scale(1.04);
    }
    100% {
        transform: translate3d(-1.8%, 1.2%, 0) scale(1.08);
    }
}

@keyframes bgDriftSecondary {
    0% {
        transform: translate3d(0, 0, 0) scale(1.02);
    }
    100% {
        transform: translate3d(1.5%, -1%, 0) scale(1.06);
    }
}

@keyframes panelLiquidShift {
    0% {
        transform: translate3d(-0.4%, -0.3%, 0) scale(1.02);
        background-position:
            0 0,
            0 0,
            0 0,
            0 0;
    }
    100% {
        transform: translate3d(0.5%, 0.4%, 0) scale(1.03);
        background-position:
            10px -8px,
            2% -1%,
            -1% 2%,
            2% -1%;
    }
}

@media (max-width: 1100px) {
    :root {
        --section-width: min(1280px, calc(100vw - 34px));
    }

    .hero-shell,
    .story,
    .audio-cinema__grid,
    .launch__rail,
    .site-footer {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-shell {
        min-height: auto;
        padding-bottom: 110px;
    }

    .story-stage {
        position: relative;
        top: auto;
        min-height: 780px;
    }

    .story-panel {
        min-height: auto;
    }

    .audio-cinema {
        padding-top: 8px;
    }
}

@media (max-width: 720px) {
    :root {
        --section-width: calc(100vw - 22px);
        --header-h: 74px;
    }

    .site-header {
        padding: 0 2px;
    }

    .site-header::before {
        border-radius: 16px;
    }

    .site-nav {
        display: none;
    }

    .hero__actions,
    .audio-controls,
    .audio-meta,
    .audio-card__eyebrow-row,
    .site-footer {
        flex-direction: column;
    }

    .hero-glass,
    .story-stage,
    .audio-card,
    .showcase-card,
    .story-panel,
    .launch-card,
    .manifesto__strip {
        border-radius: 24px;
    }

    .hero__mark {
        font-size: 3.4rem;
    }

    .hero-glass__float--matrix {
        width: 52%;
        right: -2%;
        bottom: 4%;
    }

    .hero-glass__float--osc {
        width: 30%;
        left: -1%;
        bottom: 10%;
    }

    .story-stage {
        min-height: 560px;
        padding: 12px;
    }

    .story-stage__surface {
        min-height: 530px;
    }

    .stage-screen--main {
        inset: 4% 4% 17%;
    }

    .stage-screen--matrix {
        width: 56%;
    }

    .stage-detail--osc {
        width: 34%;
    }

    .stage-detail--filter-a {
        width: 34%;
        right: 4%;
    }

    .stage-detail--filter-b {
        width: 40%;
        left: 5%;
        bottom: 20%;
    }

    .stage-detail--fx {
        width: 72%;
        left: 14%;
    }

    .story-stage__caption {
        align-items: start;
        flex-direction: column;
    }

    .manifesto__strip p {
        font-size: 2rem;
    }

    .showcase-card--split {
        grid-template-columns: 1fr;
    }
}
