/* =============================================
   DAVID DIAS — V2 ELEVATED DESIGN
   Institutional Luxury: Dark Purple + Precision
   ============================================= */

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

:root {
    /* Core palette — deeper, richer */
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;
    --bg-tertiary: #0f0f18;
    --bg-card: rgba(139, 92, 246, 0.04);
    --bg-card-hover: rgba(139, 92, 246, 0.09);
    --border-color: rgba(139, 92, 246, 0.1);
    --border-glow: rgba(139, 92, 246, 0.22);

    --text-primary: #f0eef5;
    --text-secondary: rgba(240, 238, 245, 0.65);
    --text-muted: rgba(240, 238, 245, 0.38);

    /* Purple scale */
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6b21a8;
    --purple-900: #4c1d95;

    --accent: #a855f7;
    --accent-light: #c084fc;
    --accent-dark: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    --accent-gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(168, 85, 247, 0.12));

    --glow-sm: 0 0 30px rgba(168, 85, 247, 0.2);
    --glow-md: 0 0 50px rgba(168, 85, 247, 0.25);
    --glow-lg: 0 0 90px rgba(168, 85, 247, 0.3);
    --glow-xl: 0 0 140px rgba(168, 85, 247, 0.35);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Light Mode - Premium Redesign */
[data-theme="light"] {
    /* Sophisticated Background Palette */
    --bg-primary: #fafbfc;
    --bg-secondary: #f4f6f8;
    --bg-tertiary: #eef1f5;
    --bg-accent: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --bg-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

    /* Card Backgrounds */
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card-hover: rgba(255, 255, 255, 1);
    --bg-card-glass: rgba(255, 255, 255, 0.8);

    /* Premium Border System */
    --border-color: rgba(102, 126, 234, 0.15);
    --border-glow: rgba(118, 75, 162, 0.25);
    --border-accent: rgba(240, 147, 251, 0.3);

    /* Sophisticated Text */
    --text-primary: #1e293b;
    --text-secondary: rgba(30, 41, 59, 0.7);
    --text-muted: rgba(30, 41, 59, 0.5);

    /* Rich Color Palette */
    --color-indigo: #667eea;
    --color-purple: #764ba2;
    --color-pink: #f093fb;
    --color-coral: #fa709a;
    --color-gold: #fee140;

    /* Accent Gradients */
    --accent: #764ba2;
    --accent-light: #8b5cf6;
    --accent-dark: #5b21b6;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --accent-gradient-warm: linear-gradient(135deg, #fa709a 0%, #ff6a95 50%, #fee140 100%);
    --accent-gradient-cool: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Elegant Glow Effects */
    --glow-sm: 0 2px 12px rgba(102, 126, 234, 0.15),
               0 4px 24px rgba(118, 75, 162, 0.1),
               0 1px 3px rgba(0, 0, 0, 0.05);
    --glow-md: 0 4px 20px rgba(102, 126, 234, 0.2),
               0 8px 40px rgba(118, 75, 162, 0.15),
               0 2px 6px rgba(0, 0, 0, 0.06);
    --glow-lg: 0 8px 32px rgba(102, 126, 234, 0.25),
               0 16px 64px rgba(118, 75, 162, 0.2),
               0 4px 12px rgba(0, 0, 0, 0.08);
    --glow-xl: 0 12px 48px rgba(102, 126, 234, 0.3),
               0 24px 96px rgba(118, 75, 162, 0.25),
               0 8px 24px rgba(0, 0, 0, 0.1);
    --glow-warm: 0 8px 32px rgba(250, 112, 154, 0.25),
                 0 4px 16px rgba(254, 225, 64, 0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Ambient background — deeper, more cinematic */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 70% 50% at 15% 15%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 85% 25%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 85%, rgba(192, 132, 252, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Noise texture overlay for depth */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

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

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

.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

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

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

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

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   NAVIGATION — Elevated Floating Island
   ============================================= */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 12px 28px;
    background: rgba(15, 15, 25, 0.35);
    backdrop-filter: blur(40px) saturate(1.6) brightness(1.1);
    -webkit-backdrop-filter: blur(40px) saturate(1.6) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow:
        0 4px 40px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(168, 85, 247, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    max-width: 880px;
    width: calc(100% - 48px);
    transition: all 0.4s var(--ease-out-expo);
}

nav.scrolled {
    padding: 10px 24px;
    background: rgba(15, 15, 25, 0.5);
    backdrop-filter: blur(50px) saturate(1.7) brightness(1.15);
    -webkit-backdrop-filter: blur(50px) saturate(1.7) brightness(1.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 8px 50px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(168, 85, 247, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Premium Navigation */
[data-theme="light"] nav {
    background: rgba(250, 251, 252, 0.8);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    border: 1px solid var(--border-color);
    box-shadow:
        var(--glow-sm),
        0 4px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] nav.scrolled {
    background: rgba(250, 251, 252, 0.95);
    backdrop-filter: blur(50px) saturate(1.8);
    -webkit-backdrop-filter: blur(50px) saturate(1.8);
    border: 1px solid var(--border-glow);
    box-shadow:
        var(--glow-md),
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Premium Light Mode - Typography Refinements */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

[data-theme="light"] .section-title {
    font-weight: 700;
    letter-spacing: -0.025em;
    background: none;
    color: var(--text-primary);
    -webkit-text-fill-color: unset;
}

[data-theme="light"] .section-tag {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

[data-theme="light"] p {
    line-height: 1.75;
    color: var(--text-secondary);
}

/* Premium Light Mode - Complete Redesign */
[data-theme="light"] .hero {
    background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 50%, #eef1f5 100%);
    position: relative;
}

[data-theme="light"] .hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Sophisticated Card System */
[data-theme="light"] .expertise-card,
[data-theme="light"] .timeline-card,
[data-theme="light"] .about-card,
[data-theme="light"] .fund-card,
[data-theme="light"] .insight-card,
[data-theme="light"] .philosophy-quote-card,
[data-theme="light"] .philosophy-thesis-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .expertise-card:hover,
[data-theme="light"] .timeline-card:hover,
[data-theme="light"] .about-card:hover,
[data-theme="light"] .insight-card:hover,
[data-theme="light"] .philosophy-thesis-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--glow-lg);
    transform: translateY(-8px) scale(1.01);
}

[data-theme="light"] .hero-image-wrapper {
    background: transparent;
    border: 2px solid var(--border-glow);
    box-shadow: var(--glow-xl);
}

[data-theme="light"] .hero-image-wrapper::after {
    background: var(--accent-gradient);
    opacity: 0.5;
}

[data-theme="light"] .hero-image-wrapper:hover::after {
    opacity: 0.8;
}

[data-theme="light"] .hero-image-wrapper::before {
    background: linear-gradient(180deg, transparent 60%, rgba(250, 251, 252, 0.8) 100%);
}

[data-theme="light"] .hero-image-wrapper img {
    margin: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(0%) contrast(1.05) brightness(1) saturate(1.1);
}

[data-theme="light"] .hero-image-wrapper:hover img {
    filter: grayscale(0%) contrast(1.08) brightness(1.02) saturate(1.15);
}

[data-theme="light"] .floating-stat {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-accent);
    box-shadow: var(--glow-warm);
}

/* Premium Section Backgrounds */
/* Expertise + Fund: Connected dark gradient in light mode */
[data-theme="light"] .expertise {
    background: linear-gradient(180deg, #1e1b4b 0%, #252262 50%, #312e81 100%);
    color: #ffffff;
    position: relative;
}

[data-theme="light"] .expertise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

[data-theme="light"] .expertise .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .expertise .section-title {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: unset;
}

[data-theme="light"] .expertise .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .expertise-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .expertise-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

[data-theme="light"] .expertise-card h3 {
    color: #ffffff;
}

[data-theme="light"] .expertise-card p {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .expertise-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .expertise-card:hover .expertise-icon {
    background: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="light"] .expertise-icon svg {
    stroke: #ffffff !important;
}

[data-theme="light"] .expertise-card .card-vector svg {
    stroke: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .timeline {
    background: var(--bg-primary);
}

[data-theme="light"] .about {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

/* Fund: Continues from Expertise gradient */
[data-theme="light"] .fund {
    background: linear-gradient(180deg, #312e81 0%, #3b3794 30%, #4c1d95 60%, #5b21b6 100%);
    color: #ffffff;
    position: relative;
}

[data-theme="light"] .fund::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

[data-theme="light"] .fund .section-tag {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    backdrop-filter: blur(12px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .fund .section-title,
[data-theme="light"] .fund h2 {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .fund h3 {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

[data-theme="light"] .fund p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .fund-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .fund-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .fund-card h2,
[data-theme="light"] .fund-card h3 {
    color: #ffffff;
    font-weight: 700;
}

[data-theme="light"] .fund-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

[data-theme="light"] .insights {
    background: var(--bg-primary);
}

[data-theme="light"] .philosophy {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #6b21a8 100%);
    color: #ffffff;
    position: relative;
}

[data-theme="light"] .philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

[data-theme="light"] .philosophy .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .philosophy .section-title,
[data-theme="light"] .philosophy h2,
[data-theme="light"] .philosophy h3 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: unset;
}

[data-theme="light"] .philosophy-quote-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .philosophy-quote-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
}

[data-theme="light"] .philosophy-text,
[data-theme="light"] .philosophy-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.75;
    font-weight: 400;
}

[data-theme="light"] .philosophy-title {
    color: #ffffff;
    font-weight: 700;
}

[data-theme="light"] .philosophy-thesis-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .philosophy-thesis-card h4,
[data-theme="light"] .philosophy-thesis-card p {
    color: #ffffff;
}

[data-theme="light"] .philosophy-thesis-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .contact {
    background: var(--bg-tertiary);
}

[data-theme="light"] .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--glow-lg);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
    border-color: var(--color-indigo);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), var(--glow-sm);
    background: #ffffff;
}

[data-theme="light"] .btn-primary {
    background: var(--accent-gradient);
    box-shadow: var(--glow-md);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: var(--glow-lg);
    transform: translateY(-2px);
}

[data-theme="light"] .btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    color: var(--accent);
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--bg-card-hover);
    box-shadow: var(--glow-sm);
}

[data-theme="light"] .stats-item {
    background: var(--bg-card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-sm);
}

/* Čistý design - Fund Badge */
[data-theme="light"] .fund-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Čistý design - APARI Logo */
[data-theme="light"] .fund-logo {
    color: #ffffff !important;
    font-weight: 800 !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

/* Čistý design - 4 Stat Boxy */
[data-theme="light"] .fund-stat {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .fund-stat:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

[data-theme="light"] .fund-stat-value {
    color: #ffffff !important;
    font-weight: 800 !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

[data-theme="light"] .fund-stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
}

[data-theme="light"] footer {
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .hero-badge,
[data-theme="light"] .section-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(240, 147, 251, 0.08) 100%);
    border: 1px solid var(--border-glow);
    color: var(--accent);
}

[data-theme="light"] .expertise-icon,
[data-theme="light"] .timeline-icon,
[data-theme="light"] .about-icon,
[data-theme="light"] .philosophy-icon {
    background: var(--accent-gradient);
    border: none;
}

[data-theme="light"] .expertise-icon svg,
[data-theme="light"] .timeline-icon svg,
[data-theme="light"] .about-icon svg,
[data-theme="light"] .philosophy-icon svg {
    stroke: #ffffff;
}

[data-theme="light"] .timeline-line {
    background: linear-gradient(180deg,
        transparent,
        rgba(139, 92, 246, 0.3) 15%,
        rgba(139, 92, 246, 0.3) 85%,
        transparent
    );
}

[data-theme="light"] .timeline-dot {
    background: var(--accent);
    border: 3px solid #ffffff;
    box-shadow: var(--glow-sm);
}

[data-theme="light"] .hero-image-info {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

[data-theme="light"] .hero-image-info h3 {
    color: var(--accent-dark);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

[data-theme="light"] .hero-image-info p {
    color: var(--text-primary);
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.95),
        0 0 8px rgba(255, 255, 255, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

/* Floating stats with better contrast */
[data-theme="light"] .floating-stat .number {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}

[data-theme="light"] .floating-stat .label {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Section tags with better visibility */
[data-theme="light"] .section-tag {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: var(--accent-dark);
    font-weight: 600;
}

/* Purple gradient text where needed */
[data-theme="light"] .logo span,
[data-theme="light"] h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero quote in gray like description */
[data-theme="light"] .hero-microcopy {
    color: var(--text-secondary);
    border-left-color: var(--text-secondary);
}

/* Timeline years with white text to match icons */
[data-theme="light"] .timeline-year {
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 5px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

[data-theme="light"] .contact-link {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .contact-link:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--glow-sm);
}

[data-theme="light"] .process-node {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--glow-md);
}

[data-theme="light"] .process-node:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--glow-lg);
}

/* Reduce WebGL/particle effects opacity in light mode */
[data-theme="light"] #fluid-canvas {
    opacity: 0.25;
}

[data-theme="light"] .mesh-canvas {
    opacity: 0.15;
}

/* Particle image in expertise section - full opacity on dark background */
[data-theme="light"] #particle-image-canvas {
    opacity: 1;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 100%;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.35s var(--ease-out-expo);
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--accent-gradient);
    transition: width 0.35s var(--ease-out-expo);
    border-radius: 2px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-links a.active::after {
    width: 100%;
}

.lang-switch {
    padding: 5px 12px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    margin-right: 8px;
}

.lang-switch:hover {
    color: var(--text-primary);
    border-color: var(--accent);
}

.nav-cta {
    padding: 9px 22px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s var(--ease-out-expo);
    box-shadow: 0 2px 20px rgba(168, 85, 247, 0.25);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.35);
}

.nav-cta.active {
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.5), 0 6px 30px rgba(168, 85, 247, 0.35);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    margin-left: 8px;
}

.theme-toggle:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    transition: all 0.4s var(--ease-out-expo);
    position: absolute;
}

.theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Light mode theme toggle */
[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out-expo);
    transform-origin: center;
}

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

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

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

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(5, 5, 8, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 99;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
    pointer-events: none;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    display: block;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out-expo);
    letter-spacing: -0.02em;
}

.mobile-menu-links a:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.08);
}

