/* ============================================================
   FONTS
   ============================================================ */

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-Variable.ttf') format('truetype');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */

:root {
    /* Layout system (see LAYOUT.md) */
    --container-width: 1748px;
    --column-width: 120px;
    --gutter: 28px;
    --outer-margin: 86px;

    /* Palette */
    --color-green: #D6FF00;
    --color-green-secondary: #7B9300;
    --color-bright: #FFFFFF;
    --color-muted: #C0C0BF;
    --color-ink: #0A0A0A;
    --color-page: #F4F4F3;
    --color-section-light: #F5F5F5;
    --color-text-dark: #404040;
    --color-text-soft: #8A8A89;

    /* Type */
    --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --font-weight-title: 500;
}

/* ============================================================
   BASE
   ============================================================ */

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

html {
    -webkit-text-size-adjust: 100%;
}

::selection {
    background: rgba(214, 255, 0, 0.15);
    color: var(--color-green-secondary);
}

::-moz-selection {
    background: rgba(214, 255, 0, 0.15);
    color: var(--color-green-secondary);
}

body {
    margin: 0;
    background: var(--color-page);
    color: var(--color-muted);
    font-family: var(--font-sans);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Lenis (official recommended CSS) */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
    overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
    overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.lenis.lenis-autoToggle {
    transition-property: overflow;
    transition-duration: 1ms;
    transition-behavior: allow-discrete;
}

@media (min-width: 1024px) {
    html {
        scrollbar-width: none;
    }

    html::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .page-scrollbar {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 14px;
        z-index: 120;
        pointer-events: none;
        opacity: 0;
        transition: opacity 220ms var(--ease-out-expo);
    }

    .page-scrollbar.is-visible {
        opacity: 1;
    }

    html.is-splash-locked .page-scrollbar {
        opacity: 0;
        pointer-events: none;
    }

    .page-scrollbar__thumb {
        position: absolute;
        top: 0;
        right: 4px;
        width: 4px;
        min-height: 40px;
        border-radius: 999px;
        background: var(--color-green);
        pointer-events: auto;
        cursor: grab;
        touch-action: none;
        transition: background-color 200ms var(--ease-out-expo), width 200ms var(--ease-out-expo), right 200ms var(--ease-out-expo);
    }

    .page-scrollbar__thumb:hover,
    .page-scrollbar.is-dragging .page-scrollbar__thumb {
        width: 6px;
        right: 3px;
        background: #E3FF3D;
    }

    .page-scrollbar.is-dragging .page-scrollbar__thumb {
        cursor: grabbing;
    }
}

@media (max-width: 1023px) {
    .page-scrollbar {
        display: none;
    }
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.is-bright {
    color: var(--color-bright);
}

.section--light {
    background: var(--color-section-light);
    color: var(--color-text-dark);
}

h1, h2, h3 {
    font-weight: var(--font-weight-title);
}

html.is-splash-locked,
html.is-splash-locked body {
    overflow: hidden;
    height: 100%;
}

/* Keeps visual scroll position while locking (page transitions) */
body.is-splash-scroll-lock {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

/* ============================================================
   SPLASH
   ============================================================ */

.splash {
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow: hidden;
    pointer-events: none;
}

.splash:not([hidden]) {
    pointer-events: auto;
}

.splash__mask {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
    transform: translate3d(0, 0, 0);
    transition: transform 700ms cubic-bezier(0.45, 0, 0.55, 1);
    will-change: transform;
}

.splash.is-out .splash__mask {
    transform: translate3d(0, 100%, 0);
}

/* Page-to-page: black panel drops in from the top */
.splash.is-transition .splash__mask {
    transition: transform 420ms ease-in-out;
}

.splash.is-transition:not(.is-in):not(.is-out) .splash__mask {
    transform: translate3d(0, -100%, 0);
}

.splash.is-transition.is-in:not(.is-out) .splash__mask {
    transform: translate3d(0, 0, 0);
}

.splash.is-transition.is-out .splash__mask {
    transform: translate3d(0, 100%, 0);
    transition: transform 480ms ease-in-out;
}

.splash.is-transition .splash__stage {
    transition: transform 480ms ease-in-out;
}

.splash.is-cover-only .splash__logo {
    opacity: 0;
    visibility: hidden;
}

.splash.is-success .splash__logo {
    display: none;
}

.splash__success {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(86vw, 420px);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    pointer-events: none;
}

.splash__success[hidden] {
    display: none;
}

/* Transitions.dev — Success check (project green) */
:root {
    --check-opacity-dur: 500ms;
    --check-rotate-dur: 500ms;
    --check-rotate-from: 80deg;
    --check-bob-dur: 500ms;
    --check-y-amount: 40px;
    --check-blur-dur: 500ms;
    --check-blur-from: 10px;
    --check-path-dur: 500ms;
    --check-path-delay: 80ms;
    --check-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --check-ease-opacity: cubic-bezier(0.22, 1, 0.36, 1);
    --check-ease-rotate: cubic-bezier(0.22, 1, 0.36, 1);
    --check-ease-bob: cubic-bezier(0.34, 1.35, 0.64, 1);
    --check-ease-path: cubic-bezier(0.22, 1, 0.36, 1);
}

.t-success-check {
    display: inline-block;
    transform-origin: center;
    opacity: 0;
    will-change: transform, opacity, filter;
}

.t-success-check svg {
    display: block;
    overflow: visible;
}

.t-success-check svg path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
}

.t-success-check[data-state="in"] {
    animation:
        t-check-fade var(--check-opacity-dur) var(--check-ease-opacity) forwards,
        t-check-rotate var(--check-rotate-dur) var(--check-ease-rotate) forwards,
        t-check-blur var(--check-blur-dur) var(--check-ease-out) forwards,
        t-check-bob var(--check-bob-dur) var(--check-ease-bob) forwards;
}

.t-success-check[data-state="in"] svg path {
    animation: t-check-draw var(--check-path-dur) var(--check-ease-path) var(--check-path-delay, 0ms) forwards;
}

@keyframes t-check-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes t-check-rotate {
    from { transform: rotate(var(--check-rotate-from)); }
    to { transform: rotate(0deg); }
}

@keyframes t-check-blur {
    from { filter: blur(var(--check-blur-from)); }
    to { filter: blur(0); }
}

@keyframes t-check-bob {
    from { translate: 0 var(--check-y-amount); }
    to { translate: 0 0; }
}

@keyframes t-check-draw {
    to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .t-success-check {
        animation: none !important;
        opacity: 1;
    }

    .t-success-check svg path {
        animation: none !important;
        stroke-dashoffset: 0 !important;
    }
}

.splash__success-check {
    width: clamp(56px, 12vw, 72px);
    height: clamp(56px, 12vw, 72px);
    color: var(--color-green);
}

.splash__success-check svg {
    width: 100%;
    height: 100%;
}

.splash__success-title {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-green);
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 480ms var(--ease-out-expo) 280ms,
        transform 640ms var(--ease-out-expo) 280ms;
}

.splash__success-text {
    margin: 0;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: clamp(12px, 2.4vw, 14px);
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: var(--color-green);
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 480ms var(--ease-out-expo) 360ms,
        transform 640ms var(--ease-out-expo) 360ms;
}

.splash.is-success.is-in:not(.is-out) .splash__success-title,
.splash.is-success.is-in:not(.is-out) .splash__success-text {
    opacity: 1;
    transform: translateY(0);
}

.splash__stage {
    position: absolute;
    inset: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 700ms cubic-bezier(0.45, 0, 0.55, 1);
    will-change: transform;
}

.splash.is-out .splash__stage {
    transform: translate3d(0, -100%, 0);
}

.splash__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(72vw, 420px);
    aspect-ratio: 1920 / 1080;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.splash__logo object {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .splash,
    .splash__mask,
    .splash__stage {
        transition: none;
    }
}

/* ============================================================
   REVEAL (viewport)
   ============================================================ */

html.js-reveal:not(.is-reveal-ready) .hero-content,
html.js-reveal:not(.is-reveal-ready) .projects-inner,
html.js-reveal:not(.is-reveal-ready) .services-inner,
html.js-reveal:not(.is-reveal-ready) .why-inner,
html.js-reveal:not(.is-reveal-ready) .cta-banner-inner,
html.js-reveal:not(.is-reveal-ready) .pricing-inner,
html.js-reveal:not(.is-reveal-ready) .faq-inner,
html.js-reveal:not(.is-reveal-ready) .footer-top {
    opacity: 0;
}

.reveal-word {
    display: inline-block;
}

.reveal-word__inner {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 0.55em, 0);
    transition:
        opacity 740ms var(--ease-out-expo),
        transform 740ms var(--ease-out-expo);
    transition-delay: calc(var(--i, 0) * 26ms);
}

.reveal-text.is-revealed .reveal-word__inner {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-block {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 14px, 0);
    transition:
        opacity 880ms var(--ease-out-expo),
        filter 880ms var(--ease-out-expo),
        transform 880ms var(--ease-out-expo);
    transition-delay: var(--d, 0ms);
}

.reveal-block.is-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.reveal-block--soft,
.reveal-block--soft.is-revealed {
    filter: none;
}

