/* =========================================
   SPICE VFX — Awwwards-Level Design System
   Premium. Cinematic. Unforgettable.
   ========================================= */

/* === DESIGN TOKENS === */
:root {
    --bg: #050507;
    --bg-2: #0a0a0e;
    --bg-3: #0f0f14;
    --bg-4: #141419;
    --surface: rgba(255, 255, 255, 0.025);
    --surface-2: rgba(255, 255, 255, 0.05);
    --surface-3: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.05);
    --border-2: rgba(255, 255, 255, 0.08);
    --border-3: rgba(255, 255, 255, 0.12);

    --text: #f0f0f5;
    --text-2: rgba(240, 240, 245, 0.55);
    --text-3: rgba(240, 240, 245, 0.3);
    --text-4: rgba(240, 240, 245, 0.15);

    --accent: #c4f82a;
    --accent-2: #a8e630;
    --accent-dim: rgba(196, 248, 42, 0.08);
    --accent-glow: rgba(196, 248, 42, 0.15);
    --purple: #8b5cf6;
    --purple-dim: rgba(139, 92, 246, 0.08);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.7);
    --shadow-accent: 0 8px 40px rgba(196, 248, 42, 0.2);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container: 1280px;
    --gap: 24px;
    --section-pad: 160px 0;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-magnetic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; cursor: none; }
ul { list-style: none; }

::selection { background: var(--accent); color: #000; }
:focus-visible { outline: 1.5px solid var(--accent); outline-offset: 3px; }

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

/* === NOISE OVERLAY === */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: noiseShift 0.15s steps(1) infinite;
}

@keyframes noiseShift {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 0%); }
    30% { transform: translate(0%, 1%); }
    40% { transform: translate(-1%, 1%); }
    50% { transform: translate(1%, -1%); }
    60% { transform: translate(-1%, 0%); }
    70% { transform: translate(1%, 1%); }
    80% { transform: translate(0%, -1%); }
    90% { transform: translate(1%, 0%); }
    100% { transform: translate(-1%, 1%); }
}

