/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Color Palette - Backgrounds */
    --color-bg-start: #07112b;
    --color-bg-end: #0a1f4e;
    --color-bg-mid: #091640;
    --color-bg-footer: #060e1f;
    
    /* Color Palette - Primary Accent (Gold) - Solid */
    --color-accent: #c9913a;
    --color-accent-dark: #a0722a;
    --color-accent-light: #d9a34a;
    
    /* Color Palette - Primary Accent (Gold) - RGBA Variants */
    --color-accent-rgb: 201, 145, 58;
    --color-accent-glow: rgba(201, 145, 58, 0.35);
    --color-accent-soft: rgba(201, 145, 58, 0.12);
    --color-accent-border: rgba(201, 145, 58, 0.22);
    --color-accent-dim: rgba(200, 146, 61, 0.28);
    --color-accent-strong: rgba(200, 146, 61, 0.5);
    --color-accent-ultra-soft: rgba(200, 146, 61, 0.05);
    --color-accent-mid-soft: rgba(200, 146, 61, 0.15);
    --color-accent-semi: rgba(200, 146, 61, 0.3);
    --color-accent-semi-strong: rgba(200, 146, 61, 0.4);
    --color-accent-transparent: rgba(201, 145, 58, 0);
    --color-accent-very-soft: rgba(200, 146, 61, 0.1);
    
    /* Color Palette - Text Colors */
    --color-text-primary: #f0ead8;
    --color-text-secondary:#131312;
    --color-text-muted: rgba(240, 234, 216, 0.55);
    --color-text-faint: rgba(240, 234, 216, 0.3);
    
    /* Color Palette - Surfaces & Borders */
    --color-surface: rgba(255, 255, 255, 0.04);
    --color-surface-hover: rgba(255, 255, 255, 0.08);
    --color-border: rgba(201, 145, 58, 0.18);
    --color-border-hover: rgba(201, 145, 58, 0.45);
    
    /* Color Palette - Border Gold Variants */
    --color-border-gold-light: rgba(200, 146, 61, 0.16);
    --color-border-gold-mid: rgba(200, 146, 61, 0.3);
    --color-border-gold-strong: rgba(200, 146, 61, 0.5);
    
    /* Color Palette - Secondary Accent (Blue) */
    --color-blue: #45caff;
    --color-blue-rgb: 69, 202, 255;
    --color-blue-glow: rgba(69, 202, 255, 0.6);
    --color-blue-soft: rgba(69, 202, 255, 0.1);
    --color-blue-border: rgba(69, 202, 255, 0.4);
    
    /* Color Palette - Green Accent */
    --color-green: #48bb78;
    --color-green-rgb: 72, 187, 120;
    
    /* Color Palette - Gradients */
    --gradient-gold-start: #c8923d;
    --gradient-gold-mid: #e8b96a;
    --gradient-gold-end: #c8923d;
    --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    --gradient-footer: linear-gradient(135deg, var(--color-bg-footer) 0%, var(--color-bg-start) 100%);
    
    /* Color Palette - Black & White Variants (RGBA) */
    --color-black-soft: rgba(0, 0, 0, 0.03);
    --color-black-light: rgba(0, 0, 0, 0.3);
    --color-black-medium: rgba(0, 0, 0, 0.4);
    --color-black-heavy: rgba(0, 0, 0, 0.45);
    --color-black-strong: rgba(0, 0, 0, 0.5);
    --color-white-soft: rgba(255, 255, 255, 0.2);
    --color-white-light: rgba(255, 255, 255, 0.04);
    
    /* Color Palette - Decorative & Effect Elements */
    --color-watermark: rgba(200, 146, 61, 0.08);
    --color-watermark-hover: rgba(200, 146, 61, 0.15);
    --color-watermark-stroke: rgba(200, 146, 61, 0.08);
    --color-watermark-shadow: rgba(200, 146, 61, 0.1);
    --color-shimmer: rgba(201, 145, 58, 0.08);
    --color-shimmer-soft: rgba(201, 145, 58, 0.06);
    --color-shimmer-ultra: rgba(201, 145, 58, 0.04);
    --color-shimmer-white: rgba(255, 255, 255, 0.2);
    --color-ripple: rgba(201, 145, 58, 0.25);
    --color-cursor-ring: rgba(201, 145, 58, 0.5);
    --color-scanline: rgba(0, 0, 0, 0.03);
    --color-grid-line: rgba(201, 145, 58, 0.04);
    --color-glow-strong: rgba(201, 145, 58, 0.15);
    --color-glow-ultra: rgba(201, 145, 58, 0.2);
    --color-text-glow-gold: rgba(201, 145, 58, 0.2);
    --color-diamond-shadow: rgba(200, 146, 61, 0.4);
    
    /* Color Palette - Hero & Section Overlays */
    --color-hero-overlay-gold: rgba(201, 145, 58, 0.08);
    --color-hero-overlay-blue: rgba(9, 104, 229, 0.06);
    --color-footer-overlay-gold: rgba(201, 145, 58, 0.05);
    --color-footer-overlay-blue: rgba(9, 104, 229, 0.04);
    --color-overlay-dark: rgba(7, 17, 43, 0.42);
    
    /* Color Palette - Background Elements */
    --color-bg-element-gold: rgba(201, 145, 58, 0.06);
    --color-bg-element-blue: rgba(9, 104, 229, 0.06);
    --color-bg-element-soft-gold: rgba(201, 145, 58, 0.05);
    --color-bg-element-green: rgba(9, 104, 229, 0.04);
    
    /* Color Palette - Text Gold Variants */
    --color-text-gold-dim: rgba(200, 146, 61, 0.06);
    --color-text-gold-soft: rgba(200, 146, 61, 0.15);
    --color-text-gold: rgba(200, 146, 61, 0.1);
    --color-text-gold-light: rgba(200, 146, 61, 0.2);
    
    /* Color Palette - Gradient Overlays */
    --color-bg-gradient-start: rgba(7, 17, 43, 0.95);
    --color-bg-gradient-end: rgba(7, 17, 43, 0.7);
    
    /* Color Palette - Testimonial Elements */
    --color-testimonial-before: rgba(201, 145, 58, 0.2);
    --color-testimonial-before-hover: rgba(201, 145, 58, 0.5);
    
    /* ============================================================
       NOTIFICATION BACKGROUNDS
    ============================================================ */
    --color-notification-success: linear-gradient(135deg, rgba(7, 17, 43, 0.95) 0%, rgba(10, 31, 78, 0.95) 100%);
    --color-notification-error: linear-gradient(135deg, rgba(7, 17, 43, 0.95) 0%, rgba(10, 31, 78, 0.95) 100%);
    --color-notification-info: linear-gradient(135deg, rgba(7, 17, 43, 0.95) 0%, rgba(10, 31, 78, 0.95) 100%);
    
    /* Error color (if not defined in base) */
    --color-error: #e05252;
    --color-error-glow: rgba(224, 82, 82, 0.4);
    --color-error-soft: rgba(224, 82, 82, 0.1);
    
    /* ============================================================
       VIDEO CONTROLS RGBA VARIABLES
    ============================================================ */
    /* Video control backgrounds */
    --color-video-control-bg: rgba(0, 0, 0, 0.95);
    --color-video-control-dark: rgba(0, 0, 0, 0.7);
    --color-video-control-darker: rgba(0, 0, 0, 0.6);
    --color-video-progress-bg: rgba(255, 255, 255, 0.2);
    --color-video-buffered-bg: rgba(255, 255, 255, 0.3);
    --color-video-time-bg: rgba(0, 0, 0, 0.5);
    --color-video-error-bg: rgba(0, 0, 0, 0.95);
    --color-video-toast-bg: rgba(0, 0, 0, 0.9);
    --color-video-shortcut-bg: rgba(0, 0, 0, 0.7);
    --color-video-quality-bg: rgba(0, 0, 0, 0.7);
    --color-video-keyboard-bg: rgba(255, 255, 255, 0.1);
    
    /* Video gradients */
    --gradient-video-controls: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    --gradient-progress-gold: linear-gradient(90deg, var(--gradient-gold-start), var(--gradient-gold-mid), var(--gradient-gold-end));
    --gradient-volume-gold: linear-gradient(90deg, var(--gradient-gold-start), var(--gradient-gold-mid));
    
    /* Video loading spinner colors */
    --color-spinner-border: rgba(200, 146, 61, 0.3);
    --color-spinner-top: var(--color-accent);
    
    /* Spacing & Grid */
    --grid-size: 48px;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garant', 'Georgia', serif;
    
    /* Easing Curves */
    --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-film: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Transition Durations */
    --duration-fast: 0.2s;
    --duration-base: 0.4s;
    --duration-slow: 0.8s;
    --duration-epic: 1.2s;
    --duration-medium: 0.3s;
    --duration-long: 0.5s;
}