.mobile-menu-links a.active {
    color: var(--accent);
    background: rgba(139, 92, 246, 0.12);
}

/* Mobile theme toggle in menu */
.mobile-theme-toggle {
    margin-top: 32px;
    width: 48px;
    height: 48px;
}

.mobile-theme-toggle svg {
    width: 22px;
    height: 22px;
}

/* =============================================
   HERO SECTION — Cinematic Impact
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(-30px, 20px) scale(1.1); opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--accent-gradient-soft);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 32px;
    letter-spacing: 0.03em;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px #10b981;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        box-shadow: 0 0 18px #10b981, 0 0 28px #10b981;
        transform: scale(1.15);
    }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.2rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}

.hero h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-microcopy {
    margin-top: 100px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.02em;
    border-left: 2px solid rgba(255, 255, 255, 0.25);
    padding-left: 16px;
}

/* Buttons — refined with ripple support */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glow);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    box-shadow: var(--glow-sm);
}

/* Hero Image — fluid responsive */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 0.65;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-lg);
    transform: translateY(20px);
    z-index: 15;
    transition: box-shadow 0.5s var(--ease-out-expo);
}

.hero-image-wrapper:hover {
    box-shadow: var(--glow-xl);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 8, 0.92) 100%);
    z-index: 1;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.5s;
}