/* === CURSOR === */
.cursor-ring {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(196, 248, 42, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-spring),
                height 0.4s var(--ease-spring),
                border-color 0.3s,
                background 0.3s,
                opacity 0.3s;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: rgba(196, 248, 42, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor-ring.hover {
    width: 64px;
    height: 64px;
    border-color: var(--accent);
    background: var(--accent-dim);
}

.cursor-ring.click {
    width: 36px;
    height: 36px;
    border-color: var(--accent);
}

.cursor-ring.view {
    width: 80px;
    height: 80px;
    border-color: rgba(196, 248, 42, 0.3);
    background: rgba(196, 248, 42, 0.04);
}

.cursor-label {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.cursor-ring.hover + .cursor-dot + .cursor-trail + .cursor-label,
.cursor-ring.view:hover ~ .cursor-label {
    opacity: 1;
}

@media (pointer: coarse) {
    .cursor-ring, .cursor-dot, .cursor-trail, .cursor-label { display: none !important; }
    body, a, button, input, textarea, select { cursor: auto !important; }
}

/* === UTILITIES === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

em { font-style: normal; color: var(--accent); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 60px);
    font-weight: 800;
    line-height: 1.03;
    color: var(--text);
    letter-spacing: -0.025em;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 80px;
}

.section-head_left { flex-shrink: 0; }

.section-head_right {
    max-width: 380px;
    padding-bottom: 8px;
}

.section-head_right p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 24px;
}

.section-head_center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-head_center .section-desc {
    font-size: 17px;
    color: var(--text-2);
    max-width: 560px;
    line-height: 1.75;
    margin-top: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.75;
    margin-top: 20px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.4s var(--ease);
    position: relative;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.link-arrow:hover { gap: 14px; }
.link-arrow:hover::after { width: 100%; }

/* === PAGE TRANSITION === */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 99996;
    pointer-events: none;
    background: var(--bg);
    transform: translateY(100%);
    transition: transform 0.7s var(--ease);
}

.page-transition.active {
    transform: translateY(0);
    pointer-events: all;
}

/* === LOADER === */
.loader {
    position: fixed;
    inset: 0;
    background: #05050a;
    z-index: 99995;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.loader.hidden .loader-content {
    transform: scale(0.95);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

/* Background */
.loader-bg {
    position: absolute;
    inset: 0;
}

.loader-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.loader-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.loader-bg-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
}

/* Content */
.loader-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

/* Geometric frame */
.loader-frame {
    position: relative;
    width: min(520px, 92vw);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.lf-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(196, 248, 42, 0.5);
    border-style: solid;
    border-width: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cornerInTL 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both, cornerGlow 2s ease-in-out 1.5s infinite;
}

.lf-corner_tl {
    top: 0; left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}

.lf-corner_tr {
    top: 0; right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
    animation: cornerInTR 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both, cornerGlow 2s ease-in-out 1.7s infinite;
}

.lf-corner_bl {
    bottom: 0; left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
    animation: cornerInBL 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both, cornerGlow 2s ease-in-out 1.9s infinite;
}

.lf-corner_br {
    bottom: 0; right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
    animation: cornerInBR 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both, cornerGlow 2s ease-in-out 2.1s infinite;
}

@keyframes cornerInTL {
    from { opacity: 0; transform: translate(-10px, -10px); }
    to { opacity: 1; transform: translate(0, 0); }
}
@keyframes cornerInTR {
    from { opacity: 0; transform: translate(10px, -10px); }
    to { opacity: 1; transform: translate(0, 0); }
}
@keyframes cornerInBL {
    from { opacity: 0; transform: translate(-10px, 10px); }
    to { opacity: 1; transform: translate(0, 0); }
}
@keyframes cornerInBR {
    from { opacity: 0; transform: translate(10px, 10px); }
    to { opacity: 1; transform: translate(0, 0); }
}
@keyframes cornerGlow {
    0%, 100% { border-color: rgba(196, 248, 42, 0.5); box-shadow: none; }
    50% { border-color: rgba(196, 248, 42, 0.9); box-shadow: 0 0 10px rgba(196, 248, 42, 0.3), inset 0 0 8px rgba(196, 248, 42, 0.1); }
}

/* Center logo with rings */
.loader-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes centerIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.loader-rings {
    position: absolute;
    inset: -60px;
    pointer-events: none;
}

.lr-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
}

.lr-ring_1 {
    inset: 0;
    border-color: rgba(196, 248, 42, 0.15);
    animation: ringRotate 8s linear infinite;
}

.lr-ring_2 {
    inset: 12px;
    border-color: rgba(196, 248, 42, 0.1);
    border-top-color: rgba(196, 248, 42, 0.25);
    animation: ringRotate 12s linear infinite reverse;
}

.lr-ring_3 {
    inset: 28px;
    border-color: rgba(196, 248, 42, 0.06);
    border-bottom-color: rgba(196, 248, 42, 0.2);
    border-right-color: transparent;
    border-left-color: transparent;
    animation: ringRotate 18s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Orbiting dots on rings */
.lr-orbiter {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c4f82a;
    box-shadow: 0 0 6px #c4f82a, 0 0 12px rgba(196, 248, 42, 0.5);
}

.lr-orbiter_1 {
    top: 50%;
    left: 50%;
    transform-origin: -45px 0;
    animation: orbitRing1 4s linear infinite;
}

.lr-orbiter_2 {
    top: 50%;
    left: 50%;
    transform-origin: -69px 0;
    animation: orbitRing2 7s linear infinite reverse;
}

.lr-orbiter_3 {
    top: 50%;
    left: 50%;
    transform-origin: -85px 0;
    animation: orbitRing3 11s linear infinite;
}

@keyframes orbitRing1 {
    from { transform: rotate(0deg) translateX(-45px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(-45px) rotate(-360deg); }
}
@keyframes orbitRing2 {
    from { transform: rotate(0deg) translateX(-69px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(-69px) rotate(-360deg); }
}
@keyframes orbitRing3 {
    from { transform: rotate(0deg) translateX(-85px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(-85px) rotate(-360deg); }
}

.loader-logo-container {
    position: relative;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.loader-logo {
    width: 280px;
    height: auto;
}

/* Brand text */
.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: brandIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

@keyframes brandIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lb-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lb-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

.lb-label_accent {
    color: rgba(196, 248, 42, 0.6);
}

.lb-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,248,42,0.4), transparent);
}

.lb-location {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

/* Progress section */
.loader-progress {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: progressIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

@keyframes progressIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-bar-track {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: visible;
}

.lp-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c4f82a, #c4f82a);
    border-radius: 100px;
    position: relative;
    will-change: width;
    transition: width 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-bar-inner {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, #c4f82a 0%, #ffffff 50%, #c4f82a 100%);
    background-size: 200% 100%;
    animation: shimmerSlide 1.4s linear infinite;
}

@keyframes shimmerSlide {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.lp-bar-glow {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #c4f82a;
    border-radius: 50%;
    box-shadow:
        0 0 6px #c4f82a,
        0 0 14px #c4f82a,
        0 0 28px rgba(196, 248, 42, 0.5),
        0 0 50px rgba(196, 248, 42, 0.2);
    animation: glowPulse 1.2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 6px #c4f82a, 0 0 14px #c4f82a, 0 0 28px rgba(196, 248, 42, 0.5), 0 0 50px rgba(196, 248, 42, 0.2); }
    50% { box-shadow: 0 0 10px #c4f82a, 0 0 22px #c4f82a, 0 0 40px rgba(196, 248, 42, 0.7), 0 0 70px rgba(196, 248, 42, 0.3); }
}

.lp-bar-trail {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(196, 248, 42, 0.25));
    border-radius: 100px;
    filter: blur(3px);
}

.lp-bar-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 24%;
}

.lp-bar-lines span {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
}

.lp-bar-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 24%;
}

.lp-tick {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-tick.lp-tick_active {
    background: #c4f82a;
    box-shadow: 0 0 6px #c4f82a;
}

.lp-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.lp-counter {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.lp-num {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 500;
    color: rgba(196, 248, 42, 0.9);
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(196, 248, 42, 0.3);
}

.lp-unit {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.lp-status {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

/* Particles */
.loader-particles {
    position: absolute;
    inset: 0;
    z-index: 5;
    overflow: hidden;
    pointer-events: none;
}

.loader-particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleDrift 6s ease-in-out infinite;
}

@keyframes particleDrift {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 0.7; transform: translateY(-10vh) scale(1); }
    85% { opacity: 0.7; transform: translateY(-80vh) scale(1); }
    100% { opacity: 0; transform: translateY(-90vh) scale(0.5); }
}

/* Corner accents */
.loader-corner-accent {
    position: absolute;
    opacity: 0;
    animation: cornerAccentIn 0.6s ease 0.8s both;
}

@keyframes cornerAccentIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lca-tl { top: 24px; left: 24px; }
.lca-br { bottom: 24px; right: 24px; transform: rotate(180deg); }

/* Top strip */
.loader-top-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: linear-gradient(180deg, rgba(196,248,42,0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(196, 248, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: stripSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@keyframes stripSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.lts-content {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.lts-sep {
    color: rgba(255, 107, 53, 0.4);
    letter-spacing: 0;
}

/* Bottom strip */
.loader-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(0deg, rgba(196,248,42,0.06) 0%, transparent 100%);
    border-top: 1px solid rgba(196, 248, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    animation: stripSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@keyframes stripSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.lbs-time {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
}

.lbs-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 107, 53, 0.6);
    text-transform: uppercase;
}

.lbs-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c4f82a;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #c4f82a; }
    50% { opacity: 0.4; box-shadow: none; }
}

/* === CANVAS BACKGROUND === */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: padding 0.5s var(--ease),
                background 0.5s,
                border-color 0.5s,
                backdrop-filter 0.5s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: var(--border);
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-logo-img {
    height: 48px;
    width: auto;
}

.logo-mark {
    font-size: 18px;
    color: var(--accent);
    line-height: 1;
    animation: logoBlink 4s ease-in-out infinite;
}

@keyframes logoBlink {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px rgba(196, 248, 42, 0.4)); }
    50% { opacity: 0.7; filter: none; }
}

.logo-word {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    transition: color 0.3s, background 0.3s;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: var(--accent-dim);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::before { opacity: 1; transform: scale(1); }
.nav-link.active { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--accent);
    color: #000;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring),
                box-shadow 0.4s var(--ease);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-2);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.nav-cta:hover::before { transform: translateX(0); }
.nav-cta span, .nav-cta svg { position: relative; z-index: 1; }

.nav-cta svg {
    transition: transform 0.4s var(--ease-spring);
}

.nav-cta:hover svg {
    transform: translate(2px, -2px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-burger:hover { background: var(--surface); }
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-burger.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: flex; }
}

/* === MOBILE NAV === */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-inner { padding: 40px; width: 100%; }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
    transform: translateX(40px);
    opacity: 0;
}

.mobile-nav.open .mobile-nav-link {
    animation: slideIn 0.6s var(--ease) forwards;
}

.mobile-nav.open .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.open .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav.open .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav.open .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav.open .mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav.open .mobile-nav-link:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideIn {
    to { transform: translateX(0); opacity: 1; }
}

.mobile-nav-link span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    color: var(--accent);
    min-width: 24px;
}

.mobile-nav-link:hover { color: var(--text); }
.mobile-nav-cta { color: var(--accent); border-color: transparent; }

.mobile-nav-footer {
    margin-top: 56px;
}

.mobile-nav-footer p {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.4s var(--ease-spring);
    white-space: nowrap;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease);
}

.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }

.btn_primary,
.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 17px 36px;
}

.btn_primary:hover,
.btn-primary:hover {
    background: var(--accent-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 248, 42, 0.25);
}

.btn_ghost {
    background: transparent;
    color: var(--text);
    padding: 17px 36px;
    border: 1px solid var(--border-2);
}

.btn_ghost:hover {
    background: var(--surface);
    border-color: rgba(196, 248, 42, 0.2);
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--accent);
    border-radius: 50%;
    color: #000;
    transition: transform 0.4s var(--ease-spring);
    flex-shrink: 0;
}

.btn_ghost:hover .btn-play-icon { transform: scale(1.12); }

.btn_submit {
    background: var(--accent);
    color: #000;
    padding: 20px 44px;
    width: 100%;
    font-size: 15px;
}

.btn_submit:hover {
    background: var(--accent-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 248, 42, 0.25);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 160px 0 120px;
    overflow: visible;
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    flex: 1;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 248, 42, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 248, 42, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb_1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.04), transparent 60%);
    top: -20%;
    right: -10%;
    animation: orbDrift 12s ease-in-out infinite;
}

