/* ═══════════════════════════════════════════════════════
   SRAN PRODUCTIONS — Stylesheet
   Cinematic videography portfolio
   ═══════════════════════════════════════════════════════ */

:root {
    /* ─── Color ─── */
    --bg: #0a0a0b;
    --bg-elevated: #0f0f11;
    --bg-card: #141417;
    --bg-card-hover: #1a1a1f;
    --text-primary: #f0ede6;
    --text-secondary: #9a9a9e;
    --text-muted: #5a5a5e;
    --accent: #f11a7a;
    --accent-2: #7a288a;
    --accent-3: #ff5a3c;
    --accent-glow: rgba(241, 26, 122, 0.14);
    --gradient-brand: linear-gradient(135deg, #7a288a 0%, #f11a7a 55%, #ff5a3c 100%);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-strong: rgba(255, 255, 255, 0.24);

    /* ─── Geometry ─── */
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --max-width: 1440px;

    /* ─── Motion ─── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.7, 0, 0.3, 1);

    /* ─── Type ─── */
    --font-display: 'Sora', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Space Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*:not(input):not(textarea) { cursor: none; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--text-muted) transparent;
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════════════════ */
.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 2px; z-index: 9500;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}
.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-brand);
    transform-origin: left;
    transform: scaleX(0);
    will-change: transform;
}

/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════ */
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: exclusion;
    transition: opacity 0.2s;
}

.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(241, 26, 122, 0.5);
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    display: flex; align-items: center; justify-content: center;
    transition: width 0.3s var(--ease-out),
                height 0.3s var(--ease-out),
                background-color 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out),
                opacity 0.2s;
}

.cursor-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.2s var(--ease-out);
    font-weight: 700;
}

.cursor-outline.hovering {
    width: 60px; height: 60px;
    background: var(--accent-glow);
    border-color: transparent;
}

.cursor-outline.is-play {
    width: 90px; height: 90px;
    background: var(--accent);
    border-color: transparent;
    box-shadow: 0 10px 40px var(--accent-glow);
}
.cursor-outline.is-play .cursor-label { opacity: 1; }

.cursor-outline.is-view {
    width: 74px; height: 74px;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}
.cursor-outline.is-view .cursor-label { opacity: 1; color: var(--text-primary); }

.cursor-outline.is-external {
    width: 70px; height: 70px;
    background: rgba(241, 26, 122, 0.15);
    border-color: var(--accent);
}
.cursor-outline.is-external .cursor-label { opacity: 1; color: var(--text-primary); }

.cursor-outline.is-hidden, .cursor-dot.is-hidden { opacity: 0; }

/* ═══════════════════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════════════════ */
body::before {
    content: ''; position: fixed; inset: 0;
    z-index: 9000; pointer-events: none; opacity: 0.04;
    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;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
nav#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    background: rgba(10, 10, 11, 0.6);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
}
nav#navbar.scrolled {
    padding: 14px 40px;
    background: rgba(10, 10, 11, 0.88);
    border-bottom-color: var(--border);
}

.nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display);
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}
.nav-logo img {
    height: 38px; width: 38px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}
.nav-logo:hover img { transform: rotate(15deg) scale(1.05); }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo-text em {
    font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
    font-style: normal;
}
.nav-logo-text small {
    font-family: var(--font-mono);
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em;
    color: var(--text-muted);
}

.nav-links {
    display: flex; gap: 4px;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: 100px;
}
.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: 100px;
    transition: color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
    display: inline-flex; align-items: center; gap: 8px;
    position: relative;
}
.nav-links a .nav-num {
    font-size: 0.55rem; color: var(--text-muted);
    transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.is-active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}
