:root {
    --bg: #050608;
    --bg-soft: #0a0d12;
    --bg-elevated: rgba(12, 15, 21, 0.8);
    --panel: rgba(14, 18, 26, 0.78);
    --panel-strong: rgba(12, 15, 22, 0.94);
    --text: #f6f3eb;
    --text-muted: #a6afbc;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 210, 31, 0.28);
    --accent: #ffd21f;
    --accent-strong: #ffe15b;
    --accent-soft: rgba(255, 210, 31, 0.14);
    --secondary: #2450ff;
    --secondary-soft: rgba(36, 80, 255, 0.16);
    --radius-sm: 1rem;
    --radius-md: 1.4rem;
    --radius-lg: 2rem;
    --radius-xl: 2.75rem;
    --arc-card-width: clamp(13.5rem, 20vw, 18.5rem);
    --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.28);
    --shadow-strong: 0 42px 120px rgba(0, 0, 0, 0.45);
    --container: min(1400px, calc(100vw - 2rem));
    --section-space: clamp(5rem, 9vw, 9rem);
    --nav-height: 5.75rem;
    --nav-collapsed-size: 4.6rem;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --page-background:
        radial-gradient(circle at 12% 18%, rgba(36, 80, 255, 0.2), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(255, 210, 31, 0.08), transparent 24%),
        linear-gradient(180deg, #050608 0%, #080b11 48%, #050608 100%);
}

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

html {
    scroll-behavior: smooth;
    background: var(--page-background);
    background-color: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--page-background);
    background-color: var(--bg);
    line-height: 1.6;
}

img,
video {
    display: block;
    width: 100%;
    height: auto;
}

img {
    object-fit: cover;
}

video {
    object-fit: cover;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

main,
section,
footer {
    position: relative;
}

section[id] {
    scroll-margin-top: 7rem;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 3px 3px, 3px 3px;
    mix-blend-mode: soft-light;
}

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

.section-shell {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-space) 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.74rem;
    font-weight: 800;
}

.section-label::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.7rem, 5vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.section-text,
.section-note {
    max-width: 42rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.section-note {
    margin-top: 1.6rem;
    color: rgba(246, 243, 235, 0.76);
}

.section-intro {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-items: center;
    text-align: center;
}

.section-intro--left {
    justify-items: start;
    text-align: left;
    margin-bottom: 2rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.7rem;
    padding: 0 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition:
        transform 0.35s var(--ease-premium),
        border-color 0.35s var(--ease-premium),
        background-color 0.35s var(--ease-premium),
        color 0.35s var(--ease-premium),
        box-shadow 0.35s var(--ease-premium);
    will-change: transform;
}

.button:active {
    transform: scale(0.98);
}

.button--primary {
    color: #090b0f;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    box-shadow: 0 20px 48px rgba(255, 210, 31, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 28px 64px rgba(255, 210, 31, 0.26);
}

.button--ghost {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--accent);
    border-color: rgba(255, 210, 31, 0.35);
    background: rgba(255, 210, 31, 0.08);
}

.button--wide {
    width: 100%;
}

.site-header {
    position: relative;
    z-index: 30;
}

.site-nav {
    position: fixed;
    inset: calc(env(safe-area-inset-top, 0px) + 1rem) 0 auto;
    z-index: 40;
}

.site-nav__shell {
    width: var(--container);
    margin: 0 auto;
}

.site-nav__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    width: 100%;
    min-height: var(--nav-height);
    padding: 1rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 18, 26, 0.72), rgba(8, 11, 17, 0.86));
    backdrop-filter: blur(18px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 60px rgba(0, 0, 0, 0.28);
    overflow: clip;
    transition:
        min-height 0.45s var(--ease-premium),
        padding 0.45s var(--ease-premium),
        border-color 0.45s var(--ease-premium),
        transform 0.45s var(--ease-premium),
        width 0.45s var(--ease-premium),
        gap 0.45s var(--ease-premium),
        background 0.45s var(--ease-premium);
}

.site-nav__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1.5rem;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
    overflow: clip;
    transition:
        max-width 0.42s var(--ease-premium),
        opacity 0.3s var(--ease-premium),
        transform 0.35s var(--ease-premium),
        gap 0.35s var(--ease-premium);
}

