/**
 * Cinematic Premium Layer
 * World-class enterprise engineering brand aesthetic
 */

:root {
    --font-display: 'Syne', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
    --section-pad: clamp(5rem, 12vw, 8rem);
    --glass-bg: rgba(35, 45, 59, 0.75);
    --glass-border: rgba(226, 232, 240, 0.1);
}

body {
    background: var(--bg-void);
    font-family: var(--font-body);
}

body::before {
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(var(--accent-blue-rgb), 0.09), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(var(--accent-purple-rgb), 0.06), transparent),
        radial-gradient(ellipse 40% 30% at 10% 60%, rgba(var(--accent-cyan-rgb), 0.05), transparent);
}

/* Ambient grid */
.ambient-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--accent-blue-rgb), 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-blue-rgb), 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Mouse spotlight */
.cursor-spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--spotlight) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
}
body.cursor-ready .cursor-spotlight { opacity: 1; }

/* Custom cursor dot */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--ice);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s;
    opacity: 0;
}
body.cursor-ready .cursor-dot { opacity: 1; }
body.cursor-hover .cursor-dot {
    width: 48px;
    height: 48px;
    opacity: 0.15;
    mix-blend-mode: normal;
    background: var(--accent-blue);
}

#main-content { position: relative; z-index: 2; }

/* Navbar cinematic */
.navbar {
    background: transparent;
    border-bottom-color: transparent;
}
.navbar-logo .logo-mark {
    background: var(--accent-gradient);
    box-shadow: 0 0 20px var(--glow-blue);
}

/* Buttons magnetic-ready */
.btn-magnetic {
    position: relative;
    overflow: hidden;
}
.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-cinematic);
}
.btn-magnetic:hover::before { transform: translateX(100%); }

.btn-glow {
    background: var(--btn-glow-bg);
    color: #fff;
    border: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), var(--btn-glow-shadow);
}
.btn-glow:hover {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), var(--btn-glow-shadow-hover);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-ghost {
    background: var(--bg-surface);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: var(--bg-surface-hover);
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

/* ========== CINEMATIC HERO ========== */
.hero-cinematic {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    overflow: hidden;
}

.hero-cinematic .container {
    position: relative;
    z-index: 3;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--glow-blue);
    top: -10%;
    right: -5%;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--glow-violet);
    bottom: 10%;
    left: -10%;
    animation-delay: -7s;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--glow-cyan);
    top: 40%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    backdrop-filter: blur(12px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--glow-cyan);
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-headline-cinematic {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 4.75rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.hero-headline-cinematic .line {
    display: block;
    overflow: hidden;
}
.hero-headline-cinematic .line-inner {
    display: block;
    transform: translateY(110%);
    animation: lineReveal 1s var(--ease-cinematic) forwards;
}
.hero-headline-cinematic .line:nth-child(2) .line-inner { animation-delay: 0.12s; }

@keyframes lineReveal {
    to { transform: translateY(0); }
}

.hero-positioning {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 32rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-cinematic) 0.35s forwards;
}

.hero-tagline-cinematic {
    font-size: 0.9375rem;
    color: var(--text-muted);
    min-height: 1.5rem;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-cinematic) 0.5s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-cinematic) 0.65s forwards;
}