.hero-image-wrapper:hover::after {
    opacity: 0.7;
}

.hero-image-wrapper img {
    width: calc(100% - 32px);
    height: calc(100% - 16px);
    object-fit: cover;
    object-position: center 0%;
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
    transition: filter 0.6s var(--ease-out-expo);
    margin: 16px 16px 0 16px;
}

.hero-image-wrapper:hover img {
    filter: grayscale(30%) contrast(1.05) brightness(1);
}

.hero-image-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.hero-image-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.hero-image-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: rgba(10, 10, 16, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    z-index: 20;
    box-shadow: var(--glow-sm);
    transition: all 0.5s var(--ease-out-expo);
}

.floating-stat:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-md);
    transform: translateY(-4px);
}

.floating-stat-1 {
    top: 80px;
    right: -45px;
    animation: float-1 6s ease-in-out infinite;
}

.floating-stat-2 {
    bottom: 170px;
    left: -55px;
    animation: float-2 7s ease-in-out infinite;
}

.floating-stat-3 {
    bottom: 55px;
    right: -35px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-3 5s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes float-3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.floating-stat-3 .spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.floating-stat-3 .spec-icon svg {
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.floating-stat-3 .label {
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
}

.floating-stat .number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.floating-stat .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Fluid Canvas */
#fluid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.45;
    pointer-events: auto;
}

.hero > .container {
    position: relative;
    z-index: 5;
    pointer-events: none;
}

.hero a, .hero button, .hero .btn, .hero-image-wrapper, .hero-image, .floating-stat {
    pointer-events: auto;
}

/* =============================================
   SOCIAL PROOF — Refined
   ============================================= */
.social-proof {
    padding: 48px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.06);
    border-bottom: 1px solid rgba(139, 92, 246, 0.06);
    background: var(--bg-secondary);
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-proof-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
}