.nav-links a.is-active .nav-num { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* ─── Nav Socials (horizontal, circular) ─── */
.nav-socials {
    display: inline-flex; flex-direction: row; align-items: center;
    gap: 10px;
}
.nav-socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    transition: color 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out),
                background-color 0.3s var(--ease-out),
                transform 0.3s var(--ease-out);
}
.nav-socials a svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
}
.nav-socials a:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.status-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out),
                background-color 0.3s var(--ease-out);
}
.status-pill:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    background: var(--accent-glow);
}
.status-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.nav-burger {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s var(--ease-out);
}
.nav-burger span {
    position: absolute; left: 12px; right: 12px; height: 1px;
    background: var(--text-primary);
    transition: all 0.4s var(--ease-out);
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--bg);
    padding: 120px 30px 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    opacity: 0; visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease-out);
}
.mobile-menu.is-open {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.mobile-menu ul a {
    display: flex; align-items: baseline; gap: 20px;
    padding: 24px 0;
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -0.03em;
    color: var(--text-primary);
    transition: transform 0.4s var(--ease-out), color 0.3s;
}
.mobile-menu ul a span {
    font-family: var(--font-mono);
    font-size: 0.7rem; color: var(--text-muted);
    letter-spacing: 0.1em;
}
.mobile-menu ul a:hover { color: var(--accent); transform: translateX(10px); }

.mobile-menu-footer {
    display: flex; flex-direction: column; gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted);
}
.mobile-menu-footer > a { color: var(--text-primary); }
.mobile-menu-socials {
    display: flex; flex-wrap: wrap; gap: 16px;
    margin: 4px 0 8px;
}
.mobile-menu-socials a { color: var(--text-secondary); transition: color 0.3s; }
.mobile-menu-socials a:hover { color: var(--accent); }

body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding: 130px 60px 80px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}

/* Mesh gradient blobs — slow, drifting, premium */
.hero-mesh {
    position: absolute; inset: 0;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.55;
    will-change: transform;
}
.mesh-blob {
    position: absolute; border-radius: 50%;
    will-change: transform;
}
.mesh-blob-1 {
    top: -15%; left: -10%; width: 680px; height: 680px;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    animation: meshFloat1 32s ease-in-out infinite;
}
.mesh-blob-2 {
    top: 0%; right: -15%; width: 760px; height: 760px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: meshFloat2 38s ease-in-out infinite;
    animation-delay: -6s;
}
.mesh-blob-3 {
    bottom: -25%; left: 15%; width: 560px; height: 560px;
    background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
    animation: meshFloat3 34s ease-in-out infinite;
    animation-delay: -12s;
    opacity: 0.8;
}
.mesh-blob-4 {
    top: 30%; left: 38%; width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(241, 26, 122, 0.55) 0%, transparent 70%);
    animation: meshFloat4 42s ease-in-out infinite;
    animation-delay: -3s;
    opacity: 0.7;
}
@keyframes meshFloat1 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    25%      { transform: translate3d(120px, 60px, 0) scale(1.12); }
    50%      { transform: translate3d(80px, -80px, 0) scale(0.95); }
    75%      { transform: translate3d(-60px, 40px, 0) scale(1.08); }
}
@keyframes meshFloat2 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33%      { transform: translate3d(-140px, 80px, 0) scale(1.15); }
    66%      { transform: translate3d(-60px, -100px, 0) scale(0.9); }
}
@keyframes meshFloat3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    25%      { transform: translate3d(-80px, -60px, 0) scale(0.92); }
    50%      { transform: translate3d(100px, -120px, 0) scale(1.18); }
    75%      { transform: translate3d(140px, 40px, 0) scale(1.05); }
}
@keyframes meshFloat4 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    20%      { transform: translate3d(-120px, 100px, 0) scale(1.2); }
    40%      { transform: translate3d(160px, 60px, 0) scale(0.88); }
    60%      { transform: translate3d(80px, -80px, 0) scale(1.1); }
    80%      { transform: translate3d(-100px, -40px, 0) scale(1.05); }
}

/* Subtle hero vignette */
.hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

/* Grid lines */
.hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    pointer-events: none;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards 0.2s;
}
.label-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: statusPulse 1.8s ease-in-out infinite;
}

/* Hero title — simplified, reliable word reveal */
.hero-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: 0.98; letter-spacing: -0.045em;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative; z-index: 2;
    font-kerning: normal;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
}
.hero-line {
    display: block;
}
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: wordReveal 1s var(--ease-out) forwards;
    padding-right: 0.25em;
}
.hero-title .hero-line:nth-child(1) .word:nth-child(1) { animation-delay: 0.35s; }
.hero-title .hero-line:nth-child(1) .word:nth-child(2) { animation-delay: 0.45s; }
.hero-title .hero-line:nth-child(2) .word:nth-child(1) { animation-delay: 0.6s; }
.hero-title .hero-line:nth-child(2) .word:nth-child(2) { animation-delay: 0.7s; }
@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
    background: linear-gradient(110deg, #ffffff 0%, #f11a7a 45%, #7a288a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: gradientShift 8s ease infinite;
}
.hero-title .word.gradient-text {
    animation: wordReveal 1s var(--ease-out) forwards, gradientShift 8s ease infinite 1s;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    max-width: 620px; font-size: 1.1rem;
    color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 48px;
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards 0.9s;
}

