:root {
    color-scheme: dark;
    --bg: #030306;
    --text: #f7f3ea;
    --muted: rgba(247, 243, 234, 0.82);
    --line: rgba(255, 255, 255, 0.14);
    --glass: rgba(4, 7, 13, 0.54);
    --font-sans: Inter, Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: Aptos, Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --a: #56c8ff;
    --b: #9b6cff;
    --c: #73f0cc;
    --glow: rgba(86, 200, 255, 0.28);
    --scroll: 0;
    --scroll-pct: 0%;
    --scroll-rotate: 0deg;
    --scroll-flow: 0;
    --scroll-speed: 0;
    --scroll-wipe-opacity: 0.08;
    --scroll-wipe-x: -22%;
    --scroll-wipe-scale: 0.42;
    --scroll-tunnel-opacity: 0.06;
    --scroll-tunnel-scale: 0.96;
    --scroll-tunnel-rotate: 0deg;
    --cursor-x: 0px;
    --cursor-y: 0px;
    --layer-x-1: 0px;
    --layer-y-1: 0px;
    --layer-x-2: 0px;
    --layer-y-2: 0px;
    --layer-x-3: 0px;
    --layer-y-3: 0px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --scene-push: 0px;
    --scene-feather: 22svh;
    --scene-entry-pad: 12svh;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    letter-spacing: 0;
    scroll-behavior: auto;
    scroll-padding-top: 96px;
}

html.v2-step-mode,
html.v2-step-mode body.v2-body {
    width: 100%;
}

html.v2-step-mode {
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
}

html.v2-step-mode::-webkit-scrollbar {
    display: none;
}

html.v2-step-mode body.v2-body {
    min-height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    background: #030306;
    color: var(--text);
    font-size: 16px;
    line-height: 1.45;
    overflow-x: hidden;
}

body.v2-body {
    min-height: 100vh;
    isolation: isolate;
}