.site-nav[data-nav-state="collapsed"] .site-nav__inner {
    width: var(--nav-collapsed-size);
    min-height: var(--nav-collapsed-size);
    padding: 0.55rem;
    gap: 0;
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(14, 18, 26, 0.94), rgba(8, 11, 17, 0.98));
    transform: translateY(-0.15rem);
}

.site-nav[data-nav-state="collapsed"] .site-nav__panel {
    max-width: 0;
    opacity: 0;
    transform: translateX(1rem);
    gap: 0;
    pointer-events: none;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    flex: 0 0 auto;
    transition: gap 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
}

.site-logo__mark {
    display: grid;
    place-items: center;
    width: 2.85rem;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #080b10;
    font-size: 0.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #fff0a0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition:
        width 0.35s var(--ease-premium),
        font-size 0.35s var(--ease-premium),
        box-shadow 0.35s var(--ease-premium),
        transform 0.35s var(--ease-premium);
}

.site-logo__text {
    display: grid;
    line-height: 1.1;
    max-width: 16rem;
    overflow: hidden;
    white-space: nowrap;
    transition:
        max-width 0.35s var(--ease-premium),
        opacity 0.25s var(--ease-premium),
        transform 0.35s var(--ease-premium);
}

.site-logo__text strong {
    font-size: 0.96rem;
    letter-spacing: 0.04em;
}

.site-logo__text span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.site-nav[data-nav-state="collapsed"] .site-logo {
    gap: 0;
}

.site-nav[data-nav-state="collapsed"] .site-logo__mark {
    width: 3.45rem;
    font-size: 1rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 14px 32px rgba(255, 210, 31, 0.16);
}

.site-nav[data-nav-state="collapsed"] .site-logo__text {
    max-width: 0;
    opacity: 0;
    transform: translateX(-0.45rem);
}

.site-menu,
.site-actions {
    display: inline-flex;
    align-items: center;
    gap: 1.3rem;
}

.site-menu {
    justify-content: center;
    justify-self: center;
    min-width: 0;
}

.site-actions {
    justify-self: end;
    white-space: nowrap;
}

.site-menu a,
.site-actions a,
.mobile-menu a,
.site-footer a {
    position: relative;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-premium);
}

.site-menu a::after,
.site-actions a::after,
.mobile-menu a::after,
.site-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: transform 0.3s var(--ease-premium);
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-actions a:hover,
.site-actions a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--accent);
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after,
.site-actions a:hover::after,
.site-actions a:focus-visible::after,
.mobile-menu a:hover::after,
.mobile-menu a:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    appearance: none;
    position: relative;
    width: 2.72rem;
    height: 2.72rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(28, 33, 47, 0.62), rgba(16, 20, 30, 0.82));
    color: rgba(246, 243, 235, 0.92);
    align-items: center;
    justify-content: center;
    margin-left: auto;
    grid-column: 3;
    justify-self: end;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 8px 22px rgba(0, 0, 0, 0.16);
    transition:
        opacity 0.3s var(--ease-premium),
        transform 0.3s var(--ease-premium),
        border-color 0.3s var(--ease-premium),
        background 0.3s var(--ease-premium),
        box-shadow 0.3s var(--ease-premium);
}

.menu-toggle__line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.92rem;
    height: 0.11rem;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
        transform 0.32s var(--ease-premium),
        opacity 0.24s var(--ease-premium),
        width 0.24s var(--ease-premium);
}

.menu-toggle__line:nth-child(1) {
    transform: translate(-50%, calc(-50% - 0.18rem));
}

.menu-toggle__line:nth-child(2) {
    transform: translate(-50%, calc(-50% + 0.18rem));
}