.hero-ctas {
    display: flex; gap: 16px; flex-wrap: wrap;
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards 1.05s;
}

.btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--accent); color: #fff; border: none; font-weight: 700;
    box-shadow: 0 10px 30px -10px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 16px 40px -5px rgba(241, 26, 122, 0.5); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--border-hover);
}
.btn-secondary:hover { border-color: var(--text-primary); background: rgba(255, 255, 255, 0.04); }

.btn-ghost {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.btn-ghost:hover svg { transform: translate(3px, -3px); }

/* Hero meta stats */
.hero-meta {
    display: flex; align-items: center; gap: 40px;
    margin-top: 70px; flex-wrap: wrap;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards 1.2s;
}
.meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-num {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.2rem; line-height: 1; letter-spacing: -0.03em;
    color: var(--text-primary);
}
.meta-lbl {
    font-family: var(--font-mono);
    font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-muted);
}
.meta-divider { width: 1px; height: 40px; background: var(--border); }

/* Scroll cue */
.scroll-cue {
    position: absolute; bottom: 30px; right: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.25em;
    color: var(--text-muted);
    opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards 1.4s;
}
.scroll-cue-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    position: relative; overflow: hidden;
}
.scroll-cue-line::after {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 30%;
    background: var(--accent);
    animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(400%); }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE BANNER
   ═══════════════════════════════════════════════════════ */
.marquee-banner {
    position: relative; overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.marquee-track {
    display: flex; gap: 60px;
    white-space: nowrap; width: max-content;
    animation: marqueeScroll 40s linear infinite;
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.marquee-track span:nth-child(odd) { color: var(--accent); }
.marquee-banner:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   TRUSTED BY
   ═══════════════════════════════════════════════════════ */
.trusted-section {
    padding: 54px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
    text-align: center;
    overflow: hidden;
}
.trusted-label {
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--text-muted); margin-bottom: 32px;
    padding: 0 40px;
}

.logo-marquee {
    position: relative; overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-track {
    display: flex; align-items: center; gap: 80px;
    width: max-content;
    animation: logoScroll 45s linear infinite;
}
.logo-track img {
    max-height: 72px; max-width: 200px; width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.78);
    transition: filter 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.logo-track img:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.08);
}
.logo-track img.on-light {
    background: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    max-height: 72px;
    filter: none;
    opacity: 0.92;
    box-shadow: 0 2px 22px rgba(255,255,255,0.06);
}
.logo-track img.on-light:hover { filter: none; opacity: 1; }
.logo-track img.logo-lg { max-height: 92px; max-width: 240px; }
.logo-track img[src="MannAndCoTrans.png"] { max-height: 120px; max-width: 280px; }
.logo-track img.as-is { filter: none; opacity: 0.92; }
.logo-track img.as-is:hover { filter: none; opacity: 1; }
.logo-placeholder {
    display: inline-flex; align-items: center; justify-content: center;
    height: 48px; padding: 0 22px;
    border: 1px dashed var(--text-muted);
    border-radius: 10px;
    font-family: var(--font-display); font-weight: 600;
    font-size: 0.95rem; letter-spacing: -0.01em;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.55;
    transition: opacity 0.4s var(--ease-out),
                color 0.4s var(--ease-out),
                border-color 0.4s var(--ease-out),
                transform 0.4s var(--ease-out);
}
.logo-placeholder:hover {
    opacity: 1;
    color: var(--text-primary);
    border-color: var(--accent);
    border-style: solid;
    transform: scale(1.08);
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logoScroll {
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — Shared
   ═══════════════════════════════════════════════════════ */
section { padding: 100px 60px; position: relative; }

.section-header { margin-bottom: 70px; max-width: 900px; }
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--accent); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
    content: ''; width: 40px; height: 1px;
    background: var(--accent);
    transform-origin: left; transform: scaleX(0);
    transition: transform 1.2s var(--ease-out);
}
.reveal.visible .section-tag::before { transform: scaleX(1); }

.section-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.035em; line-height: 1;
}
.section-lede {
    margin-top: 24px; max-width: 600px;
    color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO GRID
   ═══════════════════════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex; flex-direction: column; gap: 20px;
    transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
    transform-style: preserve-3d;
    will-change: transform;
}
.project-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 40px -15px var(--accent-glow);
}

