/* ============================================
   neurovaX v3.1 — Dark Night Vintage
   NO glassmorphism. Solid surfaces. Precise shadows.
   2500+ lines. Every state covered.
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

:root {
    --bg-primary: #37353E;
    --bg-secondary: #44444E;
    --bg-warm: #715A5A;
    --bg-light: #D3DAD9;
    --bg-card: #3F3D47;
    --bg-dark-section: #2E2C34;
    --bg-video-overlay: #1E1C24;
    --text-primary: #D3DAD9;
    --text-body: #A8ADB0;
    --text-label: rgba(211, 218, 217, 0.4);
    --text-dark: #37353E;
    --accent: #715A5A;
    --accent-light: #9A7A7A;
    --accent-ice: #D3DAD9;
    --accent-glow: rgba(113, 90, 90, 0.3);
    --border: rgba(211, 218, 217, 0.06);
    --border-hover: rgba(211, 218, 217, 0.15);
    --border-warm: rgba(113, 90, 90, 0.3);
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(30, 28, 36, 0.4), 0 32px 48px rgba(30, 28, 36, 0.15);
    --shadow-hover: 0 1px 3px rgba(0, 0, 0, 0.4), 0 16px 32px rgba(30, 28, 36, 0.5), 0 48px 80px rgba(30, 28, 36, 0.25);
    --shadow-deep: 0 2px 4px rgba(0, 0, 0, 0.4), 0 32px 64px rgba(30, 28, 36, 0.6), 0 64px 96px rgba(30, 28, 36, 0.2);
    --font-display: 'Clash Display', 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --text-display: clamp(72px, 8vw, 110px);
    --text-h1: clamp(52px, 6vw, 80px);
    --text-h2: clamp(36px, 4vw, 56px);
    --text-h3: clamp(22px, 2.5vw, 30px);
    --text-body-size: 17px;
    --text-label-size: 13px;
    --text-stat: clamp(80px, 12vw, 140px);
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 120px;
    --radius-card: 20px;
    --radius-pill: 100px;
    --container-max: 1280px;
    --container-pad: 48px;
    --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --ease-smooth: cubic-bezier(.25, .1, .25, 1)
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: auto
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
    cursor: none
}

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

ul,
ol {
    list-style: none
}

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

button,
input,
textarea,
select {
    font-family: inherit;
    cursor: none;
    outline: none
}

::selection {
    background: var(--accent);
    color: var(--text-primary)
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-section)
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

/* === NOISE GRAIN OVERLAY === */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: soft-light;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* === PAGE TRANSITION OVERLAY === */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg-dark-section);
    z-index: 10002;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
    will-change: transform
}

.page-transition.entering {
    animation: ptEnter .4s var(--ease-out-expo) forwards
}

.page-transition.leaving {
    animation: ptLeave .4s var(--ease-out-expo) forwards
}

@keyframes ptEnter {
    from {
        transform: scaleY(0);
        transform-origin: bottom
    }

    to {
        transform: scaleY(1);
        transform-origin: bottom
    }
}

@keyframes ptLeave {
    from {
        transform: scaleY(1);
        transform-origin: top
    }

    to {
        transform: scaleY(0);
        transform-origin: top
    }
}

/* === CUSTOM CURSOR === */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-ice);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width .2s, height .2s, background .2s
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: .5;
    will-change: transform;
    transition: width .3s var(--ease-spring), height .3s var(--ease-spring), border-color .3s, border-radius .3s
}

.cursor-ring.hovering {
    width: 80px;
    height: 80px;
    border-color: var(--accent-ice);
    opacity: .3
}

.cursor-dot.hovering {
    width: 0;
    height: 0
}

.cursor-ring.velocity-tilt {
    transition: none
}

/* === SCROLL PROGRESS === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-ice));
    z-index: 9999;
    width: 0;
    will-change: width;
    transform-origin: left
}

/* === CONTAINER === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    position: relative;
    z-index: 2
}

/* === SECTION === */
.section {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden
}

