/* ==========================================================================
   AXOM Player Design System & Style Guide
   Pure Vanilla CSS - Premium High-End SaaS & Streaming App Aesthetic
   ========================================================================== */

:root {
    /* Colors - Curated Slate and Tech Gradient Palette */
    --bg-color: #020617;          /* Luxury Dark Grey-Black */
    --bg-surface: #0a0f1d;        /* Deep Premium Slate Blue Surface */
    --bg-surface-hover: #111827;  /* Tech Gray Surface */
    --border-color: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(6, 182, 212, 0.2);
    
    /* Brand Accents */
    --primary: #06b6d4;           /* Electric Cyan */
    --primary-glow: rgba(6, 182, 212, 0.35);
    --secondary: #3b82f6;         /* Vivid Royal Blue */
    --accent: #8b5cf6;            /* Premium Violet */
    --accent-glow: rgba(139, 92, 246, 0.25);
    
    /* Semantic Status Colors */
    --success: #10b981;           /* Emerald Green */
    --warning: #f59e0b;           /* Bright Amber */
    --error: #ef4444;             /* Crimson Red */
    
    /* Typography */
    --text-main: #f3f4f6;         /* Creamy high-contrast white */
    --text-muted: #9ca3af;        /* Slate Gray */
    --text-dark: #4b5563;         /* Dim Gray */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Variables */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 28px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Global Reset & Base Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* High-Tech Dotted Mesh Background Pattern */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
    pointer-events: none;
    animation: grid-slide 120s linear infinite;
}

@keyframes grid-slide {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Aurora Animated Hero Background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(139, 92, 246, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 90%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    animation: aurora-shift 18s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes aurora-shift {
    0% {
        background:
            radial-gradient(ellipse 80% 60% at 20% 40%, rgba(6, 182, 212, 0.13) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 80% 60%, rgba(139, 92, 246, 0.09) 0%, transparent 60%),
            radial-gradient(ellipse 50% 40% at 50% 90%, rgba(59, 130, 246, 0.07) 0%, transparent 60%);
    }
    33% {
        background:
            radial-gradient(ellipse 70% 55% at 60% 30%, rgba(6, 182, 212, 0.10) 0%, transparent 60%),
            radial-gradient(ellipse 80% 60% at 15% 70%, rgba(139, 92, 246, 0.13) 0%, transparent 60%),
            radial-gradient(ellipse 40% 35% at 85% 20%, rgba(59, 130, 246, 0.09) 0%, transparent 60%);
    }
    66% {
        background:
            radial-gradient(ellipse 60% 70% at 75% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
            radial-gradient(ellipse 50% 50% at 30% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse 70% 40% at 60% 80%, rgba(59, 130, 246, 0.11) 0%, transparent 60%);
    }
    100% {
        background:
            radial-gradient(ellipse 80% 60% at 20% 40%, rgba(6, 182, 212, 0.13) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 80% 60%, rgba(139, 92, 246, 0.09) 0%, transparent 60%),
            radial-gradient(ellipse 50% 40% at 50% 90%, rgba(59, 130, 246, 0.07) 0%, transparent 60%);
    }
}

/* Premium Ambient Neon Halo behind Hero (Cinematic slow shifting projection) */
body::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(139, 92, 246, 0.04) 40%, rgba(3, 7, 18, 0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: theater-glow 20s ease-in-out infinite alternate;
}

@keyframes theater-glow {
    0% { background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(139, 92, 246, 0.04) 40%, rgba(3, 7, 18, 0) 70%); }
    100% { background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.04) 40%, rgba(3, 7, 18, 0) 70%); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

/* 2. Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(135deg, #06b6d4 30%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-premium {
    background: linear-gradient(135deg, #3b82f6 30%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

/* 3. Reusable Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-premium {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn:disabled, .btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pulsing Glow Animation */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    box-shadow: 0 0 15px var(--primary);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.btn-glow:hover::after {
    opacity: 1;
    animation: glow-pulse 1.8s infinite;
}

@keyframes glow-pulse {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(6, 182, 212, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px rgba(6, 182, 212, 0.6), 0 0 8px rgba(139, 92, 246, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(6, 182, 212, 0.4); }
}

/* 4. Elegant Minimalist Card System */
.glass-card {
    background: rgba(10, 15, 30, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.18);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(6, 182, 212, 0.06);
}

/* 5. Header / Navbar Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

/* Premium Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.logo-text span {
    font-weight: 300;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-links a:not(.btn):hover {
    color: #ffffff;
}

/* Navigation Line Indicator Animation */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.btn):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile menu toggle classes */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 6. Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 7. Hero Section & Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 640px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 44px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-disclaimer svg {
    color: var(--primary);
}

/* 8. TV Mockup & Interactive App Simulator (CSS Only) */
.hero-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(139, 92, 246, 0.03) 40%, rgba(3, 7, 18, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.tv-mockup {
    width: 100%;
    max-width: 540px;
    position: relative;
    z-index: 1;
    perspective: 1200px;
    transform: rotateY(-6deg) rotateX(3deg);
    transition: var(--transition);
}

.tv-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.tv-screen {
    background: #060913;
    border: 10px solid #1e293b;
    border-radius: 16px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
}

/* Smart TV Ambient Scanline Effect */
.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.04));
    background-size: 100% 3px, 6px 100%;
    z-index: 5;
    pointer-events: none;
}