body[data-scene="cinema"] { --a: #56c8ff; --b: #dbefff; --c: #365cff; --glow: rgba(86, 200, 255, 0.28); }
body[data-scene="music"] { --a: #ff68c8; --b: #9b6cff; --c: #56c8ff; --glow: rgba(255, 104, 200, 0.28); }
body[data-scene="worlds"] { --a: #73f0cc; --b: #56c8ff; --c: #1e846f; --glow: rgba(115, 240, 204, 0.24); }
body[data-scene="formation"] { --a: #d8bd78; --b: #56c8ff; --c: #806a3a; --glow: rgba(216, 189, 120, 0.24); }
body[data-scene="projects"] { --a: #56c8ff; --b: #1d86c9; --c: #8deaff; --glow: rgba(86, 200, 255, 0.28); }
body[data-scene="contact"] { --a: #56c8ff; --b: #9b6cff; --c: #ff68c8; --glow: rgba(155, 108, 255, 0.28); }

.v2-low-power {
    --scene-push: 0px;
}

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

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--a);
    outline-offset: 4px;
}

::selection {
    background: color-mix(in srgb, var(--a) 34%, transparent);
    color: #fff;
}

.v2-scroll-stage,
.v2-stage-image,
.v2-loop-video,
.v2-transition-video {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.v2-scroll-stage {
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 38%, rgba(86, 200, 255, 0.14), transparent 36%),
        linear-gradient(180deg, #030306 0%, #070910 52%, #030306 100%);
}

.v2-scroll-stage::before {
    content: "";
    position: absolute;
    inset: -6%;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.26), rgba(86, 200, 255, 0.15) 18%, transparent 58%),
        radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.12), transparent 42%);
    mix-blend-mode: screen;
    transform: scale(0.985);
    will-change: opacity, transform;
}

.v2-scroll-stage.is-step-transition {
    z-index: 95;
}

.v2-scroll-stage.is-step-pulse::before {
    animation: v2-transition-pulse 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.v2-stage-image {
    z-index: 1;
    --stage-opacity: 0;
    background-position: center;
    background-size: cover;
    opacity: var(--stage-opacity, 0);
    transition: none;
    will-change: opacity;
}

.v2-loop-video {
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: var(--loop-opacity, 0);
    transition: opacity 700ms ease;
    will-change: opacity;
}

.v2-loop-video.is-active {
    --loop-opacity: 1;
}

.v2-scroll-stage.is-step-pulse .v2-stage-image.is-visible {
    animation: none;
}

.v2-scroll-stage:not(.is-step-transition)[data-active-stage="1"] .v2-stage-image[data-stage-index="1"],
.v2-scroll-stage:not(.is-step-transition)[data-active-stage="2"] .v2-stage-image[data-stage-index="2"],
.v2-scroll-stage:not(.is-step-transition)[data-active-stage="3"] .v2-stage-image[data-stage-index="3"],
.v2-scroll-stage:not(.is-step-transition)[data-active-stage="4"] .v2-stage-image[data-stage-index="4"],
.v2-scroll-stage:not(.is-step-transition)[data-active-stage="5"] .v2-stage-image[data-stage-index="5"],
.v2-scroll-stage:not(.is-step-transition)[data-active-stage="6"] .v2-stage-image[data-stage-index="6"],
.v2-scroll-stage:not(.is-step-transition)[data-active-stage="7"] .v2-stage-image[data-stage-index="7"] {
    --stage-opacity: 1;
    opacity: 1;
}

.v2-transition-video {
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: var(--transition-opacity, 0);
    transition: opacity 110ms ease;
    will-change: opacity;
}

.v2-scroll-stage:not(.is-step-transition) .v2-transition-video {
    opacity: 0 !important;
    transition: none;
}

.v2-scroll-stage.is-step-transition .v2-loop-video,
.v2-loop-disabled .v2-loop-video {
    opacity: 0 !important;
    transition: opacity 120ms ease;
}

.v2-transition-video.is-active {
    --transition-opacity: 1;
}

@keyframes v2-transition-pulse {
    0% {
        opacity: 0;
        transform: scale(0.985);
    }

    34% {
        opacity: 0.48;
        transform: scale(1.012);
    }

    100% {
        opacity: 0;
        transform: scale(1.038);
    }
}

@keyframes v2-stage-image-pulse {
    0% {
        opacity: var(--stage-opacity, 0);
    }

    34% {
        opacity: var(--stage-opacity, 0);
    }

    100% {
        opacity: var(--stage-opacity, 0);
    }
}

.v2-low-power .v2-stage-image {
    opacity: var(--stage-opacity, 0);
}

.v2-low-power .v2-chip,
.v2-low-power .v2-project,
.v2-low-power .v2-nav-links {
    backdrop-filter: none;
}

.v2-progress {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.v2-progress span {
    display: block;
    width: var(--scroll-pct);
    height: 100%;
    background: linear-gradient(90deg, var(--a), var(--b), var(--c));
    box-shadow: 0 0 24px var(--glow);
}

.v2-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 80;
    width: min(1180px, calc(100% - 32px));
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(3, 5, 10, 0.72);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: none;
    transform: translateX(-50%);
}

.v2-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 800;
}

.v2-brand img,
.v2-brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 8px;
}

.v2-brand-mark {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, color-mix(in srgb, var(--a) 42%, transparent), color-mix(in srgb, var(--b) 26%, transparent));
}

.v2-scene-readout {
    min-width: 178px;
    margin-left: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    color: rgba(247, 243, 234, 0.8);
    font-family: var(--font-sans);
    font-size: 0.82rem;
}

.v2-scene-readout span {
    color: var(--a);
    font-weight: 900;
}