.social-proof-logos {
    display: flex;
    align-items: center;
    gap: 36px;
}

.social-proof-logos span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: -0.01em;
}

.social-proof-logos span:hover {
    opacity: 1;
    color: var(--accent-light);
}

/* =============================================
   STATS SECTION — Premium Cards
   ============================================= */
.stats {
    padding: 110px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.stat-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-10px);
    border-color: var(--border-glow);
    box-shadow: var(--glow-md);
}

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

.stat-card:hover::after {
    opacity: 1;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* =============================================
   SECTION HEADERS — Shared
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--accent-gradient-soft);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.08rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-md);
    max-height: 720px;
    max-width: 420px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 8px;
    background: var(--bg-card);
    transition: box-shadow 0.5s var(--ease-out-expo);
}

.about-image-wrapper:hover {
    box-shadow: var(--glow-lg);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    transition: opacity 0.5s;
}

.about-image-wrapper:hover::after {
    opacity: 0.5;
}

.about-image-wrapper img {
    width: auto;
    height: 100%;
    max-height: 680px;
    object-fit: contain;
    object-position: top center;
    display: block;
    filter: grayscale(100%) brightness(0.95);
    transition: filter 0.6s var(--ease-out-expo);
}

.about-image-wrapper:hover img {
    filter: grayscale(40%) brightness(1);
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.9;
}