.hero-orb_2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03), transparent 60%);
    bottom: 0;
    left: -5%;
    animation: orbDrift 12s ease-in-out infinite reverse;
}

.hero-orb_3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.02), transparent 60%);
    top: 40%;
    right: 20%;
    animation: orbDrift 15s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    background: var(--accent-dim);
    border: 1px solid rgba(196, 248, 42, 0.12);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(196, 248, 42, 0.1), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: badgePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
    50% { opacity: 0.3; box-shadow: 0 0 3px var(--accent); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 900px;
    padding-bottom: 8px;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 0.9s var(--ease);
}

.hero-title-line-inner.animated { transform: translateY(0); }

.hero-title-line_accent { color: var(--accent); }

.hero-title-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.hero-title-char.animated {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.hero-desc {
    font-size: 19px;
    color: var(--text-2);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease) 0.3s, transform 0.8s var(--ease) 0.3s;
}

.hero-desc.animated { opacity: 1; transform: translateY(0); }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 88px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease) 0.5s, transform 0.8s var(--ease) 0.5s;
}

.hero-actions.animated { opacity: 1; transform: translateY(0); }

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 56px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease) 0.7s, transform 0.8s var(--ease) 0.7s;
}

.hero-metrics.animated { opacity: 1; transform: translateY(0); }