/* Accent Text Helper Class */
.accent-text {
    color: var(--color-accent);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg-start);
    color: var(--color-text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Cinematic grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
}

/* Global grid background */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(var(--color-grid-line) 1px, transparent 1px),
                      linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: none;
    z-index: 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-start);
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: linear-gradient(var(--color-accent), var(--color-accent-dark));
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(2deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--color-accent-glow); }
    50% { box-shadow: 0 0 40px var(--color-accent-glow), 0 0 80px var(--color-glow-ultra); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes rippleOut {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes underline-expand {
    0%, 10% { width: 0; left: 0; }
    30%, 80% { width: 100%; left: 0; }
    90%, 100% { width: 0; left: 0; }
}

@keyframes typewriter {
    0%, 10% { max-width: 0;}
    30%, 75% {max-width: 100%;}
    100% {max-width: 0;}
}

@keyframes blink-caret {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--color-accent); }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 20px var(--color-accent-glow); }
    50% { text-shadow: 0 0 40px var(--color-accent-glow), 0 0 80px var(--color-text-glow-gold); }
}

@keyframes accentBar {
    from { width: 0; }
    to { width: 60px; }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes rippleWave {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes adminGlow {
    0% { box-shadow: 0 0 0px var(--color-blue-border); }
    50% { box-shadow: 0 0 30px var(--color-blue-glow); }
    100% { box-shadow: 0 0 0px var(--color-blue-border); }
}

@keyframes diamondPulse {
    0%, 100% { opacity: 0.6; transform: rotate(45deg) scale(1); }
    50% { opacity: 1; transform: rotate(45deg) scale(1.15); box-shadow: 0 0 16px var(--color-diamond-shadow); }
}

@keyframes watermarkFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes watermarkGlow {
    0%, 100% { text-shadow: 0 0 0px var(--color-accent-transparent); }
    50% { text-shadow: 0 0 20px var(--color-watermark-shadow); }
}

@keyframes shimmerSweep {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

@keyframes spineGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.75; }
}

@keyframes mastGhost {
    0%, 100% { -webkit-text-stroke-color: var(--color-text-gold-dim); }
    50% { -webkit-text-stroke-color: var(--color-text-gold-light); }
}

/* New video animations */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    70% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        visibility: hidden;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ============================================================
   SCROLL ANIMATION CLASSES
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--duration-slow) var(--ease-cinematic),
                transform var(--duration-slow) var(--ease-cinematic);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity var(--duration-slow) var(--ease-cinematic),
                transform var(--duration-slow) var(--ease-cinematic);
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity var(--duration-slow) var(--ease-cinematic),
                transform var(--duration-slow) var(--ease-cinematic);
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gradient-gold-start), var(--gradient-gold-mid), var(--gradient-gold-end));
    z-index: 2000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--color-accent-dim);
    pointer-events: auto;
    cursor: pointer;
}

