/* ========================================
   ELUDE — Main Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   THEME VARIABLES — Elude HSL
   ======================================== */

:root {
    --background: 222 25% 4%;
    --foreground: 210 20% 96%;
    --card: 222 22% 7%;
    --card-foreground: 210 20% 96%;
    --popover: 222 22% 7%;
    --popover-foreground: 210 20% 96%;
    --primary: 217 100% 50%; /* #0149FE */
    --primary-foreground: 0 0% 100%;
    --secondary: 222 18% 12%;
    --secondary-foreground: 210 20% 88%;
    --muted: 222 18% 10%;
    --muted-foreground: 215 15% 50%;
    --accent: 217 80% 60%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 210 40% 98%;
    --border: 222 18% 14%;
    --input: 222 18% 14%;
    --ring: 217 99% 50%;
    --radius: 0.75rem;
    --glass: 222 22% 8%;
    --glass-border: 222 18% 16%;
    --glow-primary: 217 99% 50%;
    --surface: 222 22% 6%;
    --success: 152 70% 45%;
    --warning: 38 92% 50%;
    --info: 217 80% 60%;

    --font: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ========================================
   RESET
   ======================================== */

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

html {
    background: hsl(var(--background));
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--primary)) hsl(var(--background));
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb { background: hsl(var(--primary)); border-radius: 3px; }