.project-info {
    display: flex; flex-direction: column; gap: 8px;
    padding: 4px 4px 8px;
}
.project-tags {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px;
}
.project-tags span {
    font-family: var(--font-mono);
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-secondary);
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
}
.project-info h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.4rem; letter-spacing: -0.02em;
    color: var(--text-primary);
}
.project-info p {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.awards {
    display: inline-block; margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    background: var(--accent-glow);
    padding: 8px 14px; border-radius: 8px;
    color: var(--text-primary);
    border: 1px solid rgba(241, 26, 122, 0.3);
    letter-spacing: 0.05em;
}

.video-container {
    position: relative; padding-bottom: 56.25%;
    height: 0; overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #000;
}
.video-container iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}

/* ═══════════════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════════════ */
.case-study {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 64px 0;
    border-top: 1px solid var(--border);
    align-items: start;
}
.case-study:first-of-type { border-top: none; padding-top: 12px; }

/* Breakdown link cards on the index */
.breakdown-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.breakdown-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 32px 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-primary);
    transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    overflow: hidden;
}
.breakdown-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(255,90,60,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
}
.breakdown-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.breakdown-card:hover::before { opacity: 1; }
.breakdown-index {
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--accent);
}
.breakdown-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.6rem; letter-spacing: -0.02em;
    line-height: 1.15;
}
.breakdown-meta {
    font-size: 0.88rem; color: var(--text-muted);
    margin-top: 4px;
}
.breakdown-arrow {
    position: absolute; top: 28px; right: 26px;
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: transform 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.breakdown-arrow svg { width: 16px; height: 16px; }
.breakdown-card:hover .breakdown-arrow {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateX(4px);
}

/* Case study standalone page hero */
.case-hero {
    padding: 180px 60px 80px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}
.case-hero .case-index { color: var(--accent); margin-bottom: 18px; }
.case-hero h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 20px;
}
.case-hero .case-role {
    font-family: var(--font-mono);
    font-size: 0.82rem; color: var(--text-muted);
    letter-spacing: 0.12em; text-transform: uppercase;
}
.case-back {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-secondary); text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s var(--ease-out);
}
.case-back:hover { color: var(--accent); }
.case-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px 120px;
}
.case-page .video-container {
    margin-bottom: 50px;
    border-radius: 18px; overflow: hidden;
}
.case-page .case-text { max-width: 820px; }
.case-page h4.case-sub { margin-top: 30px; }

.case-index {
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--text-muted); margin-bottom: 16px;
}
.case-content h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.05; letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.case-role {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 28px; display: block;
}
.case-text {
    color: var(--text-secondary);
    font-size: 1rem; line-height: 1.75;
    margin-bottom: 18px;
}
.case-text strong {
    color: var(--text-primary);
    font-weight: 600;
}
.case-sub {
    color: var(--text-primary);
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.15rem;
    margin: 22px 0 10px;
    letter-spacing: -0.01em;
}

.placeholder-frame {
    width: 100%; aspect-ratio: 16/9;
    background: var(--bg-elevated);
    border: 1px dashed var(--text-muted);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem; text-align: center; padding: 20px;
    line-height: 1.6;
    transition: border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
}
.placeholder-frame:hover {
    border-color: var(--accent);
    background: rgba(241, 26, 122, 0.03);
}
.frame-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 18px; margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: border-color 0.5s var(--ease-out),
                transform 0.5s var(--ease-out),
                background-color 0.5s var(--ease-out),
                box-shadow 0.5s var(--ease-out);
    position: relative; overflow: hidden;
    isolation: isolate;
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7),
                0 0 60px -20px var(--accent-glow);
}
.service-card.is-featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(241, 26, 122, 0.08) 100%);
    border-color: rgba(241, 26, 122, 0.2);
}

/* Liquid hover blobs */
.service-bg {
    position: absolute; inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
}
.service-bg span {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    will-change: transform;
}
.service-bg span:nth-child(1) {
    width: 280px; height: 280px;
    top: -60px; right: -60px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: liquidBlobA 12s ease-in-out infinite;
}
.service-bg span:nth-child(2) {
    width: 240px; height: 240px;
    bottom: -80px; left: -40px;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    animation: liquidBlobB 14s ease-in-out infinite;
    animation-delay: -3s;
}
.service-card:hover .service-bg { opacity: 0.55; }
.service-card.is-featured .service-bg { opacity: 0.25; }
.service-card.is-featured:hover .service-bg { opacity: 0.65; }