.scroll-progress-bar:hover {
    height: 3px;
    box-shadow: 0 0 15px var(--color-accent-strong);
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin: 0;
    height: 1px;
    position: relative;
    background: transparent;
    cursor: pointer;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-gold-light), var(--color-border-gold-light));
}

.section-divider::after {
    background: linear-gradient(-90deg, transparent, var(--color-border-gold-light), var(--color-border-gold-light));
}

.section-divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    transform: rotate(45deg);
    margin: 0 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--color-accent-dim);
    transition: all var(--duration-long) var(--ease-spring);
    animation: diamondPulse 3s ease-in-out infinite;
}

.section-divider:hover .section-divider-diamond {
    transform: rotate(45deg) scale(1.3);
    box-shadow: 0 0 20px var(--color-accent-strong);
}

.section-divider:active .section-divider-diamond {
    transform: rotate(45deg) scale(0.9);
    transition: transform 0.1s ease;
}

.section-divider:hover::before,
.section-divider:hover::after {
    background: linear-gradient(90deg, transparent, var(--color-border-gold-mid), var(--color-border-gold-strong));
}

.section-divider:hover::after {
    background: linear-gradient(-90deg, transparent, var(--color-border-gold-mid), var(--color-border-gold-strong));
}

/* ============================================================
   WATERMARK
   ============================================================ */
.mylmshub-watermark-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
}

.mylmshub-watermark {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 12vw, 12rem);
    font-weight: 700;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-accent-semi);
    text-align: center;
    line-height: 0.85;
    user-select: none;
    pointer-events: none;
    padding: 2rem 5%;
    letter-spacing: 0.04em;
    transition: -webkit-text-stroke-color var(--duration-base) ease;
    animation: watermarkFloat 8s ease-in-out infinite, watermarkGlow 4s ease-in-out infinite;
    text-shadow: 0 0 8px var(--color-accent-semi);
}

.mylmshub-watermark-container:hover .mylmshub-watermark {
    -webkit-text-stroke-color: var(--color-accent-strong);
    text-shadow: 0 0 15px var(--color-accent-semi-strong);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all var(--duration-base) var(--ease-cinematic);
    background: transparent;
    border-bottom: 1px solid transparent;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--duration-base) ease;
}

header.scrolled::before {
    opacity: 1;
}

header.scrolled {
    padding: 1rem 5%;
    border-bottom-color: var(--color-border);
    box-shadow: 0 4px 40px var(--color-black-heavy);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text-primary);
    letter-spacing: 0.04em;
    transition: all var(--duration-base) ease;
    position: relative;
    z-index: 2;
}

.logo i {
    font-size: 1.8rem;
    color: var(--color-accent);
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--color-accent-glow));
}

.logo:hover {
    color: var(--color-accent);
    transform: scale(1.03);
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-text-primary);
    transition: all var(--duration-base) ease;
    z-index: 2;
}

.hamburger:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.hamburger i {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger .fa-times {
    transform: rotate(180deg);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn,
.admin-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-cinematic);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
}

.btn i,
.admin-btn i {
    font-size: 0.85rem;
    transition: transform var(--duration-base) ease;
}

.btn:hover i,
.admin-btn:hover i {
    transform: translateX(3px);
}

.btn::after,
.admin-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-shimmer-white), transparent);
    transition: none;
    transform: skewX(-20deg);
}

.btn:hover::after,
.admin-btn:hover::after {
    animation: shimmer 0.6s ease-out;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-border-hover);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    background: var(--color-accent-soft);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-accent-glow);
}

.btn-solid {
    background: var(--gradient-accent);
    border: 1.5px solid var(--color-accent);
    color: var(--color-bg-start);
    font-weight: 700;
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-accent-glow);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}

.admin-btn {
    display: none;
    background: transparent;
    border: 1.5px solid var(--color-blue-border);
    color: var(--color-blue);
    margin-left: 6px;
}

