/* ============================================
   HOLLYWOOD REBORN - Professional Website
   Modern, Clean Design System
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors - Dark Theme (Default) */
    --color-bg-primary: #09090b;
    --color-bg-secondary: #0f0f12;
    --color-bg-tertiary: #18181b;
    --color-bg-card: #141417;
    --color-bg-elevated: #1c1c20;
    
    --color-text-primary: #fafafa;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;
    
    --color-border: #27272a;
    --color-border-light: #3f3f46;
    --color-border-subtle: #1f1f23;
    
    --color-accent: #6366f1;
    --color-accent-hover: #818cf8;
    --color-accent-muted: #4f46e5;
    --color-accent-glow: rgba(99, 102, 241, 0.35);
    --color-accent-subtle: rgba(99, 102, 241, 0.08);
    
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    --gradient-card: linear-gradient(145deg, rgba(99, 102, 241, 0.04) 0%, transparent 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-border: linear-gradient(135deg, var(--color-border-light) 0%, var(--color-border) 100%);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    
    /* Spacing - 4px base */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */
    --space-5xl: 8rem;     /* 128px */
    
    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 800px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Shadows - layered for depth */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2), 0 16px 32px rgba(0, 0, 0, 0.15), 0 32px 64px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px var(--color-accent-glow), 0 0 40px var(--color-accent-glow);
    --shadow-glow-sm: 0 0 10px var(--color-accent-glow);
    
    /* Transitions - eased for smoothness */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Selection styling */
::selection {
    background: var(--color-accent);
    color: white;
}

::-moz-selection {
    background: var(--color-accent);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--color-bg-tertiary);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: #09090b;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-link.active {
    color: var(--color-text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

.nav-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.4),
        0 0 40px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: transform var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-4xl) var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(24, 24, 27, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(8px);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.025em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(3) {
    animation-delay: 0.2s;
}

.title-accent {
    display: block;
    font-size: 0.5em;
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(90deg, var(--color-text-muted), var(--color-accent), var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: fadeInUp 0.6s ease-out 0.15s backwards, shimmer 8s ease-in-out infinite;
    margin: var(--space-sm) 0;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.hero-subtitle strong {
    color: var(--color-text-primary);
}

.hero-subtitle em {
    color: var(--color-accent);
    font-style: normal;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: scale(0.98);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.35),
        0 8px 30px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.45),
        0 16px 40px rgba(99, 102, 241, 0.25),
        0 0 60px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: linear-gradient(145deg, rgba(40, 42, 54, 0.8) 0%, rgba(25, 27, 35, 0.9) 100%);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: linear-gradient(145deg, rgba(50, 52, 64, 0.9) 0%, rgba(35, 37, 45, 1) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    color: #a5b4fc;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: 12px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: var(--space-4xl) var(--space-xl);
}

.section-alt {
    background: linear-gradient(180deg, 
        rgba(15, 17, 23, 1) 0%, 
        rgba(20, 22, 30, 1) 50%,
        rgba(15, 17, 23, 1) 100%);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: var(--max-width-narrow);
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a5b4fc;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.section-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    background: linear-gradient(180deg, 
        rgba(12, 14, 18, 1) 0%,
        rgba(18, 20, 28, 1) 50%,
        rgba(12, 14, 18, 1) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.problem-card {
    background: linear-gradient(145deg, rgba(30, 32, 42, 0.8) 0%, rgba(20, 22, 30, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.problem-icon svg {
    width: 26px;
    height: 26px;
    color: #a5b4fc;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.95);
}

.problem-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
    position: relative;
    z-index: 1;
}

.problem-card p {
    color: var(--color-text-secondary);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.architecture {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius-lg);
    overflow-x: auto;
}

.arch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    min-width: 800px;
}

.arch-node {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    min-width: 180px;
    transition: all var(--transition-normal);
}

.arch-node.highlight {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.arch-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-subtle);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--border-radius);
    margin: 0 auto var(--space-md);
    transition: all var(--transition-normal);
}

.arch-node:hover .arch-icon {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
}

.arch-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.arch-icon.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.15);
}

.arch-icon.success svg {
    color: var(--color-success);
}

.arch-label {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.arch-detail {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.arch-tags {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.arch-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-accent);
    background: rgba(99, 102, 241, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.arch-output {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-sm);
}

.arch-output.success {
    color: var(--color-success);
    font-weight: 600;
}

.arch-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.arrow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-border), var(--color-accent), var(--color-border));
    background-size: 200% 100%;
    animation: arrowFlow 2s ease-in-out infinite;
    position: relative;
}