/* Glass Screen Glaze Overlay */
.tv-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 30%);
    transform: rotate(-10deg);
    z-index: 6;
    pointer-events: none;
}

.tv-stand {
    width: 100px;
    height: 14px;
    background: #0f172a;
    margin: 0 auto;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.tv-stand::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: #090d16;
    border-radius: 4px 4px 0 0;
}

/* Streaming Simulator App Mockup Grid */
.app-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.app-mockup {
    display: flex;
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 8px;
}

/* Sidebar TV Mockup */
.app-sidebar {
    width: 18%;
    background: #070b14;
    border-right: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 4px;
    gap: 8px;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 7px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.app-logo span {
    color: #fff;
}

.sim-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
}

.sim-nav-item {
    height: 14px;
    width: 85%;
    margin: 0 auto;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    padding: 0 4px;
    gap: 3px;
}

.sim-nav-item.active {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.sim-circle { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.sim-nav-item.active .sim-circle { background: #fff; }
.sim-line-s { width: 15px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 1px; }
.sim-nav-item.active .sim-line-s { background: #fff; }

/* Main TV Simulator Window */
.app-main {
    flex: 1;
    background: #04070e;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-hero-banner {
    height: 42%;
    background: linear-gradient(90deg, #04070e 40%, rgba(4, 7, 14, 0.1)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="120" viewBox="0 0 200 120"><rect width="200" height="120" fill="%230f172a"/><circle cx="150" cy="50" r="28" fill="%2306b6d4" opacity="0.25"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    border: 1px solid rgba(255,255,255,0.02);
}

.banner-title { width: 60px; height: 6px; background: #fff; border-radius: 1px; }
.banner-desc { width: 90px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 1px; }
.banner-buttons { display: flex; gap: 4px; margin-top: 2px; }
.banner-btn { width: 18px; height: 6px; background: var(--primary); border-radius: 1px; }
.banner-btn.sec { background: rgba(255,255,255,0.2); }

.app-row-title { width: 40px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 1px; }

.app-row {
    display: flex;
    gap: 8px;
    height: 38%;
}

.app-card {
    flex: 1;
    background: #090f1e;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4px;
    position: relative;
    overflow: hidden;
}

.app-card-title { width: 80%; height: 3px; background: rgba(255,255,255,0.3); border-radius: 1px; }

.app-card.focus {
    transform: scale(1.05);
    border: 1px solid var(--primary);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.25);
    background: #0f172a;
}
.app-card.focus .app-card-title { background: #fff; }

/* Floating Badges */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.float-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-y 6s ease-in-out infinite;
}

.badge-cyan { border-color: rgba(6, 182, 212, 0.3); color: var(--primary); }
.badge-violet { border-color: rgba(139, 92, 246, 0.3); color: var(--accent); }

.f-badge-1 { top: 12%; right: -20px; animation-delay: 0s; }
.f-badge-2 { bottom: 25%; left: -30px; animation-delay: 2s; }
.f-badge-3 { bottom: 5%; right: 15px; animation-delay: 4s; }

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 9. Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    color: var(--primary);
    width: 58px;
    height: 58px;
    border-radius: 12px;
    font-size: 1.6rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.glass-card:hover .feature-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(6, 182, 212, 0.25);
    border-color: transparent;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 10. TV Experience Split Layout */
.tv-experience {
    background: radial-gradient(circle at 10% 50%, rgba(6, 182, 212, 0.03) 0%, rgba(3, 7, 18, 0) 60%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.experience-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.remote-mockup {
    width: 130px;
    height: 360px;
    background: linear-gradient(180deg, #131929 0%, #060913 100%);
    border: 2px solid #1e293b;
    border-radius: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.remote-power {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--error);
    align-self: flex-end;
}

.remote-dpad {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #1e293b;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.remote-dpad-center {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #060913;
    border: 1.5px solid #334155;
}

.remote-row {
    display: flex;
    gap: 12px;
}

.remote-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e293b;
    border-bottom: 1.5px solid #0f172a;
}

.remote-volume {
    width: 14px;
    height: 48px;
    background: #1e293b;
    border-radius: 8px;
}

.experience-content h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.experience-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.checklist-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.checklist-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* 11. Premium Subscription Section Matrix */
.pricing-matrix {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(10, 15, 30, 0.35);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Highlighting Premium with Accents */
.pricing-card.premium {
    background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.06) 0%, rgba(10, 15, 30, 0.5) 70%);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.05), inset 0 0 0 1px rgba(139, 92, 246, 0.1);
}

.premium-badge {
    position: absolute;
    top: -14px;
    right: 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.pricing-card-header {
    margin-bottom: 30px;
}

.pricing-card-header h3 {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.pricing-card.premium .pricing-card-header h3 {
    color: var(--accent);
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.pricing-features-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features-list li.disabled {
    color: var(--text-dark);
}

.li-check { color: var(--primary); }
.pricing-card.premium .li-check { color: var(--accent); }
.li-cross { color: var(--error); }

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* 12. Device Grid Page Support */
.device-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.devices-list-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dev-mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dev-mini-card.future {
    opacity: 0.5;
}

.dev-icon {
    font-size: 1.6rem;
}

/* Multi-device Mockup Shapes */
.device-composite-visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.comp-tv {
    width: 80%;
    height: 75%;
    background: #0a0f1d;
    border: 5px solid #1e293b;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    position: absolute;
    top: 10px;
    z-index: 1;
}

.comp-tablet {
    width: 32%;
    height: 52%;
    background: #111827;
    border: 3.5px solid #334155;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    position: absolute;
    bottom: 20px;
    left: 8%;
    z-index: 2;
}

.comp-phone {
    width: 16%;
    height: 42%;
    background: #1e293b;
    border: 2.5px solid #475569;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.7);
    position: absolute;
    bottom: 10px;
    right: 12%;
    z-index: 3;
}

/* 13. FAQ Collapsible Accordions */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: left;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 8px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 8px 8px 16px 8px;
}

/* 14. Legal Notice & Alert Blocks */
.alert-box {
    display: flex;
    gap: 16px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.15);
    padding: 24px;
    border-radius: var(--border-radius);
    max-width: 720px;
    margin: 32px auto 0;
    text-align: left;
}

.alert-icon {
    font-size: 1.4rem;
    color: var(--warning);
    flex-shrink: 0;
}

.alert-title {
    font-weight: 700;
    color: var(--warning);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.alert-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 15. Footer */
.footer {
    background: #02040a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.5;
}

.footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* 16. Sub-Page Visual Style Layout (Common) */
.sub-page-hero {
    padding: 160px 0 60px;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.08) 0%, rgba(3, 7, 18, 0) 60%);
    border-bottom: 1px solid var(--border-color);
}

.sub-page-hero h1 {
    font-size: 3.4rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.sub-page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
}

/* 17. Download Center UI Elements */
.download-hub {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 80px 0;
}

.downloads-platform-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.download-card {
    background: rgba(10, 15, 30, 0.35);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.download-card:hover {
    border-color: rgba(6, 182, 212, 0.15);
    transform: translateX(4px);
    background: rgba(10, 15, 30, 0.45);
}

.download-card.disabled {
    opacity: 0.6;
}

.download-card.disabled:hover {
    transform: none;
    border-color: var(--border-color);
}

.download-platform-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.download-platform-info h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.download-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.download-badge {
    background: rgba(6, 182, 212, 0.08);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.download-card.disabled .download-badge {
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
}

.install-guide-panel {
    background: rgba(10, 15, 30, 0.25);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px;
    height: fit-content;
}

.install-guide-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step {
    display: flex;
    gap: 16px;
}

.guide-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 3px;
}

.guide-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.guide-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.changelog-panel {
    background: rgba(10, 15, 30, 0.25);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px;
    margin-top: 40px;
}

.changelog-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.changelog-item {
    border-left: 2px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 24px;
}

.changelog-item:last-child {
    margin-bottom: 0;
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.changelog-version {
    font-weight: 700;
    font-size: 1.05rem;
}

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

.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.changelog-list li {
    position: relative;
    padding-left: 12px;
}

.changelog-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* 18. Activation Code Elements */
.activation-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.activation-container {
    max-width: 540px;
    width: 100%;
}

.activation-form-panel {
    text-align: center;
}

.activation-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.code-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.code-field {
    width: 100%;
    max-width: 280px;
    background: rgba(3, 7, 18, 0.6);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
    transition: var(--transition);
}

.code-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
    outline: none;
}

.code-feedback {
    min-height: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.code-feedback.success { color: var(--success); }
.code-feedback.error { color: var(--error); }
.code-feedback.info { color: var(--warning); }

.account-link-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* 19. Support Desk Form Elements */
.support-hub {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 80px 0;
}

.support-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.support-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-control {
    background: rgba(3, 7, 18, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(3, 7, 18, 0.7);
}

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

.support-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.6rem;
    color: var(--primary);
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info p, .contact-info a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info a:hover {
    color: var(--primary);
}

/* 20. Legal Documents Structure */
.legal-container {
    max-width: 800px;
    margin: 80px auto;
}

.legal-card {
    padding: 48px;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 36px 0 16px;
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 0 0 20px 20px;
    list-style-type: square;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.legal-content li {
    margin-bottom: 8px;
}

/* 21. Dynamic Status Dashboard */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.status-card {
    background: rgba(10, 15, 30, 0.35);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-info h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

.status-bubble {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-dark);
}

/* Status Indicator States */
.status-indicator.operational { color: var(--success); }
.status-indicator.operational .status-bubble {
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
}

.status-indicator.degraded { color: var(--warning); }
.status-indicator.degraded .status-bubble {
    background-color: var(--warning);
    box-shadow: 0 0 8px var(--warning);
}

.status-indicator.offline { color: var(--error); }
.status-indicator.offline .status-bubble {
    background-color: var(--error);
    box-shadow: 0 0 8px var(--error);
}

.status-refresh-panel {
    text-align: center;
    margin-bottom: 80px;
}

.diagnostic-console {
    background: #02040a;
    border: 1px solid #111827;
    border-radius: var(--border-radius-sm);
    padding: 24px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #38bdf8;
    text-align: left;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 24px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.8);
}

.console-line {
    margin-bottom: 4px;
}

.console-line.success { color: var(--success); }
.console-line.warn { color: var(--warning); }
.console-line.error { color: var(--error); }


/* ==========================================================================
   ADDED: Advanced Cinematic Visual Upgrades & Timelines
   ========================================================================== */

/* Cinematic Content Grid Placeholder Carousels (SaaS Streaming UI) */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.media-card {
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.media-poster {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: var(--transition);
}

.poster-sports {
    background: linear-gradient(180deg, rgba(2,6,23,0) 40%, rgba(2,6,23,0.9)), url('../img/axom-live.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.poster-cinema {
    background: linear-gradient(180deg, rgba(2,6,23,0) 40%, rgba(2,6,23,0.9)), url('../img/axom-movies.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.poster-series {
    background: linear-gradient(180deg, rgba(2,6,23,0) 40%, rgba(2,6,23,0.9)), url('../img/axom-series.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.poster-radio {
    background: linear-gradient(180deg, rgba(2,6,23,0) 40%, rgba(2,6,23,0.9)), url('../img/axom-radio.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.media-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.15);
}

.media-card:hover .media-poster {
    filter: brightness(1.15);
}

.media-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(3, 7, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.media-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.media-category {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Timeline Installation Flow (Futuristic Dotted Tracks) */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    margin-top: 20px;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 7px;
    width: 2px;
    height: calc(100% - 16px);
    background: repeating-linear-gradient(to bottom, transparent, transparent 4px, var(--primary) 4px, var(--primary) 8px);
    opacity: 0.4;
}

.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
}

.timeline-node {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 3px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    z-index: 2;
    margin-top: 6px;
    flex-shrink: 0;
}

.timeline-item:hover .timeline-node {
    background-color: var(--primary);
    transform: scale(1.15);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    width: 100%;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-content {
    border-color: rgba(6, 182, 212, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Chronological Timeline Release Changelog Card */
.timeline-log {
    border-left: 1px solid var(--border-color);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.timeline-log::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(6,182,212,0) 100%);
    opacity: 0.5;
}

.log-entry {
    position: relative;
}

.log-entry::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* AXOM Games Teaser Cards */
.games-teaser {
    background: radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.08) 0%, rgba(10, 15, 30, 0.45) 80%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.games-teaser::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
    top: -50px;
    left: -50px;
    z-index: 0;
}

.games-neon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.06);
    color: var(--accent);
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 2.2rem;
    margin: 0 auto 28px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
    animation: floating-icon 4s ease-in-out infinite alternate;
}

@keyframes floating-icon {
    0% { transform: translateY(0) rotate(-3deg); }
    100% { transform: translateY(-8px) rotate(3deg); }
}

.games-teaser h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.games-teaser p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 36px;
}

.games-spec-row {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.games-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.games-spec-item span {
    color: var(--accent);
}

/* Device Activation Scanning Radar Sweep Animation */
.scanner-box {
    position: relative;
    border: 1px solid rgba(6, 182, 212, 0.15);
    background: rgba(6, 182, 212, 0.02);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
}

.scanner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 80%);
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary);
    z-index: 10;
    animation: radar-sweep 4s linear infinite;
    pointer-events: none;
}

@keyframes radar-sweep {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.scanner-qr-box {
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255,255,255,0.06);
    background: #020617;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.scanner-qr-box::before {
    content: 'QR';
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    opacity: 0.3;
}

.scanner-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Modern cPanel Platform Specs Deck */
.specs-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.spec-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
}

.spec-badge.highlight {
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--primary);
    background: rgba(6, 182, 212, 0.02);
}

/* ==========================================================================
   22. Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .tv-mockup {
        transform: none !important;
        margin: 0 auto;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .experience-visual {
        order: 2;
    }
    
    .checklist-features {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .device-grid-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .download-hub, .support-hub {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-sidebar {
        order: 2;
    }
}

/* ============================================================
   PREMIUM UPGRADES: Stats Bar, Scroll Reveal, PIN Inputs,
   Aurora, Particles, Pricing Glow Ring
   ============================================================ */

/* Trust Stats Bar */
.stats-bar {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.03) 50%, transparent);
    animation: shimmer-bar 6s ease-in-out infinite;
}

@keyframes shimmer-bar {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.stats-bar-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4 30%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Scroll Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* Enhanced Pricing Card Premium Glow */
.pricing-card.premium {
    background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.08) 0%, rgba(10, 15, 30, 0.55) 70%);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.08), inset 0 0 0 1px rgba(139, 92, 246, 0.12), 0 0 60px rgba(139, 92, 246, 0.04);
    position: relative;
}

.pricing-card.premium::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--border-radius-lg) + 2px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(6, 182, 212, 0.1) 100%);
    z-index: -1;
    animation: premium-ring-pulse 4s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes premium-ring-pulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}