.section-clip {
    clip-path: inset(100% 0 0 0);
    will-change: clip-path
}

.section-clip.revealed {
    clip-path: inset(0% 0 0 0);
    transition: clip-path 1.2s cubic-bezier(.76, 0, .24, 1)
}

.section-parallax-bg {
    position: absolute;
    inset: -20% 0;
    z-index: 0;
    pointer-events: none;
    will-change: transform
}

/* === TYPOGRAPHY === */
h1,
.h1 {
    font-family: var(--font-display);
    font-size: var(--text-h1);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.03em;
    color: var(--text-primary)
}

h2,
.h2 {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.02em;
    color: var(--text-primary)
}

h3,
.h3 {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 600;
    line-height: 1.12;
    color: var(--text-primary)
}

.display {
    font-family: var(--font-display);
    font-size: var(--text-display);
    font-weight: 700;
    line-height: .88;
    letter-spacing: -.04em
}

.body-text {
    font-size: var(--text-body-size);
    color: var(--text-body);
    line-height: 1.75;
    font-weight: 300
}

.accent-brace {
    color: var(--accent-ice)
}

/* === PAGE HERO === */
.page-hero {
    padding-top: calc(72px + var(--space-xl));
    padding-bottom: var(--space-lg)
}

.page-hero h1 {
    max-width: 700px;
    margin-bottom: var(--space-md)
}

.page-hero .body-text {
    max-width: 560px
}

/* === SECTION HEADER === */
.section-header {
    margin-bottom: var(--space-lg)
}

.section-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--border)
}

.section-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-label-size);
    font-weight: 500;
    text-transform: lowercase;
    color: var(--text-body)
}

.section-nav .arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 11px;
    flex-shrink: 0;
    transition: transform .3s var(--ease-spring)
}

.section-nav:hover .arrow-icon {
    transform: rotate(45deg)
}

.section-num {
    font-size: var(--text-label-size);
    font-weight: 400;
    color: var(--text-label);
    font-family: var(--font-display);
    transition: color .3s
}

.section-num:hover {
    color: var(--accent-ice)
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    max-width: 700px
}

.section-header .body-text {
    max-width: 560px;
    margin-bottom: var(--space-md)
}

/* === BUTTONS — liquid fill to black === */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    border-radius: var(--radius-pill);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    text-transform: lowercase;
    border: none;
    position: relative;
    overflow: hidden;
    isolation: isolate
}

.btn-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    z-index: -2;
    border-radius: inherit;
    transition: background .3s
}

.btn-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
    clip-path: circle(0% at 30px 50%);
    transition: clip-path .6s var(--ease-out-expo);
    z-index: -1
}

.btn-pill:hover::before {
    clip-path: circle(250% at 30px 50%)
}

.btn-pill:active {
    opacity: .92
}

.btn-pill .arrow-circle {
    width: 28px;
    height: 28px;
    background: var(--bg-dark-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 13px;
    flex-shrink: 0;
    transition: background .4s var(--ease-out-expo), color .4s, transform .4s var(--ease-out-expo)
}

.btn-pill:hover .arrow-circle {
    background: #fff;
    color: var(--bg-dark-section);
    transform: rotate(45deg)
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    text-transform: lowercase;
    color: var(--text-primary);
    position: relative;
    padding: 4px 0;
    background: none;
    border: none;
    transition: color .25s
}

.btn-text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-ice);
    transition: width .4s var(--ease-out-expo)
}

.btn-text-link:hover {
    color: var(--accent-ice)
}

.btn-text-link:hover::after {
    width: 100%
}

.btn-text-link:active {
    color: var(--accent)
}

.btn-text-link span {
    transition: transform .3s var(--ease-spring)
}

.btn-text-link:hover span {
    transform: translate(3px, -3px)
}