.metric {
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-wrap: wrap;
}

.metric-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.metric-suf {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--accent);
}

.metric-label {
    display: block;
    width: 100%;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    margin-top: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.metric-div {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--border-2), transparent);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.scroll-hint-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
    position: relative;
}

.scroll-hint-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent);
    border-radius: 1px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
}

@media (max-width: 768px) {
    .hero-metrics { gap: 32px; flex-wrap: wrap; }
    .metric-div { display: none; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* === SHOWREEL === */
.showreel {
    position: relative;
    z-index: 1;
    padding: 0 0 140px;
}

.showreel-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-2);
    transition: border-color 0.4s, transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.showreel-card[data-thumb] {
    background-image: url();
    background-size: cover;
    background-position: center;
}

.showreel-card:hover {
    border-color: rgba(196, 248, 42, 0.15);
    transform: scale(1.005);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(196, 248, 42, 0.05);
}

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

.sa-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 248, 42, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 248, 42, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}

.sa-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.sa-orb_1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.06), transparent 65%);
    top: -25%;
    right: -15%;
}

.sa-orb_2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05), transparent 65%);
    bottom: -15%;
    left: 15%;
    animation-delay: -4s;
}

.sa-orb_3 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.04), transparent 65%);
    top: 30%;
    left: 40%;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 10s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -25px) scale(1.1); }
    66% { transform: translate(-25px, 25px) scale(0.95); }
}

.showreel-yt-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.showreel-yt-wrap.active {
    opacity: 1;
}

.showreel-yt-wrap.active ~ .showreel-play,
.showreel-yt-wrap.active ~ .showreel-label,
.showreel-yt-wrap.active ~ .showreel-awards {
    opacity: 0;
    pointer-events: none;
}

.showreel-yt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showreel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.4s var(--ease-spring), opacity 0.4s;
}

.showreel-card:hover .showreel-play { transform: translate(-50%, -50%) scale(1.05); }

.showreel-play-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 240, 245, 0.4);
    transition: color 0.3s;
}

.showreel-card:hover .showreel-play-label { color: rgba(240, 240, 245, 0.7); }

.play-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(196, 248, 42, 0.15);
    border-radius: 50%;
    animation: playRing 3s ease-out infinite;
}

.play-ring:nth-child(2) { animation-delay: 1s; }
.play-ring:nth-child(3) { animation-delay: 2s; }

@keyframes playRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

.play-circle {
    width: 88px;
    height: 88px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 50px rgba(196, 248, 42, 0.25), 0 0 100px rgba(196, 248, 42, 0.1);
    transition: box-shadow 0.4s, transform 0.4s var(--ease-spring);
    position: relative;
    z-index: 1;
}

.showreel-card:hover .play-circle {
    box-shadow: 0 0 70px rgba(196, 248, 42, 0.4), 0 0 140px rgba(196, 248, 42, 0.15);
    transform: scale(1.05);
}

.showreel-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    gap: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(240, 240, 245, 0.35);
    z-index: 4;
    transition: opacity 0.4s;
}

.showreel-awards {
    position: absolute;
    bottom: 28px;
    right: 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 4;
    transition: opacity 0.4s;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(240, 240, 245, 0.45);
    transition: border-color 0.3s, color 0.3s;
}

.award-badge:hover {
    border-color: rgba(196, 248, 42, 0.15);
    color: rgba(240, 240, 245, 0.7);
}

.award-icon {
    font-size: 10px;
    color: var(--accent);
}

/* === WORK / PORTFOLIO === */
.work {
    position: relative;
    z-index: 1;
    padding: var(--section-pad);
}

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

.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: none;
    border: 1px solid transparent;
    transition: border-color 0.5s var(--ease),
                transform 0.5s var(--ease),
                box-shadow 0.5s var(--ease);
}

.work-item:hover {
    border-color: rgba(196, 248, 42, 0.12);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(196, 248, 42, 0.03);
    z-index: 2;
}

.work-item:active {
    border-color: rgba(196, 248, 42, 0.12);
    transform: translateY(-4px) scale(1.005);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(196, 248, 42, 0.02);
    z-index: 2;
}

.work-item:hover .work-item-play-overlay,
.work-item:active .work-item-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.work-item:hover .work-hover-overlay,
.work-item:active .work-hover-overlay {
    opacity: 1;
}