@keyframes liquidBlobA {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33%      { transform: translate3d(-40px, 50px, 0) scale(1.15); }
    66%      { transform: translate3d(30px, -30px, 0) scale(0.92); }
}
@keyframes liquidBlobB {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33%      { transform: translate3d(60px, -40px, 0) scale(1.1); }
    66%      { transform: translate3d(-30px, 40px, 0) scale(0.95); }
}

.service-content {
    position: relative;
    z-index: 1;
    display: flex; flex-direction: column; gap: 16px;
    height: 100%;
}

.service-icon {
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(241, 26, 122, 0.08);
    border: 1px solid rgba(241, 26, 122, 0.2);
    border-radius: var(--radius-sm);
    color: var(--accent);
    margin-bottom: 4px;
    transition: transform 0.5s var(--ease-out), background-color 0.5s var(--ease-out);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-4deg);
    background: rgba(241, 26, 122, 0.18);
}

.service-content h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.5rem; letter-spacing: -0.02em;
}
.service-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem; line-height: 1.7;
}
.service-tags {
    list-style: none;
    display: flex; flex-direction: column; gap: 6px;
    margin-top: auto; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.service-tags li {
    font-family: var(--font-mono);
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 10px;
}
.service-tags li::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent);
}

/* Split section (For Businesses pitch) */
.split-section {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.pitch-text .section-tag { margin-bottom: 12px; }
.pitch-box {
    background: var(--gradient-brand);
    padding: 1px; border-radius: var(--radius);
    position: relative;
}
.pitch-box::before {
    content: ''; position: absolute;
    inset: -1px;
    background: var(--gradient-brand);
    border-radius: var(--radius);
    filter: blur(30px); opacity: 0.25;
    z-index: -1;
}
.pitch-inner {
    background: var(--bg-card);
    padding: 44px 40px;
    border-radius: calc(var(--radius) - 1px);
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
}
.pitch-inner h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.7rem; margin-bottom: 28px;
    letter-spacing: -0.02em;
}

/* ─── Pitch list (Why Sran Productions checkmarks) ─── */
.pitch-list {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 22px;
    padding: 0; margin: 0;
}
.pitch-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    align-items: start;
}
.pitch-check {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 6px 18px -6px rgba(241, 26, 122, 0.55);
    flex-shrink: 0;
    margin-top: 2px;
}
.pitch-check svg {
    width: 16px; height: 16px;
    stroke-width: 3;
}
.pitch-copy {
    display: flex; flex-direction: column; gap: 4px;
    min-width: 0;
}
.pitch-copy strong {
    color: var(--text-primary);
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
}
.pitch-copy span {
    color: var(--text-secondary);
    font-size: 0.95rem; line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
#about { padding: 100px 60px; }
.about-wrap {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 60px; align-items: center;
}
.about-portrait .placeholder-frame {
    width: 100%;
    border-radius: var(--radius);
}
.about-copy { display: flex; flex-direction: column; gap: 18px; }
.about-kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--accent);
}
.about-copy p {
    color: var(--text-secondary);
    font-size: 1.05rem; line-height: 1.75;
}
.about-copy p strong {
    color: var(--text-primary); font-weight: 600;
    font-family: var(--font-display);
}
.about-specs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 16px;
    padding-top: 24px; border-top: 1px solid var(--border);
}
.about-specs > div {
    display: flex; flex-direction: column; gap: 4px;
    font-family: var(--font-display); font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}
.about-specs span {
    font-family: var(--font-mono);
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--text-muted); font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-list { max-width: 900px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-top: 1px solid var(--border);
    transition: background 0.4s var(--ease-out);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 0;
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: -0.015em;
    list-style: none;
    transition: color 0.3s var(--ease-out);
    gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: var(--accent); }
.faq-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute;
    top: 50%; left: 50%; width: 12px; height: 1px;
    background: var(--text-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon {
    background: var(--accent); border-color: var(--accent);
}
.faq-item[open] .faq-icon::before { background: #fff; }
.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    background: #fff;
}
.faq-body {
    padding-bottom: 28px;
    max-width: 760px;
    overflow: hidden;
}
.faq-body p {
    color: var(--text-secondary);
    font-size: 1rem; line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
#contact {
    text-align: center;
    padding: 140px 60px 120px;
    position: relative; overflow: hidden;
}
.contact-orbs { position: absolute; inset: 0; pointer-events: none; filter: blur(100px); opacity: 0.4; }
.orb { position: absolute; border-radius: 50%; }
.orb-1 {
    top: 20%; left: 15%; width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    animation: orbFloat 16s ease-in-out infinite;
}
.orb-2 {
    bottom: 15%; right: 10%; width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: orbFloat 20s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, -40px); }
}