/* ============================================
   NAVBAR — solid, no glass
   ============================================ */
.navbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    z-index: 1000;
    background: rgba(30, 28, 35, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(211, 218, 217, 0.08);
    border-radius: 16px;
    transition: border-color .4s, background .4s, top .4s cubic-bezier(0.76, 0, 0.24, 1), width .4s cubic-bezier(0.76, 0, 0.24, 1)
}

.navbar.scrolled {
    border-color: rgba(211, 218, 217, 0.12);
    background: rgba(30, 28, 35, 0.97)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad)
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    text-transform: lowercase;
    color: var(--text-primary);
    letter-spacing: -.01em
}

.nav-logo .brace {
    color: var(--accent);
    transition: transform .3s, color .3s;
    display: inline-block
}

.nav-logo:hover .brace {
    transform: scaleX(1.4);
    color: var(--accent-light)
}

.nav-links {
    display: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: .08em;
    color: var(--text-body);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: all .25s var(--ease-out-expo);
    position: relative
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    background: rgba(113, 90, 90, .18);
    opacity: 0;
    transition: opacity .25s;
    z-index: -1
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary)
}

.nav-links a:active {
    transform: scale(.95)
}

.nav-cta-wrap {
    display: flex
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    text-transform: lowercase;
    position: relative;
    overflow: hidden;
    isolation: isolate
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    z-index: -2;
    border-radius: inherit;
    transition: background .3s
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
    clip-path: circle(0% at 20px 50%);
    transition: clip-path .6s var(--ease-out-expo);
    z-index: -1
}

.nav-cta:hover::before {
    clip-path: circle(250% at 20px 50%)
}

.nav-cta>* {
    position: relative;
    z-index: 2
}

.nav-cta .arrow-circle {
    width: 24px;
    height: 24px;
    background: var(--bg-dark-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 11px;
    flex-shrink: 0;
    transition: background .4s var(--ease-out-expo), color .4s, transform .4s var(--ease-out-expo)
}

.nav-cta:hover .arrow-circle {
    background: #fff;
    color: var(--bg-dark-section);
    transform: rotate(45deg)
}

.nav-cta:active {
    opacity: .92
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all .3s var(--ease-out-expo)
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile nav — full screen overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-dark-section);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: lowercase;
    opacity: 0;
    transform: translateY(30px)
}

.mobile-nav.active a {
    opacity: 1;
    transform: translateY(0)
}

/* === DOT SEPARATOR === */
.dot-sep {
    display: flex;
    justify-content: center;
    padding: var(--space-md) 0
}

.dot-sep span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--accent-glow)
}

/* ============================================
   HERO — Two columns: text LEFT, globe RIGHT
   No floating badges. Raw typography.
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--bg-primary)
}

.hero-ambient {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 600px;
    height: 600px;
    transform: translate(0, -50%);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: .4
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    min-height: calc(100vh - 72px)
}

.hero-left {
    position: relative;
    z-index: 3
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-canvas-wrap {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    position: relative
}

.hero-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    display: block
}

.hero .section-header-top {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: var(--space-md);
    justify-content: flex-start;
    gap: var(--space-lg)
}

.hero-title {
    margin-bottom: var(--space-md)
}

.hero-title .line {
    display: block
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top
}

.hero-title .word-inner {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform
}

.hero.loaded .hero-title .word-inner {
    transform: translateY(0)
}

.hero-sub {
    font-size: 18px;
    color: var(--text-body);
    max-width: 440px;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity
}

.hero.loaded .hero-sub {
    opacity: 1;
    transform: translateY(0);
    transition: all .8s var(--ease-out-expo) .8s
}

.hero-cta-wrap {
    margin-top: var(--space-md);
    opacity: 0;
    transform: translateY(20px)
}

.hero.loaded .hero-cta-wrap {
    opacity: 1;
    transform: translateY(0);
    transition: all .8s var(--ease-out-expo) 1.1s
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: var(--container-pad);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-label);
    font-size: 11px;
    text-transform: lowercase;
    letter-spacing: .15em
}

.hero-scroll-hint .scroll-line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollBounce 2.5s ease-in-out infinite
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

/* === MARQUEE === */
.marquee {
    width: 100%;
    overflow: hidden;
    height: 56px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-dark-section)
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 35s linear infinite
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