.work-item:hover .work-item-bg.vimeo-bg img,
.work-item:active .work-item-bg.vimeo-bg img {
    transform: scale(1.05);
}

.work-item_tall { grid-row: span 2; }
.work-item_wide { grid-column: span 2; }

.work-item-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s var(--ease), filter 0.4s ease;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.work-item-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 7, 0.97) 0%, rgba(5, 5, 7, 0.3) 45%, transparent 70%);
    transition: background 0.5s;
    pointer-events: none;
}

.work-item:hover .work-item-bg::after {
    background: linear-gradient(to top, rgba(5, 5, 7, 0.98) 0%, rgba(5, 5, 7, 0.5) 50%, rgba(196, 248, 42, 0.015) 100%);
}

.work-item:hover .work-item-bg {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.15);
}

.work-bg-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wba-icon {
    font-size: 72px;
    color: rgba(255, 255, 255, 0.03);
    transition: transform 0.8s var(--ease), color 0.4s, opacity 0.4s;
    opacity: 0.5;
}

.work-item:hover .wba-icon {
    color: rgba(255, 255, 255, 0.06);
    transform: scale(1.5) rotate(5deg);
    opacity: 1;
}

.wba-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(196, 248, 42, 0.02) 0%, transparent 40%),
        linear-gradient(-135deg, rgba(139, 92, 246, 0.02) 0%, transparent 40%);
}

.work-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.work-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.work-cat {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.work-year {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-3);
    letter-spacing: 1px;
}

.work-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.work-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    /* luôn hiển thị, không ẩn đi */
}

.work-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s 0.05s, transform 0.5s 0.05s var(--ease);
}

.work-item:hover .work-tags { opacity: 1; transform: translateY(0); }

.work-tags span {
    padding: 5px 12px;
    background: var(--accent-dim);
    border: 1px solid rgba(196, 248, 42, 0.1);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.work-item-glitch {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 248, 42, 0.02), rgba(139, 92, 246, 0.02));
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: screen;
}

.work-item:hover .work-item-glitch { opacity: 1; }

/* === WORK ITEM VIMEO VIDEO ON HOVER === */
.work-item-vimeo {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    overflow: hidden;
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.work-item-vimeo iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 130%;
    height: 130%;
    border: none;
    pointer-events: none;
}

/* Gradient overlay on top of thumbnail when hovering */
.work-item-vimeo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(5, 5, 7, 0.98) 0%,
        rgba(5, 5, 7, 0.55) 35%,
        rgba(5, 5, 7, 0.15) 55%,
        transparent 75%
    );
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.work-item:hover .work-item-vimeo-overlay {
    opacity: 1;
}

.work-item.is-playing .work-item-vimeo {
    opacity: 1;
    z-index: 3;
}

.work-item.is-playing .work-item-bg,
.work-item.is-playing .work-bg-art,
.work-item.is-playing .wba-icon,
.work-item.is-playing .work-item-content,
.work-item.is-playing .work-item-glitch,
.work-item.is-playing .work-item-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.work-item.is-playing .work-item-vimeo-overlay {
    opacity: 1;
    z-index: 2;
}

.work-item-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

/* Show play overlay on touch devices (no hover available) */
@media (hover: none) and (pointer: coarse) {
    .work-item-play-overlay {
        opacity: 1;
    }
}

.work-item:hover .work-item-play-overlay {
    opacity: 1;
}

.work-play-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 30px rgba(196, 248, 42, 0.3);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.work-item:hover .work-play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(196, 248, 42, 0.4);
}

.work-play-label {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 240, 245, 0.5);
}

/* === CINEMATIC HOVER OVERLAY === */
.work-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(
        to top,
        rgba(5, 5, 7, 0.98) 0%,
        rgba(5, 5, 7, 0.65) 40%,
        rgba(5, 5, 7, 0.15) 65%,
        transparent 85%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms var(--ease);
}

.work-item:hover .work-hover-overlay {
    opacity: 1;
}

.work-hover-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #f0f0f5;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    transform: translateY(10px);
    transition: transform 450ms var(--ease);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.work-item:hover .work-hover-title {
    transform: translateY(0);
}

.work-hover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(196, 248, 42, 0.1);
    border: 1px solid rgba(196, 248, 42, 0.25);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c4fc2a;
    cursor: none;
    transform: translateY(10px);
    opacity: 0;
    transition:
        opacity 450ms 60ms var(--ease),
        transform 450ms 60ms var(--ease),
        background 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease;
}

.work-hover-btn svg {
    width: 12px;
    height: 12px;
    transition: transform 300ms ease;
}

.work-hover-btn:hover {
    background: rgba(196, 248, 42, 0.18);
    border-color: rgba(196, 248, 42, 0.5);
    box-shadow: 0 0 24px rgba(196, 248, 42, 0.12);
}

.work-hover-btn:hover svg {
    transform: translateX(3px);
}

.work-item:hover .work-hover-btn {
    transform: translateY(0);
    opacity: 1;
}