@media (prefers-reduced-motion: reduce) {
    html.js-reveal:not(.is-reveal-ready) .hero-content,
    html.js-reveal:not(.is-reveal-ready) .projects-inner,
    html.js-reveal:not(.is-reveal-ready) .services-inner,
    html.js-reveal:not(.is-reveal-ready) .why-inner,
    html.js-reveal:not(.is-reveal-ready) .cta-banner-inner,
    html.js-reveal:not(.is-reveal-ready) .pricing-inner,
    html.js-reveal:not(.is-reveal-ready) .faq-inner,
    html.js-reveal:not(.is-reveal-ready) .footer-top,
    .reveal-word__inner,
    .reveal-block {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 92vh;
    min-height: 92svh;
    padding: 140px 0 120px;
    overflow: hidden;
    background: #000;
    border-radius: 0 0 32px 32px;
    isolation: isolate;
}

/* --- Background (Unicorn Studio scene + CSS fallback) --- */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 55% at 50% 118%, rgba(214, 255, 0, 0.95) 0%, rgba(214, 255, 0, 0.35) 26%, rgba(160, 200, 0, 0.08) 52%, transparent 72%),
        radial-gradient(70% 90% at -8% 70%, rgba(214, 255, 0, 0.4) 0%, transparent 60%),
        radial-gradient(70% 90% at 108% 70%, rgba(214, 255, 0, 0.4) 0%, transparent 60%),
        #000;
    opacity: 1;
    transition: opacity 600ms ease;
}

.hero-bg:has(canvas)::before {
    opacity: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.32);
    pointer-events: none;
}

.hero-bg-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-scene canvas {
    display: block;
}

/* --- Content shell (LAYOUT.md §3) --- */

.hero-inner {
    width: 100%;
    padding-inline: var(--outer-margin);
}

.hero-content {
    max-width: var(--container-width);
    margin-inline: auto;
}

/* --- Eyebrow --- */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.eyebrow__mark {
    width: 12px;
    height: auto;
    flex-shrink: 0;
}

.eyebrow__text {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 11px;
    line-height: 1.18;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.eyebrow__accent {
    color: var(--color-green);
}

/* --- Title --- */

.hero-title {
    margin: 44px 0 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(34px, 4.22vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.012em;
    color: var(--color-muted);
}

/* --- Subtitle --- */

.hero-subtitle {
    margin: 48px 0 0;
    font-weight: 400;
    font-size: clamp(16px, 1.5625vw, 27px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--color-muted);
}

/* --- Actions --- */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px;
}

.hero-copyright {
    margin: 0 0 0 30px;
    max-width: 120px;
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(192, 192, 191, 0.55);
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 48px var(--outer-margin) 0;
    pointer-events: none;
}

.header-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: var(--container-width);
    margin-inline: auto;
    pointer-events: auto;
}

.header-glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.22) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: opacity 1100ms var(--ease-out-expo);
}

.header-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transition:
        -webkit-backdrop-filter 1200ms var(--ease-out-expo),
        backdrop-filter 1200ms var(--ease-out-expo);
}

.header.is-floating .header-glass {
    opacity: 1;
}

.header.is-floating .header-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header.is-floating .menu-toggle,
.header.is-floating .logo {
    position: relative;
}

.header.is-floating .menu-toggle img,
.header.is-floating .logo img {
    opacity: 0;
}

.header.is-floating .menu-toggle::after,
.header.is-floating .logo::after {
    content: '';
    position: absolute;
    background: #fff;
    mix-blend-mode: difference;
    pointer-events: none;
}

.header.is-floating .menu-toggle::after {
    left: 6px;
    top: 50%;
    width: var(--menu-icon-w);
    height: var(--menu-icon-h);
    transform: translateY(-50%);
    -webkit-mask: url('assets/menu.svg') center / 100% 100% no-repeat;
    mask: url('assets/menu.svg') center / 100% 100% no-repeat;
}

.header.is-floating .logo::after {
    inset: 0;
    -webkit-mask: url('assets/logo-crdnl-1.svg') center / contain no-repeat;
    mask: url('assets/logo-crdnl-1.svg') center / contain no-repeat;
}

.header.is-floating .lang-switch {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: visible;
}

.header.is-floating .lang-switch::before {
    opacity: 1;
    inset: auto;
    left: 10px;
    top: 50%;
    width: 11px;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 0;
    background: #fff;
    mix-blend-mode: difference;
    -webkit-mask: url('assets/chevron1.svg') center / contain no-repeat;
    mask: url('assets/chevron1.svg') center / contain no-repeat;
    z-index: 1;
    transition: transform 400ms var(--ease-out-expo);
}

.header.is-floating .lang-switch__chevron {
    opacity: 0;
}

.header.is-floating .lang-switch::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #fff;
    border: 1px solid #fff;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 0;
}

.header.is-floating .lang-switch__chevron {
    position: relative;
    z-index: 1;
}

.header.is-floating .lang-switch__flag {
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.header .btn {
    isolation: isolate;
}

.header-col {
    display: flex;
    align-items: center;
    min-height: 34px;
}

.header-col--center {
    justify-content: center;
}

.header-col--right {
    justify-content: flex-end;
    gap: 40px;
}

.menu-toggle {
    --menu-icon-w: 25px;
    --menu-icon-h: calc(25px * 29 / 32);

    position: relative;
    display: flex;
    align-items: center;
    padding: 6px;
    margin-left: -6px;
    opacity: 0.95;
    transition: opacity 300ms var(--ease-out-expo);
}

.menu-toggle:hover {
    opacity: 0.6;
}

.menu-toggle img {
    display: block;
    width: var(--menu-icon-w);
    height: var(--menu-icon-h);
    object-fit: contain;
}

.logo {
    position: relative;
    display: inline-flex;
}

.logo img {
    height: 22px;
    width: auto;
}

/* --- Language switch (liquid glass) --- */

.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 32px;
    padding: 0 12px 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transition: background 400ms var(--ease-out-expo), border-color 400ms var(--ease-out-expo);
}

.lang-switch::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.lang-switch__chevron {
    width: 11px;
    height: auto;
    transition: transform 400ms var(--ease-out-expo);
}

.lang-switch:hover .lang-switch__chevron {
    transform: translateY(2px);
}

.header.is-floating .lang-switch:hover::before {
    transform: translateY(calc(-50% + 2px));
}

.header.is-floating .lang.is-open .lang-switch::before {
    transform: translateY(-50%) rotate(180deg);
}

.header.is-floating .lang.is-open .lang-switch:hover::before {
    transform: translateY(calc(-50% - 2px)) rotate(180deg);
}

.lang-switch__flag {
    display: block;
    width: 21px;
    height: 15px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.lang-switch__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang {
    position: relative;
    z-index: 6;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 132px;
    margin: 0;
    padding: 6px;
    list-style: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 12px 32px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
        opacity 400ms var(--ease-out-expo),
        transform 400ms var(--ease-out-expo),
        visibility 400ms var(--ease-out-expo);
}

.lang-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
}

.lang.is-open .lang-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang.is-open .lang-switch__chevron {
    transform: rotate(180deg);
}

.lang-menu__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--color-bright);
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 300ms var(--ease-out-expo);
}

.lang-menu__item:hover,
.lang-menu__item.is-active {
    background: rgba(255, 255, 255, 0.1);
}

.lang-menu__code {
    white-space: nowrap;
}

/* ============================================================
   MENU OVERLAY (see MENU-IMPLEMENTATION.md)
   ============================================================ */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    pointer-events: none;
    visibility: hidden;
}

.menu-overlay.is-open {
    pointer-events: auto;
    visibility: visible;
}

.menu-backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-overlay.is-open .menu-backdrop {
    opacity: 1;
}

.menu-overlay.is-closing .menu-backdrop {
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

.menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    max-width: 100%;
    height: 100%;
    background: #000;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-overlay.is-open .menu-panel {
    transform: translateX(0);
}

.menu-overlay.is-closing .menu-panel {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.55, 0, 1, 0.45);
}

.menu-panel-header {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
}

.menu-icon {
    height: 22px;
    width: auto;
    display: block;
    margin: 0 auto;
    padding-right: 32px;
}

.menu-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.menu-close:hover {
    opacity: 0.6;
}

.menu-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.menu-link {
    --btn-line: 1.2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    margin-left: 48px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-bright);
}

.menu-link--home {
    color: var(--color-green);
    justify-content: flex-start;
}

.menu-link .btn__text-item {
    justify-content: flex-start;
}