.marquee-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: lowercase;
    padding: 0 24px;
    flex-shrink: 0
}

.marquee-sep {
    color: var(--accent);
    font-size: 10px;
    padding: 0 4px;
    flex-shrink: 0
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* === GRIDS === */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

/* ============================================
   CARDS — SOLID SURFACE. No glassmorphism.
   Precise shadow depth. 3 states.
   ============================================ */
.solid-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color .4s, box-shadow .4s, transform .4s var(--ease-out-expo);
    will-change: transform
}

.solid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 218, 217, 0.08), transparent);
    transition: opacity .4s
}

.solid-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px)
}

.solid-card:hover::before {
    opacity: 1
}

.solid-card:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card)
}

.solid-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(113, 90, 90, 0.12);
    border: 1px solid rgba(113, 90, 90, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 22px;
    transition: transform .3s var(--ease-spring), background .3s
}

.solid-card:hover .solid-card-icon {
    transform: scale(1.08) rotate(-2deg);
    background: rgba(113, 90, 90, 0.2)
}

.solid-card h3 {
    margin-bottom: 8px;
    text-transform: lowercase
}

.solid-card .body-text {
    font-size: 15px;
    margin-bottom: var(--space-md)
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 16px;
    transition: all .3s var(--ease-spring)
}

.card-arrow:hover {
    background: #fff;
    border-color: #fff;
    color: var(--bg-dark-section);
    transform: rotate(45deg)
}

.card-arrow:active {
    opacity: .92;
    transform: rotate(45deg) scale(.95)
}

/* ============================================
   HORIZONTAL PINNED SERVICES
   ============================================ */
.services-pin {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    padding-top: 48px;
    padding-bottom: 0
}

.services-pin-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0 40px;
    overflow: visible
}

.services-track {
    display: flex;
    gap: 24px;
    padding: 0 var(--container-pad);
    will-change: transform
}

.srv-card {
    flex: 0 0 340px;
    max-height: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: border-color .35s, box-shadow .35s, transform .35s var(--ease-out-expo);
    will-change: transform
}

.srv-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px)
}

.srv-card:active {
    transform: translateY(-3px)
}

.srv-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm)
}

.srv-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.srv-card .chip {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    text-transform: lowercase;
    color: var(--accent-light);
    margin-bottom: var(--space-sm);
    width: fit-content
}

.srv-card h3 {
    margin-bottom: 8px;
    text-transform: lowercase;
    font-size: 22px
}

.srv-card .body-text {
    font-size: 15px;
    margin-bottom: auto;
    padding-bottom: var(--space-md)
}

.srv-progress {
    width: 100%;
    height: 2px;
    background: rgba(211, 218, 217, 0.06);
    margin-top: var(--space-md);
    border-radius: 2px;
    overflow: hidden
}

.srv-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0;
    border-radius: 2px
}

/* Services fallback for mobile */
.services-fallback {
    display: none !important
}

.scroll-card {
    flex: 0 0 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all .3s var(--ease-out-expo)
}

.scroll-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px)
}

.scroll-card .scroll-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-sm)
}

.scroll-card .scroll-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5
}

.scroll-card h3 {
    margin-bottom: 8px;
    text-transform: lowercase;
    font-size: 18px
}

.scroll-card .body-text {
    font-size: 14px;
    margin-bottom: var(--space-sm)
}

/* ============================================
   VIDEO SCROLL SECTION
   ============================================ */
.video-section {
    position: relative;
    background: var(--bg-dark-section)
}