.admin-btn:hover {
    background: var(--color-blue-soft);
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-blue-soft);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 10rem 5% 6rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-start) 0%, var(--color-bg-mid) 50%, var(--color-bg-end) 100%);
}

.hero-watermark {
    position: absolute;
    bottom: -0.08em;
    right: -0.04em;
    font-size: clamp(6rem, 18vw, 18rem);
    font-weight: 900;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-text-gold-dim);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
    z-index: 1;
    animation: mastGhost 6s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
    animation: fadeInUp 1s ease 1.6s both;
}

.scroll-indicator-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--color-accent));
    position: relative;
    overflow: hidden;
}

.scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: var(--color-text-primary);
    animation: scanline 1.7s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-faint);
    writing-mode: vertical-rl;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 30% 50%, var(--color-hero-overlay-gold) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 80% 20%, var(--color-hero-overlay-blue) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, var(--color-scanline) 2px, var(--color-scanline) 4px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 4rem;
    z-index: 2;
    animation: fadeInLeft var(--duration-epic) var(--ease-cinematic) both;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.8rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    max-width: 520px;
    margin-bottom: 2rem;
    font-weight: 400;
}

.slogan-container {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 2.4rem;
}

.slogan-wrapper {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 0.55rem;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slogan-prefix {
    font-size: clamp(0.78rem, 2vw, 1rem);
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.slogan-changing {
    font-size: clamp(0.82rem, 3.8vw, 1.55rem);
    font-weight: 800;
    color: var(--color-accent);
    white-space: nowrap;
    overflow: hidden;
    border-right: 2.5px solid var(--color-accent);
    letter-spacing: 0.05em;
    text-shadow: 0 0 18px var(--color-accent-glow);
    filter: drop-shadow(0 0 7px var(--color-accent-glow));
    display: inline-block;
    width: fit-content;
    max-width: fit-content;
    animation: typewriter 6s steps(40, end) infinite,
               blink-caret 0.75s step-end infinite;
}

.slogan-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
    margin-top: 1rem;
}

.hero-cta .btn {
    padding: 0.85rem 2rem;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-cta .btn i {
    font-size: 0.9rem;
    transition: transform var(--duration-base) ease;
}

.hero-cta .btn:hover i {
    transform: translateX(3px);
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--color-accent-border);
    padding-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-right: 2rem;
    margin-right: 2rem;
    border-right: 1px solid var(--color-accent-border);
}

.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.hero-stat-value {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.65rem;
    color: var(--color-text-faint);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-video {
    flex: 1;
    position: relative;
    z-index: 2;
    animation: fadeInRight var(--duration-epic) var(--ease-cinematic) 0.3s both;
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-accent-border);
    background: var(--color-bg-start);
    transition: all 0.6s var(--ease-cinematic);
    animation: glow 4s ease-in-out infinite;
}

.video-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    border-radius: 16px 0 0 0;
    z-index: 10;
    pointer-events: none;
    transition: width var(--duration-base) ease, height var(--duration-base) ease;
}

.video-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
    border-radius: 0 0 16px 0;
    z-index: 10;
    pointer-events: none;
    transition: width var(--duration-base) ease, height var(--duration-base) ease;
}

.video-frame:hover {
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) scale(1.015);
}

.video-frame:hover::before,
.video-frame:hover::after {
    width: 60px;
    height: 60px;
}

.video-rec-badge {
    position: absolute;
    top: 0.9rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    z-index: 11;
    pointer-events: none;
}

.video-rec-dot {
    display: block;
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 8px var(--color-accent-glow);
}

/* ============================================================
   VIDEO CONTAINER & CONTROLS
   ============================================================ */

/* Video Container Base */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-bg-start);
    cursor: pointer;
}

/* Video Element Styling */
.video-container video {
    width: 100%;
    display: block;
    filter: brightness(0.88) contrast(1.04);
    transition: filter var(--duration-base) ease;
    pointer-events: auto;
}

.video-frame:hover .video-container video {
    filter: brightness(1) contrast(1);
}

/* Video Overlay Container */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    background: var(--color-overlay-dark);
    transition: opacity var(--duration-base) ease;
    backdrop-filter: blur(3px);
    z-index: 15;
}

.video-frame:hover .video-overlay {
    opacity: 1;
}

/* Play Button Styling */
.play-button {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-bg-start);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transform: scale(0.8);
    transition: all var(--duration-base) var(--ease-spring);
    position: relative;
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid var(--color-accent-border);
    animation: rippleOut 2.2s ease-out infinite;
}

.video-frame:hover .play-button {
    transform: scale(1);
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.play-button:hover {
    transform: scale(1.1) !important;
    background: var(--color-accent-light);
}

/* Fullscreen Button (Main) */
.fullscreen-button {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--color-video-control-dark);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border-gold-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-spring);
    z-index: 20;
    color: var(--color-text-primary);
    font-size: 18px;
    opacity: 0;
    transform: scale(0.9);
}

.video-container:hover .fullscreen-button {
    opacity: 1;
    transform: scale(1);
}