.menu-arrow {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.menu-link:hover .menu-arrow {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .menu-panel {
        width: 85%;
        padding: 32px 28px;
    }

    .menu-link {
        margin-left: 12px;
        font-size: 20px;
    }
}

/* ============================================================
   PAGE FADE (fixed bottom blur + subtle chromatic aberration)
   ============================================================ */

.page-fade {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    z-index: 30;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 500ms var(--ease-out-expo);
}

.page-fade.is-hidden {
    opacity: 0;
}

.page-fade__blur {
    position: absolute;
    inset: 0;
}

.page-fade__blur--1 {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(6px);
    -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
    mask-image: linear-gradient(to top, #000 0%, transparent 100%);
}

.page-fade__blur--2 {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(14px);
    -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 72%);
    mask-image: linear-gradient(to top, #000 0%, transparent 72%);
}

.page-fade__blur--3 {
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(28px);
    -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 48%);
    mask-image: linear-gradient(to top, #000 0%, transparent 48%);
}

.page-fade__blur--4 {
    -webkit-backdrop-filter: blur(32px) saturate(140%);
    backdrop-filter: blur(48px) saturate(140%);
    -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 28%);
    mask-image: linear-gradient(to top, #000 0%, transparent 28%);
}

/* ============================================================
   BUTTONS (see CTA_ANIMATIONS.md)
   ============================================================ */

.btn {
    --btn-line: 1.6em;
    --btn-arrow: 12px;

    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 40px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.005em;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 400ms var(--ease-out-expo),
        border-color 400ms var(--ease-out-expo),
        box-shadow 400ms var(--ease-out-expo),
        transform 400ms var(--ease-out-expo);
}

.btn--sm {
    --btn-arrow: 10px;

    height: 32px;
    padding: 0 18px;
    gap: 10px;
    font-size: 12px;
}

.btn--primary {
    background-color: var(--color-green);
    color: var(--color-ink);
}

.btn--primary:hover {
    background-color: #E3FF3D;
    box-shadow: 0 0 32px rgba(214, 255, 0, 0.35);
}

.btn--ghost {
    color: var(--color-bright);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background-color: rgba(255, 255, 255, 0);
}

.btn--ghost:hover {
    border-color: rgba(214, 255, 0, 0.7);
    background-color: rgba(255, 255, 255, 0.04);
}

.btn--ghost-dark {
    color: var(--color-ink);
    border: 1px solid var(--color-ink);
    background-color: transparent;
}

.btn--ghost-dark:hover {
    border-color: var(--color-ink);
    background-color: rgba(10, 10, 10, 0.04);
}

.btn--ghost-dark .btn__arrow-icon {
    filter: brightness(0);
}

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

/* --- Text swap --- */

.btn__text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: var(--btn-line);
    line-height: 1;
}

.btn__text-stack {
    display: flex;
    flex-direction: column;
    transform: translateY(0%);
    transition: transform 500ms var(--ease-out-expo);
    will-change: transform;
}

.btn:hover .btn__text-stack,
.footer-nav a:hover .btn__text-stack,
.footer-socials a:hover .btn__text-stack,
.menu-link:hover .btn__text-stack {
    transform: translateY(-50%);
}

.btn__text-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-line);
    line-height: 1;
    white-space: nowrap;
}

/* --- Arrow cross-fade --- */

.btn__arrow {
    position: relative;
    display: block;
    width: var(--btn-arrow);
    height: var(--btn-arrow);
    flex-shrink: 0;
    overflow: hidden;
}

.btn__arrow-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
    will-change: opacity, transform;
}

.btn__arrow-icon--out {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.btn:hover .btn__arrow-icon--out {
    opacity: 0;
    transform: translate(6px, -6px) scale(0.8);
}

.btn__arrow-icon--in {
    opacity: 0;
    transform: translate(-6px, 6px) scale(0.8);
}

.btn:hover .btn__arrow-icon--in {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ============================================================
   PROJECTS
   ============================================================ */

.projects {
    padding: 120px var(--outer-margin) 160px;
}

.projects-inner {
    max-width: var(--container-width);
    margin-inline: auto;
}

/* --- Brands row --- */

.brands-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: clamp(32px, 5vw, 80px);
}

.brands-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    flex-shrink: 0;
}

.brands-eyebrow__icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.brands-eyebrow__text {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(16px, 1.5625vw, 27px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
    white-space: nowrap;
}

.brands-marquee {
    --brands-gap: clamp(48px, 5vw, 96px);
    --brands-shift: 50%;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brands-marquee__track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: brands-scroll 32s linear infinite;
    will-change: transform;
}

.brands-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: var(--brands-gap);
    margin: 0;
    padding: 0;
    padding-inline-end: var(--brands-gap);
    list-style: none;
}

.brands-marquee__group li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: clamp(72px, 7vw, 108px);
    height: 28px;
}

.brands-marquee__group li.brands-marquee__item--movement {
    width: auto;
    height: 42px;
}

.brands-marquee__group li.brands-marquee__item--gtw {
    width: auto;
    height: 42px;
}

.brands-marquee__group img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 400ms var(--ease-out-expo);
}

.brands-marquee__group li.brands-marquee__item--movement img,
.brands-marquee__group li.brands-marquee__item--gtw img {
    height: 100%;
    width: auto;
    max-width: none;
    max-height: none;
}

.brands-marquee:hover .brands-marquee__track {
    animation-play-state: paused;
}

.brands-marquee__group img:hover {
    opacity: 0.85;
}

@keyframes brands-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-1 * var(--brands-shift)), 0, 0); }
}

/* --- Section header --- */

.projects-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--gutter);
    row-gap: 0;
    align-items: start;
    margin-top: 160px;
}

.projects-title {
    display: contents;
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(40px, 4.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.projects-title__our {
    grid-column: 1;
    grid-row: 1;
    display: block;
    font-weight: var(--font-weight-title);
    color: var(--color-text-soft);
}

.projects-title__main {
    grid-column: 1;
    grid-row: 2;
    display: block;
    color: var(--color-ink);
}

.projects-intro {
    display: contents;
}

.projects-slash {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 20px;
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--color-green-secondary);
}

.projects-desc {
    grid-column: 2;
    grid-row: 2;
    max-width: 520px;
    margin: 0;
    font-weight: 400;
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
}

/* --- Project cards --- */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--gutter);
    row-gap: var(--gutter);
    margin-top: 56px;
}

.projects-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(96px, 10vw, 160px);
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */

.page-projects {
    background: #000;
}

.page-projects .header {
    padding-top: 28px;
}

.projects-page__anchor {
    height: 84px;
    background: #000;
    opacity: 1;
    pointer-events: none;
    transition: opacity 700ms var(--ease-out-expo);
}

.projects-page__anchor.is-faded {
    opacity: 0;
}

.projects-page {
    padding: 160px var(--outer-margin) 160px;
    min-height: 100vh;
    background: var(--color-section-light);
}

.projects-page__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.projects-page__eyebrow-icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.projects-page__eyebrow-text {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.projects-header--page {
    margin-top: 28px;
}

.projects-header--page .projects-title__main {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    font-size: clamp(48px, 6vw, 96px);
}

.projects-header--page .projects-slash {
    grid-column: 2;
    grid-row: 1;
}

.projects-header--page .projects-desc {
    grid-column: 2;
    grid-row: 2;
}

.projects-page .projects-grid {
    margin-top: 72px;
}

html.js-reveal:not(.is-reveal-ready) .projects-page .projects-inner {
    opacity: 0;
}

html.js-reveal:not(.is-reveal-ready) .project-case__inner {
    opacity: 0;
}

html.js-reveal:not(.is-reveal-ready) .contact-page__inner {
    opacity: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.page-contact {
    background: linear-gradient(157deg, #000 20.55%, #D6FF00 206.47%);
    background-attachment: fixed;
}

.page-contact .header {
    padding-top: 28px;
}

.contact-page {
    position: relative;
    padding: 320px var(--outer-margin) 220px;
    min-height: calc(100vh - 80px);
}

.contact-page__inner {
    max-width: var(--container-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: clamp(40px, 5vw, 88px);
    row-gap: 48px;
    align-items: start;
}

.contact-page__title {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    max-width: min(100%, 1180px);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #C0C0BF;
    text-align: left;
}

.contact-page__title-em {
    font-weight: 500;
    color: #FFFFFF;
}

.contact-page__copy {
    grid-column: 1;
    grid-row: 2;
    max-width: 580px;
    padding-bottom: 8px;
    align-self: start;
}

.contact-page__subtitle {
    margin: 0;
    max-width: 540px;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.78);
}

.contact-page__arrow {
    display: block;
    width: min(100%, 520px);
    height: auto;
    margin-top: 72px;
    pointer-events: none;
    user-select: none;
}

.contact-page__arrow img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-form {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    background: #fff;
    border-radius: 40px;
    padding: clamp(40px, 3.8vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: 620px;
    justify-self: end;
    align-self: start;
    overflow: visible;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form__label {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-ink);
}

.contact-form__req {
    color: var(--color-ink);
}

.contact-form__input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(10, 10, 10, 0.16);
    border-radius: 14px;
    background: #fff;
    color: var(--color-ink);
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    outline: none;
    transition: border-color 280ms var(--ease-out-expo), box-shadow 280ms var(--ease-out-expo);
    appearance: none;
    -webkit-appearance: none;
}

.contact-form__input::placeholder {
    color: rgba(10, 10, 10, 0.38);
}

.contact-form__input:hover {
    border-color: rgba(10, 10, 10, 0.28);
}

.contact-form__input:focus {
    border-color: rgba(10, 10, 10, 0.55);
    box-shadow: 0 0 0 3px rgba(214, 255, 0, 0.28);
}

.contact-form__field.is-invalid .contact-form__input,
.contact-form__field.is-invalid .contact-dropdown__trigger {
    border-color: rgba(180, 35, 24, 0.55);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.14);
}

.form-toast {
    position: fixed;
    left: 50%;
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    z-index: 220;
    width: min(calc(100vw - 32px), 420px);
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 420ms var(--ease-out-expo),
        transform 520ms var(--ease-out-expo),
        visibility 420ms var(--ease-out-expo);
}

.form-toast.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.form-toast__panel {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(18, 18, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 16px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.form-toast__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
}

.form-toast__message {
    position: relative;
    margin: 0;
    flex: 1;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #fff;
}

.form-toast__close {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin: -4px -6px 0 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 280ms var(--ease-out-expo), color 280ms var(--ease-out-expo);
}

.form-toast__close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

/* --- Contact dropdown (liquid glass) --- */

.contact-dropdown {
    position: relative;
    z-index: 5;
}

.contact-dropdown.is-open {
    z-index: 8;
}

.contact-dropdown__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition:
        background 400ms var(--ease-out-expo),
        border-color 400ms var(--ease-out-expo),
        box-shadow 400ms var(--ease-out-expo);
}

.contact-dropdown__trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
}

.contact-dropdown__trigger:hover {
    background: rgba(10, 10, 10, 0.88);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-dropdown.is-open .contact-dropdown__trigger {
    border-color: rgba(214, 255, 0, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.28),
        0 0 0 3px rgba(214, 255, 0, 0.18);
}

.contact-dropdown__value {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #fff;
    overflow: hidden;
}

.contact-dropdown__value-text,
.contact-dropdown__option-label {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-dropdown__value-icon,
.contact-dropdown__option-icon {
    width: 15px;
    height: 15px;
    margin-right: 2px;
    flex-shrink: 0;
    display: block;
}

.contact-dropdown__value.is-placeholder {
    color: #C0C0BF;
}

.contact-dropdown__chevron {
    position: relative;
    z-index: 1;
    width: 12px;
    height: auto;
    flex-shrink: 0;
    transition: transform 400ms var(--ease-out-expo);
}

.contact-dropdown.is-open .contact-dropdown__chevron {
    transform: rotate(180deg);
}

.contact-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 6px;
    list-style: none;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 12px 32px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
        opacity 400ms var(--ease-out-expo),
        transform 400ms var(--ease-out-expo),
        visibility 400ms var(--ease-out-expo);
}

.contact-dropdown__menu::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
}

.contact-dropdown.is-open .contact-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.contact-dropdown__option {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--color-bright);
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: left;
    cursor: pointer;
    transition: background 300ms var(--ease-out-expo), color 300ms var(--ease-out-expo);
}