.hero-floating-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-cinematic) 0.8s forwards;
}
.stat-float {
    padding: 1rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
    min-width: 140px;
    transition: transform 0.4s var(--ease-cinematic), border-color 0.4s;
}
.stat-float:hover {
    transform: translateY(-4px);
    border-color: var(--accent-blue);
}
.stat-float .val {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-float .lbl {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Hero visual stack */
.hero-visual-stack {
    position: relative;
    height: min(520px, 70vh);
    perspective: 1200px;
}
.visual-layer {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-md);
    transition: transform 0.1s linear;
}
.visual-main {
    inset: 8% 5% 8% 10%;
    z-index: 3;
    padding: 1.25rem;
    animation: visualEnter 1.2s var(--ease-cinematic) 0.3s both;
}
.visual-back-1 {
    inset: 0 15% 20% 0;
    z-index: 1;
    opacity: 0.5;
    transform: rotateY(-8deg) rotateX(4deg) translateZ(-40px);
    animation: visualEnter 1.2s var(--ease-cinematic) 0.15s both;
}
.visual-back-2 {
    inset: 15% 0 5% 15%;
    z-index: 2;
    opacity: 0.7;
    transform: rotateY(6deg) rotateX(-3deg) translateZ(-20px);
    animation: visualEnter 1.2s var(--ease-cinematic) 0.22s both;
}

@keyframes visualEnter {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; }
}

.ui-chrome {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}
.ui-chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.ui-chrome span:nth-child(1) { background: #ef4444; }
.ui-chrome span:nth-child(2) { background: #eab308; }
.ui-chrome span:nth-child(3) { background: #22c55e; }

.ui-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.ui-metric {
    padding: 0.75rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.ui-metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--accent-cyan);
}
.ui-metric small {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ui-chart-area {
    height: 100px;
    background: linear-gradient(180deg, rgba(59,130,246,0.15), transparent);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.ui-chart-area svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 4;
    animation: fadeUp 1s 1.2s both;
}
.scroll-hint-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

/* ========== EXECUTIVE ABOUT ========== */
.section-cinematic {
    padding: var(--section-pad) 0;
    position: relative;
}
.section-cinematic.alt {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 50%, transparent);
}

.executive-about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.executive-label {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.philosophy-grid {
    display: grid;
    gap: 1.25rem;
}
.philosophy-card {
    padding: 1.5rem 1.75rem;
    border-left: 2px solid var(--accent-blue);
    background: linear-gradient(90deg, rgba(var(--accent-blue-rgb), 0.08), transparent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.philosophy-card h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.philosophy-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========== EXPERTISE CARDS ========== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.expertise-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease-cinematic), box-shadow 0.5s, border-color 0.5s;
}
.expertise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-blue-rgb), 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
}
.expertise-card:hover::before { opacity: 1; }
.expertise-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md), 0 0 40px var(--glow-blue);
}
.expertise-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--accent-blue-rgb), 0.18), rgba(var(--accent-cyan-rgb), 0.12));
    border: 1px solid var(--border-subtle);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent-cyan);
}
.expertise-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.expertise-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== CASE STUDY SHOWCASE ========== */
.case-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.case-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
}
.case-featured:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}
.case-featured-visual {
    min-height: 380px;
    background: linear-gradient(145deg, var(--bg-elevated), var(--bg-surface));
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.case-featured-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(var(--accent-blue-rgb), 0.15), transparent 50%);
}
.device-frame {
    width: 90%;
    max-width: 400px;
    background: var(--bg-void);
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: perspective(800px) rotateY(-5deg);
}
.device-screen {
    padding: 1rem;
    min-height: 220px;
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-void));
}
.case-flow {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case-flow-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}
.case-flow-step .step-num {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent-blue);
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--accent-blue);
    border-radius: 4px;
    flex-shrink: 0;
}
.case-flow-step h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--ice);
}
.case-flow-step p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.case-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* ========== SERVICES PANELS ========== */
.services-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.service-panel {
    background: var(--bg-elevated);
    padding: 2rem;
    transition: background 0.4s;
    position: relative;
}
.service-panel:hover {
    background: var(--bg-surface);
}
.service-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-cinematic);
}
.service-panel:hover::after { transform: scaleX(1); }
.service-panel-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    margin-bottom: 1rem;
}
.service-panel h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
}
.service-panel p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== PUBLICATION / INSIGHTS ========== */
.publication-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.25rem;
}
.publication-featured {
    grid-row: span 2;
    padding: 2.5rem;
    background: linear-gradient(160deg, var(--bg-surface), var(--bg-elevated));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s;
}
.publication-featured:hover { border-color: var(--accent-purple); }
.publication-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--accent-purple-rgb), 0.12), transparent 70%);
}
.publication-item {
    padding: 1.75rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-cinematic);
}
.publication-item:hover {
    transform: translateX(8px);
    border-color: var(--border-strong);
}
.publication-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-purple);
    margin-bottom: 0.75rem;
}
.publication-item h3,
.publication-featured h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.publication-featured h3 { font-size: 1.75rem; }