#contact > .reveal { position: relative; z-index: 2; }
.contact-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: -0.04em; line-height: 0.98;
    margin: 24px 0;
}
.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem; line-height: 1.7;
    max-width: 560px; margin: 0 auto 52px;
}

.social-links {
    display: flex; justify-content: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 52px;
}
.social-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
    transition: border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.social-btn:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-4px);
}
.social-btn svg {
    width: 18px; height: 18px;
    stroke: var(--accent); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.contact-direct {
    display: inline-flex; align-items: center; gap: 20px;
    padding: 20px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
}
.contact-direct:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.contact-direct-label {
    font-family: var(--font-mono);
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--text-muted);
}
.contact-direct-email {
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-primary);
}
.contact-direct svg { width: 16px; height: 16px; color: var(--accent); transition: transform 0.3s var(--ease-out); }
.contact-direct:hover svg { transform: translateX(6px); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
    border-top: 1px solid var(--border);
    padding: 80px 60px 40px;
    background: var(--bg-elevated);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.footer-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display); font-weight: 800;
    font-size: 1rem; letter-spacing: 0.02em;
}
.footer-logo img {
    height: 36px; width: 36px; border-radius: 50%;
    object-fit: cover;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem; line-height: 1.7;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-label {
    font-family: var(--font-mono);
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--text-muted); margin-bottom: 6px;
}
.footer-col a, .footer-col span {
    font-size: 0.92rem;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-muted);
}
.footer-back { color: var(--text-secondary); transition: color 0.3s; }
.footer-back:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   UTILITIES & ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .services-grid .service-card:first-child { grid-column: span 2; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
    *:not(input):not(textarea) { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }

    nav#navbar { padding: 16px 24px; }
    nav#navbar.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    .status-pill { display: none; }
    .nav-socials { display: none; }
    .nav-burger { display: block; }

    section { padding: 80px 30px; }
    #contact { padding: 110px 30px 80px; }
    #about { padding: 80px 30px; }
    .hero { padding: 140px 30px 60px; }
    .scroll-cue { right: 30px; }

    .case-study, .split-section { grid-template-columns: 1fr; gap: 40px; }
    .frame-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid .service-card:first-child { grid-column: span 1; }

    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; }
}

@media (max-width: 768px) {
    section { padding: 70px 20px; }
    #about { padding: 70px 20px; }
    .hero { padding: 120px 20px 60px; }
    #contact { padding: 90px 20px 70px; }
    .hero-meta { gap: 24px; margin-top: 50px; padding: 24px 0; }
    .meta-divider { display: none; }
    .meta-num { font-size: 1.8rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .frame-grid { grid-template-columns: 1fr; }
    .pitch-inner { padding: 32px 28px; }
    .about-specs { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .scroll-cue { display: none; }
    .social-btn { padding: 14px 22px; font-size: 0.7rem; }
    .marquee-track { gap: 40px; font-size: 1.2rem; }
    .pitch-list li { grid-template-columns: 32px 1fr; gap: 14px; }
    .pitch-check { width: 32px; height: 32px; }
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-title .word { opacity: 1; transform: none; }
    .marquee-track, .logo-track { animation: none; }
    .mesh-blob, .orb, .service-bg span { animation: none; }
}

/* Hero background video */
.hero-video {
    position: absolute !important;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.22;
    z-index: 0 !important;
    pointer-events: none;
    filter: blur(2px);
}
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* Mouse-reactive glow */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle 600px at var(--mx, 50%) var(--my, 50%),
        rgba(255, 90, 60, calc(0.22 * var(--mi, 0.35))),
        transparent 65%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.18s linear;
}
.mesh-blob { transition: transform 0.4s var(--ease-out); }

.about-simple {
    max-width: 900px;
    display: flex; flex-direction: column; gap: 22px;
}
.about-simple p { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); }
.about-simple .section-tag { margin-bottom: 0; }
.about-simple .about-kicker { margin-top: 10px; }

.service-card { position: relative; overflow: hidden; }
.service-card::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle 320px at var(--mx, 50%) var(--my, 50%),
        rgba(255, 90, 60, 0.20), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
    border-radius: inherit;
    z-index: 1;
}
.service-card:hover::after { opacity: 1; }
.service-content { position: relative; z-index: 2; }

.case-frame {
    width: 100%; height: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
    object-fit: cover;
    display: block;
}