/* === THUMBNAIL LOADING SKELETON === */
.work-thumb-skeleton {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 2s infinite linear;
    pointer-events: none;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.work-thumb-skeleton.hidden {
    opacity: 0;
    transition: opacity 600ms ease;
}

.work-thumb-error {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
}

.work-thumb-error svg {
    opacity: 0.4;
}

/* === WORK ITEM THUMBNAIL LOADING STATES === */
.work-item-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s var(--ease), filter 0.4s ease;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-3);
    /* Ensure crisp rendering for thumbnails */
    image-rendering: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
}

/* Skeleton shimmer animation for loading state */
.work-item-bg:not(.img-loaded) {
    background-image: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 2s infinite linear;
}

/* Image loaded state - ensure sharp display */
.work-item-bg.img-loaded {
    filter: brightness(1.0) saturate(1.1) contrast(1.02);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 900px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
    .work-item_tall { grid-row: span 1; }
    .work-item_wide { grid-column: span 2; }
}

@media (max-width: 640px) {
    .work-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
    .work-item_wide { grid-column: span 1; }
}

/* === SERVICES === */
.services {
    position: relative;
    z-index: 1;
    padding: var(--section-pad);
    background: var(--bg-2);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

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

.service-row {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 48px;
    gap: 40px;
    align-items: center;
    padding: 44px 36px;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius);
    margin-left: -36px;
    margin-right: -36px;
    position: relative;
    transition: background 0.4s var(--ease),
                border-color 0.4s;
}

.service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(196, 248, 42, 0.03), transparent);
    border-radius: var(--radius) 0 0 var(--radius);
    transition: width 0.5s var(--ease);
}

.service-row:hover::before { width: 100%; }

.service-row:hover { background: var(--surface); }
.service-row:first-child { border-top: 1px solid var(--border); }

.service-row_left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-num {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-3);
    min-width: 28px;
}

.service-icon-lg {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--accent);
    transition: background 0.4s, border-color 0.4s,
                transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.service-row:hover .service-icon-lg {
    background: var(--accent-dim);
    border-color: rgba(196, 248, 42, 0.15);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 0 24px rgba(196, 248, 42, 0.1);
}

.service-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.service-row:hover .service-name { color: var(--accent); }

.service-excerpt {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.65;
}

.service-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-tags li {
    font-size: 13px;
    color: var(--text-3);
    padding-left: 18px;
    position: relative;
    transition: color 0.3s, transform 0.3s var(--ease);
}

.service-tags li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    opacity: 0.3;
    transition: opacity 0.3s;
}

.service-row:hover .service-tags li { color: var(--text-2); transform: translateX(4px); }
.service-row:hover .service-tags li::before { opacity: 0.6; }

.service-row_arrow {
    color: var(--text-3);
    transition: color 0.3s, transform 0.4s var(--ease-spring);
}

.service-row:hover .service-row_arrow {
    color: var(--accent);
    transform: translate(5px, -5px) rotate(5deg);
}

@media (max-width: 900px) {
    .service-row { grid-template-columns: 1fr; gap: 20px; }
    .service-row_left { justify-content: flex-start; }
    .service-row_right { display: none; }
    .service-row_arrow { display: none; }
}

/* === ABOUT === */
.about {
    position: relative;
    z-index: 1;
    padding: var(--section-pad);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 96px;
    align-items: center;
}

.about-visual { position: relative; }

.about-img-block {
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border);
    position: relative;
}

.about-img-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0a0a0e, #0f0f14);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(196, 248, 42, 0.03), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.02), transparent 50%);
}

.about-video-wrap {
    width: 100%;
    height: 100%;
}

.about-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-studio-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.asa-mark {
    font-size: 56px;
    color: var(--accent);
    animation: logoGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(196, 248, 42, 0.3));
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(196, 248, 42, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(196, 248, 42, 0.5)); }
}

.asa-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 10px;
    color: var(--text-2);
}

.asa-year {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent);
}

.about-float-card {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 130px;
    height: 130px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 12px 50px rgba(196, 248, 42, 0.25);
    animation: floatBounce 4s ease-in-out infinite;
    z-index: 2;
}

.about-float-card::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(196, 248, 42, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(2deg); }
    75% { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0; }
}

.afc-num {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.afc-label {
    font-size: 8px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-lead {
    font-size: 19px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-lead strong { color: var(--text); }

.about-body {
    font-size: 16px;
    color: var(--text-3);
    line-height: 1.85;
    margin-bottom: 48px;
}

.about-pillars {
    display: flex;
    gap: 16px;
}

.pillar {
    flex: 1;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: background 0.4s, border-color 0.4s,
                transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.pillar:hover {
    background: var(--surface-2);
    border-color: rgba(196, 248, 42, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid rgba(196, 248, 42, 0.1);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-spring), background 0.3s;
}

.pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(196, 248, 42, 0.12);
}

.pillar h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.pillar p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-img-block { max-width: 420px; }
    .about-pillars { flex-direction: column; }
}

/* === PROCESS === */
.process {
    position: relative;
    z-index: 1;
    padding: var(--section-pad);
    background: var(--bg-2);
}

.process::before, .process::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.process::before { top: 0; }
.process::after { bottom: 0; }

.process-steps {
    display: flex;
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(196, 248, 42, 0.15));
}

.process-step {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.process-step-num {
    position: absolute;
    top: 16px;
    left: 20px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    border: 1px solid rgba(196, 248, 42, 0.15);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    color: var(--accent);
    z-index: 2;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.process-step:hover .process-step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: scale(1.15);
}

.process-step-line {
    height: 1px;
    background: var(--border);
    margin-bottom: 36px;
}

.process-step-body {
    padding-top: 36px;
}

.ps-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--accent);
    margin-bottom: 24px;
    transition: background 0.4s, border-color 0.4s,
                transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.process-step:hover .ps-icon {
    background: var(--accent-dim);
    border-color: rgba(196, 248, 42, 0.15);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 0 24px rgba(196, 248, 42, 0.08);
}

.process-step-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.process-step:hover .process-step-body h3 { color: var(--accent); }

.process-step-body p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .process-steps { flex-direction: column; }
    .process-steps::before { display: none; }
    .process-step { padding: 0; }
    .process-step-line { display: none; }
    .process-step-num { position: static; margin-bottom: 16px; }
}