.v2-scene-readout strong {
    font-weight: 800;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.v2-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.v2-nav-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 12px;
    color: rgba(247, 243, 234, 0.82);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.v2-nav-links a:hover,
.v2-nav-links a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.v2-nav-lock {
    color: rgba(255, 196, 214, 0.9) !important;
}

.v2-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.v2-menu-button span {
    width: 18px;
    height: 2px;
    display: block;
    background: #fff;
    transition: transform 180ms ease;
}

.v2-menu-button span + span {
    margin-top: -10px;
}

.v2-nav.is-open .v2-menu-button span:first-child {
    transform: translateY(5px) rotate(45deg);
}

.v2-nav.is-open .v2-menu-button span:last-child {
    transform: translateY(-5px) rotate(-45deg);
}

.v2-timeline {
    position: fixed;
    left: 24px;
    top: 50%;
    z-index: 72;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.v2-timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.v2-timeline a {
    position: relative;
    display: grid;
    grid-template-columns: 30px auto;
    gap: 9px;
    align-items: center;
    color: rgba(247, 243, 234, 0.72);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 800;
}

.v2-timeline span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(3, 5, 10, 0.72);
    color: rgba(247, 243, 234, 0.72);
    backdrop-filter: none;
    transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.v2-timeline strong {
    max-width: 90px;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transform: translateX(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.v2-timeline:hover strong,
.v2-timeline a.is-active strong {
    opacity: 1;
    transform: translateX(0);
}

.v2-timeline a.is-active span {
    border-color: color-mix(in srgb, var(--a) 70%, #fff 10%);
    color: #fff;
    box-shadow: 0 0 28px var(--glow);
    background: rgba(255, 255, 255, 0.1);
}

.v2-main {
    position: relative;
    z-index: 20;
}

.v2-scroll-sensor {
    height: 300vh;
    pointer-events: none;
    opacity: 0;
}

html.v2-js:not(.v2-step-mode) {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--a) 70%, transparent) rgba(255, 255, 255, 0.08);
}

html.v2-js:not(.v2-step-mode) body.v2-body {
    min-height: 100vh;
}

html.v2-js:not(.v2-step-mode) .v2-scroll-sensor {
    display: none;
}

html.v2-js:not(.v2-step-mode) .v2-main {
    position: relative;
    overflow: visible;
}

html.v2-js:not(.v2-step-mode) .v2-scene {
    overflow: visible;
}

html.v2-step-mode .v2-main {
    position: fixed;
    inset: 0;
    overflow: hidden;
}

.v2-scene {
    position: relative;
    min-height: 118svh;
    display: grid;
    align-items: center;
    padding: 132px 24px 88px;
    overflow: clip;
    perspective: 1100px;
    transform-style: preserve-3d;
    scroll-margin-top: 96px;
    isolation: isolate;
    --presence: 0;
    --scene-y: 0px;
    --scene-z: 0px;
    --scene-tilt: 0deg;
    --scene-poster: none;
    --scene-poster-opacity: 0.08;
    --scene-poster-scale: 1.03;
    --world-opacity: 0.16;
    --volume-opacity: 0.08;
}

.v2-scene::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(3, 3, 6, 0.84) 0%, rgba(3, 3, 6, 0.66) 36%, rgba(3, 3, 6, 0.28) 72%, rgba(3, 3, 6, 0.5) 100%),
        linear-gradient(180deg, rgba(3, 3, 6, 0.52) 0%, transparent 32%, rgba(3, 3, 6, 0.66) 100%);
}

.v2-hero::before {
    background:
        linear-gradient(90deg, rgba(3, 3, 6, 0.82) 0%, rgba(3, 3, 6, 0.62) 42%, rgba(3, 3, 6, 0.22) 78%, rgba(3, 3, 6, 0.48) 100%),
        linear-gradient(180deg, rgba(3, 3, 6, 0.54) 0%, transparent 36%, rgba(3, 3, 6, 0.7) 100%);
}

html.v2-step-mode .v2-scene {
    position: absolute;
    inset: 0;
    min-height: 100svh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: none;
}

html.v2-step-mode .v2-scene.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 220ms ease, visibility 0s linear 0s;
}

html.v2-step-mode .v2-scene.is-active.v2-scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--a) 72%, transparent) rgba(255, 255, 255, 0.08);
}

@media (hover: hover) and (pointer: fine) and (min-width: 821px) {
    html.v2-step-mode .v2-scene.is-active.v2-chapter.v2-scrollable {
        overflow: hidden;
    }

    .v2-chapter {
        padding-top: 104px;
        padding-bottom: 78px;
    }

    .v2-chapter .v2-copy h2 {
        font-size: clamp(2.8rem, 4.6vw, 4.65rem);
    }

    .v2-chapter .v2-copy p:not(.v2-eyebrow) {
        margin-top: 16px;
        line-height: 1.42;
    }

    .v2-chapter .v2-chip-list {
        margin-top: 16px;
    }

    .v2-chapter .v2-need-grid {
        margin-top: 18px;
    }

    .v2-chapter .v2-need {
        min-height: 142px;
        padding: 16px;
    }
}

.v2-scene + .v2-scene {
    margin-top: 0;
    padding-top: 132px;
}

.v2-hero {
    min-height: 100svh;
}

.v2-chapter {
    align-items: start;
    padding-top: 118px;
    padding-bottom: 126px;
}