body {
    font-family: var(--font);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100dvh;
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ========================================
   BACKGROUND — Clean dark
   ======================================== */

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    position: relative;
    z-index: 1;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    min-height: calc(64px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(9, 9, 11, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 68px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
    transition: transform 0.2s ease;
}

.header-logo:hover { transform: scale(1.02); }

.logo-img-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { color: hsl(var(--foreground)); }

.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: hsl(var(--foreground));
    background: hsl(var(--secondary));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: hsl(235 86% 65%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.header-discord:hover {
    background: hsl(235 86% 55%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px hsl(235 86% 65% / 0.4);
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 8px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 20px hsl(var(--primary) / 0.4);
    transition: all 0.2s ease;
}

.btn-header-cta:hover {
    background: hsl(var(--primary) / 0.9);
    transform: translateY(-1px);
    box-shadow: 0 6px 30px hsl(var(--primary) / 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: hsl(var(--foreground));
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: hsl(var(--background) / 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: calc(40px + env(safe-area-inset-top, 0px)) 32px calc(40px + env(safe-area-inset-bottom, 0px));
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-nav-link {
    font-size: 1.35rem;
    font-weight: 600;
    padding: 14px 28px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: hsl(var(--foreground));
    background: hsl(var(--secondary));
}

/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 2rem 60px;
}

.hero-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--background) / 0.6), transparent);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: hsl(var(--success) / 0.15);
    border: 1px solid hsl(var(--success) / 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(var(--success));
    width: fit-content;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: hsl(var(--success));
    box-shadow: 0 0 10px hsl(var(--success) / 0.6);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.05;
}

.headline-line {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    font-family: var(--font);
}

.blue-text { color: hsl(var(--primary)); }

.gradient-text {
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px hsl(var(--primary) / 0.3));
}

.hero-sub {
    font-size: 1.05rem;
    color: hsl(var(--muted-foreground));
    max-width: 480px;
    line-height: 1.7;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item svg { color: hsl(var(--primary)); }
.trust-divider { opacity: 0.3; }

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 30px hsl(var(--primary) / 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary-foreground) / 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px hsl(var(--primary) / 0.5);
}

.btn-primary:hover::before { opacity: 1; }

/* Hero Right */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-motherboard {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.motherboard-img {
    width: 100%;
    border-radius: 24px;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, hsl(var(--primary) / 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: orbPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: hsl(var(--muted-foreground));
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.hero-scroll-indicator:hover { color: hsl(var(--foreground)); }

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid hsl(var(--glass-border));
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: hsl(var(--accent));
    border-radius: 1px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ========================================
   SUPPORTED GAMES
   ======================================== */

.supported-games {
    padding: 50px 2rem;
    overflow: hidden;
}

.games-header { text-align: center; margin-bottom: 36px; }

.games-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    font-size: 0.7rem;
    font-weight: 700;
    color: hsl(var(--primary));
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: hsl(var(--foreground));
}

.section-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    font-size: 0.7rem;
    font-weight: 700;
    color: hsl(var(--primary));
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
    max-width: 450px;
    margin: 8px auto 0;
}

.games-slider-wrapper { position: relative; overflow: hidden; }

.games-slider-wrapper::before, .games-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.games-slider-wrapper::before { left: 0; background: linear-gradient(90deg, hsl(var(--background)), transparent); }
.games-slider-wrapper::after { right: 0; background: linear-gradient(-90deg, hsl(var(--background)), transparent); }

.games-track {
    display: flex;
    gap: 16px;
    animation: scrollGames 35s linear infinite;
    width: max-content;
}

.games-track:hover { animation-play-state: paused; }

@keyframes scrollGames {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.game-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
    cursor: default;
}

.game-item svg { color: hsl(var(--primary)); }
.game-item:hover { background: hsl(var(--secondary)); border-color: hsl(var(--border) / 1.5); color: hsl(var(--foreground)); }

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar {
    padding: 36px 2rem;
    background: hsl(var(--surface));
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
}

.stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, hsl(var(--foreground)), hsl(var(--muted-foreground)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ========================================
   PRODUCT CARDS — Elude style
   ======================================== */

#vision-products {
    scroll-margin-top: calc(80px + env(safe-area-inset-top, 0px));
}

.elude-products {
    padding: 3rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

.elude-products .elude-products-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.elude-products .best-seller-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.elude-products .best-seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: hsl(var(--primary) / 0.12);
    border: 1px solid hsl(var(--primary) / 0.35);
    color: #fff;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.elude-products .best-seller-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: hsl(var(--foreground));
    margin-bottom: 0.35rem;
}

.elude-products .best-seller-subtitle {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

.elude-products .best-seller-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .elude-products .best-seller-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .elude-products .best-seller-grid { grid-template-columns: 1fr; }
}

/* Elude-style product card */
.elude-products .product-card-new {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 24px;
    border: 1px solid hsl(var(--glass-border));
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    overflow: hidden;
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.elude-products .product-card-new:hover {
    border-color: hsl(var(--primary) / 0.4);
    box-shadow: 0 20px 60px -25px hsl(var(--primary) / 0.45);
    transform: translateY(-4px);
}

/* Top shimmer line on hover */
.elude-products .product-card-new::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
}

.elude-products .product-card-new:hover::before { opacity: 1; }

.elude-products .product-image-container {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: hsl(var(--card));
}

.elude-products .product-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
}

.elude-products .badge-undetected {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
}

.elude-products .badge-undetected.badge-success {
    background: hsl(var(--success) / 0.15);
    border: 1px solid hsl(var(--success) / 0.3);
    color: hsl(var(--success));
}

.elude-products .badge-undetected.badge-warning {
    background: hsl(var(--warning) / 0.15);
    border: 1px solid hsl(var(--warning) / 0.3);
    color: hsl(var(--warning));
}

.elude-products .badge-undetected .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.elude-products .badge-success .badge-dot { animation: pulseDot 2s infinite; }

.elude-products .badge-popular {
    background: hsl(var(--primary) / 0.9);
    backdrop-filter: blur(12px);
    color: hsl(var(--primary-foreground));
    font-size: 9px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.elude-products .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.elude-products .product-card-new:hover .product-image { transform: scale(1.05); }

/* Image gradient overlay */
.elude-products .product-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--card)) 0%, hsl(var(--card) / 0.4) 40%, transparent 70%);
    pointer-events: none;
}

.elude-products .product-info-new {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.elude-products .product-name-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    min-height: 56px;
}

.elude-products .product-name-new {
    font-size: 15px;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
}