@keyframes arrowFlow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-accent);
}

.arrow-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.feature:hover {
    background: var(--color-accent-subtle);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    transition: transform var(--transition-normal);
}

.feature:hover .feature-icon {
    transform: scale(1.15);
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   TECH SECTION
   ============================================ */

.tech-section {
    background: var(--color-bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.tech-content .section-tag {
    text-align: left;
}

.tech-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.tech-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.tech-content strong {
    color: var(--color-text-primary);
}

.tech-list {
    margin-bottom: var(--space-xl);
}

.tech-list li {
    padding: var(--space-md) 0;
    padding-left: var(--space-xl);
    position: relative;
    color: var(--color-text-secondary);
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.tech-list li:hover {
    color: var(--color-text-primary);
}

.tech-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.tech-list li:hover::before {
    transform: translateY(-50%) scale(1.25);
}

.tech-list li strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.code-block {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.code-block:hover {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.code-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(24, 24, 27, 0.8);
    border-bottom: 1px solid var(--color-border);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.code-dot.red { background: linear-gradient(180deg, #ff6b6b 0%, #ff5f57 100%); }
.code-dot.yellow { background: linear-gradient(180deg, #ffd93d 0%, #febc2e 100%); }
.code-dot.green { background: linear-gradient(180deg, #6bff7b 0%, #28c840 100%); }

.code-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.code-block pre {
    padding: var(--space-xl);
    overflow-x: auto;
    margin: 0;
}

.code-block code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background: none;
    padding: 0;
    line-height: 1.85;
}

.code-keyword { color: #c678dd; }
.code-string { color: #98c379; }
.code-prop { color: #e5c07b; }
.code-num { color: #d19a66; }
.code-comment { color: #5c6370; font-style: italic; }

/* ============================================
   METRICS SECTION
   ============================================ */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.metric-card {
    background: linear-gradient(145deg, rgba(30, 32, 42, 0.7) 0%, rgba(20, 22, 30, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.metric-unit {
    font-size: 1.75rem;
    font-weight: 600;
}

.metric-label {
    font-size: 1rem;
    font-weight: 700;
    margin: var(--space-md) 0 var(--space-xs);
    color: rgba(255, 255, 255, 0.95);
}

.metric-detail {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-bg-tertiary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr.highlight {
    background: rgba(99, 102, 241, 0.1);
}

.comparison-table tr.highlight td {
    color: var(--color-text-primary);
}

.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-yellow {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 12px rgba(34, 197, 94, 0.3); }
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap-section {
    background: var(--color-bg-secondary);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.roadmap-card {
    display: flex;
    gap: var(--space-lg);
}

.roadmap-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-border);
    position: relative;
    transition: all var(--transition-normal);
}

.roadmap-card:hover .marker-dot {
    border-color: var(--color-border-light);
}

.marker-dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5), 0 0 40px rgba(99, 102, 241, 0.2);
    animation: pulseActive 2s ease-in-out infinite;
}

@keyframes pulseActive {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5), 0 0 40px rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.7), 0 0 60px rgba(99, 102, 241, 0.35); }
}

.marker-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.marker-line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, var(--color-border-light), transparent);
    margin-top: var(--space-sm);
}

.roadmap-content {
    flex: 1;
}

.roadmap-phase {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
    display: block;
}

.roadmap-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.roadmap-card:hover .roadmap-content h3 {
    color: var(--color-accent-light);
}

.roadmap-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.roadmap-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.stat-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    background: rgba(99, 102, 241, 0.12);
    color: var(--color-accent-light);
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.stat-pill:hover {
    background: rgba(99, 102, 241, 0.2);
}

.stat-pill.outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.stat-pill.outline:hover {
    border-color: var(--color-border-light);
    color: var(--color-text-secondary);
}

.roadmap-card.current .roadmap-content h3 {
    color: var(--color-accent-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(147, 112, 219, 0.05) 50%, rgba(99, 102, 241, 0.08) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.cta-content {
    text-align: center;
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.75;
}

.cta-content strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(180deg, 
        rgba(15, 17, 23, 1) 0%, 
        rgba(9, 11, 15, 1) 100%);
    padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.3) 50%, 
        transparent 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    padding-right: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.footer-logo .logo-img {
    height: 28px;
    width: auto;
}

.footer-description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-location {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-tagline {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-light);
    transition: width var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--color-accent-light);
    transform: translateX(2px);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Compact footer for demo page */
.footer-compact {
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
}

.footer-compact .footer-logo {
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.footer-mini-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.footer-mini-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-mini-links a:hover {
    color: var(--color-text-primary);
}

.footer-compact .footer-copyright {
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .tech-content {
        order: 2;
    }
    
    .tech-visual {
        order: 1;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .roadmap-card {
        padding-bottom: var(--space-xl);
    }
    
    .marker-line {
        display: none;
    }
}

/* ============================================
   MOBILE STYLES - 768px and below
   ============================================ */
@media (max-width: 768px) {
    /* === NAVIGATION === */
    /* Navbar - ALWAYS solid, ALWAYS visible */
    .navbar,
    .navbar.scrolled {
        background: #09090b !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
    }
    
    .nav-container {
        padding: 0 16px !important;
    }
    
    /* Hamburger button - above everything */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        z-index: 10002 !important;
        position: relative;
        padding: 12px;
        background: transparent;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }
    
    .nav-toggle:active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff !important;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }
    
    /* Hamburger X animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Mobile menu - fullscreen overlay */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height for mobile */
        background: #09090b !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 80px 24px 40px !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 10001 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Nav links styling */
    .nav-link {
        font-size: 1.75rem !important;
        font-weight: 600 !important;
        padding: 16px 32px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        border-radius: 12px;
        transition: background 0.2s ease, color 0.2s ease;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff !important;
    }
    
    .nav-link.active {
        color: #a5b4fc !important;
        background: rgba(99, 102, 241, 0.15);
    }
    
    .nav-link.active::after {
        display: none !important;
    }
    
    /* CTA button in mobile menu */
    .nav-cta {
        margin-top: 24px !important;
        font-size: 1.1rem !important;
        padding: 16px 40px !important;
        width: auto !important;
        max-width: none !important;
    }
    
    /* === HERO SECTION === */
    .hero {
        min-height: auto;
        padding: 100px 20px 60px !important;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-title .title-line {
        font-size: 2rem;
    }
    
    .hero-title .title-accent {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 8px;
        line-height: 1.7;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* === SECTIONS === */
    .section {
        padding: 48px 16px !important;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.7;
    }
    
    /* === CARDS === */
    .problem-grid,
    .approach-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .problem-card,
    .approach-card,
    .value-card {
        padding: 24px 20px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .card-title,
    .approach-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    /* === ARCHITECTURE === */
    .arch-flow {
        flex-direction: column;
        gap: 16px;
    }
    
    .arch-box {
        width: 100%;
        max-width: 280px;
        padding: 16px;
    }
    
    .arch-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    /* === TECH SECTION === */
    .tech-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .metric-box {
        padding: 16px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    /* === BUTTONS === */
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    /* === FOOTER === */
    .footer {
        padding: 48px 16px 24px;
    }
    
    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 16px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .footer-col a {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding-top: 24px;
        margin-top: 32px;
    }
    
    .footer-copyright,
    .footer-location {
        font-size: 0.8rem;
    }
}

/* ============================================
   SMALL MOBILE - 480px and below  
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-title .title-line {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.35rem !important;
    }
    
    .nav-link {
        font-size: 1.5rem !important;
        padding: 14px 24px !important;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-metrics {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-mini-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */

.video-showcase-section {
    background: var(--color-bg-secondary);
    padding: var(--space-4xl) 0;
}

.video-showcase {
    max-width: 960px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--color-bg-primary);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(99, 102, 241, 0.15);
    border: 1px solid var(--color-border);
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-cta {
    margin-top: var(--space-xl);
    text-align: center;
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: var(--space-3xl) 0;
    }
    
    .video-wrapper {
        border-radius: var(--border-radius);
    }
}