.contact-dropdown__option:hover,
.contact-dropdown__option.is-active {
    background: rgba(255, 255, 255, 0.1);
}

.contact-dropdown__option.is-active {
    color: var(--color-green);
}

.form-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form__status {
    margin: 4px 0 0;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.contact-form__status.is-success {
    color: #1a7a3a;
}

.contact-form__status.is-error {
    color: #b42318;
}

.contact-form__submit {
    width: 100%;
    height: 56px;
    margin-top: 8px;
    justify-content: center;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.8;
}

/* ============================================================
   PROJECT CASE PAGE (standard template)
   ============================================================ */

.page-project {
    background: #000;
}

.page-project .header {
    padding-top: 28px;
}

.project-page__anchor {
    height: 84px;
    background: #000;
    opacity: 1;
    pointer-events: none;
    transition: opacity 700ms var(--ease-out-expo);
}

.project-page__anchor.is-faded {
    opacity: 0;
}

.project-case {
    padding: 200px var(--outer-margin) 100px;
    background: var(--color-section-light);
}

.project-case__inner {
    max-width: var(--container-width);
    margin-inline: auto;
}

.project-case__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.project-case__eyebrow-icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.project-case__eyebrow-text {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.project-case__top {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    column-gap: var(--gutter);
    align-items: center;
}

.project-case__top .service-item__tags {
    grid-column: unset;
    grid-row: unset;
    align-self: center;
    justify-self: end;
    justify-content: flex-start;
    width: 100%;
    max-width: 680px;
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
}

.project-case__header {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    column-gap: var(--gutter);
    align-items: start;
    margin-top: 72px;
}

.project-case__title {
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(56px, 7.2vw, 112px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--color-ink);
}

.project-case__desc {
    margin: 0;
    max-width: 680px;
    justify-self: end;
    font-weight: 400;
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
}

.project-case__gallery {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3vw, 48px);
    margin-top: clamp(64px, 7vw, 104px);
}

.project-case__shot {
    margin: 0;
    background: transparent;
}

.project-case__shot img {
    width: 100%;
    height: auto;
    display: block;
}

.project-case__shot picture {
    display: block;
    margin: 0;
}

.project-case__shot picture img {
    width: 100%;
    height: auto;
    display: block;
}

.project-case__brand-logo {
    display: flex;
    justify-content: center;
    padding: clamp(16px, 3vw, 40px) 0;
}

.project-case__brand-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.project-case__brand-logo--sm img {
    max-width: min(42%, 164px);
}

.project-case__shot-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.2vw, 28px);
}

/* --- More projects --- */

.more-projects {
    margin-top: clamp(96px, 10vw, 160px);
}

.more-projects__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.more-projects__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
}

.more-projects__eyebrow-icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.more-projects__eyebrow-text {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.more-projects__title {
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

.more-projects__grid {
    margin-top: 0;
}

/* --- CTA alt (project pages) — base overrides live with .cta-banner below --- */

.cta-banner--alt {
    padding-top: 40px;
    background: var(--color-section-light);
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
    transition: transform 500ms var(--ease-out-expo);
}

.project-card:hover {
    transform: translateY(-2px);
}

.project-card__media {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: 24px;
    background: #E8E8E7;
}

.project-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    filter: blur(0);
    transition:
        transform 900ms var(--ease-out-expo),
        filter 900ms var(--ease-out-expo);
    will-change: transform, filter;
}

.project-card__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(120px, 18vw, 220px);
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 900ms var(--ease-out-expo);
    will-change: transform;
    pointer-events: none;
}

.project-card__logo--sm {
    width: clamp(78px, 11vw, 145px);
}

.project-card:hover .project-card__thumb {
    transform: scale(1.06);
    filter: blur(3px);
}

.project-card:hover .project-card__logo {
    transform: translate(-50%, -50%) scale(0.9);
}

.project-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 20px;
    background: var(--color-green);
    border-radius: 12px;
}

.project-card__icon {
    width: 18px;
    height: auto;
    flex-shrink: 0;
}

.project-card__name {
    flex: 1;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--color-ink);
}

.project-card__type {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    color: rgba(10, 10, 10, 0.45);
    white-space: nowrap;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
    padding-bottom: 0;
}

.services-panel {
    position: relative;
    height: 1420px;
    background: #000;
    border-radius: 48px;
    overflow: hidden;
}

.services-panel__bg {
    position: absolute;
    right: -42%;
    top: 50%;
    width: 105%;
    max-width: none;
    height: auto;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%);
}

.services-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding: clamp(72px, 7vw, 112px) var(--outer-margin) 240px;
    color: var(--color-bright);
    box-sizing: border-box;
}

/* --- Header --- */

.services-header {
    margin-bottom: clamp(40px, 4vw, 56px);
}

.services-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
}

.services-eyebrow__icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.services-eyebrow__text {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.services-title {
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(40px, 4.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--color-bright);
}

/* --- List --- */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    isolation: isolate;
    transition:
        background 500ms var(--ease-out-expo),
        border-color 500ms var(--ease-out-expo);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
}

.service-item__inner {
    display: grid;
    grid-template-columns: 112px 1fr 48px;
    grid-template-rows: auto;
    align-items: center;
    gap: 0 24px;
    min-height: 76px;
    padding: 18px 22px;
}

.service-item--has-tags .service-item__inner {
    grid-template-columns: 112px 1fr auto 48px;
}

.service-item:hover .service-item__inner {
    padding: 22px 22px 26px;
}

.service-item__lead {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    display: grid;
    place-items: center;
    width: 112px;
    min-height: 48px;
}

.service-item__num {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--color-green);
}

.service-item__num--lead {
    grid-area: 1 / 1;
    transition:
        opacity 500ms var(--ease-out-expo),
        filter 500ms var(--ease-out-expo),
        transform 500ms var(--ease-out-expo);
}

.service-item__num--head {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    filter: blur(6px);
    transform: translateY(8px);
    transition:
        max-height 600ms var(--ease-out-expo),
        opacity 500ms var(--ease-out-expo) 60ms,
        filter 500ms var(--ease-out-expo) 60ms,
        transform 500ms var(--ease-out-expo) 60ms,
        margin 500ms var(--ease-out-expo);
}

.service-item:hover .service-item__num--lead {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(-8px);
    pointer-events: none;
}

.service-item:hover .service-item__num--head {
    max-height: 24px;
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    margin-bottom: 8px;
}