/* Arrow icon via CSS */
.elude-products .product-name-price-row::after {
    content: '\2192';
    color: hsl(var(--muted-foreground));
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.elude-products .product-card-new:hover .product-name-price-row::after {
    color: hsl(var(--primary));
    transform: rotate(45deg);
}

.elude-products .product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.elude-products .product-features-list li {
    font-size: 12px;
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.elude-products .feat-check {
    color: hsl(var(--primary));
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.elude-products .product-meta-row {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
}

.elude-products .meta-item {
    font-size: 11px;
    color: hsl(var(--muted-foreground));
}

.elude-products .meta-highlight {
    color: hsl(var(--muted-foreground));
    font-weight: 600;
    filter: brightness(1.5);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */

.why-choose-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.why-choose-badge-wrap { text-align: center; margin-bottom: 12px; }

.why-choose-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    font-size: 0.78rem;
    font-weight: 600;
    color: hsl(var(--primary));
    letter-spacing: 0.5px;
}

.why-choose-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: hsl(var(--foreground));
    margin-bottom: 12px;
}

.why-choose-sub {
    text-align: center;
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    margin-bottom: 48px;
}

.payment-methods {
    text-align: center;
    padding: 0 2rem 40px;
}

.payment-title { font-size: 1.1rem; font-weight: 600; color: hsl(var(--foreground)); margin-bottom: 4px; }
.payment-sub { font-size: 0.85rem; color: hsl(var(--muted-foreground)); }

.why-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 448px;
    gap: 24px;
    align-items: stretch;
}

.why-choose-us {
    padding: 60px 2rem 80px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: hsl(var(--card));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover { transform: translateY(-8px); }

.why-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: hsl(var(--accent));
    opacity: 0.7;
}

.why-card-icon svg { width: 100%; height: 100%; }

.why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 10px;
}

.why-card-desc {
    color: hsl(var(--muted-foreground));
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.why-key-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
}

.why-key-label { font-size: 0.7rem; color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: 1px; }

.why-key-code {
    background: hsl(var(--glass));
    color: hsl(var(--foreground));
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    padding: 7px 14px;
    border-radius: 12px;
    border: 1px solid hsl(var(--glass-border));
    backdrop-filter: blur(8px);
}

.why-status-delivered {
    display: flex;
    align-items: center;
    gap: 6px;
    color: hsl(var(--success));
    font-weight: 600;
    font-size: 0.88rem;
}

.why-pricing-block {
    padding: 14px;
    background: hsl(var(--glass));
    border-radius: 12px;
    border: 1px solid hsl(var(--glass-border));
}

.why-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
}

.why-price-row span:first-child { color: hsl(var(--muted-foreground)); }
.why-price-value { font-weight: 600; color: hsl(var(--foreground)); }
.why-price-discount { color: hsl(var(--success)); }
.why-price-divider { height: 1px; background: hsl(var(--border)); margin: 8px 0; }
.why-price-total { font-weight: 700; padding-top: 10px; }
.why-price-total .why-price-value { font-size: 1.1rem; }

/* Command Centre Card */
.why-card-command {
    padding: 0;
    animation: scaleIn 0.6s ease-out both;
    overflow: hidden;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.why-card-command .why-card-icon,
.why-card-command .why-card-title,
.why-card-command .why-card-desc { display: none; }

.cmd-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
}

.cmd-logo-wrap { text-align: center; }
.cmd-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: hsl(var(--foreground));
    margin-bottom: 8px;
}

.cmd-logo-line {
    width: 50px;
    height: 2px;
    background: hsl(var(--glass-border));
    border-radius: 2px;
    margin: 0 auto;
}

.cmd-form-header { text-align: center; }
.cmd-form-title { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 4px; }
.cmd-form-sub { font-size: 0.78rem; color: hsl(var(--muted-foreground)); }
.cmd-form-fields { display: flex; flex-direction: column; gap: 12px; }

.cmd-input-group { display: flex; flex-direction: column; gap: 6px; }
.cmd-label { font-size: 0.78rem; font-weight: 500; color: hsl(var(--muted-foreground)); }
.cmd-input-wrap { position: relative; }

.cmd-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: hsl(var(--muted-foreground));
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmd-input-icon svg { width: 100%; height: 100%; }

.cmd-input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    border-radius: 12px;
    background: hsl(var(--background) / 0.4);
    border: 1px solid hsl(var(--glass-border));
    color: hsl(var(--foreground));
    font-size: 0.88rem;
    font-family: var(--font);
    transition: all 0.3s ease;
}