.v2-scene-inner,
.v2-section-heading,
.v2-stat-grid,
.v2-project-stream,
.v2-final-content {
    position: relative;
    z-index: 6;
    width: min(1180px, calc(100% - 96px));
    margin: 0 auto;
    transform: none;
    transform-style: flat;
    opacity: 1;
    filter: none;
    will-change: auto;
    transition: none;
}

.v2-scene-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.v2-chapter .v2-scene-inner {
    align-items: start;
}

html.v2-step-mode .v2-scene .v2-scene-inner,
html.v2-step-mode .v2-scene .v2-section-heading,
html.v2-step-mode .v2-scene .v2-stat-grid,
html.v2-step-mode .v2-scene .v2-project-stream,
html.v2-step-mode .v2-scene .v2-final-content,
html.v2-step-mode .v2-scene .v2-scene-caption {
    opacity: 0;
    transform: translateY(24px);
    transition: none;
}

html.v2-step-mode .v2-scene.is-active .v2-scene-inner,
html.v2-step-mode .v2-scene.is-active .v2-section-heading,
html.v2-step-mode .v2-scene.is-active .v2-stat-grid,
html.v2-step-mode .v2-scene.is-active .v2-project-stream,
html.v2-step-mode .v2-scene.is-active .v2-final-content,
html.v2-step-mode .v2-scene.is-active .v2-scene-caption {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 920ms ease 90ms,
        transform 820ms cubic-bezier(0.16, 1, 0.3, 1) 90ms;
}

html.v2-step-mode .v2-scene.is-arriving .v2-scene-inner,
html.v2-step-mode .v2-scene.is-arriving .v2-section-heading,
html.v2-step-mode .v2-scene.is-arriving .v2-stat-grid,
html.v2-step-mode .v2-scene.is-arriving .v2-project-stream,
html.v2-step-mode .v2-scene.is-arriving .v2-final-content,
html.v2-step-mode .v2-scene.is-arriving .v2-scene-caption {
    opacity: 0;
    transform: translateY(24px);
    transition: none;
}

html.v2-step-mode.v2-scene-transitioning .v2-scene .v2-scene-inner,
html.v2-step-mode.v2-scene-transitioning .v2-scene .v2-section-heading,
html.v2-step-mode.v2-scene-transitioning .v2-scene .v2-stat-grid,
html.v2-step-mode.v2-scene-transitioning .v2-scene .v2-project-stream,
html.v2-step-mode.v2-scene-transitioning .v2-scene .v2-final-content,
html.v2-step-mode.v2-scene-transitioning .v2-scene .v2-scene-caption {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 120ms ease,
        transform 160ms ease;
}

.v2-copy {
    max-width: 760px;
    transform: none;
    will-change: auto;
}

.v2-eyebrow {
    margin: 0 0 14px;
    color: var(--c);
    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

.v2-copy h1,
.v2-copy h2,
.v2-section-heading h2,
.v2-final-content h2 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 820;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 18px 70px rgba(0, 0, 0, 0.72);
}

.v2-copy h1 {
    max-width: 920px;
    font-size: clamp(4rem, 7.4vw, 7.2rem);
}

.v2-copy h2,
.v2-section-heading h2,
.v2-final-content h2 {
    max-width: 880px;
    font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.v2-copy p:not(.v2-eyebrow),
.v2-final-content > p:not(.v2-eyebrow),
.v2-section-heading > p:not(.v2-eyebrow),
.v2-contact-copy > p:not(.v2-eyebrow) {
    max-width: 660px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.45vw, 1.22rem);
    line-height: 1.48;
    text-shadow: 0 8px 36px rgba(0, 0, 0, 0.78);
}

.v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.v2-section-cta {
    position: relative;
    z-index: 6;
    display: flex;
    margin-top: 26px;
}

.v2-section-cta-center {
    justify-content: center;
}

.v2-section-cta + .v2-project-stream {
    margin-top: 24px;
}

.v2-button {
    min-height: 50px;
    min-width: 154px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 0 18px;
    font-weight: 900;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.v2-button:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--a) 46%, #fff 10%);
    box-shadow: 0 18px 54px var(--glow);
}

.v2-button-primary {
    background: linear-gradient(135deg, var(--a), var(--c));
    color: #020306;
}

.v2-button-ghost {
    background: rgba(255, 255, 255, 0.06);
}