/* === TECH STACK === */
.tech {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.tech-inner {
    display: flex;
    align-items: center;
    gap: 72px;
}

.tech-label { flex-shrink: 0; }

.tech-label p {
    font-size: 15px;
    color: var(--text-2);
    margin-top: 10px;
    max-width: 200px;
}

.tech-grid {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: center;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: background 0.4s, border-color 0.4s,
                transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.tech-item:hover {
    background: var(--surface-2);
    border-color: rgba(196, 248, 42, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tech-icon { color: var(--accent); }

.tech-item span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    transition: color 0.3s;
}

.tech-item:hover span { color: var(--text); }

@media (max-width: 900px) {
    .tech-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
}

/* === INSIGHTS === */
.insights {
    position: relative;
    z-index: 1;
    padding: var(--section-pad);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 24px;
}

.insight-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: background 0.4s, border-color 0.4s,
                transform 0.5s var(--ease-spring), box-shadow 0.4s;
}

.insight-card:hover {
    background: var(--surface-2);
    border-color: rgba(196, 248, 42, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.insight-card_main { grid-row: span 2; }

.insight-img {
    height: 220px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    overflow: hidden;
}

.insight-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 7, 0.8), transparent 60%);
    z-index: 1;
}

.insight-card_main .insight-img { height: 300px; }

.insight-category {
    padding: 7px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    z-index: 2;
    position: relative;
}

.insight-body { padding: 28px; }

.insight-date {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.insight-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.insight-card:hover .insight-title { color: var(--accent); }

.insight-card_main .insight-title { font-size: 26px; }

.insight-excerpt {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.75;
    margin-bottom: 20px;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.4s var(--ease);
}

.insight-link:hover { gap: 12px; }

/* === INSIGHT HOVER THUMBNAIL === */
.insight-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
}

.insight-card:hover .insight-hover-overlay {
    opacity: 1;
}

.insight-thumb-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.insight-thumb-skeleton.hidden {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.insight-play-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.insight-play-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(196, 248, 42, 0.15);
    border: 1.5px solid rgba(196, 248, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 0 24px rgba(196, 248, 42, 0.2);
}

.insight-play-wrap span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(196, 248, 42, 0.7);
}

.insight-thumb-error {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
}

.insight-img.img-loaded .insight-hover-overlay {
    background: rgba(5, 5, 7, 0.5);
}

.insight-img.img-loaded .insight-thumb-skeleton {
    display: none;
}

@media (max-width: 900px) {
    .insights-grid { grid-template-columns: 1fr; }
    .insight-card_main { grid-row: span 1; }
}

/* === TESTIMONIALS === */
.testimonials {
    position: relative;
    z-index: 1;
    padding: var(--section-pad);
    background: var(--bg-2);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--ease);
    cursor: grab;
}

.testimonials-track:active { cursor: grabbing; }