.nav-open .menu-toggle__line:nth-child(1) {
    width: 1rem;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-open .menu-toggle__line:nth-child(2) {
    width: 1rem;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-open .menu-toggle {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(32, 38, 54, 0.74), rgba(18, 22, 32, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 26px rgba(0, 0, 0, 0.18);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding:
        calc(env(safe-area-inset-top, 0px) + 1rem + var(--nav-height) + 0.4rem)
        1rem
        max(1rem, env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    opacity: 0;
    background: rgba(5, 6, 8, 0);
    backdrop-filter: blur(0);
    transition:
        opacity 0.35s var(--ease-premium),
        background-color 0.35s var(--ease-premium),
        backdrop-filter 0.35s var(--ease-premium);
}

.nav-open .mobile-menu {
    pointer-events: auto;
    opacity: 1;
    background: rgba(5, 6, 8, 0.22);
    backdrop-filter: blur(8px);
}

.mobile-menu__panel {
    display: grid;
    gap: 1rem;
    width: min(100%, 32rem);
    padding: 1.3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 18, 26, 0.96), rgba(8, 11, 17, 0.98));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    transform: translateY(-0.9rem) scale(0.985);
    transition: transform 0.35s var(--ease-premium);
}

.nav-open .mobile-menu__panel {
    transform: translateY(0) scale(1);
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 8rem 0 3rem;
    display: grid;
    align-items: end;
    overflow: clip;
}

.hero__media,
.hero__video,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__video {
    height: 100%;
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.2) 0%, rgba(5, 6, 8, 0.62) 48%, rgba(5, 6, 8, 0.9) 100%),
        linear-gradient(180deg, rgba(5, 6, 8, 0.08) 0%, rgba(5, 6, 8, 0.88) 100%);
}

.hero__shell {
    display: grid;
    gap: 1.5rem;
    align-self: stretch;
    padding-top: clamp(6rem, 10vw, 9rem);
    padding-bottom: 1rem;
}

.hero__content {
    width: min(42rem, 100%);
    margin-left: auto;
    text-align: right;
    display: grid;
    gap: 1.2rem;
    padding-bottom: clamp(1rem, 4vw, 3rem);
}

.hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(4.4rem, 8vw, 8.8rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.hero__lead {
    margin: 0 0 0 auto;
    max-width: 36rem;
    color: rgba(246, 243, 235, 0.8);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.hero__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.6rem;
}

.story-arc {
    overflow: clip;
}

.arc-layout {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: clamp(58rem, 100vh, 78rem);
    display: grid;
    place-items: center;
    isolation: isolate;
}

.arc-copy {
    position: relative;
    z-index: 60;
    width: min(34rem, calc(100vw - 8rem));
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    justify-items: center;
    text-align: center;
}

.arc-copy .section-text,
.arc-copy .section-note {
    margin: 0 auto;
}

.arc-column {
    position: absolute;
    inset: 0 auto 0 0;
    width: 50vw;
    pointer-events: none;
}

.arc-column--left {
    left: 0;
}

.arc-column--right {
    inset: 0 0 0 auto;
}

.arc-card {
    position: absolute;
    top: 0;
    width: var(--arc-card-width);
    aspect-ratio: 1.26;
    margin: 0;
    border-radius: 1.9rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 26px 84px rgba(0, 0, 0, 0.32);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.arc-column--left .arc-card {
    left: calc(var(--arc-card-width) * -0.54);
    transform-origin: 88% 50%;
}

.arc-column--right .arc-card {
    right: calc(var(--arc-card-width) * -0.54);
    transform-origin: 12% 50%;
}

.arc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 6, 8, 0.02), rgba(5, 6, 8, 0.16) 58%, rgba(5, 6, 8, 0.42) 100%),
        linear-gradient(135deg, rgba(36, 80, 255, 0.12), transparent 46%, rgba(255, 210, 31, 0.08));
}

.arc-card img {
    height: 100%;
}

.arc-card figcaption {
    display: none;
}

.video-stack {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
}

.video-stack__pin {
    position: relative;
}

.stack-intro {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: clamp(1rem, 2.8vw, 1.75rem);
}

.video-stack__shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 100dvh;
    display: grid;
    align-items: stretch;
}