.video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.video-title-wrap {
    position: absolute;
    z-index: 3;
    text-align: center;
    will-change: transform, opacity
}

.video-title-wrap h2 {
    font-family: var(--font-display);
    margin-bottom: var(--space-sm)
}

.video-title-wrap p {
    color: var(--text-body)
}

.video-wrapper {
    width: 50%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    transform-origin: center;
    position: relative;
    background: var(--bg-primary);
    box-shadow: var(--shadow-deep);
    will-change: transform, border-radius
}

.video-abstract {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark-section));
    overflow: hidden
}

.video-abstract .wave {
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    opacity: .25
}

.video-abstract .wave:nth-child(1) {
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, var(--accent-glow) 40px, var(--accent-glow) 42px);
    animation: waveShift 10s linear infinite
}

.video-abstract .wave:nth-child(2) {
    background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(211, 218, 217, 0.04) 60px, rgba(211, 218, 217, 0.04) 62px);
    animation: waveShift 14s linear infinite reverse
}

.video-abstract .wave:nth-child(3) {
    background: radial-gradient(circle at 40% 40%, var(--accent-glow), transparent 50%);
    animation: waveFloat 8s ease-in-out infinite
}

@keyframes waveShift {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(80px)
    }
}

@keyframes waveFloat {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, -20px)
    }
}

.video-text-reveal {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    z-index: 3;
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    will-change: opacity
}

/* ============================================
   AI TOOLS / DARK SECTION
   ============================================ */
.section-dark {
    background: var(--bg-dark-section);
    position: relative;
    overflow: hidden
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(113, 90, 90, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

/* Chatbot mockup — SOLID, no blur */
.chatbot-mock {
    background: var(--bg-primary);
    border-radius: var(--radius-card);
    padding: 28px;
    max-width: 400px;
    margin-left: auto;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card)
}

.chatbot-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border)
}

.chatbot-dot-live {
    width: 8px;
    height: 8px;
    background: #22CC66;
    border-radius: 50%;
    animation: livePulse 1.5s ease infinite
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.chatbot-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-label)
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    min-height: 140px
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 85%;
    opacity: 0;
    transform: translateY(12px) scale(.97)
}

.chat-bubble.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all .5s var(--ease-out-expo)
}

.chat-bubble.bot {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
    align-self: flex-start
}

.chat-bubble.user {
    background: var(--accent);
    color: var(--text-primary);
    border-bottom-right-radius: 4px;
    align-self: flex-end
}

.chat-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-dark-section);
    border-radius: 14px;
    border: 1px solid var(--border)
}

.chat-input-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-label)
}

.chat-blink {
    width: 1px;
    height: 16px;
    background: var(--accent-ice);
    animation: blink 1s step-end infinite
}

.chat-send-btn {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s
}

.chat-send-btn:hover {
    transform: scale(1.15);
    background: var(--accent-light)
}

.chat-send-btn:active {
    transform: scale(.9)
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

/* GIANT STATS — huge typography, no cards */
.stats-giant {
    display: flex;
    align-items: stretch;
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.stat-giant-item {
    flex: 1;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    transition: background .3s
}

.stat-giant-item:not(:last-child) {
    border-right: 1px solid var(--border)
}

.stat-giant-item:hover {
    background: rgba(113, 90, 90, 0.04)
}

.stat-giant-num {
    font-family: var(--font-display);
    font-size: var(--text-stat);
    font-weight: 700;
    color: var(--text-primary);
    line-height: .85;
    margin-bottom: 12px;
    will-change: transform
}

.stat-giant-label {
    font-size: var(--text-label-size);
    color: var(--text-body);
    text-transform: lowercase;
    letter-spacing: .08em
}

/* ============================================
   STORY CARDS — SOLID, deep shadows
   ============================================ */
.hscroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--container-pad));
    padding: 0 var(--container-pad) var(--space-sm);
    cursor: grab
}