.cmd-input:focus {
    outline: none;
    background: hsl(var(--background) / 0.5);
    border-color: hsl(var(--border) / 1.5);
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.cmd-input::placeholder { color: hsl(var(--muted-foreground)); }

.cmd-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: hsl(var(--foreground));
    color: hsl(var(--background));
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.cmd-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.cmd-btn:active { transform: translateY(0); }
.cmd-btn-inner { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ========================================
   BEFORE/AFTER COMPARISON
   ======================================== */

.home-tabs-section { padding: 0 2rem 60px; }
.home-tabs-inner { max-width: 1200px; margin: 0 auto; }

.ba-box {
    background: hsl(var(--card));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 24px;
    padding: 24px 24px 0;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.ba-header { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.ba-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: hsl(var(--accent));
}

.ba-labels-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }

.ba-pill-label {
    padding: 4px 14px;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ba-pill-without {
    background: hsl(var(--glass));
    color: hsl(var(--muted-foreground));
    border: 1px solid hsl(var(--glass-border));
}

.ba-pill-with {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary) / 0.3);
}

.ba-inner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: ew-resize;
    aspect-ratio: 16 / 8;
}

.ba-before, .ba-after {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 5;
}

.ba-label-before {
    left: 16px;
    background: hsl(var(--background) / 0.7);
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--glass-border));
}

.ba-label-after {
    right: 16px;
    background: hsl(var(--background) / 0.7);
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--glass-border));
}

.ba-line {
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: hsl(var(--accent));
    transform: translateX(-50%);
    z-index: 10;
    cursor: ew-resize;
    pointer-events: none;
    box-shadow: 0 0 10px hsl(var(--accent) / 0.5);
}

.ba-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    cursor: ew-resize;
    box-shadow: 0 0 0 3px hsl(var(--accent) / 0.3), 0 0 20px hsl(var(--accent) / 0.4), 0 4px 12px hsl(var(--background) / 0.5);
    transition: box-shadow 0.2s ease;
}

.ba-handle:hover {
    box-shadow: 0 0 0 3px hsl(var(--accent) / 0.5), 0 0 30px hsl(var(--accent) / 0.6), 0 4px 16px hsl(var(--background) / 0.5);
}

.ba-arrow { display: block; width: 0; height: 0; }
.ba-arrow.left { border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-right: 6px solid #000; margin-right: 2px; }
.ba-arrow.right { border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 6px solid #000; margin-left: 2px; }

/* ========================================
   STATUS PAGE
   ======================================== */

.status-page {
    padding: calc(80px + env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-left)) 60px max(16px, env(safe-area-inset-right));
    max-width: 900px;
    margin: 0 auto;
}

.status-header { text-align: center; margin-bottom: 48px; }
.status-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.status-header p { color: hsl(var(--muted-foreground)); }

.status-wrap, .status-overall {
    background: hsl(var(--card));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 24px;
    padding: 40px;
}

.status-overall {
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.status-indicator {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: hsl(var(--success) / 0.15);
    border: 2px solid hsl(var(--success));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px hsl(var(--success) / 0.2);
}

.status-indicator svg { width: 28px; height: 28px; color: hsl(var(--success)); }
.status-info h2 { color: hsl(var(--success)); font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.status-info p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.status-uptime { margin-left: auto; text-align: right; }
.status-uptime-number { font-size: 2rem; font-weight: 800; color: hsl(var(--success)); }
.status-uptime-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: 1px; }

.status-grid { display: flex; flex-direction: column; gap: 10px; }

.status-item {
    background: hsl(var(--glass));
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
}

.status-item:hover { border-color: hsl(var(--border) / 1.5); background: hsl(var(--secondary)); }

.status-item-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: hsl(var(--success)); box-shadow: 0 0 8px hsl(var(--success) / 0.5); }
.dot-red { background: hsl(var(--destructive)); box-shadow: 0 0 8px hsl(var(--destructive) / 0.5); }
.dot-yellow { background: hsl(var(--warning)); box-shadow: 0 0 8px hsl(var(--warning) / 0.5); }

.status-item-name { font-size: 0.95rem; font-weight: 600; flex: 1; }
.status-item-status { font-size: 0.8rem; font-weight: 600; }
.status-online { color: hsl(var(--success)); }
.status-item-time { font-size: 0.8rem; color: hsl(var(--muted-foreground)); font-variant-numeric: tabular-nums; }

/* ========================================
   TOAST
   ======================================== */

.toast-container {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: max(16px, env(safe-area-inset-left));
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: hsl(var(--card));
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.4s ease;
    pointer-events: auto;
    max-width: 320px;
}

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.toast-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: hsl(var(--accent) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg { width: 14px; height: 14px; color: hsl(var(--accent)); }
.toast-text { font-size: 0.8rem; color: hsl(var(--muted-foreground)); line-height: 1.4; }

/* ========================================
   MEDIA PAGE
   ======================================== */

.media-page {
    padding: calc(80px + env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-left)) 80px max(20px, env(safe-area-inset-right));
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.media-hero { text-align: center; margin-bottom: 3rem; }
.media-hero .section-pill { margin-bottom: 1rem; }
.media-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 0.75rem; }
.media-hero p { color: hsl(var(--muted-foreground)); font-size: 1.05rem; max-width: 520px; margin: 0 auto; line-height: 1.65; }

.media-section-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.media-section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, hsl(var(--primary) / 0.5), transparent);
}