.about-text p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 44px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.highlight-item:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 11px;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.highlight-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.about-card {
    padding: 30px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

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

.about-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 14px;
    margin: 0 auto 18px;
}

.about-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-light);
    stroke-width: 2;
    fill: none;
}

.about-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.about-card-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* =============================================
   INSIGHTS / X FEED SECTION
   ============================================= */
.insights {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
}

.insights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.insights-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.insights-text p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.insights-text .x-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.35s var(--ease-out-expo);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid transparent;
}

.insights-text .x-link:hover {
    color: var(--accent-light);
    background: var(--accent-gradient-soft);
    border-color: var(--border-color);
}

.insights-text .x-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.x-feed-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 20px;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.x-feed-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(10, 10, 16, 0.95));
    pointer-events: none;
}

.x-feed-wrapper a { text-decoration: none; }

/* =============================================
   TIMELINE SECTION — More Visual Impact
   ============================================= */
.timeline-section {
    padding: 140px 0;
    background: var(--bg-primary);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--purple-800), rgba(76, 29, 149, 0.2));
    box-shadow: var(--glow-sm);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 70px;
    position: relative;
    margin-bottom: 20px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 70px;
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -11px;
    top: 28px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(168, 85, 247, 0.2);
    transition: box-shadow 0.4s;
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -11px;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 420px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.timeline-content:hover {
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--glow-md);
}

.timeline-content:hover::before {
    opacity: 0.3;
}

.timeline-year {
    display: inline-block;
    padding: 5px 16px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* =============================================
   EXPERTISE SECTION
   ============================================= */
.expertise {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.expertise-content {
    display: block;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

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

.expertise-particle-wrapper {
    position: absolute;
    top: 280px;
    bottom: 0;
    right: 0;
    width: 55%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

#particle-image-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    pointer-events: auto;
}

.expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
    transform-origin: left;
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.expertise-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--glow-md);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover::after {
    opacity: 0.25;
}

.expertise-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient-soft);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.expertise-card:hover .expertise-icon {
    background: var(--accent-gradient);
}

.expertise-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-light);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s;
}

.expertise-card:hover .expertise-icon svg {
    stroke: white;
}

.expertise-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    z-index: 2;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.expertise-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
    position: relative;
    z-index: 2;
}

/* Card decorative vectors */
.expertise-card .card-vector {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 160px;
    height: 160px;
    opacity: 0.1;
    transition: opacity 0.5s var(--ease-out-expo);
    pointer-events: none;
}

.expertise-card:hover .card-vector {
    opacity: 0.2;
}

.expertise-card .card-vector svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-light);
    stroke-width: 1;
    fill: none;
}

/* =============================================
   FUND SECTION
   ============================================= */
.fund {
    padding: 140px 0;
    background: var(--bg-primary);
    position: relative;
}

.fund::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.fund-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-lg);
    transition: box-shadow 0.5s var(--ease-out-expo);
}

.fund-card:hover {
    box-shadow: var(--glow-xl);
}

.fund-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.35;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.fund-card:hover::after {
    opacity: 0.6;
}