.hscroll-wrap:active {
    cursor: grabbing
}

.hscroll-wrap::-webkit-scrollbar {
    display: none
}

.hscroll-row {
    display: flex;
    gap: 20px;
    padding-right: var(--container-pad)
}

.story-card {
    flex: 0 0 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all .4s var(--ease-out-expo);
    will-change: transform
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover)
}

.story-card:active {
    transform: translateY(-4px)
}

.story-card-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.placeholder-art {
    font-size: 48px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3))
}

.story-card-body {
    padding: 28px
}

.story-card-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--accent-light);
    margin-bottom: 8px
}

.story-card-body h3 {
    text-transform: lowercase;
    margin-bottom: 8px;
    font-size: 20px
}

.story-card-body .body-text {
    font-size: 15px;
    margin-bottom: 12px
}

.story-result {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(211, 218, 217, 0.06);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: lowercase;
    color: var(--accent-ice);
    margin-bottom: 12px
}

.coming-badge {
    font-size: 13px;
    color: var(--text-label);
    font-style: italic
}

/* Hover image reveal */
.hover-preview {
    position: fixed;
    width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    transform: scale(.85);
    transition: opacity .3s, transform .3s var(--ease-out-expo);
    box-shadow: var(--shadow-deep)
}

.hover-preview.active {
    opacity: 1;
    transform: scale(1)
}

.hover-preview-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center
}

.scroll-nav {
    display: flex;
    gap: 12px;
    margin-top: var(--space-md)
}

.scroll-prev,
.scroll-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease-spring)
}

.scroll-prev:hover,
.scroll-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08)
}

.scroll-prev:active,
.scroll-next:active {
    transform: scale(.95)
}

/* ============================================
   VALUES / PHILOSOPHY
   ============================================ */
.values-list {
    display: flex;
    flex-direction: column
}

.value-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left .4s var(--ease-out-expo), border-color .3s
}

.value-row:hover {
    padding-left: 12px;
    border-color: var(--border-hover)
}

.value-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--accent);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: transform .3s var(--ease-spring)
}

.value-row:hover .value-num {
    transform: scale(1.1) rotate(-5deg)
}

.value-row h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: lowercase
}

.value-row .body-text {
    font-size: 15px
}

/* Word wheel — 3D perspective tilt */
.word-wheel-wrap {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px
}

.word-wheel-inner {
    width: 100%;
    height: 100%;
    transform: rotateX(18deg);
    transform-style: preserve-3d
}

.word-wheel-center {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px var(--accent-glow), 0 0 100px rgba(113, 90, 90, 0.15);
    z-index: 2
}

.word-wheel-svg {
    width: 100%;
    height: 100%;
    animation: spinText 25s linear infinite
}

@keyframes spinText {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* Broken-grid oversized number — removed */
.oversized-num {
    display: none
}

/* ============================================
   CONTACT FORM — floating labels, all states
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg)
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: border-color .3s
}

.contact-box:hover {
    border-color: var(--border-hover)
}

.contact-box h3 {
    margin-bottom: 12px;
    text-transform: lowercase
}

.contact-photo {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: var(--space-md);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.form-group {
    position: relative
}

.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-label);
    margin-bottom: 8px;
    transition: color .3s, transform .3s
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-primary);
    transition: border-color .3s;
    caret-color: var(--accent)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(211, 218, 217, 0.2)
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent)
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label {
    color: var(--accent-light)
}

.form-group textarea {
    resize: vertical;
    min-height: 80px
}

.form-submit {
    width: 100%;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    padding: 18px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 500;
    text-transform: lowercase;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color .3s
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
    clip-path: circle(0% at 50% 50%);
    transition: clip-path .6s var(--ease-out-expo);
    z-index: -1
}

.form-submit:hover::before {
    clip-path: circle(150% at 50% 50%)
}

.form-submit:active {
    opacity: .92
}

.form-submit.success {
    background: #22CC66;
    box-shadow: 0 0 30px rgba(34, 204, 102, 0.25)
}

/* ============================================
   FOOTER — large watermark
   ============================================ */
.footer {
    background: var(--bg-dark-section);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.footer-watermark {
    font-family: var(--font-display);
    font-size: clamp(100px, 14vw, 180px);
    font-weight: 700;
    color: rgba(211, 218, 217, 0.03);
    text-transform: lowercase;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: .85;
    z-index: 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: lowercase
}

.footer-logo .brace {
    color: var(--accent)
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-body);
    max-width: 280px;
    line-height: 1.6
}

.footer-heading {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-label);
    margin-bottom: 16px
}

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