.media-featured { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 1.35rem; }

.media-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--glass-border));
    box-shadow: 0 12px 40px hsl(var(--background) / 0.5);
    animation: mediaCardReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.media-video-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: hsl(var(--primary) / 0.4);
    box-shadow: 0 24px 56px hsl(var(--primary) / 0.15);
}

@keyframes mediaCardReveal {
    from { opacity: 0; transform: translateY(36px) scale(0.96); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.media-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 16px hsl(var(--primary) / 0.45);
}

.media-embed-wrap {
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.media-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    padding: 60px max(20px, env(safe-area-inset-left)) max(32px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-right));
    background: hsl(var(--surface));
    border-top: 1px solid hsl(var(--border));
    position: relative;
    z-index: 2;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--accent) / 0.35), transparent);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.1rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    max-width: 280px;
}

.footer-social { display: flex; gap: 8px; }

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--glass-border));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.social-link:hover {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transform: translateY(-2px);
}

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

.footer-links-group h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-links-group a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.footer-links-group a:hover { color: hsl(var(--accent)); transform: translateX(4px); }

.footer-bottom {
    max-width: 1200px;
    margin: 36px auto 0;
    padding-top: 20px;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
}

/* ========================================
   PRODUCT DETAIL PAGES
   ======================================== */

body.elude-product-page { min-height: 100dvh; }

.elude-product-page .product-page-wrap { position: relative; z-index: 2; }

.elude-product-page .product-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: calc(80px + env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-left)) 60px max(16px, env(safe-area-inset-right));
}

.elude-product-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 28px;
    transition: color 0.2s ease;
}

.elude-product-page .back-link:hover { color: hsl(var(--foreground)); }

.elude-product-page .product-main-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 420px);
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .elude-product-page .product-main-section { grid-template-columns: 1fr; gap: 40px; }
}

.elude-product-page .product-visuals-wrapper { display: flex; flex-direction: column; gap: 20px; width: 100%; }

.elude-product-page .main-visual-box {
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--glass-border));
}

.elude-product-page .main-visual-box--hero {
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
}

.elude-product-page .product-hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid hsl(var(--glass-border));
    background: hsl(var(--card));
}

.elude-product-page .product-hero-media .main-product-image {
    width: 100%;
    display: block;
    border-radius: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-width: none;
}

.elude-product-page .product-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background) / 0.9) 0%, hsl(var(--background) / 0.2) 45%, transparent 72%);
    pointer-events: none;
}

.elude-product-page .product-hero-bar {
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    padding: 1.1rem 1.25rem 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    z-index: 2;
}

.elude-product-page .product-hero-tagline { margin: 0; display: flex; flex-direction: column; gap: 0.2rem; max-width: min(100%, 22rem); }
.elude-product-page .product-hero-tagline .phl-strong { font-size: clamp(0.72rem, 1.6vw, 0.95rem); font-weight: 900; letter-spacing: 0.14em; color: hsl(var(--foreground)); line-height: 1.15; text-transform: uppercase; }

.elude-product-page .product-hero-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    font-size: 1.15rem;
    color: hsl(var(--foreground));
    opacity: 0.85;
}