/* Price tag annual savings callout */
.price-annual-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 8px;
}

/* PIN Code Boxes for Activation (6 separate boxes) */
.pin-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.pin-box {
    width: 52px;
    height: 64px;
    background: rgba(3, 7, 18, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    transition: var(--transition-fast);
    outline: none;
    letter-spacing: 0;
    caret-color: var(--primary);
}

.pin-box:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
    background: rgba(6, 182, 212, 0.04);
}

.pin-box.filled {
    border-color: rgba(6, 182, 212, 0.4);
    color: var(--primary);
}

/* Activation connector dot between first 4 and last 2 chars */
.pin-separator {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.4rem;
}

/* Uptime Indicator Banner */
.uptime-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 32px;
}

.uptime-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse 1.5s infinite alternate;
}

/* Hero decorative particles (CSS only) */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.6);
    animation: particle-float linear infinite;
}

.hero-particles span:nth-child(1)  { left: 10%; animation-duration: 14s; animation-delay: 0s;   top: 80%; }
.hero-particles span:nth-child(2)  { left: 20%; animation-duration: 18s; animation-delay: 2s;   top: 60%; background: rgba(139,92,246,0.5); }
.hero-particles span:nth-child(3)  { left: 35%; animation-duration: 12s; animation-delay: 4s;   top: 90%; }
.hero-particles span:nth-child(4)  { left: 50%; animation-duration: 20s; animation-delay: 1s;   top: 70%; background: rgba(59,130,246,0.5); }
.hero-particles span:nth-child(5)  { left: 65%; animation-duration: 15s; animation-delay: 3s;   top: 85%; }
.hero-particles span:nth-child(6)  { left: 75%; animation-duration: 17s; animation-delay: 5s;   top: 55%; background: rgba(139,92,246,0.6); }
.hero-particles span:nth-child(7)  { left: 85%; animation-duration: 13s; animation-delay: 2.5s; top: 75%; }
.hero-particles span:nth-child(8)  { left: 5%;  animation-duration: 22s; animation-delay: 6s;   top: 50%; background: rgba(59,130,246,0.4); }
.hero-particles span:nth-child(9)  { left: 90%; animation-duration: 16s; animation-delay: 0.5s; top: 40%; }
.hero-particles span:nth-child(10) { left: 45%; animation-duration: 19s; animation-delay: 7s;   top: 30%; background: rgba(139,92,246,0.4); }

@keyframes particle-float {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* Feature cards enhanced icon glow on hover */
.glass-card:hover {
    background: rgba(10, 15, 30, 0.55);
}

/* Typewriter cursor for hero title */
.hero-title .cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--primary);
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 2px;
    animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Mobile stats bar */
@media (max-width: 768px) {
    .stat-divider { display: none; }
    .stats-bar-grid { gap: 20px; }
    .stat-value { font-size: 1.8rem; }
    .pin-box { width: 42px; height: 54px; font-size: 1.5rem; }
    .pin-input-group { gap: 6px; }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    /* Mobile Menu Drawer Toggle */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a:not(.btn) {
        font-size: 1.2rem;
    }
    
    .nav-links .btn {
        width: 80%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .pricing-matrix {
        gap: 24px;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .legal-card {
        padding: 24px;
    }
    
    .sub-page-hero h1 {
        font-size: 2.5rem;
    }
}