.service-item__icon {
    grid-area: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(12px);
    transition:
        opacity 600ms var(--ease-out-expo) 40ms,
        filter 600ms var(--ease-out-expo) 40ms,
        transform 600ms var(--ease-out-expo) 40ms;
}

.service-item__icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 108px;
    max-height: 88px;
    object-fit: contain;
}

.service-item:hover .service-item__icon {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* --- Body --- */

.service-item__body {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    min-width: 0;
}

.service-item__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-item__name {
    margin: 0;
    font-weight: 500;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--color-bright);
}

.service-item__expand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 600ms var(--ease-out-expo);
}

.service-item:hover .service-item__expand {
    grid-template-rows: 1fr;
}

.service-item__expand-inner {
    overflow: hidden;
}

.service-item__desc {
    margin: 0;
    padding-top: 14px;
    max-width: 520px;
    font-weight: 400;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: var(--color-muted);
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10px);
    transition:
        opacity 600ms var(--ease-out-expo) 100ms,
        filter 600ms var(--ease-out-expo) 100ms,
        transform 600ms var(--ease-out-expo) 100ms;
}

.service-item:hover .service-item__desc {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* --- Tags --- */

.service-item__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    align-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    width: max-content;
    max-width: min(420px, 100%);
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
    transition:
        opacity 280ms var(--ease-out-expo),
        filter 280ms var(--ease-out-expo),
        transform 280ms var(--ease-out-expo);
}

.service-item--has-tags:hover .service-item__tags {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transition:
        opacity 600ms var(--ease-out-expo) 120ms,
        filter 600ms var(--ease-out-expo) 120ms,
        transform 600ms var(--ease-out-expo) 120ms;
}

.service-item__tags li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: max-content;
    max-width: none;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--color-green);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
}

/* --- Toggle (liquid glass) --- */

.service-item__toggle {
    grid-column: 3;
    grid-row: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    align-self: center;
    overflow: hidden;
}

.service-item__toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 48%);
    pointer-events: none;
}

.service-item--has-tags .service-item__toggle {
    grid-column: 4;
}

.service-item:hover .service-item__toggle {
    align-self: center;
}

.service-item__toggle-arrow {
    position: relative;
    z-index: 1;
    width: 20px;
    height: auto;
    transition: transform 600ms var(--ease-out-expo);
    transform: scaleY(-1);
}

.service-item:hover .service-item__toggle-arrow {
    transform: scaleY(1);
}

/* --- CTA --- */

.services-cta {
    position: absolute;
    left: var(--outer-margin);
    bottom: 72px;
    margin-top: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why {
    padding: 160px var(--outer-margin);
}

.why-inner {
    max-width: var(--container-width);
    margin-inline: auto;
    overflow: visible;
}

.why-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
}

.why-eyebrow__icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.why-eyebrow__text {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--gutter);
    align-items: end;
}

.why-title {
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(36px, 4vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.why-title__soft {
    display: block;
    font-weight: inherit;
    color: #7A7A7A;
}

.why-title__strong {
    display: block;
    font-weight: inherit;
    color: var(--color-ink);
}

.why-intro {
    max-width: 380px;
    justify-self: end;
}

.why-slash {
    margin: 0 0 20px;
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--color-green-secondary);
}

.why-desc {
    margin: 0;
    font-weight: 400;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
}

.why-features {
    --why-img-scale: 1.185; /* tamanho da imagem (1 = igual aos cards) */
    --why-img-gap: 12px;    /* espaço visível entre a imagem e os cards */

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: calc(var(--why-img-gap) + (var(--why-img-scale) - 1) * 16.67%);
    align-items: stretch;
    margin-top: 72px;
    overflow: visible;
}

.why-card {
    --why-card-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    transition: gap 700ms var(--ease-out-expo);
}

.why-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-ink);
    border-radius: var(--why-card-radius);
    transition: border-radius 700ms var(--ease-out-expo);
}

.why-card__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.why-card__name {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--color-bright);
}

.why-card__num {
    margin-left: auto;
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: rgba(192, 192, 191, 0.7);
    white-space: nowrap;
}

.why-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 24px 32px;
    background: rgba(192, 192, 191, 0.25);
    border-radius: var(--why-card-radius);
    transition:
        border-radius 700ms var(--ease-out-expo),
        background-color 700ms var(--ease-out-expo);
}

.why-card:hover {
    gap: 0;
}

.why-card:hover .why-card__head {
    border-radius: var(--why-card-radius) var(--why-card-radius) 0 0;
}

.why-card:hover .why-card__body {
    border-radius: 0 0 var(--why-card-radius) var(--why-card-radius);
    background: rgba(192, 192, 191, 0.32);
}

.why-card__question {
    margin: 0;
    max-width: 12em;
    font-weight: 500;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: var(--color-ink);
}

.why-card__text {
    margin: auto 0 0;
    padding-top: 32px;
    font-weight: 400;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
}

.why-visual {
    margin: 0;
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: visible;
}

.why-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transform: scale(var(--why-img-scale));
    transform-origin: bottom center;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    column-gap: clamp(48px, 7vw, 120px);
    align-items: center;
    margin-top: 88px;
}

.why-stat {
    min-width: 0;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
    transition:
        opacity 600ms var(--ease-out-expo),
        filter 600ms var(--ease-out-expo),
        transform 600ms var(--ease-out-expo);
}

.why-stats__arrow {
    width: 12px;
    height: auto;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
    transition:
        opacity 600ms var(--ease-out-expo),
        filter 600ms var(--ease-out-expo),
        transform 600ms var(--ease-out-expo);
}

.why-stats.is-inview .why-stat {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.why-stats.is-inview .why-stats__arrow {
    opacity: 0.85;
    filter: blur(0);
    transform: translateY(0);
}

.why-stats.is-inview .why-stat:nth-of-type(1) { transition-delay: 0ms; }
.why-stats.is-inview .why-stats__arrow:nth-of-type(1) { transition-delay: 90ms; }
.why-stats.is-inview .why-stat:nth-of-type(2) { transition-delay: 180ms; }
.why-stats.is-inview .why-stats__arrow:nth-of-type(2) { transition-delay: 270ms; }
.why-stats.is-inview .why-stat:nth-of-type(3) { transition-delay: 360ms; }

.why-stat__value {
    margin: 0;
    font-weight: 500;
    font-size: clamp(56px, 6.4vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--color-ink);
}

.why-stat__label {
    margin: 32px 0 0;
    max-width: 280px;
    font-weight: 500;
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--color-ink);
}

.why-stat__text {
    margin: 14px 0 0;
    max-width: 340px;
    font-weight: 400;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
    padding: 0 var(--outer-margin) 160px;
}

.cta-banner-panel {
    position: relative;
    max-width: var(--container-width);
    margin-inline: auto;
    overflow: hidden;
    border-radius: 32px;
    background: #0A0A0A;
}

.cta-banner__media {
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: clamp(56px, 5.5vw, 88px) clamp(40px, 4.5vw, 72px) clamp(48px, 5vw, 80px);
}

/* Project-page CTA: wide copy + button pushed to the right */
.cta-banner-inner.cta-banner-inner--alt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(80px, 10vw, 160px);
    max-width: none;
    width: 100%;
    padding: clamp(56px, 5.5vw, 88px) clamp(48px, 5vw, 80px);
}

.cta-banner-inner.cta-banner-inner--alt .cta-banner__copy {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
}

.cta-banner-inner.cta-banner-inner--alt .cta-banner__title {
    max-width: none;
    width: 100%;
    font-size: clamp(36px, 4.2vw, 64px);
}

.cta-banner-inner.cta-banner-inner--alt .cta-banner__subtitle {
    margin-top: 16px;
    max-width: none;
    width: 100%;
    font-size: clamp(18px, 1.4vw, 24px);
}

.cta-banner-inner.cta-banner-inner--alt .cta-banner__subtitle-em {
    color: var(--color-bright);
}

.cta-banner-inner.cta-banner-inner--alt .btn {
    flex: 0 0 auto;
    margin-left: auto;
}

.cta-banner__title {
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(32px, 3.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--color-bright);
}

.cta-banner__subtitle {
    margin: 16px 0 0;
    font-weight: 400;
    font-size: clamp(16px, 1.2vw, 22px);
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: var(--color-muted);
}

.cta-banner-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 420px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    min-height: 118px;
    padding: 14px 16px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
    transition:
        opacity 600ms var(--ease-out-expo),
        filter 600ms var(--ease-out-expo),
        transform 600ms var(--ease-out-expo),
        background-color 500ms var(--ease-out-expo),
        border-color 500ms var(--ease-out-expo),
        box-shadow 500ms var(--ease-out-expo);
}

.cta-banner-cards.is-inview .cta-feature {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.cta-banner-cards.is-inview .cta-feature:nth-child(1) { transition-delay: 0ms; }
.cta-banner-cards.is-inview .cta-feature:nth-child(2) { transition-delay: 140ms; }

.cta-banner-cards.is-inview .cta-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(214, 255, 0, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.28);
    transform: translateY(-4px);
    transition-delay: 0ms;
}

.cta-feature__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-feature__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.cta-feature__name {
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-bright);
}