.elude-product-page .product-info-card {
    background: hsl(var(--card));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.elude-product-page .mini-features-grid { display: flex; border-bottom: 1px solid hsl(var(--glass-border)); }

.elude-product-page .mini-feature-card {
    padding: 1.1rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    border-right: 1px solid hsl(var(--glass-border));
}

.elude-product-page .mini-feature-card:last-child { border-right: none; }

.elude-product-page .mini-feature-card .feature-icon { font-size: 1.25rem; color: hsl(var(--accent)); margin-bottom: 4px; }
.elude-product-page .mini-feature-card span { font-size: 0.88rem; font-weight: 700; color: hsl(var(--foreground)); }
.elude-product-page .mini-feature-card p { font-size: 0.78rem; color: hsl(var(--muted-foreground)); margin: 0; }

.elude-product-page .revision-status-strip {
    margin: 0 1.25rem 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.15), hsl(var(--accent) / 0.05));
    border: 1px solid hsl(var(--primary) / 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.elude-product-page .revision-status-strip .rss-value { font-size: 1.05rem; font-weight: 800; color: hsl(var(--accent)); letter-spacing: 0.02em; }

.elude-product-page .product-description-panel {
    background: hsl(var(--glass));
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: 16px;
    padding: 1.15rem 1.2rem 1.2rem;
    margin-bottom: 1.15rem;
    backdrop-filter: blur(12px);
}

.elude-product-page .product-description-panel--in-info-card { margin: 0 1.25rem 1rem; padding: 1rem 1.05rem 1.05rem; }

.elude-product-page .product-rich-copy { margin-bottom: 0; }
.elude-product-page .product-rich-lead { font-size: 0.9rem; line-height: 1.62; color: hsl(var(--muted-foreground)); margin: 0; }

.elude-product-page .product-desc-compat,
.elude-product-page .product-desc-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--glass-border));
}

.elude-product-page .product-desc-features-title { margin: 0 0 0.55rem; font-size: 0.88rem; font-weight: 800; color: hsl(var(--foreground)); }

.elude-product-page .product-desc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
}

.elude-product-page .product-desc-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: hsl(var(--muted-foreground));
}

.elude-product-page .pd-brack { flex-shrink: 0; font-size: 0.72rem; font-weight: 800; color: hsl(var(--accent)); }

.elude-product-page .product-content-side { width: 100%; }

@media (min-width: 1025px) {
    .elude-product-page .product-content-side {
        position: sticky;
        top: 88px;
        align-self: start;
    }
}

.elude-product-page .product-box-container {
    background: hsl(var(--card));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 24px;
    padding: 1.65rem 1.5rem 1.5rem;
}

.elude-product-page .product-box-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--glass-border));
}

.elude-product-page .product-box-title {
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: hsl(var(--foreground));
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.elude-product-page .product-box-rating { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.elude-product-page .rating-stars i { color: #fbbf24; font-size: 0.82rem; }
.elude-product-page .rating-text { font-size: 0.8rem; color: hsl(var(--muted-foreground)); }

.elude-product-page .product-box-description { font-size: 0.88rem; line-height: 1.6; color: hsl(var(--muted-foreground)); margin: 0 0 22px; }

.elude-product-page .select-plan-label {
    font-size: 0.68rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.elude-product-page .plan-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }

.elude-product-page .plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid hsl(var(--glass-border));
    border-radius: 12px;
    background: hsl(var(--glass));
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.elude-product-page .plan-item:hover { border-color: hsl(var(--border) / 1.5); background: hsl(var(--secondary)); }

.elude-product-page .plan-item.selected {
    border-color: hsl(var(--accent));
    background: hsl(var(--accent) / 0.08);
}

.elude-product-page .plan-left-part { display: flex; align-items: center; gap: 12px; flex: 1; }

.elude-product-page .plan-radio {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: hsl(var(--glass));
    border: 2px solid hsl(var(--glass-border));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.elude-product-page .plan-item.selected .plan-radio {
    background: hsl(var(--accent));
    border-color: hsl(var(--accent));
    color: hsl(var(--background));
}

.elude-product-page .plan-text-info h4 { margin: 0; font-size: 0.92rem; color: hsl(var(--foreground)); font-weight: 600; }
.elude-product-page .plan-text-info p { margin: 2px 0 0; font-size: 0.73rem; color: hsl(var(--muted-foreground)); }

.elude-product-page .plan-item-price { font-size: 0.95rem; font-weight: 800; color: hsl(var(--foreground)); flex-shrink: 0; }

.elude-product-page .action-buttons-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }

.elude-product-page .btn-purchase-box {
    width: 100%;
    padding: 14px 20px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.elude-product-page .btn-purchase-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px hsl(var(--primary) / 0.4);
    opacity: 0.9;
}

.elude-product-page .btn-add-cart-box {
    width: 100%;
    padding: 13px 20px;
    background: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border) / 1.5);
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.elude-product-page .btn-add-cart-box:hover { background: hsl(var(--secondary)); border-color: hsl(var(--border)); }

.elude-product-page .product-details-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid hsl(var(--glass-border));
}

.elude-product-page .detail-row { display: flex; justify-content: space-between; align-items: center; }
.elude-product-page .detail-label { font-size: 0.8rem; color: hsl(var(--muted-foreground)); }
.elude-product-page .detail-value { font-size: 0.8rem; color: hsl(var(--foreground)); font-weight: 600; }
.elude-product-page .detail-value.undetected { color: hsl(var(--accent)); }

/* ==============================
   14. AURORA CANVAS — WebGL
   ============================== */
#auroraCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ==============================
   15. PAGE BACKGROUND
   ============================== */
.page-bg {
    position: fixed;
    inset: 0;
    background: hsl(var(--background));
    pointer-events: none;
    z-index: -1;
}

/* ==============================
   HERO GLOW — top blur orbs
   ============================== */
.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, hsl(var(--primary) / 0.05) 0%, transparent 70%);
    filter: blur(140px);
    pointer-events: none;
}