.fullscreen-button:hover {
    background: var(--color-accent);
    color: var(--color-bg-start);
    transform: scale(1.1);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

/* Advanced Video Controls Bar */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-video-controls);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity var(--duration-base) ease;
    z-index: 20;
    backdrop-filter: blur(8px);
    transform: translateY(0);
}

.video-container:hover .video-controls {
    opacity: 1;
}

/* Video Control Buttons */
.video-play-pause-btn,
.video-volume-btn,
.video-fullscreen-btn {
    background: var(--color-video-control-darker);
    border: 1px solid var(--color-border-gold-light);
    color: var(--color-text-primary);
    cursor: pointer;
    font-size: 14px;
    padding: 8px;
    border-radius: 50%;
    transition: all var(--duration-base) var(--ease-spring);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.video-play-pause-btn:hover,
.video-volume-btn:hover,
.video-fullscreen-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-start);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

/* Progress Bar Container */
.video-progress {
    flex: 1;
    height: 4px;
    background: var(--color-video-progress-bg);
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    overflow: visible;
    transition: height var(--duration-fast) ease;
    --thumb-position: 0%;
}

.video-progress:hover {
    height: 6px;
}

/* Progress Bar Filled (Played) */
.video-progress-filled {
    width: 0%;
    height: 100%;
    background: var(--gradient-progress-gold);
    border-radius: 2px;
    position: relative;
    z-index: 2;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--color-accent-glow);
}

/* Progress Bar Buffered */
.video-progress-buffered {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-video-buffered-bg);
    border-radius: 2px;
    z-index: 1;
    width: 0%;
}

/* Progress Handle (Thumb) */
.video-progress::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    left: var(--thumb-position, 0%);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 0 10px var(--color-accent-glow);
}

.video-progress:hover::after {
    opacity: 1;
}

/* Time Display */
.video-time {
    color: var(--color-text-primary);
    font-size: 12px;
    font-family: 'Monaco', 'Courier New', monospace;
    min-width: 85px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: var(--color-video-time-bg);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Volume Control Container */
.video-volume-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Volume Slider */
.video-volume-slider {
    width: 0;
    overflow: hidden;
    transition: width var(--duration-base) ease;
    height: 4px;
    background: var(--color-video-progress-bg);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.video-volume-container:hover .video-volume-slider {
    width: 60px;
}

/* Volume Level Indicator */
.video-volume-level {
    width: 100%;
    height: 100%;
    background: var(--gradient-volume-gold);
    border-radius: 2px;
    transition: width 0.1s linear;
    position: relative;
}

/* Volume Slider Handle */
.video-volume-slider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    right: -5px;
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
    pointer-events: none;
}

.video-volume-slider:hover::after {
    opacity: 1;
}

/* ============================================================
   FULLSCREEN MODE STYLES
   ============================================================ */

/* Fullscreen Container */
.video-container:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    border-radius: 0;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.video-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    border-radius: 0;
    background: #000;
}

.video-container:fullscreen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-container:-webkit-full-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Fullscreen Mode Controls Adjustment */
.video-container:fullscreen .video-controls,
.video-container:-webkit-full-screen .video-controls {
    padding: 20px 24px;
    background: var(--gradient-video-controls);
}

.video-container:fullscreen .video-play-pause-btn,
.video-container:fullscreen .video-volume-btn,
.video-container:fullscreen .video-fullscreen-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.video-container:fullscreen .video-time {
    font-size: 14px;
    min-width: 100px;
}

.video-container:fullscreen .video-progress {
    height: 6px;
}

.video-container:fullscreen .video-progress:hover {
    height: 8px;
}

.video-container:fullscreen .video-volume-container:hover .video-volume-slider {
    width: 80px;
}

/* Exit Fullscreen Button Styling in Fullscreen */
.video-container:fullscreen .fullscreen-button i::before,
.video-container:-webkit-full-screen .fullscreen-button i::before {
    content: "\f066";
}

/* ============================================================
   VIDEO ERROR STATE
   ============================================================ */
.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-video-error-bg);
    backdrop-filter: blur(12px);
    color: var(--color-text-primary);
    padding: 28px 32px;
    border-radius: 16px;
    text-align: center;
    z-index: 30;
    border: 1px solid var(--color-border-gold-strong);
    min-width: 280px;
    animation: fadeInUp var(--duration-base) var(--ease-cinematic);
}

.video-error i {
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 12px var(--color-accent-glow));
}

.video-error p {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.video-reload-btn {
    background: var(--gradient-accent);
    color: var(--color-bg-start);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all var(--duration-base) var(--ease-spring);
    font-family: var(--font-primary);
}

.video-reload-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

/* ============================================================
   FULLSCREEN TOAST NOTIFICATION
   ============================================================ */
.fullscreen-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-video-toast-bg);
    backdrop-filter: blur(12px);
    color: var(--color-text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 10001;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--color-border-gold-light);
    white-space: nowrap;
    animation: fadeOut 3s forwards;
    pointer-events: none;
}

/* ============================================================
   KEYBOARD SHORTCUT INDICATOR
   ============================================================ */
.video-shortcuts-hint {
    position: absolute;
    bottom: 60px;
    right: 20px;
    background: var(--color-video-shortcut-bg);
    backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 10px;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-gold-light);
    opacity: 0;
    transition: opacity var(--duration-base) ease;
    pointer-events: none;
    z-index: 20;
    font-family: monospace;
}