.cta-feature__text {
    margin: auto 0 0;
    padding-top: 16px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: var(--color-muted);
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 0;
    padding: 120px var(--outer-margin) 140px;
    border-radius: 48px;
    background: #050505;
    color: var(--color-bright);
}

.pricing-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: inherit;
    contain: paint;
}

.pricing-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.46);
    pointer-events: none;
}

.pricing-bg-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pricing-bg-scene canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.pricing-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin-inline: auto;
}

.pricing-title {
    margin: 0 auto;
    max-width: 16ch;
    text-align: center;
    font-weight: var(--font-weight-title);
    font-size: clamp(36px, 4vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #C0C0BF;
}

.pricing-title .is-bright {
    color: var(--color-bright);
}

.pricing-title.reveal-text .reveal-word__inner {
    transition:
        opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 48ms);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 400px));
    justify-content: center;
    gap: clamp(24px, 2.6vw, 40px);
    margin-top: clamp(56px, 6vw, 88px);
    align-items: stretch;
}

.pricing-card {
    --pricing-border: rgba(255, 255, 255, 0.5);
    --pricing-glow: 255, 255, 255;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 680px;
    padding: clamp(28px, 2.4vw, 40px) clamp(24px, 2.2vw, 36px) clamp(32px, 2.8vw, 40px);
    border: 0;
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 0 0 0 rgba(var(--pricing-glow), 0);
    transform: translate3d(0, 0, 0);
    transition:
        transform 560ms var(--ease-out-expo),
        background 560ms var(--ease-out-expo),
        box-shadow 720ms var(--ease-out-expo);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
    opacity: 0.55;
    transition: opacity 560ms var(--ease-out-expo);
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, var(--pricing-border) 0%, transparent 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card--starter {
    --pricing-border: rgba(255, 255, 255, 0.5);
    --pricing-glow: 255, 255, 255;
}

.pricing-card--direction {
    --pricing-border: rgba(214, 255, 0, 0.5);
    --pricing-glow: 214, 255, 0;
}

.pricing-card--signature {
    --pricing-border: rgba(221, 197, 122, 0.5);
    --pricing-glow: 221, 197, 122;
}

.pricing-card.reveal-block {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 36px, 0);
}

.pricing-card.reveal-block.is-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
    animation: pricing-card-in 1400ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: var(--d, 0ms);
}

@keyframes pricing-card-in {
    from {
        opacity: 0;
        filter: blur(6px);
        transform: translate3d(0, 36px, 0);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
}

.pricing-card:hover,
.pricing-card.reveal-block.is-revealed:hover {
    transform: translate3d(0, -6px, 0);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16),
        0 0 36px rgba(var(--pricing-glow), 0.14);
}

.pricing-card:hover::before {
    opacity: 0.85;
}

.pricing-card__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 15px;
}

.pricing-card__icon {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
}

.pricing-card__title-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.pricing-card__badge {
    display: block;
    height: 24px;
    width: auto;
    flex-shrink: 0;
}

.pricing-card__name {
    margin: 0;
    font-weight: 500;
    font-size: clamp(28px, 2.2vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-bright);
}

.pricing-card__desc {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    max-width: 34ch;
    font-weight: 400;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.72);
}

.pricing-card__price {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: clamp(24px, 2.4vw, 32px);
}

.pricing-card__price-label {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.55);
}

.pricing-card__price-value {
    font-weight: 500;
    font-size: clamp(40px, 3.6vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--color-bright);
}

.pricing-card__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 22px;
    min-height: 58px;
    padding: 20px 24px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--color-ink);
    cursor: pointer;
    transition:
        transform 400ms var(--ease-out-expo),
        filter 400ms var(--ease-out-expo),
        box-shadow 400ms var(--ease-out-expo);
}

.pricing-card--starter .pricing-card__cta {
    background: #fff;
}

.pricing-card--direction .pricing-card__cta {
    background: var(--color-green);
}

.pricing-card--signature .pricing-card__cta {
    background: linear-gradient(45deg, #ddc57a 12.05%, #f6e6b4 95.92%);
}

.pricing-card__cta:hover {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.06);
}

.pricing-card__cta:active {
    transform: translateY(0) scale(0.99);
}

.pricing-card__includes {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding-top: 0;
}

.pricing-card__includes-title {
    margin: 0 0 18px;
    width: fit-content;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #C0C0BF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 2px;
}

.pricing-card__includes-title .is-bright {
    color: var(--color-bright);
}

.pricing-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.82);
}

.pricing-card__list img {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card,
    .pricing-card.reveal-block,
    .pricing-card.reveal-block.is-revealed,
    .pricing-card:hover,
    .pricing-card.reveal-block.is-revealed:hover,
    .pricing-card__cta,
    .pricing-card__cta:hover,
    .pricing-card__cta:active {
        transform: none;
        filter: none;
        transition: none;
        animation: none;
    }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    padding: 140px var(--outer-margin) 160px;
}

.faq-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    column-gap: clamp(40px, 6vw, 96px);
    align-items: start;
    max-width: var(--container-width);
    margin-inline: auto;
}

.faq-title {
    margin: 0;
    font-weight: var(--font-weight-title);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--color-ink);
}

.faq-desc {
    margin: 20px 0 0;
    max-width: 340px;
    font-weight: 400;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 22px 24px;
    border-radius: 24px;
    background: #fff;
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    text-align: left;
}

.faq-item__question {
    font-weight: var(--font-weight-title);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--color-ink);
}

.faq-item__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(192, 192, 191, 0.55);
}

.faq-item__toggle-arrow {
    width: 12px;
    height: auto;
    transform: scaleY(-1) rotate(-90deg);
    transition: transform 600ms var(--ease-out-expo);
}

.faq-item.is-open .faq-item__toggle-arrow {
    transform: scaleY(1) rotate(-90deg);
}

.faq-item__expand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 600ms var(--ease-out-expo);
}

.faq-item.is-open .faq-item__expand {
    grid-template-rows: 1fr;
}

.faq-item__expand-inner {
    overflow: hidden;
}

.faq-item__answer {
    margin: 0;
    padding-top: 14px;
    padding-right: 56px;
    max-width: 560px;
    font-weight: 400;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: var(--color-text-dark);
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10px);
    transition:
        opacity 600ms var(--ease-out-expo) 80ms,
        filter 600ms var(--ease-out-expo) 80ms,
        transform 600ms var(--ease-out-expo) 80ms;
}

.faq-item.is-open .faq-item__answer {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 48px 48px 0 0;
    padding: 80px var(--outer-margin) 0;
    color: var(--color-bright);
    font-family: var(--font-sans);
    font-weight: 400;
}

.footer-inner {
    position: relative;
    max-width: var(--container-width);
    margin-inline: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr auto;
    column-gap: var(--gutter);
    align-items: start;
}

.footer-logo img {
    height: 22px;
    width: auto;
}

.footer-copy {
    margin: 16px 0 0;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: rgba(192, 192, 191, 0.55);
}

.footer-heading {
    margin: 0 0 18px;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(192, 192, 191, 0.55);
}

.footer-nav ul,
.footer-socials ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-socials a {
    --btn-line: 1.2em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-bright);
}

.footer-nav a .btn__text-item,
.footer-socials a .btn__text-item {
    justify-content: flex-start;
}

.footer-contact__link:hover {
    opacity: 0.6;
}

.footer-socials a img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-bright);
    transition: opacity 300ms var(--ease-out-expo);
}