.stack-intro h2 {
    margin: 0;
    width: min(32rem, 100%);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.stack-frame {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
}

.stack-card {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: #06080c;
    box-shadow: none;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: clip-path;
}

.stack-card:not(.stack-card--base) {
    clip-path: inset(100% 0 0 0);
}

.stack-card__video,
.stack-card__overlay {
    position: absolute;
    inset: 0;
    height: 100%;
}

.stack-card__overlay {
    background:
        linear-gradient(180deg, rgba(5, 6, 8, 0.54) 0%, rgba(5, 6, 8, 0.12) 24%, rgba(5, 6, 8, 0.2) 54%, rgba(5, 6, 8, 0.9) 100%),
        linear-gradient(90deg, rgba(36, 80, 255, 0.2), transparent 35%, transparent 65%, rgba(255, 210, 31, 0.08));
}

.trailer-card__meta span {
    margin: 0;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
}

.trailer-card__meta strong {
    margin: 0;
    font-size: clamp(1.55rem, 2.4vw, 2.45rem);
    line-height: 1.1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.process-slider {
    overflow: clip;
}

.process-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 20rem;
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(14, 18, 26, 0.8), rgba(8, 11, 17, 0.92)),
        radial-gradient(circle at top right, rgba(36, 80, 255, 0.12), transparent 36%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 70px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.35s var(--ease-premium),
        border-color 0.35s var(--ease-premium),
        box-shadow 0.35s var(--ease-premium);
    overflow: hidden;
}

.process-card:hover,
.process-card:focus-within {
    transform: translateY(-0.3rem);
    border-color: rgba(255, 210, 31, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 28px 90px rgba(0, 0, 0, 0.26);
}

.process-card__emoji {
    display: grid;
    place-items: center;
    min-height: 5.5rem;
}

.process-card__emoji span {
    display: inline-block;
    font-size: clamp(3.8rem, 6vw, 5.2rem);
    line-height: 1;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.28));
}

.process-card h3 {
    margin: 0;
    font-size: clamp(1.6rem, 2.1vw, 2.1rem);
    line-height: 1.05;
}

.process-card__text {
    margin: 0;
    max-width: 18rem;
    color: var(--text-muted);
    opacity: 0;
    max-height: 0;
    transform: translateY(0.75rem);
    transition:
        opacity 0.35s var(--ease-premium),
        transform 0.35s var(--ease-premium),
        max-height 0.35s var(--ease-premium),
        margin-top 0.35s var(--ease-premium);
}

.process-card:hover .process-card__text,
.process-card:focus-within .process-card__text {
    opacity: 1;
    max-height: 10rem;
    margin-top: 0.35rem;
    transform: translateY(0);
}

.process-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.process-dot {
    position: relative;
    width: 2.4rem;
    height: 0.32rem;
    padding: 0;
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
    cursor: pointer;
}

.process-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 210, 31, 0.96), rgba(255, 239, 160, 1));
    transform: scaleX(0);
    transform-origin: left center;
}

.process-dot.is-active {
    background: rgba(255, 255, 255, 0.2);
}

.process-dot.is-active::after {
    animation: processDotFill 5.5s linear forwards;
}

@keyframes processDotFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 1.4rem;
    align-items: start;
}

.contact-visual,
.contact-form-wrap,
.trailer-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(14, 18, 26, 0.78), rgba(8, 11, 17, 0.92)),
        radial-gradient(circle at top right, rgba(36, 80, 255, 0.12), transparent 38%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 24px 90px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.contact-visual {
    position: sticky;
    top: 8rem;
}

.contact-visual img {
    aspect-ratio: 0.78;
    height: 100%;
}

.contact-form-wrap {
    padding: clamp(1.3rem, 2.4vw, 2rem);
}

.form-alert {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    border: 1px solid transparent;
}

.form-alert strong {
    font-size: 0.95rem;
}

.form-alert span {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.form-alert--success {
    border-color: rgba(255, 210, 31, 0.2);
    background: rgba(255, 210, 31, 0.08);
}

.form-alert--error {
    border-color: rgba(255, 104, 104, 0.22);
    background: rgba(255, 104, 104, 0.08);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.55rem;
    min-width: 0;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.95rem;
    font-weight: 700;
}

.form-field label span {
    color: var(--text-muted);
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0.95rem 1rem;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    transition:
        border-color 0.3s var(--ease-premium),
        box-shadow 0.3s var(--ease-premium),
        background-color 0.3s var(--ease-premium);
}

.form-field input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 3.5rem;
}

.form-field input[type="date"]::-webkit-date-and-time-value {
    min-height: 1.35em;
    text-align: left;
}

.form-field input[type="date"]::-webkit-datetime-edit,
.form-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.88;
    cursor: pointer;
    filter: invert(0.96);
}