.video-container:hover .video-shortcuts-hint {
    opacity: 1;
}

.video-shortcuts-hint kbd {
    background: var(--color-video-keyboard-bg);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    font-size: 9px;
    color: var(--color-accent);
}

/* Video Loading State */
.video-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-spinner-border);
    border-top-color: var(--color-spinner-top);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 25;
    pointer-events: none;
}

/* Video Quality Indicator */
.video-quality-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-video-quality-bg);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-accent);
    border: 1px solid var(--color-border-gold-light);
    z-index: 15;
    pointer-events: none;
    font-family: monospace;
}

/* Active/Playing State Indicators */
.video-container.playing .play-button {
    opacity: 0;
}

.video-container.playing:hover .play-button {
    opacity: 1;
}

/* ============================================================
   MOBILE VIDEO STYLES - Keep play button visible WITHOUT dark overlay
   ============================================================ */
@media (max-width: 768px) {
    /* Hide custom advanced controls on mobile */
    .video-controls {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Hide the fullscreen button on mobile */
    .fullscreen-button {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Keep the play button visible but remove dark overlay background */
    .video-overlay {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        pointer-events: none !important;
    }
    
    /* Ensure play button is visible, properly sized for touch, and clickable */
    .play-button {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: scale(1) !important;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 25 !important;
    }
    
    .play-button::before {
        animation: rippleOut 2.2s ease-out infinite;
    }
    
    /* Ensure native video controls are visible on mobile when playing */
    .video-container video {
        pointer-events: auto;
        cursor: pointer;
        filter: brightness(0.95) contrast(1.02);
    }
    
    /* Maintain curved edges on mobile */
    .video-frame,
    .video-container {
        border-radius: 16px;
    }
    
    .video-frame {
        overflow: hidden;
    }
    
    .video-container {
        border-radius: 16px;
    }
    
    /* Ensure the video doesn't lose its border radius on interaction */
    .video-container video::-webkit-media-controls {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    
    /* Additional touch-friendly adjustments */
    .video-frame {
        cursor: default;
    }
    
    .video-container {
        cursor: pointer;
    }
    
    /* Remove hover effect interference */
    .video-frame:hover .video-container video {
        filter: brightness(0.95) contrast(1.02);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .video-frame,
    .video-container {
        border-radius: 12px;
    }
    
    .video-container video::-webkit-media-controls {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    
    /* Slightly smaller play button on very small screens */
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Touch devices without hover capability - keep play button visible without dark overlay */
@media (hover: none) and (pointer: coarse) {
    /* Keep play button visible on touch devices without dark background */
    .video-overlay {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        pointer-events: none !important;
    }
    
    .play-button {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    /* Hide other custom controls */
    .video-controls {
        display: none !important;
    }
    
    .fullscreen-button {
        display: none !important;
    }
    
    .video-frame,
    .video-container {
        border-radius: 16px;
    }
    
    .video-container video {
        pointer-events: auto;
    }
    
    /* Ensure the video element maintains border radius */
    .video-container video::-webkit-media-controls {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
    padding: 8rem 5%;
    position: relative;
    background: linear-gradient(180deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--color-accent-ultra-soft) 0%, transparent 70%);
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
}

.bg-element-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-bg-element-gold) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.bg-element-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-bg-element-blue) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.bg-element-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-bg-element-soft-gold) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2 em {
    font-style: normal;
    color: var(--color-accent);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: accentBar 1s var(--ease-cinematic) 0.5s both;
    width: 60px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 1.5rem auto 0;
    font-weight: 400;
    line-height: 1.7;
}

/* ============================================================
   WHY CARDS
   ============================================================ */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-cinematic);
    cursor: default;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-top: 1.5px solid var(--color-accent-border);
    border-left: 1.5px solid var(--color-accent-border);
    border-radius: 16px 0 0 0;
    transition: all var(--duration-base) ease;
    z-index: 1;
}

.card:hover::before {
    width: 48px;
    height: 48px;
    border-color: var(--color-accent);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--duration-long) var(--ease-film);
    z-index: 1;
}

.card:hover::after {
    width: 100%;
}

.card-ghost-num {
    position: absolute;
    top: -0.15em;
    right: 0.15em;
    font-size: 6.5rem;
    font-weight: 900;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-text-gold-dim);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: -webkit-text-stroke-color var(--duration-medium) ease;
    z-index: 0;
}

.card:hover .card-ghost-num {
    -webkit-text-stroke-color: var(--color-text-gold-light);
}

.card .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-shimmer), transparent);
    transform: skewX(-15deg);
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    transition: opacity 0s;
}

.card:hover .shimmer {
    opacity: 1;
    animation: shimmer 0.7s ease-out;
}

.card:hover {
    border-color: var(--color-border-hover);
    background: var(--color-surface-hover);
    transform: translateY(-10px);
    box-shadow: 0 22px 60px var(--color-black-heavy), 0 0 40px var(--color-accent-glow);
}

.card i {
    font-size: 2.4rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 12px var(--color-accent-glow));
    transition: all var(--duration-base) var(--ease-spring);
    position: relative;
    z-index: 1;
}