.fund-badge {
    display: inline-block;
    padding: 7px 16px;
    background: var(--accent-gradient-soft);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.fund-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

.fund-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.fund-description {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.fund-info {
    position: relative;
    z-index: 1;
}

.fund-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.fund-stat {
    padding: 24px;
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
}

.fund-stat:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
    transform: translateY(-4px);
}

.fund-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.fund-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* =============================================
   PROCESS & RISK SECTION
   ============================================= */
.process-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

#process-mesh-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

.process-block {
    position: relative;
    min-height: 520px;
}

.process-cycle {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cycle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.cycle-center svg.cycle-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    animation: rotateCycle 12s linear infinite;
}

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

.cycle-center span {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.process-node {
    position: absolute;
    width: 220px;
    background: rgba(8, 8, 12, 0.88);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glow-sm);
}

.process-node::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(192, 132, 252, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.process-node[data-step="1"] { top: 5%; left: 50%; transform: translateX(-50%); }
.process-node[data-step="2"] { top: 32%; right: 0; }
.process-node[data-step="3"] { bottom: 5%; right: 50px; }
.process-node[data-step="4"] { bottom: 5%; left: 50px; }
.process-node[data-step="5"] { top: 32%; left: 0; }

.process-node:hover {
    border-color: var(--accent);
    transform: translateY(-4px) translateX(-50%);
    box-shadow: var(--glow-md);
    z-index: 10;
}

.process-node[data-step="2"]:hover,
.process-node[data-step="3"]:hover,
.process-node[data-step="4"]:hover,
.process-node[data-step="5"]:hover {
    transform: translateY(-4px);
}

.node-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: white;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.node-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.node-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.risk-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.risk-block h3 svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
}

.risk-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(8px);
}

.risk-item:hover {
    border-color: var(--accent);
    transform: translateX(6px);
    background: rgba(139, 92, 246, 0.06);
    box-shadow: var(--glow-sm);
}

.risk-item svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
}

.risk-item span {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */
.philosophy {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.philosophy .section-header {
    text-align: center;
}

.philosophy-quote-card {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 48px 52px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.philosophy-quote-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
}

.philosophy-quote-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 18px;
    margin: 0 auto 28px;
}

.philosophy-quote-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 1.5;
    fill: none;
}

.philosophy-quote-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto;
}

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

.philosophy-thesis-card {
    padding: 36px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.philosophy-thesis-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
    transform: translateY(-4px);
}

.thesis-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 14px;
    margin: 0 auto 20px;
}

.thesis-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-light);
    stroke-width: 2;
    fill: none;
}

.thesis-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.thesis-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =============================================
   PHILOSOPHY SECTION (Second Instance)
   ============================================= */
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 20px;
    margin: 0 auto 32px;
}

.philosophy-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.philosophy-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.philosophy-text {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* =============================================
   CONTACT SECTION — Enhanced Form
   ============================================= */
.contact {
    padding: 140px 0;
    background: var(--bg-primary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 48px;
    line-height: 1.75;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}

.contact-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateX(8px);
    box-shadow: var(--glow-sm);
}

.contact-link-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 14px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out-expo);
}

.contact-link:hover .contact-link-icon {
    transform: scale(1.05);
}

.contact-link-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.contact-link-text { flex: 1; }

.contact-link-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-link-value {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
    transition: opacity 0.5s;
    pointer-events: none;
}

.contact-form-wrapper:focus-within::after {
    opacity: 0.35;
}

.contact-form-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

.form-group:focus-within label {
    color: var(--accent-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.35s var(--ease-out-expo);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08), var(--glow-sm);
    background: var(--bg-tertiary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

/* Form validation states */
.form-group input.valid,
.form-group textarea.valid {
    border-color: #10b981;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
}

.form-error {
    display: none;
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 6px;
    letter-spacing: 0.01em;
}

.form-group input.invalid + .form-error,
.form-group textarea.invalid + .form-error {
    display: block;
}

/* reCAPTCHA */
.captcha-wrapper {
    margin-bottom: 22px;
}

.captcha-wrapper .g-recaptcha {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.captcha-wrapper .g-recaptcha iframe {
    border-radius: var(--radius-sm);
}

.captcha-error.visible {
    display: block;
}

/* Submit button success state */
.btn.submitted {
    background: linear-gradient(135deg, #059669, #10b981) !important;
    pointer-events: none;
}

/* =============================================
   CONTACT FORM 7 STYLES
   ============================================= */
.wpcf7 {
    width: 100%;
}

.wpcf7-form p {
    margin-bottom: 1.25rem;
}

.wpcf7-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out-expo);
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.wpcf7-form-control:not(.wpcf7-submit)::placeholder {
    color: var(--text-muted);
}

.wpcf7-textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7-submit {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-md);
}

.wpcf7-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.wpcf7 .wpcf7-response-output {
    margin: 1rem 0 0 0;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
}

.wpcf7 .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.wpcf7-not-valid-tip {
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 6px;
}

.wpcf7-spinner {
    margin-left: 10px;
}

/* Light mode CF7 styles */
[data-theme="light"] .wpcf7-form-control:not(.wpcf7-submit) {
    background: white;
    border-color: #e5e7eb;
}

[data-theme="light"] .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    padding: 52px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(139, 92, 246, 0.06);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s var(--ease-out-expo);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-disclaimer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.06);
}