.form-field textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(255, 210, 31, 0.46);
    box-shadow: 0 0 0 3px rgba(255, 210, 31, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea,
.checkbox.is-invalid {
    border-color: rgba(255, 145, 145, 0.48);
}

.form-field small,
.checkbox-error,
.form-helper {
    color: #ffb7b7;
    font-size: 0.82rem;
}

.form-helper {
    color: var(--text-muted);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1rem 0;
    border-radius: 1.2rem;
}

.checkbox input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    accent-color: var(--accent);
}

.checkbox span {
    color: var(--text-muted);
}

.form-footer {
    display: grid;
    gap: 1rem;
}

.trailer-layout {
    display: grid;
    gap: 1.4rem;
    justify-items: center;
    text-align: center;
}

.trailer-copy {
    display: grid;
    justify-items: center;
    text-align: center;
}

.trailer-card {
    position: relative;
    width: min(100%, 1100px);
}

.trailer-card__video {
    aspect-ratio: 16 / 9;
    background: #040507;
}

.site-footer {
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(5, 6, 8, 0), rgba(5, 6, 8, 0.88));
}

.site-footer__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    gap: 2rem;
    align-items: start;
}

.site-logo--footer {
    margin-bottom: 1rem;
}

.site-footer__brand p,
.site-footer__bottom p {
    margin: 0;
    color: var(--text-muted);
    max-width: 28rem;
}

.site-footer__nav,
.site-footer__contact {
    display: grid;
    gap: 0.7rem;
}

.site-footer__bottom {
    width: var(--container);
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-reveal] {
    will-change: transform, opacity;
}

@media (max-width: 1080px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout,
    .trailer-layout,
    .site-footer__shell {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        position: relative;
        top: auto;
    }
}

@media (max-width: 920px) {
    :root {
        --container: min(100vw - 1.2rem, 1400px);
        --nav-height: 5.1rem;
        --arc-card-width: clamp(9rem, 25vw, 11.5rem);
    }

    .site-nav__shell {
        width: 100%;
        padding-inline: 0.6rem;
    }

    .site-nav__inner {
        width: 100%;
        max-width: var(--container);
        margin-inline: auto;
        justify-content: center;
        padding-inline: 1rem;
        transition:
            transform 0.44s var(--ease-premium),
            min-height 0.38s var(--ease-premium) 0.2s,
            padding 0.38s var(--ease-premium) 0.2s,
            border-color 0.38s var(--ease-premium) 0.2s,
            width 0.38s var(--ease-premium) 0.2s,
            gap 0.38s var(--ease-premium) 0.2s,
            background 0.38s var(--ease-premium) 0.2s;
    }

    .site-nav__panel {
        position: absolute;
        inset: 0;
        display: block;
        flex: none;
        max-width: none;
        overflow: visible;
        pointer-events: none;
        transition:
            max-width 0.26s var(--ease-premium) 0.2s,
            opacity 0.18s var(--ease-premium) 0.2s,
            transform 0.3s var(--ease-premium) 0.2s,
            gap 0.3s var(--ease-premium) 0.2s;
    }

    .site-nav[data-nav-state="collapsed"] .site-nav__inner {
        transform: translate3d(calc((var(--container) - var(--nav-collapsed-size)) / -2), -0.15rem, 0);
        transition:
            min-height 0.34s var(--ease-premium),
            padding 0.34s var(--ease-premium),
            border-color 0.34s var(--ease-premium),
            width 0.34s var(--ease-premium),
            gap 0.34s var(--ease-premium),
            background 0.34s var(--ease-premium),
            transform 0.44s var(--ease-premium) 0.22s;
    }

    .site-nav[data-nav-state="collapsed"] .site-nav__panel {
        transition:
            max-width 0.2s var(--ease-premium),
            opacity 0.14s var(--ease-premium),
            transform 0.2s var(--ease-premium),
            gap 0.2s var(--ease-premium);
    }

    .site-menu,
    .site-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        position: absolute;
        top: 50%;
        right: 1rem;
        margin-left: 0;
        transform: translateY(-50%);
        pointer-events: auto;
    }

    .site-logo {
        position: relative;
        z-index: 1;
        margin-inline: auto;
    }

    .site-logo__text {
        display: none;
    }

    .hero__content {
        width: min(36rem, 100%);
    }

    .arc-layout {
        min-height: clamp(44rem, 88vh, 56rem);
    }

    .arc-column {
        width: 50vw;
    }

    .arc-copy {
        width: min(24rem, calc(100vw - 5rem));
    }

    .arc-card {
        border-radius: 1.4rem;
    }

    .stack-intro {
        margin-bottom: 0.9rem;
    }

    .stack-intro h2 {
        width: min(24rem, calc(100vw - 3rem));
        font-size: clamp(1.9rem, 7vw, 3rem);
    }
}