.card:hover i {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 0 20px var(--color-accent-glow));
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    transition: color var(--duration-base) ease;
    position: relative;
    z-index: 1;
}

.card:hover h3 {
    color: var(--color-accent);
}

.card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    transition: color var(--duration-base) ease;
    position: relative;
    z-index: 1;
}

.card:hover p {
    color: var(--color-text-primary);
    opacity: 0.7;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    background: linear-gradient(135deg, var(--color-bg-end) 0%, var(--color-bg-start) 100%);
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    transition: all 0.5s var(--ease-cinematic);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--color-accent);
    transition: height var(--duration-long) var(--ease-film);
    border-radius: 14px 0 0 14px;
    z-index: 2;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-item .feature-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-top: 1px solid var(--color-accent-border);
    border-right: 1px solid var(--color-accent-border);
    border-radius: 0 14px 0 0;
    transition: all var(--duration-base) ease;
    pointer-events: none;
    z-index: 2;
}

.feature-item:hover .feature-corner-accent {
    width: 36px;
    height: 36px;
    border-color: var(--color-accent);
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-shimmer-soft), transparent);
    transform: skewX(-14deg);
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.feature-item:hover::after {
    opacity: 1;
    animation: shimmerSweep 0.7s ease-out;
}

.feature-item:hover {
    border-color: var(--color-border-hover);
    background: var(--color-surface-hover);
    transform: translateX(6px);
    box-shadow: 0 10px 40px var(--color-black-light), inset 0 0 20px var(--color-accent-ultra-soft);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
    color: var(--color-accent);
    transition: all var(--duration-base) var(--ease-spring);
    filter: drop-shadow(0 0 8px transparent);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    background: var(--gradient-accent);
    color: var(--color-bg-start);
    border-color: var(--color-accent);
    transform: rotate(8deg) scale(1.1);
    filter: drop-shadow(0 4px 12px var(--color-accent-glow));
}

.feature-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
    transition: color var(--duration-base) ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-content h3 {
    color: var(--color-accent);
}

.feature-content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    transition: color var(--duration-base) ease;
    position: relative;
    z-index: 1;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
    overflow: hidden;
    padding-bottom: 7rem;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, var(--color-accent-ultra-soft) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.testimonials-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-start), transparent);
}

.testimonials-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg-start), transparent);
}

.testimonials-container {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    width: max-content;
    animation: slideTestimonials 30s linear infinite;
}

.testimonials-container:hover {
    animation-play-state: paused;
}

.testimonial {
    width: 380px;
    flex-shrink: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-cinematic);
    backdrop-filter: blur(10px);
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: -5px;
    left: 18px;
    font-size: 5rem;
    font-family: var(--font-serif);
    color: var(--color-accent);
    opacity: 0.2;
    line-height: 1;
    transition: opacity var(--duration-base) ease;
}

.testimonial:hover::before {
    opacity: 0.5;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-shimmer-ultra), transparent);
    transform: skewX(-15deg);
}

.testimonial:hover::after {
    animation: shimmer 0.7s ease-out;
}

.testimonial:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--color-black-heavy), 0 0 30px var(--color-accent-glow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent-border);
    transition: all var(--duration-base) var(--ease-spring);
    filter: brightness(0.95);
}

.testimonial:hover .testimonial-avatar {
    border-color: var(--color-accent);
    transform: scale(1.08);
    filter: brightness(1) drop-shadow(0 0 8px var(--color-accent-glow));
}

.testimonial-user h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    transition: color var(--duration-base) ease;
}

.testimonial:hover .testimonial-user h4 {
    color: var(--color-accent);
}

.testimonial-user p {
    font-size: 0.78rem;
    color: var(--color-blue);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-accent);
    filter: drop-shadow(0 0 4px var(--color-accent-glow));
}

.testimonial-content {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    font-style: italic;
    transition: color var(--duration-base) ease;
}

.testimonial:hover .testimonial-content {
    color: var(--color-text-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    padding: 4rem 5% 3rem;
    position: relative;
    background: var(--gradient-footer);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 20% 80%, var(--color-footer-overlay-gold) 0%, transparent 60%),
                radial-gradient(ellipse 40% 50% at 80% 20%, var(--color-footer-overlay-blue) 0%, transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col:first-child {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    position: relative;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    width: 36px;
    transition: width var(--duration-base) ease;
}

.footer-col:hover h3::after {
    width: 56px;
}

.footer-col p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 280px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li {
    margin-bottom: 0;
}

.footer-col ul li a {
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 400;
    transition: all var(--duration-base) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--duration-base) ease;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    transform: translateX(6px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--duration-base) var(--ease-spring);
}

.social-icons a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-start);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px var(--color-accent-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-faint);
    letter-spacing: 0.05em;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-cinematic);
    z-index: 999;
    border: 1px solid var(--color-accent-border);
    background: var(--color-accent-soft);
    color: var(--color-accent);
    backdrop-filter: blur(10px);
    outline: none;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-accent);
    color: var(--color-bg-start);
    border-color: var(--color-accent);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px var(--color-accent-glow);
}

/* ============================================================
   CURSOR STYLES
   ============================================================ */