.footer-contact__link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-contact__link span {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.footer-back {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 2px;
}

.footer-back__icon {
    display: block;
    overflow: hidden;
    width: 28px;
    height: 28px;
}

.footer-back__stack {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    transition: transform 600ms var(--ease-out-expo);
    will-change: transform;
}

.footer-back__stack img {
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-back:hover .footer-back__stack {
    transform: translateY(-50%);
}

.footer-mark {
    margin-top: 120px;
    margin-inline: calc(-1 * var(--outer-margin));
    line-height: 0;
    font-size: 0;
    pointer-events: none;
}

.footer-mark img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

/* ============================================================
   TABLET — max-width: 1023px (LAYOUT.md §5)
   ============================================================ */

@media (max-width: 1023px) {
    .header {
        padding: 40px 40px 0;
    }

    .header-col--right {
        gap: 20px;
    }

    .hero-inner {
        padding-inline: 40px;
    }

    .hero {
        padding: 120px 0 100px;
    }

    .projects {
        padding: 100px 40px;
    }

    .projects-page {
        padding: 120px 40px 120px;
    }

    .page-contact .header {
        padding-top: 24px;
    }

    .contact-page {
        padding: 260px 40px 180px;
    }

    .contact-page__inner {
        grid-template-columns: 1fr;
        row-gap: 40px;
        align-items: start;
    }

    .contact-page__title {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
        font-size: clamp(40px, 9vw, 72px);
    }

    .contact-page__copy {
        grid-column: 1;
        grid-row: auto;
        max-width: 1200px;
    }

    .contact-form {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
        justify-self: stretch;
        border-radius: 32px;
        margin-top: 12px;
    }

    .page-contact {
        background-attachment: scroll;
    }

    .page-projects .header {
        padding-top: 24px;
    }

    .page-project .header {
        padding-top: 24px;
    }

    .projects-page__anchor,
    .project-page__anchor {
        height: 64px;
    }

    .project-case {
        padding: 140px 40px 80px;
    }

    .project-case__top,
    .project-case__header {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .project-case__header {
        row-gap: 24px;
    }

    .project-case__top .service-item__tags,
    .project-case__desc {
        justify-self: start;
        max-width: none;
    }

    .more-projects__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner-inner.cta-banner-inner--alt {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 48px 40px;
    }

    .cta-banner-inner.cta-banner-inner--alt .btn {
        margin-left: 0;
        align-self: flex-end;
    }

    .brands-row {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .projects-header {
        margin-top: 72px;
    }

    .projects-header--page {
        margin-top: 24px;
    }

    .projects-desc {
        max-width: none;
    }

    .services {
        padding-bottom: 0;
    }

    .why {
        padding: 100px 40px;
    }

    .cta-banner {
        padding: 0 40px 100px;
    }

    .pricing {
        margin-inline: 0;
        padding: 100px 40px 120px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
        gap: 32px;
    }

    .pricing-card {
        min-height: 0;
    }

    .faq {
        padding: 100px 40px 100px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .footer {
        padding: 64px 40px 0;
        border-radius: 32px 32px 0 0;
    }

    .footer-mark {
        margin-top: 80px;
        margin-inline: -40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .footer-back {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .cta-banner-panel {
        border-radius: 32px;
    }

    .why-intro {
        max-width: 320px;
    }

    .why-features {
        margin-top: 48px;
    }

    .why-card__head {
        padding: 14px 16px;
        gap: 10px;
    }

    .why-card__name {
        font-size: 14px;
    }

    .why-card__body {
        padding: 22px 18px 26px;
    }

    .why-stats {
        margin-top: 64px;
        column-gap: clamp(28px, 4vw, 64px);
    }

    .why-stats__arrow {
        width: 11px;
    }

    .services-panel {
        border-radius: 32px;
        height: 1180px;
    }

    .services-inner {
        padding-inline: 40px;
    }

    .services-panel__bg {
        right: -48%;
        width: 115%;
        opacity: 0.2;
    }

    .services-cta {
        left: 40px;
        bottom: 40px;
    }

    .service-item--has-tags .service-item__inner {
        grid-template-columns: 80px 1fr 48px;
    }

    .service-item--has-tags:hover .service-item__inner {
        grid-template-columns: 80px 1fr 48px;
        grid-template-rows: auto auto auto;
    }

    .service-item__tags {
        grid-column: 2;
        grid-row: 2;
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
    }

    .service-item--has-tags .service-item__toggle {
        grid-column: 3;
        grid-row: 1;
    }
}

/* ============================================================
   MOBILE — max-width: 767px (LAYOUT.md §5)
   ============================================================ */

@media (max-width: 767px) {
    .header {
        padding: 28px 20px 0;
    }

    .page-fade {
        height: 120px;
        z-index: 35;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .page-fade__blur {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .page-fade__blur--1 {
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(8px);
    }

    .page-fade__blur--2 {
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(16px);
    }

    .page-fade__blur--3 {
        -webkit-backdrop-filter: blur(28px);
        backdrop-filter: blur(32px);
    }

    .page-fade__blur--4 {
        -webkit-backdrop-filter: blur(36px) saturate(140%);
        backdrop-filter: blur(40px) saturate(140%);
        background: linear-gradient(
            to top,
            rgba(244, 244, 243, 0.55) 0%,
            rgba(244, 244, 243, 0.18) 45%,
            transparent 100%
        );
    }

    .page-contact .page-fade__blur--4 {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.16) 45%,
            transparent 100%
        );
    }

    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .hero-inner {
        padding-inline: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero {
        align-items: center;
        min-height: 100svh;
        padding: 140px 0 80px;
        border-radius: 0 0 24px 24px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        transform: translateY(-84px);
    }

    .hero .eyebrow {
        justify-content: center;
    }

    .logo img {
        height: 19px;
    }

    .menu-toggle {
        --menu-icon-w: 22px;
        --menu-icon-h: calc(22px * 29 / 32);
    }

    .menu-toggle img {
        width: var(--menu-icon-w);
        height: var(--menu-icon-h);
    }

    .header .btn--sm {
        display: none;
    }

    .header-inner {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-col {
        min-width: 0;
    }

    .eyebrow__text {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .hero-title {
        margin-top: 32px;
        font-size: clamp(30px, 8.6vw, 40px);
        line-height: 1.14;
    }

    .hero-title br,
    .hero-subtitle br {
        display: none;
    }

    .hero-subtitle {
        margin-top: 20px;
        margin-inline: auto;
        max-width: 22em;
        font-size: 16px;
        line-height: 1.4;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 12px;
        margin-top: 36px;
        max-width: 100%;
    }

    .btn {
        height: 46px;
        padding: 0 22px;
        font-size: 15px;
    }

    .hero-actions .btn {
        width: auto;
        max-width: 100%;
    }

    .hero-copyright {
        flex: none;
        margin: 4px 0 0;
        max-width: none;
        width: auto;
        text-align: center;
    }

    /* --- Mobile: center section content --- */

    .brands-row {
        justify-items: center;
        text-align: center;
    }

    .brands-eyebrow {
        justify-content: center;
    }

    .projects-header,
    .projects-title,
    .projects-title__our,
    .projects-title__main,
    .projects-slash,
    .projects-desc {
        text-align: center;
    }

    .projects-desc {
        margin-inline: auto;
    }

    .project-card__meta {
        justify-content: center;
        text-align: center;
    }

    .services-header,
    .services-title {
        text-align: center;
    }

    .services-eyebrow {
        justify-content: center;
    }

    .services-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .why-eyebrow {
        justify-content: center;
    }

    .why-header,
    .why-title,
    .why-slash,
    .why-desc {
        text-align: center;
    }

    .why-intro {
        text-align: center;
    }

    .why-card__head {
        justify-content: center;
    }

    .why-card__body,
    .why-stat,
    .why-stat__label,
    .why-stat__text {
        text-align: center;
    }

    .why-stat__label,
    .why-stat__text {
        margin-inline: auto;
    }

    .cta-banner-inner {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-banner-cards {
        margin-inline: auto;
    }

    .cta-feature {
        text-align: center;
    }

    .cta-feature__top {
        justify-content: center;
    }

    .faq-intro,
    .faq-title,
    .faq-desc {
        text-align: center;
    }

    .faq-desc {
        margin-inline: auto;
    }

    .more-projects__top {
        align-items: center;
        text-align: center;
    }

    .project-case__header,
    .project-case__desc {
        text-align: center;
        justify-self: center;
    }

    .project-case__top {
        justify-items: center;
    }

    .project-case__top .service-item__tags {
        justify-self: center;
    }

    .footer-top {
        text-align: center;
        justify-items: center;
    }

    .footer-nav ul,
    .footer-socials ul {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-back {
        justify-self: center;
    }

    .projects {
        padding: 80px 20px;
    }

    .projects-page {
        padding: 100px 20px 100px;
    }

    .page-contact .header {
        padding-top: 20px;
    }

    .contact-page {
        padding: 220px 20px 140px;
    }

    .contact-page__inner {
        justify-items: center;
        text-align: center;
    }

    .contact-page__title {
        text-align: center;
        max-width: 100%;
    }

    .contact-page__copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    .contact-page__subtitle {
        margin-inline: auto;
        max-width: 34em;
        text-align: center;
    }

    .contact-page__arrow {
        margin-top: 56px;
        margin-inline: auto;
        width: min(12%, 140px);
    }

    .contact-form {
        padding: 28px 22px;
        border-radius: 28px;
        gap: 18px;
        text-align: left;
    }

    .contact-form__input,
    .contact-dropdown__trigger {
        height: 48px;
        border-radius: 12px;
        font-size: 14px;
    }

    .contact-dropdown__value {
        font-size: 14px;
    }

    .contact-dropdown__option {
        font-size: 14px;
        padding: 11px 12px;
    }

    .contact-form__submit {
        height: 52px;
        font-size: 15px;
    }

    .page-project .header {
        padding-top: 20px;
    }

    .projects-page__anchor,
    .project-page__anchor {
        height: 76px;
    }

    .project-case {
        padding: 120px 20px 64px;
    }

    .project-case__eyebrow {
        justify-content: center;
    }

    .project-case__hero,
    .project-case__title {
        text-align: center;
    }

    .project-case__brand-logo {
        display: flex;
        justify-content: center;
    }

    .project-case__brand-logo img {
        width: min(28%, 120px);
        max-width: 120px;
        height: auto;
    }

    .project-case__brand-logo--sm img {
        width: min(22%, 76px);
        max-width: 76px;
    }

    .project-case__shot-row {
        grid-template-columns: 1fr;
    }

    .more-projects {
        margin-top: 80px;
    }

    .more-projects__top {
        margin-bottom: 32px;
        align-items: center;
        text-align: center;
    }

    .cta-banner--alt .cta-banner-panel {
        min-height: 280px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #0A0A0A;
    }

    .cta-banner--alt .cta-banner__media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .cta-banner--alt .cta-banner__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .cta-banner-inner.cta-banner-inner--alt {
        position: relative;
        z-index: 1;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        width: 100%;
        min-height: 280px;
        padding: 28px 24px 32px;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-banner-inner.cta-banner-inner--alt .cta-banner__copy {
        width: 100%;
    }

    .cta-banner-inner.cta-banner-inner--alt .btn {
        align-self: center;
        margin-left: 0;
    }

    .page-projects .header {
        padding-top: 20px;
    }

    .projects-page__eyebrow {
        justify-content: center;
    }

    .projects-page .projects-header,
    .projects-page .projects-title,
    .projects-page .projects-title__our,
    .projects-page .projects-title__main,
    .projects-page .projects-slash,
    .projects-page .projects-desc {
        text-align: center;
    }

    .brands-eyebrow__text {
        font-size: 18px;
        white-space: normal;
    }

    .brands-marquee__group li,
    .brands-marquee__group li.brands-marquee__item--movement,
    .brands-marquee__group li.brands-marquee__item--gtw {
        width: auto;
        height: 42px;
    }

    .brands-marquee__group img,
    .brands-marquee__group li.brands-marquee__item--movement img,
    .brands-marquee__group li.brands-marquee__item--gtw img {
        height: 100%;
        width: auto;
        max-width: none;
        max-height: none;
    }

    .projects-header {
        grid-template-columns: 1fr;
        row-gap: 32px;
        margin-top: 96px;
    }

    .projects-header--page {
        margin-top: 20px;
        row-gap: 40px;
    }

    .projects-header--page .projects-intro {
        margin-top: 8px;
    }

    .projects-header--page .projects-title__main {
        font-size: clamp(40px, 12vw, 64px);
    }

    .projects-page .projects-grid {
        margin-top: 40px;
    }

    .projects-title {
        display: block;
    }

    .projects-intro {
        display: block;
    }

    .projects-title__our,
    .projects-title__main,
    .projects-slash,
    .projects-desc {
        grid-column: auto;
        grid-row: auto;
    }

    .projects-slash {
        margin-bottom: 16px;
    }

    .projects-desc {
        max-width: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
        margin-top: 40px;
    }

    .project-card__meta {
        justify-content: center;
        min-height: 48px;
        padding: 0 16px;
        text-align: center;
    }

    .services {
        padding-bottom: 0;
    }

    .why {
        padding: 80px 20px;
    }

    .cta-banner {
        padding: 0 20px 80px;
    }

    .cta-banner--alt {
        padding: 24px 20px 80px;
        background: var(--color-section-light);
    }

    .pricing {
        margin-inline: 0;
        padding: 80px 20px 100px;
        border-radius: 32px;
    }

    .pricing-title {
        max-width: none;
        font-size: clamp(32px, 8vw, 44px);
    }

    .pricing-card {
        border-radius: 32px;
        padding: 24px;
    }

    .pricing-card:hover {
        transform: translate3d(0, -6px, 0);
    }

    .faq {
        padding: 80px 20px 80px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .faq-desc {
        max-width: none;
    }

    .faq-item {
        padding: 18px 18px;
        border-radius: 20px;
    }

    .footer {
        padding: 48px 20px 0;
        border-radius: 24px 24px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .footer-back {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
    }

    .footer-mark {
        margin-top: 72px;
        margin-inline: -20px;
    }

    .cta-banner-panel {
        border-radius: 24px;
    }

    .cta-banner:not(.cta-banner--alt) .cta-banner-panel {
        min-height: 580px;
        display: flex;
        flex-direction: column;
    }

    .cta-banner:not(.cta-banner--alt) .cta-banner__bg {
        object-position: center top;
    }

    .cta-banner-inner:not(.cta-banner-inner--alt) {
        max-width: none;
        width: 100%;
        min-height: 580px;
        padding: 40px 24px 48px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .cta-banner-cards {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-top: 28px;
        margin-bottom: 28px;
        margin-inline: auto;
    }

    .cta-feature {
        min-height: 108px;
    }

    .why-header {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .why-intro {
        max-width: none;
        justify-self: center;
        text-align: center;
    }

    .why-title {
        font-size: clamp(30px, 8.4vw, 40px);
    }

    .why-title br {
        display: none;
    }

    .why-features {
        grid-template-columns: 1fr;
        row-gap: 20px;
        margin-top: 40px;
    }

    .why-card {
        --why-card-radius: 20px;
    }

    .why-card__head {
        justify-content: center;
        position: relative;
        padding: 14px 48px 14px 16px;
    }

    .why-card__name {
        text-align: center;
    }

    .why-card__num {
        position: absolute;
        right: 16px;
        top: 50%;
        margin-left: 0;
        transform: translateY(-50%);
    }

    .why-card__body {
        padding: 22px 18px 26px;
        text-align: center;
        align-items: center;
    }

    .why-card__question {
        max-width: 16em;
        margin-inline: auto;
        text-align: center;
    }

    .why-card__text {
        text-align: center;
    }

    .why-visual {
        order: 0;
        aspect-ratio: 564 / 501;
    }

    .why-visual img {
        height: auto;
        transform: none;
    }

    .why-stats {
        grid-template-columns: 1fr;
        row-gap: 36px;
        margin-top: 48px;
    }

    .why-stats__arrow {
        display: none;
    }

    .why-stat__label,
    .why-stat__text {
        max-width: none;
    }

    .services-panel {
        border-radius: 24px;
        height: auto;
        min-height: 880px;
    }

    .services-inner {
        padding: 48px 20px;
        height: auto;
    }

    .services-panel__bg {
        right: -55%;
        width: 130%;
        opacity: 0.16;
    }

    .services-cta {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 40px;
    }

    .services-eyebrow__text {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .service-item__inner,
    .service-item--has-tags .service-item__inner,
    .service-item:hover .service-item__inner,
    .service-item--has-tags:hover .service-item__inner {
        grid-template-columns: 64px 1fr 44px;
        grid-template-rows: auto auto;
        align-items: start;
        column-gap: 14px;
        row-gap: 0;
        min-height: 68px;
        padding: 16px;
    }

    .service-item--has-tags:hover .service-item__inner {
        row-gap: 18px;
    }

    .service-item__lead {
        width: 64px;
        align-self: start;
        min-height: 44px;
    }

    .service-item__body {
        align-self: start;
        min-width: 0;
        max-width: 100%;
        padding-top: 10px;
        overflow: hidden;
    }

    .service-item__desc {
        max-width: 28ch;
        padding-top: 12px;
    }

    .service-item__icon img {
        max-width: 56px;
        max-height: 56px;
    }

    .service-item__tags {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        align-content: flex-start;
        gap: 8px;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        max-height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        box-sizing: border-box;
    }

    .project-case__top .service-item__tags {
        grid-column: unset;
        grid-row: unset;
        justify-self: start;
        width: 100%;
        max-width: 680px;
        max-height: none;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: visible;
        opacity: 1;
        filter: none;
        transform: none;
        pointer-events: auto;
    }

    .service-item--has-tags:hover .service-item__tags {
        max-height: none;
        height: auto;
        margin-top: 8px;
        padding-top: 4px;
        overflow: visible;
        pointer-events: auto;
    }

    .service-item__tags li {
        flex: 0 1 auto;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
        line-height: 1.25;
        text-align: center;
    }

    .service-item__toggle,
    .service-item--has-tags .service-item__toggle {
        grid-column: 3;
        grid-row: 1;
        width: 44px;
        height: 44px;
        align-self: start;
        margin-top: 0;
        z-index: 2;
    }
}

@media (max-width: 439px) {
    .service-item__inner,
    .service-item--has-tags .service-item__inner,
    .service-item:hover .service-item__inner,
    .service-item--has-tags:hover .service-item__inner {
        column-gap: 10px;
        padding: 14px;
    }

    .service-item__tags {
        gap: 6px;
    }

    .service-item__tags li {
        padding: 7px 12px;
        font-size: 11px;
        max-width: 100%;
        white-space: normal;
    }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */

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

    .brands-marquee__track {
        animation: none;
    }

    .project-card:hover .project-card__thumb {
        transform: none;
        filter: none;
    }

    .project-card:hover .project-card__logo {
        transform: translate(-50%, -50%);
    }

    .service-item:hover .service-item__icon,
    .service-item:hover .service-item__desc,
    .service-item:hover .service-item__num--head,
    .service-item--has-tags:hover .service-item__tags {
        opacity: 1;
        filter: none;
        transform: none;
        max-height: none;
    }

    .page-fade__blur {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        -webkit-mask-image: none;
        mask-image: none;
        background: none;
    }

    .page-fade__blur--4 {
        background: linear-gradient(to top, rgba(244, 244, 243, 0.35), transparent);
    }

    .why-card:hover {
        gap: 10px;
    }

    .why-card:hover .why-card__head,
    .why-card:hover .why-card__body {
        border-radius: var(--why-card-radius);
    }

    .why-stat,
    .why-stats__arrow {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .cta-feature,
    .cta-banner-cards.is-inview .cta-feature:hover {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .faq-item.is-open .faq-item__answer {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