.footer-disclaimer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.65;
    max-width: 800px;
    margin: 0 auto;
}

/* =============================================
   RESPONSIVE — Complete Mobile Experience
   ============================================= */
@media (max-width: 900px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .process-cycle {
        height: auto;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }
    .cycle-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 16px;
    }
    .process-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
    }
    .process-node:hover {
        transform: translateY(-4px) !important;
    }

    /* Show hamburger */
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    nav > .container > .theme-toggle {
        display: none;
    }
    nav { padding: 12px 20px; }
}

@media (max-width: 1024px) {
    .hero-content, .about-content, .contact-grid, .fund-card {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image { order: -1; }
    .hero-text { max-width: 100%; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-content { max-width: 100%; }
    .expertise-grid { grid-template-columns: repeat(3, 1fr); }
    .expertise-particle-wrapper {
        position: relative;
        top: auto;
        width: 100%;
        height: 500px;
        order: -1;
        margin-bottom: 40px;
    }
    .insights-content { grid-template-columns: 1fr; }
    .timeline::before { left: 24px; }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%; margin-left: 0; padding-left: 70px; padding-right: 0; justify-content: flex-start;
    }
    .timeline-item::before, .timeline-item:nth-child(even)::before { left: 13px; right: auto; }
    .floating-stat { display: none; }
    .about-content { grid-template-columns: 1fr; }
    .about-image-wrapper { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .expertise-grid, .stats-grid, .fund-stats { grid-template-columns: 1fr 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .expertise-particle-wrapper { height: 400px; }
    .fund-card { padding: 36px 28px; }
    .contact-form-wrapper { padding: 36px 28px; }
    .section-header { margin-bottom: 56px; }
    .about-cards-grid { grid-template-columns: 1fr 1fr; }
    .philosophy-theses-grid { grid-template-columns: 1fr; }
    .philosophy-quote-card { padding: 36px 28px; }
    .fund { margin-top: -120px; }

    /* Hide fluid effect on mobile */
    #fluid-canvas {
        display: none !important;
    }
}

@media (max-width: 500px) {
    .expertise-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.6rem; }
    .hero-subtitle { font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .fund-stats { grid-template-columns: 1fr; }
    .about-cards-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CUSTOM SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

/* =============================================
   SELECTION
   ============================================= */
::selection {
    background: rgba(168, 85, 247, 0.25);
    color: white;
}

[data-theme="light"] ::selection {
    background: rgba(118, 75, 162, 0.25);
    color: var(--text-primary);
}

/* =============================================
   LIGHT MODE - Additional Fixes
   ============================================= */

/* Mobile Menu */
[data-theme="light"] .mobile-menu {
    background: rgba(250, 251, 252, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

[data-theme="light"] .mobile-menu-links a {
    color: var(--text-secondary);
}

[data-theme="light"] .mobile-menu-links a:hover {
    color: var(--text-primary);
    background: rgba(118, 75, 162, 0.08);
}

[data-theme="light"] .mobile-menu-links a.active {
    color: var(--accent);
    background: rgba(118, 75, 162, 0.12);
}

/* X-Feed Wrapper gradient */
[data-theme="light"] .x-feed-wrapper {
    background: var(--bg-card);
    border-color: var(--border-glow);
}

[data-theme="light"] .x-feed-wrapper::after {
    background: linear-gradient(transparent, rgba(250, 251, 252, 0.95));
}

/* Process Section */
[data-theme="light"] .process-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="light"] .process-node {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-sm);
}

[data-theme="light"] .process-node:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--border-glow);
    box-shadow: var(--glow-md);
}

[data-theme="light"] .process-node::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.1));
}