@media (max-width: 720px) {
    :root {
        --arc-card-width: clamp(7.9rem, 28vw, 9.4rem);
    }

    html {
        scroll-behavior: auto;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: calc(env(safe-area-inset-top, 0px) + 6.25rem);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 2.4rem);
        align-items: end;
    }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(5, 6, 8, 0.32) 0%, rgba(5, 6, 8, 0.68) 46%, rgba(5, 6, 8, 0.92) 100%);
    }

    .hero__shell {
        gap: 0.95rem;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
        align-content: end;
    }

    .hero__content,
    .hero__lead {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero__content {
        gap: 0.85rem;
        width: min(100%, 32rem);
        padding-bottom: 0.25rem;
    }

    .hero .section-label {
        margin-bottom: 0.6rem;
        font-size: 0.66rem;
        letter-spacing: 0.18em;
    }

    .hero .section-label::before {
        width: 1.8rem;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 13vw, 4.35rem);
        line-height: 0.92;
        letter-spacing: -0.05em;
    }

    .hero__lead {
        max-width: 24rem;
        font-size: 0.96rem;
        line-height: 1.45;
    }

    .hero__actions {
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .hero__actions .button {
        min-height: 3rem;
        padding: 0 1.2rem;
        font-size: 0.9rem;
        border-radius: 999px;
    }

    .hero__actions .button--primary {
        box-shadow: 0 14px 34px rgba(255, 210, 31, 0.16);
    }

    .hero__actions .button--ghost {
        backdrop-filter: blur(10px);
    }

    .arc-layout {
        min-height: clamp(39rem, 82vh, 50rem);
    }

    .arc-column {
        width: 50vw;
    }

    .arc-copy {
        width: min(18rem, calc(100vw - 3.8rem));
        gap: 0.75rem;
        padding-inline: 0.45rem;
    }

    .arc-copy .section-text {
        font-size: 0.95rem;
    }

    .arc-copy .section-note {
        font-size: 0.9rem;
    }

    .process-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .process-slider {
        overflow: hidden;
        touch-action: pan-y;
    }

    .process-grid {
        display: flex;
        gap: 0;
        align-items: stretch;
        will-change: transform;
    }

    .process-card {
        flex: 0 0 100%;
        min-height: 18.5rem;
        padding: 1.35rem 1.15rem 1.45rem;
        user-select: none;
        -webkit-user-select: none;
    }

    .process-card h3 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .process-card__text {
        opacity: 1;
        max-height: none;
        margin-top: 0.35rem;
        transform: none;
    }

    .process-dots {
        display: flex;
    }

    .contact-form-wrap,
    .trailer-card {
        border-radius: 1.6rem;
    }

    .contact-visual img {
        aspect-ratio: 0.9;
    }
}

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

    [data-reveal],
    .arc-card,
    .process-card,
    .stack-card {
        transform: none !important;
        opacity: 1 !important;
    }

    .process-dot.is-active::after {
        animation: none !important;
        transform: scaleX(1);
    }
}