/* ========== CONTACT CINEMATIC ========== */
.contact-cinematic {
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 8vw, 5rem);
    background:
        linear-gradient(135deg, rgba(var(--accent-blue-rgb), 0.08), rgba(var(--accent-cyan-rgb), 0.05)),
        var(--bg-surface);
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.5;
}
.contact-trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.contact-trust-row span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-trust-row svg {
    color: var(--accent-cyan);
}

/* Section header cinematic */
.header-cinematic {
    max-width: 40rem;
    margin-bottom: clamp(3rem, 6vw, 4rem);
}
.header-cinematic.centered {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.header-cinematic .section-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}
.header-cinematic h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.header-cinematic p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonial premium */
.testimonial-premium {
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    position: relative;
}
.testimonial-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.4;
}
.testimonial-premium blockquote {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--ice);
    margin-bottom: 2rem;
}

/* Testimonials grid */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 768px) {
    .testimonials-slider { grid-template-columns: 1fr; }
}

/* Inner page hero */
.page-hero-cinematic {
    padding: calc(var(--navbar-height) + 4rem) 0 3rem;
    text-align: center;
}
.page-hero-cinematic .page-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Parallax layers */
[data-parallax] {
    will-change: transform;
}

/* ========== LIGHT MODE ========== */
.light-mode {
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(26, 35, 50, 0.1);
}

.light-mode .ambient-grid {
    background-image:
        linear-gradient(rgba(var(--accent-blue-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-blue-rgb), 0.04) 1px, transparent 1px);
}

.light-mode .cursor-dot {
    background: var(--text-primary);
    mix-blend-mode: normal;
}
.light-mode body.cursor-hover .cursor-dot {
    background: var(--accent-blue);
    opacity: 0.25;
}

.light-mode .hero-headline-cinematic {
    color: var(--text-primary);
}

.light-mode .hero-orb {
    filter: blur(100px);
    opacity: 0.7;
}

.light-mode .ui-metric {
    background: var(--bg-base);
    border-color: var(--border-subtle);
}

.light-mode .ui-chart-area {
    background: linear-gradient(180deg, rgba(var(--accent-blue-rgb), 0.08), transparent);
}

.light-mode .section-cinematic.alt {
    background: linear-gradient(180deg, transparent, rgba(var(--accent-blue-rgb), 0.04) 50%, transparent);
}

.light-mode .service-panel-num {
    color: rgba(var(--accent-blue-rgb), 0.12);
}

.light-mode .testimonial-premium blockquote {
    color: var(--text-primary);
}

.light-mode .scroll-hint-line {
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout,
    .executive-about,
    .case-featured,
    .publication-grid { grid-template-columns: 1fr; }
    .hero-visual-stack { height: 400px; margin-top: 2rem; }
    .services-panels { grid-template-columns: 1fr; }
    .case-row { grid-template-columns: 1fr; }
    .publication-featured { grid-row: auto; min-height: 280px; }
}

@media (max-width: 768px) {
    .cursor-spotlight, .cursor-dot { display: none; }
    body.cursor-ready .cursor-spotlight { display: none; }
    .hero-cinematic { min-height: auto; padding-bottom: 4rem; }
    .scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb, .hero-headline-cinematic .line-inner,
    .scroll-hint-line { animation: none !important; }
    .hero-headline-cinematic .line-inner { transform: none; }
}