.hero-bg-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, hsl(var(--primary) / 0.03) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(-30px, -25px) scale(1.12); }
    60% { transform: translate(25px, 20px) scale(0.93); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(35px, -30px) scale(1.08); }
    70% { transform: translate(-20px, 25px) scale(1.18); }
}

/* ==============================
   15. CHECKOUT LOADER
   ============================== */
.checkout-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--background) / 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.checkout-loader.active {
    opacity: 1;
    visibility: visible;
}
.checkout-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 48px 56px;
    background: hsl(var(--card) / 0.8);
    border: 1px solid hsl(var(--glass-border));
    border-radius: 24px;
    backdrop-filter: blur(24px) saturate(180%);
    text-align: center;
}
.checkout-loader-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}
.checkout-loader-brand img { border-radius: 8px; }
.checkout-loader-msg {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}
.checkout-loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid hsl(var(--glass-border));
    border-top-color: hsl(var(--primary));
    border-radius: 50%;
    animation: checkout-spin 0.8s linear infinite;
}
@keyframes checkout-spin { to { transform: rotate(360deg); } }
.checkout-loader-cancel {
    background: none;
    border: 1px solid hsl(var(--glass-border));
    color: hsl(var(--muted-foreground));
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: inherit;
}
.checkout-loader-cancel:hover {
    border-color: hsl(var(--foreground) / 0.3);
    color: hsl(var(--foreground));
}

@media (max-width: 1024px) {
    .elude-product-page .product-hero-bar { flex-direction: column; align-items: flex-start; }
    .elude-product-page .product-hero-payments { justify-content: flex-start; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-left { align-items: center; }
    .hero-right { order: -1; }
    .hero-motherboard { max-width: 350px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .why-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-inner { gap: 10px; }
    .hero { padding: calc(80px + env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-left)) 56px max(16px, env(safe-area-inset-right)); }
    .headline-line { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-desc { max-width: 100%; }
    .hero-scroll-indicator { display: none; }
    .elude-products .product-meta-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .elude-product-page .mini-features-grid { flex-direction: column; }
    .elude-product-page .mini-feature-card { border-right: none; border-bottom: 1px solid hsl(var(--glass-border)); }
    .elude-product-page .mini-feature-card:last-child { border-bottom: none; }
    .media-featured { grid-template-columns: 1fr; }
    input[type="text"], input[type="email"], input[type="password"], input[type="search"], input[type="tel"], input[type="url"], input[type="number"], textarea, select { font-size: 16px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; min-height: 48px; }
    .header-inner { padding: 0; }
    .footer-inner { gap: 28px; }
    .status-overall { flex-direction: column; text-align: center; }
    .status-uptime { margin-left: 0; text-align: center; }
}

@media (hover: none) {
    .elude-products .product-card-new:hover { transform: none; border-color: hsl(var(--glass-border)); box-shadow: none; }
    .elude-products .product-card-new:hover .product-image { transform: none; }
    .why-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-motherboard { animation: none; }
    .hero-bg-glow { animation: none; }
    .checkout-loader-spinner { animation: none; }
    .media-video-card { animation: none; opacity: 1; transform: none; filter: none; }
    .media-video-card:hover { transform: none; }
}