.cursor-glow-orb {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent-ultra-soft) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity var(--duration-long) ease;
    will-change: transform;
    opacity: 0;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity var(--duration-fast) ease;
    box-shadow: 0 0 6px var(--color-cursor-ring);
    mix-blend-mode: screen;
    opacity: 1;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-cursor-ring);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width var(--duration-long) ease, height var(--duration-long) ease, border-color var(--duration-long) ease, opacity var(--duration-fast) ease;
    will-change: left, top;
}

.cursor-ring.hover {
    width: 52px;
    height: 52px;
    border-color: var(--color-accent);
    border-width: 1.5px;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: var(--color-ripple);
    transform: scale(0);
    animation: rippleWave 0.65s ease-out forwards;
    pointer-events: none;
}

/* ============================================================
   CURSOR INTERACTIONS FOR VIDEO CONTROLS
   ============================================================ */
.video-progress,
.video-volume-slider,
.play-button,
.fullscreen-button,
.video-play-pause-btn,
.video-volume-btn,
.video-fullscreen-btn {
    cursor: pointer;
}

/* Ensure video container handles cursor properly */
.video-container video {
    cursor: pointer;
}

/* ============================================================
   PAGE SPINE (Left Edge Accent)
   ============================================================ */
.page-spine {
    position: fixed;
    left: 0;
    top: 0;
    width: 3px;
    height: 100vh;
    background: linear-gradient(180deg, transparent 0%, var(--color-accent-mid-soft) 20%, var(--color-accent) 50%, var(--color-accent-mid-soft) 80%, transparent 100%);
    z-index: 1001;
    opacity: 0.5;
    pointer-events: none;
    animation: spineGlow 4s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .page-spine {
        transition: opacity var(--duration-long) ease;
    }
    .page-spine:hover {
        opacity: 0.8;
        width: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-spine {
        animation: none;
        opacity: 0.3;
    }
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES (Grouped)
   ============================================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 8rem 5% 4rem;
        text-align: center;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .hero p {
        max-width: 100%;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .slogan-container {
        justify-content: center;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    header {
        padding: 1rem 4%;
    }
    .logo {
        font-size: 1.4rem;
    }
    .hamburger {
        display: block;
    }
    .nav-buttons {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 1.2rem;
        gap: 0.6rem;
        background: linear-gradient(180deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 100%);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 20px 40px var(--color-black-strong);
    }
    .nav-buttons.active {
        display: flex;
    }
    .btn {
        width: 100%;
        padding: 0.75rem;
        text-align: center;
        border-radius: 8px;
    }
    .hero {
        padding: 7rem 4% 3rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .hero-cta {
        justify-content: center;
        gap: 0.8rem;
    }
    .hero-cta .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    .hero-stats {
        justify-content: space-around;
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
    .hero-stat {
        padding-right: 0.75rem;
        margin-right: 0.75rem;
        flex-direction: row;
        align-items: baseline;
        gap: 0.4rem;
        border-right: 1px solid var(--color-accent-border);
    }
    .hero-stat:last-child {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
    .hero-stat-value {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    .hero-stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }
    .mylmshub-watermark {
        padding: 1.5rem 4%;
        line-height: 0.9;
        -webkit-text-stroke-width: 1px;
        letter-spacing: 0.02em;
        text-shadow: 0 0 6px var(--color-accent-semi);
    }
    .section {
        padding: 4.5rem 4%;
    }
    .section-title h2 {
        font-size: 1.7rem;
    }
    .cards-container {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .testimonial {
        width: 85vw;
    }
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 40px;
    }
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col:first-child {
        flex: auto;
    }
    .section-divider {
        padding: 0 4%;
    }
    .section-divider-diamond {
        width: 6px;
        height: 6px;
        margin: 0 1rem;
    }
    .floating-element {
        display: none;
    }
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    .page-spine {
        width: 2px;
        opacity: 0.3;
        display: block;
    }
    .slogan-container {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .slogan-wrapper {
        max-width: 90vw;
    }
    .slogan-changing {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        letter-spacing: 0.03em;
    }
    .slogan-underline {
        bottom: -4px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-stats {
        justify-content: space-between;
        gap: 0.25rem;
    }
    .hero-stat {
        padding-right: 0.5rem;
        margin-right: 0.5rem;
        gap: 0.3rem;
    }
    .hero-stat-value {
        font-size: 0.95rem;
    }
    .hero-stat-label {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }
    .slogan-changing {
        font-size: 0.85rem;
        border-right-width: 1.5px;
    }
    .slogan-wrapper {
        max-width: 85vw;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    .hero-stat {
        padding-right: 1rem;
        margin-right: 1rem;
    }
    .hero-stat-value {
        font-size: 1rem;
    }
    .slogan-changing {
        font-size: 1rem;
    }
    .slogan-wrapper {
        max-width: 75vw;
    }
}

/* Hover disable for touch devices */
@media (hover: none) and (pointer: coarse) {
    .card:hover,
    .feature-item:hover,
    .testimonial:hover {
        transform: none;
    }
    .card:active,
    .feature-item:active {
        transform: scale(0.98);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .section-divider .section-divider-diamond {
        animation: none;
    }
    .mylmshub-watermark {
        animation: none;
    }
}