.footer-list a {
    font-size: 15px;
    color: var(--text-body);
    transition: color .2s, transform .2s;
    text-transform: lowercase;
    display: inline-block
}

.footer-list a:hover {
    color: var(--accent-ice);
    transform: translateX(4px)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-label);
    position: relative;
    z-index: 1
}

.built-badge {
    background: rgba(113, 90, 90, 0.15);
    color: var(--accent-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    border: 1px solid var(--border-warm);
    transition: all .3s
}

.built-badge:hover {
    background: rgba(113, 90, 90, 0.25);
    color: var(--accent-ice)
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: padding-left .4s var(--ease-out-expo)
}

.service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height .5s var(--ease-out-expo);
    border-radius: 2px
}

.service-row:hover::before {
    height: 100%
}

.service-row:hover {
    padding-left: 16px
}

.service-row .srv-num {
    font-size: 14px;
    color: var(--text-label);
    padding-top: 4px;
    font-family: var(--font-display)
}

.service-row h3 {
    text-transform: lowercase;
    margin-bottom: 8px;
    font-size: 24px
}

.service-row .body-text {
    max-width: 500px
}

.srv-chip {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    text-transform: lowercase;
    color: var(--accent-light);
    white-space: nowrap
}

/* ============================================
   AI TOOLS PAGE
   ============================================ */
.ai-hero {
    background: var(--bg-dark-section);
    padding-top: calc(72px + var(--space-xl));
    padding-bottom: var(--space-xl);
    position: relative;
    overflow: hidden
}

.terminal {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    max-width: 600px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-card)
}

.terminal .line {
    color: var(--text-body);
    margin-bottom: 6px;
    opacity: 0
}

.terminal .line .green {
    color: #22CC66
}

.terminal .line .bar {
    display: inline-block;
    background: var(--accent);
    height: 12px;
    border-radius: 2px;
    vertical-align: middle
}

.terminal .prompt {
    color: var(--accent-ice);
    margin-right: 8px
}

.ai-feature {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border)
}

.ai-feature:last-child {
    border-bottom: none
}

.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 80px
}

.wave-bar {
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
    animation: waveAnim 1.2s ease-in-out infinite
}

@keyframes waveAnim {

    0%,
    100% {
        height: 15%
    }

    50% {
        height: 80%
    }
}

.flow-diagram {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.flow-node {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all .3s
}

.flow-node:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px)
}

.flow-arrow {
    color: var(--accent);
    font-size: 20px
}

.cta-full {
    background: var(--accent);
    color: var(--text-primary);
    padding: var(--space-xl) 0;
    text-align: center
}

.cta-full h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-md)
}

/* ============================================
   WORK PAGE
   ============================================ */
.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-md);
    flex-wrap: wrap
}

.filter-btn {
    background: rgba(211, 218, 217, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    font-size: 13px;
    text-transform: lowercase;
    color: var(--text-body);
    transition: all .25s var(--ease-out-expo)
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: var(--text-primary);
    border-color: var(--accent)
}

.filter-btn:active {
    transform: scale(.95)
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.team-cell {
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s var(--ease-out-expo)
}

.team-cell.revealed {
    opacity: 1;
    transform: translateY(0)
}

.team-cell:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover)
}