.testimonial-card {
    flex-shrink: 0;
    width: calc(33.333% - 16px);
    padding: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: background 0.4s, border-color 0.4s,
                transform 0.4s var(--ease-spring), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 248, 42, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.testimonial-card:hover {
    background: var(--surface-2);
    border-color: rgba(196, 248, 42, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-text {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 36px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    color: var(--accent-dim);
    position: absolute;
    top: -30px;
    left: -8px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 248, 42, 0.1);
    border: 1px solid rgba(196, 248, 42, 0.2);
    border-radius: 50%;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.testimonial-role {
    display: block;
    font-size: 13px;
    color: var(--text-3);
    margin-top: 3px;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.testimonial-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-2);
    transition: background 0.3s, border-color 0.3s,
                color 0.3s, transform 0.3s var(--ease-spring);
}

.testimonial-btn:hover {
    background: var(--accent-dim);
    border-color: rgba(196, 248, 42, 0.2);
    color: var(--accent);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: width 0.4s var(--ease), background 0.3s, border-radius 0.3s;
    padding: 0;
}

.testimonial-dots .dot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.testimonial-dots .dot.active {
    width: 28px;
    background: var(--accent);
}

@media (max-width: 900px) {
    .testimonial-card { width: calc(100% - 32px); }
}

/* === CLIENTS === */
.clients {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.clients-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 48px;
}

.clients-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.clients-marquee { overflow: hidden; }

.clients-track {
    display: flex;
    gap: 12px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-item {
    flex-shrink: 0;
    padding: 18px 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-3);
    transition: border-color 0.4s, color 0.4s,
                background 0.4s, transform 0.3s var(--ease-spring);
    white-space: nowrap;
}

.client-item:hover {
    border-color: rgba(196, 248, 42, 0.15);
    color: var(--text-2);
    background: var(--surface);
    transform: translateY(-2px);
}

/* === CONTACT === */
.contact {
    position: relative;
    z-index: 1;
    padding: var(--section-pad);
    background: var(--bg-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 96px;
    align-items: start;
}

.contact-desc {
    font-size: 18px;
    color: var(--text-2);
    line-height: 1.75;
    margin: 20px 0 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.3s var(--ease);
}

.contact-detail:hover { transform: translateX(6px); }

.cd-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid rgba(196, 248, 42, 0.1);
    border-radius: 12px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-spring), background 0.3s;
}

.contact-detail:hover .cd-icon {
    transform: scale(1.1) rotate(-3deg);
    background: rgba(196, 248, 42, 0.12);
}

.cd-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 4px;
}

.cd-value {
    display: block;
    font-size: 15px;
    color: var(--text);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-2);
    transition: background 0.4s, border-color 0.4s,
                color 0.3s, transform 0.4s var(--ease-spring),
                box-shadow 0.4s;
}

.social-btn:hover {
    background: var(--accent-dim);
    border-color: rgba(196, 248, 42, 0.15);
    color: var(--accent);
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* === CONTACT FORM === */
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.contact-form-wrap:focus-within {
    border-color: rgba(196, 248, 42, 0.15);
    box-shadow: 0 0 40px rgba(196, 248, 42, 0.03);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.contact-header .section-title {
    font-size: 48px;
    margin: 0 0 20px;
}

.contact-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--text);
}

.contact-info-card > p {
    color: var(--text-muted);
    margin: 0 0 32px;
    font-size: 15px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #c4f82a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item span {
    font-size: 15px;
    color: var(--text);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 248, 42, 0.15);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .btn {
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 15px;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-header .section-title {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .contact-wrapper {
        padding: 0 20px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }
}

/* === FOOTER === */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 88px 0 36px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand { max-width: 340px; }

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.75;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-3);
    transition: color 0.3s, transform 0.3s var(--ease);
    display: inline-block;
    position: relative;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.footer-col ul li a:hover {
    color: var(--text);
    transform: translateX(4px);
}

.footer-col ul li a:hover::before { width: 100%; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 13px; color: var(--text-3); }

.footer-tech {
    display: flex;
    gap: 8px;
}

.footer-tech span {
    padding: 5px 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(196, 248, 42, 0.08);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--accent);
}

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1.5fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 36px;
    right: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: var(--accent);
    color: #000;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    z-index: 99999;
    transform: translateY(140%) scale(0.9);
    opacity: 0;
    transition: transform 0.5s var(--ease-spring), opacity 0.5s;
    box-shadow: 0 12px 48px rgba(196, 248, 42, 0.25);
}

.toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.toast-icon { font-size: 18px; }

@media (max-width: 640px) {
    .toast { left: 16px; right: 16px; bottom: 16px; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === GLITCH EFFECT === */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitchTop 0.3s linear;
    color: var(--accent);
    opacity: 0.8;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch:hover::after {
    animation: glitchBottom 0.3s linear;
    color: var(--purple);
    opacity: 0.8;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitchTop {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitchBottom {
    0% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
    100% { transform: translate(0); }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .service-tags {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
    }

    .service-tags li {
        font-size: 11px;
        padding: 3px 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-3);
    }

    .service-tags li::before { display: none; }
    .service-row:hover .service-tags li { transform: none; }
    .service-tags { opacity: 1; }

    .service-row_right {
        display: flex !important;
        justify-content: flex-start;
    }
    .service-row_arrow { display: none; }
}

@media (max-width: 768px) {
    :root { --section-pad: 100px 0; }
    .container { padding: 0 24px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 28px; margin-bottom: 56px; }
    .section-head_right { max-width: 100%; }
    .hero { padding: 120px 0 80px; }
    .hero-inner { padding: 0 24px; }
    .showreel { padding: 0 0 100px; }
    .hero-metrics { gap: 24px; }
    .metric-num { font-size: 40px; }
    .showreel-awards { display: none; }
    .mobile-nav { overscroll-behavior: contain; }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 7, 0.94);
    backdrop-filter: blur(8px);
    overscroll-behavior: contain;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transform: scale(0.96) translateY(12px);
    transition: transform 0.4s var(--ease);
}

.video-modal.is-open .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.video-modal-close:hover {
    background: var(--border);
    color: var(--text);
}

.video-modal-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.vm-cat, .vm-year {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.video-modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.video-modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.video-modal-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.video-modal-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-modal { padding: 0; align-items: flex-end; }
    .video-modal-content {
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 24px;
    }
}