.v2-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.v2-chip-list li {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(4, 7, 13, 0.56);
    color: rgba(247, 243, 234, 0.9);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: none;
}

.v2-need-grid {
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.v2-need {
    min-height: 148px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 18px;
    background: rgba(4, 7, 13, 0.74);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.v2-need p,
.v2-need h3,
.v2-need span {
    margin: 0;
}

.v2-need p {
    color: var(--c);
    font-family: var(--font-sans);
    font-size: 0.86rem;
    font-weight: 850;
    text-transform: uppercase;
}

.v2-need h3 {
    margin-top: 10px;
    font-size: 1.15rem;
    line-height: 1.12;
}

.v2-need span {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.42;
}

.v2-scene-caption {
    position: absolute;
    right: 24px;
    bottom: 30px;
    z-index: 7;
    max-width: 430px;
    margin: 0;
    color: rgba(247, 243, 234, 0.58);
    font-size: 0.86rem;
    text-align: right;
}

.v2-section-heading {
    margin-bottom: 48px;
}

.v2-showcase {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.28fr);
    grid-template-areas:
        "heading projects"
        "stats projects"
        "cta projects";
    column-gap: 18px;
    row-gap: 14px;
    align-content: center;
    align-items: start;
    min-height: 100svh;
    padding: 104px 92px 36px;
    overflow: clip;
}

.v2-showcase .v2-section-heading {
    grid-area: heading;
    width: 100%;
    margin: 0;
}

.v2-showcase .v2-section-heading h2 {
    font-size: clamp(2.55rem, 4.55vw, 4.7rem);
    line-height: 0.98;
}

.v2-showcase .v2-section-heading > p:not(.v2-eyebrow) {
    max-width: 560px;
    margin-top: 14px;
    font-size: clamp(0.98rem, 1.18vw, 1.08rem);
    line-height: 1.4;
}

.v2-stat-grid {
    width: min(1180px, calc(100% - 96px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: -18px auto 30px;
}

.v2-showcase .v2-stat-grid {
    grid-area: stats;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.v2-showcase .v2-section-cta {
    grid-area: cta;
    justify-content: flex-start;
    margin: 0;
}

.v2-showcase .v2-section-cta + .v2-project-stream {
    margin-top: 0;
}

.v2-showcase .v2-project-stream {
    grid-area: projects;
    align-self: center;
}

.v2-stat {
    min-height: 96px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: 18px;
    background: rgba(4, 7, 13, 0.76);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.v2-stat strong {
    display: block;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

.v2-stat span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.v2-showcase .v2-stat {
    min-height: 74px;
    padding: 14px;
}

.v2-showcase .v2-stat strong {
    font-size: 1.72rem;
}

.v2-showcase .v2-stat span {
    margin-top: 5px;
    font-size: 0.88rem;
}

.v2-project-stream {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.v2-showcase .v2-project-stream {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.v2-project {
    position: relative;
    --project-x: 0px;
    --project-y: 0px;
    --project-tilt: 0deg;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        rgba(4, 7, 13, 0.5);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: none;
    transform: none;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.v2-showcase .v2-project {
    min-height: 0;
    height: clamp(174px, 25.5svh, 216px);
    padding: 13px;
    overflow: hidden;
}

.v2-project img {
    width: calc(100% + 44px);
    height: 138px;
    max-width: none;
    object-fit: cover;
    margin: -22px -22px 18px;
    border-radius: 8px 8px 0 0;
    opacity: 0.88;
}

.v2-showcase .v2-project img {
    width: calc(100% + 26px);
    height: clamp(70px, 10svh, 90px);
    margin: -13px -13px 10px;
}

.v2-project:nth-child(4n + 1) { --project-x: -8px; --project-y: 14px; --project-tilt: 2deg; }
.v2-project:nth-child(4n + 2) { --project-x: 4px; --project-y: -4px; --project-tilt: -1.4deg; }
.v2-project:nth-child(4n + 3) { --project-x: -2px; --project-y: 20px; --project-tilt: 1.2deg; }
.v2-project:nth-child(4n + 4) { --project-x: 8px; --project-y: 6px; --project-tilt: -2deg; }

.v2-project::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 35% 0%, color-mix(in srgb, var(--a) 18%, transparent), transparent 44%);
    opacity: 0.6;
    pointer-events: none;
}

.v2-project:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--a) 42%, rgba(255, 255, 255, 0.14));
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38), 0 0 42px var(--glow);
}

.v2-project p,
.v2-project h3,
.v2-project span,
.v2-project strong {
    position: relative;
}

.v2-project p {
    margin: 0 0 14px;
    color: var(--c);
    font-family: var(--font-sans);
    font-size: 0.86rem;
    font-weight: 850;
    text-transform: uppercase;
}

.v2-showcase .v2-project p {
    margin-bottom: 8px;
    font-size: 0.72rem;
}

.v2-project h3 {
    margin: 0;
    font-size: 1.44rem;
    line-height: 1.08;
}

.v2-showcase .v2-project h3 {
    font-size: 1.04rem;
    line-height: 1.05;
}

.v2-project span {
    margin-top: 14px;
    color: var(--muted);
}

.v2-showcase .v2-project span {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.v2-project strong {
    position: relative;
    display: block;
    margin-top: 14px;
    color: rgba(247, 243, 234, 0.88);
    font-size: 0.94rem;
}

.v2-showcase .v2-project strong {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.v2-final {
    min-height: 100svh;
    text-align: left;
}

.v2-final-content {
    width: min(900px, calc(100% - 48px));
}

.v2-final-content h2,
.v2-final-content p {
    margin-left: auto;
    margin-right: auto;
}

.v2-final .v2-actions {
    justify-content: center;
}

.v2-contact-layout {
    position: relative;
    z-index: 6;
    width: min(1180px, calc(100% - 96px));
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
    gap: 24px;
    align-items: center;
    margin: 0 auto;
    padding: 84px 0 24px;
}

.v2-contact-copy h2 {
    max-width: 760px;
    margin: 0;
    color: var(--text);
    font-size: clamp(2.35rem, 4.45vw, 4.25rem);
    line-height: 1.02;
    text-wrap: balance;
}

.v2-contact-list {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    color: rgba(247, 243, 234, 0.84);
    font-weight: 800;
}

.v2-trust-strip {
    max-width: 650px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.v2-trust-strip span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(4, 7, 13, 0.62);
    color: rgba(247, 243, 234, 0.9);
    font-size: 0.86rem;
    font-weight: 850;
}

.v2-contact-list a:hover {
    color: var(--a);
}

.v2-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.v2-method-grid article {
    min-height: 68px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: 11px;
    background: rgba(4, 7, 13, 0.56);
}

.v2-method-grid strong {
    display: block;
    color: var(--a);
    font-family: var(--font-sans);
    font-size: 1.2rem;
}

.v2-method-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(247, 243, 234, 0.82);
    font-weight: 800;
}

.v2-contact-copy .v2-method-grid {
    display: none;
}

.v2-contact-layout .v2-faq-strip {
    display: none;
}

.v2-contact-form,
.v2-faq-strip {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(4, 7, 13, 0.7);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.v2-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    padding: 16px;
}

.v2-contact-form [name="website"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.v2-field {
    display: grid;
    gap: 5px;
}

.v2-field label {
    color: rgba(247, 243, 234, 0.86);
    font-size: 0.88rem;
    font-weight: 900;
}

.v2-field input,
.v2-field select,
.v2-field textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding: 0 13px;
    outline: none;
}

.v2-field textarea {
    min-height: 72px;
    padding-top: 10px;
    resize: vertical;
}

.v2-field-message,
.v2-contact-form .v2-button,
.v2-form-status,
.v2-form-note {
    grid-column: 1 / -1;
}

.v2-field select option {
    background: #10131c;
    color: #fff;
}

.v2-field input:focus,
.v2-field select:focus,
.v2-field textarea:focus {
    border-color: color-mix(in srgb, var(--a) 62%, #fff 12%);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--a) 18%, transparent);
}

.v2-field input[aria-invalid="true"],
.v2-field select[aria-invalid="true"],
.v2-field textarea[aria-invalid="true"] {
    border-color: rgba(255, 124, 164, 0.78);
    box-shadow: 0 0 0 3px rgba(255, 124, 164, 0.16);
}

.v2-field-error,
.v2-field-help {
    min-height: 14px;
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.35;
}

.v2-field-error {
    color: #ffc2d3;
    font-weight: 800;
}

.v2-field-help {
    color: rgba(247, 243, 234, 0.58);
}

.v2-contact-form .v2-button {
    width: 100%;
    cursor: pointer;
}

.v2-contact-form .v2-button[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.v2-form-status {
    min-height: 16px;
    margin: 0;
    color: var(--c);
    font-size: 0.84rem;
    font-weight: 800;
}

.v2-form-status:empty {
    display: none;
}

.v2-form-status.is-error {
    color: #ffc2d3;
}

.v2-form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.v2-contact-form .v2-form-note {
    display: none;
}

.v2-form-note a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.v2-faq-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
}

.v2-faq-strip details {
    padding: 18px;
}

.v2-faq-strip details + details {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.v2-faq-strip summary {
    cursor: pointer;
    color: #fff;
    font-weight: 900;
}

.v2-faq-strip p {
    margin: 12px 0 0;
    color: var(--muted);
}

.v2-lock-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 30% 20%, rgba(86, 200, 255, 0.2), transparent 34%),
        radial-gradient(circle at 72% 76%, rgba(155, 108, 255, 0.18), transparent 38%),
        #030306;
}

.v2-lock {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 48px);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.v2-lock-field {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.v2-lock-panel {
    position: relative;
    width: min(100%, 500px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 36px;
    background: rgba(4, 7, 13, 0.74);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
    backdrop-filter: none;
}

.v2-lock-panel h1 {
    margin: 0 0 12px;
    font-size: 2.1rem;
    line-height: 1.02;
}

.v2-lock-panel p {
    margin: 0;
    color: var(--muted);
}

.v2-lock-error {
    margin-top: 16px !important;
    color: #ffc2d3 !important;
}

.v2-lock-form {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.v2-lock-form label {
    color: var(--muted);
}

.v2-lock-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.v2-lock-row input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    padding: 0 14px;
}

.v2-lock-row button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--a), var(--c));
    color: #020306;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 1180px) {
    .v2-scene-readout {
        display: none;
    }

    .v2-scene-inner {
        gap: 32px;
    }

    .v2-copy h1 {
        font-size: clamp(3.5rem, 10vw, 6.4rem);
    }

    .v2-copy h2,
    .v2-section-heading h2,
    .v2-final-content h2 {
        font-size: clamp(2.7rem, 7.4vw, 4.8rem);
    }

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

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

    .v2-contact-layout {
        grid-template-columns: 1fr;
    }

    .v2-faq-strip {
        grid-template-columns: 1fr;
    }

    .v2-faq-strip details + details {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }
}

@media (pointer: coarse), (max-width: 820px) {
    :root {
        --scene-feather: 14svh;
        --scene-entry-pad: 8svh;
    }

    html {
        scroll-padding-top: 90px;
    }

    .v2-nav {
        top: 12px;
        width: calc(100% - 24px);
        min-height: 64px;
        padding: 10px;
        background: rgba(3, 5, 10, 0.86);
    }

    .v2-brand span:last-child {
        max-width: 220px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .v2-menu-button {
        display: grid;
        margin-left: auto;
    }

    .v2-nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(3, 5, 10, 0.96);
        backdrop-filter: none;
    }

    .v2-nav.is-open .v2-nav-links {
        display: grid;
    }

    .v2-nav-links a {
        justify-content: center;
        background: rgba(255, 255, 255, 0.07);
    }

    .v2-timeline {
        display: none;
    }

    .v2-scene {
        min-height: 108svh;
        padding: 104px 22px 98px;
    }

    .v2-scene-inner,
    .v2-section-heading,
    .v2-project-stream,
    .v2-stat-grid,
    .v2-contact-layout,
    .v2-final-content {
        width: min(100%, 760px);
        min-height: 54svh;
        transform: none;
    }

    .v2-copy {
        transform: none;
    }

    .v2-copy h1 {
        font-size: clamp(3rem, 11vw, 5rem);
    }

    .v2-copy h2,
    .v2-section-heading h2,
    .v2-final-content h2 {
        font-size: clamp(2.25rem, 8.5vw, 3.9rem);
    }

    .v2-chapter .v2-scene-inner,
    .v2-showcase .v2-section-heading,
    .v2-showcase .v2-project-stream,
    .v2-contact-layout {
        min-height: auto;
    }

    .v2-scene-caption {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 760px);
        margin: 28px auto 0;
        text-align: left;
    }

    .v2-project-stream {
        grid-template-columns: 1fr;
    }

    .v2-need-grid,
    .v2-stat-grid,
    .v2-method-grid {
        grid-template-columns: 1fr;
    }

    .v2-stat-grid,
    .v2-contact-layout {
        min-height: auto;
    }

    .v2-need-grid {
        max-width: none;
    }

    .v2-project {
        min-height: 230px;
        transform: none;
    }

    .v2-contact-layout {
        gap: 22px;
        padding: 104px 0 110px;
    }

    .v2-scene.v2-showcase {
        padding-bottom: 150px;
    }

    .v2-showcase .v2-section-heading {
        margin-bottom: 22px;
        min-height: auto;
    }

    .v2-showcase .v2-section-heading h2 {
        font-size: clamp(2.45rem, 10vw, 4.1rem);
    }

    .v2-showcase .v2-section-heading > p:not(.v2-eyebrow) {
        font-size: 1.03rem;
    }

    .v2-showcase .v2-stat-grid {
        margin: 0 auto 22px;
    }

    .v2-showcase .v2-project-stream {
        min-height: auto;
    }

    .v2-contact-copy .v2-method-grid {
        display: none;
    }

    .v2-contact-copy h2 {
        font-size: clamp(2.25rem, 8.5vw, 3.8rem);
    }

    .v2-contact-form {
        padding: 18px;
    }

    .v2-showcase {
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "stats"
            "cta";
        align-content: center;
        padding: 104px 18px 34px;
    }

    .v2-showcase .v2-section-heading,
    .v2-showcase .v2-stat-grid,
    .v2-showcase .v2-section-cta {
        width: 100%;
    }

    .v2-showcase .v2-section-heading h2 {
        font-size: clamp(2.65rem, 11vw, 4rem);
    }

    .v2-showcase .v2-project-stream {
        display: none;
    }

    .v2-showcase .v2-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin: 0;
    }

    .v2-showcase .v2-section-cta .v2-button {
        width: 100%;
    }

    .v2-scene.v2-final {
        align-items: start;
        padding: 92px 18px 16px;
    }

    .v2-final .v2-contact-layout {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }

    .v2-contact-copy > p:not(.v2-eyebrow),
    .v2-trust-strip,
    .v2-contact-list {
        display: none;
    }

    .v2-contact-copy h2 {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

    .v2-contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 14px;
    }

    .v2-contact-form .v2-field {
        gap: 4px;
    }

    .v2-contact-form .v2-field label {
        font-size: 0.78rem;
    }

    .v2-contact-form .v2-field input,
    .v2-contact-form .v2-field select,
    .v2-contact-form .v2-field textarea {
        min-height: 38px;
        padding-right: 9px;
        padding-left: 9px;
    }

    .v2-contact-form .v2-field textarea {
        min-height: 64px;
    }

    .v2-contact-form .v2-field-help {
        display: none;
    }

    .v2-contact-form .v2-field-error {
        min-height: 0;
        font-size: 0.7rem;
    }

    .v2-contact-form .v2-field-error:empty {
        display: none;
    }

    .v2-contact-form .v2-button {
        min-height: 44px;
    }
}

@media (max-width: 520px) {
    :root {
        --scene-feather: 12svh;
        --scene-entry-pad: 6svh;
    }

    .v2-brand span:last-child {
        max-width: 170px;
    }

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

    .v2-scene {
        padding: 102px 18px 94px;
    }

    .v2-copy h1 {
        font-size: clamp(2.6rem, 12vw, 3.7rem);
    }

    .v2-copy h2,
    .v2-section-heading h2,
    .v2-final-content h2 {
        font-size: clamp(2.05rem, 9.5vw, 3rem);
    }

    .v2-copy p:not(.v2-eyebrow),
    .v2-final-content > p:not(.v2-eyebrow) {
        font-size: 1.03rem;
    }

    .v2-actions {
        width: 100%;
        flex-direction: column;
    }

    .v2-button {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .v2-need {
        min-height: 160px;
    }

    .v2-stat {
        min-height: 82px;
    }

    .v2-contact-layout {
        width: min(100%, calc(100% - 36px));
    }

    .v2-contact-copy > p:not(.v2-eyebrow),
    .v2-section-heading > p:not(.v2-eyebrow) {
        font-size: 1rem;
    }

    .v2-lock-row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

}