.team-cell-photo {
    height: 160px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    filter: grayscale(.6);
    transition: filter .4s
}

.team-cell:hover .team-cell-photo {
    filter: grayscale(0)
}

.team-cell-info {
    padding: 16px
}

.team-cell-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    text-transform: lowercase
}

.team-cell-role {
    font-size: 13px;
    color: var(--text-body);
    text-transform: lowercase
}

.stat-cell {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card)
}

.stat-big {
    font-family: var(--font-display);
    font-size: var(--text-stat);
    font-weight: 700;
    color: var(--text-primary);
    line-height: .85
}

.stat-desc {
    font-size: 14px;
    color: var(--text-body);
    text-transform: lowercase;
    margin-top: 8px
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.val-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 36px;
    box-shadow: var(--shadow-card);
    transition: all .3s var(--ease-out-expo)
}

.val-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px)
}

.val-card:active {
    transform: translateY(-2px)
}

.val-num {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
    font-family: var(--font-display)
}

.val-card h3 {
    text-transform: lowercase;
    margin-bottom: 8px;
    font-size: 20px
}

.val-card .body-text {
    font-size: 15px
}

/* ============================================
   REVEALS — clip-path and fade
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo)
}

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

.reveal-d4 {
    transition-delay: .4s
}

.reveal-d5 {
    transition-delay: .5s
}

/* ============================================
   BROKEN GRID ELEMENTS
   ============================================ */
.broken-rotate {
    transform: rotate(-2deg);
    transition: transform .4s var(--ease-spring)
}

.broken-rotate:hover {
    transform: rotate(0deg)
}

.bleed-left {
    margin-left: -5%
}

.bleed-right {
    margin-right: -5%
}

/* ============================================
   RESPONSIVE BREAKPOINTS — full coverage
   ============================================ */
@media(max-width:1024px) {
    .grid-2 {
        grid-template-columns: 1fr
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-left {
        order: 2
    }

    .hero-right {
        order: 1
    }

    .hero-canvas-wrap {
        max-width: 300px;
        margin: 0 auto
    }

    .hero-sub {
        margin: 0 auto var(--space-md)
    }

    .hero .section-header-top {
        justify-content: center
    }

    .hero-ambient {
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .stats-giant {
        flex-direction: column
    }

    .stat-giant-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-row {
        grid-template-columns: 1fr
    }

    .work-grid {
        grid-template-columns: 1fr 1fr
    }

    .services-pin {
        display: none
    }

    .services-fallback {
        display: block !important
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md)
    }

    .word-wheel-wrap {
        width: 220px;
        height: 220px
    }
}

@media(max-width:768px) {
    :root {
        --container-pad: 24px
    }

    .nav-links,
    .nav-cta-wrap {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    .mobile-nav {
        display: flex
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px
    }

    .hero-canvas-wrap {
        max-width: 220px;
        opacity: .6
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 60px) !important
    }

    .stat-giant-num {
        font-size: clamp(56px, 14vw, 80px) !important
    }

    .grid-3,
    .values-grid,
    .team-grid,
    .work-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .cursor-dot,
    .cursor-ring {
        display: none
    }

    body {
        cursor: auto
    }

    button,
    a {
        cursor: pointer
    }

    .scroll-card,
    .story-card {
        flex: 0 0 260px
    }

    .video-wrapper {
        width: 85% !important
    }

    .hero-scroll-hint {
        display: none
    }

    .hover-preview {
        display: none
    }

    .footer-watermark {
        font-size: 80px !important
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: clamp(36px, 11vw, 48px) !important
    }

    .hero-canvas-wrap {
        max-width: 180px
    }

    .section {
        padding: 60px 0
    }

    .stat-giant-num {
        font-size: clamp(48px, 15vw, 64px) !important
    }

    .footer-watermark {
        font-size: 60px !important
    }
}