/* Risk Items */
[data-theme="light"] .risk-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .risk-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
}

/* Timeline Section */
[data-theme="light"] .timeline-section {
    background: var(--bg-primary);
}

[data-theme="light"] .timeline::before {
    background: linear-gradient(180deg, var(--color-indigo), var(--color-purple), rgba(118, 75, 162, 0.3));
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

[data-theme="light"] .timeline-item::before {
    background: var(--color-purple);
    border-color: var(--bg-primary);
    box-shadow: 0 0 15px var(--color-purple), 0 0 30px rgba(118, 75, 162, 0.3);
}

[data-theme="light"] .timeline-content {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="light"] .timeline-content:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--glow-md);
}

/* About Card Icon enhancement */
[data-theme="light"] .about-card-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
}

[data-theme="light"] .about-card-icon svg {
    stroke: var(--color-purple);
}

/* Scrollbar */
[data-theme="light"]::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

[data-theme="light"]::-webkit-scrollbar-thumb {
    background: rgba(118, 75, 162, 0.3);
}

[data-theme="light"]::-webkit-scrollbar-thumb:hover {
    background: rgba(118, 75, 162, 0.5);
}

/* Social Proof */
[data-theme="light"] .social-proof {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

/* Stats Section */
[data-theme="light"] .stats {
    background: var(--bg-primary);
}

[data-theme="light"] .stat-card {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="light"] .stat-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--glow-md);
}

/* About Image Wrapper */
[data-theme="light"] .about-image-wrapper {
    background: var(--bg-card);
    border-color: var(--border-glow);
    box-shadow: var(--glow-lg);
}

[data-theme="light"] .about-image-wrapper:hover {
    box-shadow: var(--glow-xl);
}

[data-theme="light"] .about-image-wrapper img {
    filter: grayscale(0%) brightness(1) contrast(1.02);
}

[data-theme="light"] .about-image-wrapper:hover img {
    filter: grayscale(0%) brightness(1.02) contrast(1.05);
}

/* Insights Section */
[data-theme="light"] .insights-text h3 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight Items (About section) */
[data-theme="light"] .highlight-item {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="light"] .highlight-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
}

/* Cycle Center in Process Section */
[data-theme="light"] .cycle-center span {
    color: var(--text-secondary);
}

/* Risk Block Title */
[data-theme="light"] .risk-block h3 svg {
    stroke: var(--color-purple);
}

[data-theme="light"] .risk-item svg {
    stroke: var(--color-purple);
}

/* =============================================
   X PROFILE CARD
   ============================================= */
.x-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
    min-height: 400px;
}

.x-profile-header {
    margin-bottom: 24px;
}

.x-profile-header .x-logo {
    color: var(--text-primary);
    opacity: 0.9;
}

.x-profile-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.x-profile-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto 24px;
}

.x-profile-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.x-profile-stats span {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--purple-300);
    font-weight: 500;
}

.x-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.x-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.x-follow-btn svg {
    flex-shrink: 0;
}

/* Light mode */
[data-theme="light"] .x-profile-header .x-logo {
    color: var(--text-primary);
}

[data-theme="light"] .x-profile-stats span {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.15);
    color: var(--purple-700);
}

[data-theme="light"] .x-follow-btn {
    background: var(--bg-primary);
    color: #fff;
}

[data-theme="light"] .x-follow-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* =============================================
   X POSTS FEED — Custom Tweet Cards
   ============================================= */
.x-posts-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 480px;
    overflow-y: auto;
    padding: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

.x-posts-feed::-webkit-scrollbar {
    width: 4px;
}

.x-posts-feed::-webkit-scrollbar-track {
    background: transparent;
}

.x-posts-feed::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 4px;
}

.x-tweet-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.x-tweet-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
    transform: translateY(-1px);
}

.x-tweet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.x-tweet-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.x-tweet-author {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.x-tweet-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.x-tweet-handle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.x-tweet-logo {
    flex-shrink: 0;
    color: var(--text-muted);
    opacity: 0.6;
}

.x-tweet-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
    word-break: break-word;
}

.x-tweet-text a {
    color: var(--accent-light);
    text-decoration: none;
    pointer-events: none;
}

.x-tweet-media {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.x-tweet-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.x-tweet-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.x-tweet-likes {
    color: var(--text-muted);
}

/* Light mode tweet cards */
[data-theme="light"] .x-tweet-text a {
    color: var(--accent-dark);
}
