/* ═══════════════════════════════════════════════════════════════════════════
   APEX ELITE — LEGENDARY ULTRA-PREMIUM DESIGN SYSTEM
   Version 3.0 — With Video Effects, 3D, Bouncy Animations & Elite X-Factor
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES
   ───────────────────────────────────────────────────────────────────────────── */

:root {
    /* Primary Colors - Vibrant Crimson Red - Energy & Power */
    --primary: #B91C1C;
    --primary-dark: #991B1B;
    --primary-light: #DC2626;
    --primary-glow: rgba(185, 28, 28, 0.5);

    /* Neon Accents - Raw Power */
    --neon-red: #EF4444;
    --neon-green: #00FF87;
    --neon-cyan: #00D9FF;
    --neon-purple: #A855F7;
    --neon-gold: #FFD700;

    /* Backgrounds */
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F0F;
    --bg-card: #141414;
    --bg-elevated: #1A1A1A;
    --bg-glass: rgba(20, 20, 20, 0.7);
    --bg-glass-light: rgba(255, 255, 255, 0.03);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3;
    --text-tertiary: #525252;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(225, 29, 72, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Border Radius - PREMIUM ROUNDED */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 0.15s var(--ease-out);
    --transition-base: 0.3s var(--ease-out);
    --transition-slow: 0.5s var(--ease-out);
    --transition-bounce: 0.4s var(--ease-bounce);
}

/* ─────────────────────────────────────────────────────────────────────────────
   GLOBAL RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* Premium Selection Color */
::selection {
    background: var(--primary);
    color: white;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CUSTOM CURSOR — Elite Touch
   ═══════════════════════════════════════════════════════════════════════════ */

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s var(--ease-out),
        width 0.2s var(--ease-bounce),
        height 0.2s var(--ease-bounce),
        border-color 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--neon-green);
    background: rgba(0, 255, 135, 0.1);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE LOADER — Premium Entry
   ═══════════════════════════════════════════════════════════════════════════ */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.4s 0.3s var(--ease-out) forwards;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--neon-red), var(--primary));
    background-size: 200% 100%;
    border-radius: var(--radius-full);
    animation: loaderProgress 1.5s var(--ease-out) forwards, shimmer 1s linear infinite;
}

@keyframes loaderProgress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.page-loader.loaded {
    animation: loaderExit 0.8s var(--ease-out) forwards;
}

@keyframes loaderExit {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MUSIC PLAYER — Ambient Control
   ═══════════════════════════════════════════════════════════════════════════ */

.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all var(--transition-bounce);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.music-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(225, 29, 72, 0.3);
}

.music-toggle.playing {
    animation: musicPulse 1s ease-in-out infinite;
}

@keyframes musicPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(225, 29, 72, 0);
    }
}

.music-bars {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 16px;
}

.music-bar {
    width: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: height 0.2s;
}

.music-toggle.playing .music-bar:nth-child(1) {
    animation: musicBar 0.5s ease-in-out infinite;
}

.music-toggle.playing .music-bar:nth-child(2) {
    animation: musicBar 0.5s 0.1s ease-in-out infinite;
}

.music-toggle.playing .music-bar:nth-child(3) {
    animation: musicBar 0.5s 0.2s ease-in-out infinite;
}

.music-toggle.playing .music-bar:nth-child(4) {
    animation: musicBar 0.5s 0.3s ease-in-out infinite;
}

@keyframes musicBar {

    0%,
    100% {
        height: 4px;
    }

    50% {
        height: 16px;
    }
}

.music-toggle:not(.playing) .music-bar {
    height: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM BACKGROUND EFFECTS
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* Dot Grid Pattern */
.dot-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.125rem;
}

em {
    font-style: italic;
    color: var(--primary);
}

.text-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-red) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

/* Split Text Reveal Animation */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    animation: charReveal 0.6s var(--ease-out) forwards;
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEGENDARY 3D BOUNCY BUTTONS — Video Effect + 3D Depth + Bounce
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-full);

    /* 3D Transform Setup */
    transform-style: preserve-3d;
    perspective: 1000px;

    /* BOUNCY Transition */
    transition:
        transform 0.4s var(--ease-bounce),
        box-shadow 0.3s var(--ease-out);
}

/* === PRIMARY BUTTON — Full 3D Video Effect === */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-primary);

    /* 3D Depth Shadow Stack */
    box-shadow:
        0 2px 0 var(--primary-dark),
        0 4px 0 rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(225, 29, 72, 0.4),
        0 15px 40px rgba(225, 29, 72, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Animated Gradient Sweep (Video Effect) */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: btnVideoSweep 3s ease-in-out infinite;
}

@keyframes btnVideoSweep {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* Outer Glow Ring */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary), var(--neon-red), var(--neon-purple), var(--primary));
    background-size: 300% 300%;
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s var(--ease-out);
    animation: gradientRotate 4s linear infinite;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* HOVER — Bouncy Float Up + 3D Tilt */
.btn-primary:hover {
    transform: translateY(-4px) rotateX(10deg) scale(1.02);

    box-shadow:
        0 4px 0 var(--primary-dark),
        0 8px 0 rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(225, 29, 72, 0.5),
        0 25px 60px rgba(225, 29, 72, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::after {
    opacity: 0.7;
}

/* ACTIVE — Pressed Down 3D Effect */
.btn-primary:active {
    transform: translateY(2px) rotateX(-5deg) scale(0.98);

    box-shadow:
        0 1px 0 var(--primary-dark),
        0 2px 0 rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(225, 29, 72, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);

    transition: transform 0.1s, box-shadow 0.1s;
}

/* Ripple Effect on Click */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

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

/* === SECONDARY BUTTON — Glassmorphism 3D === */
.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    border: 1px solid var(--border-light);

    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    border-radius: var(--radius-full) var(--radius-full) 0 0;
    pointer-events: none;
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary);

    box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.1),
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(225, 29, 72, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:active {
    transform: translateY(2px) scale(0.98);
}

/* Button Sizes */
.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLASSMORPHISM CARDS — Premium 3D
   ═══════════════════════════════════════════════════════════════════════════ */

.card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;

    transform-style: preserve-3d;
    transition: all 0.5s var(--ease-out);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(225, 29, 72, 0.1);
    transform: translateY(-8px) rotateX(2deg);
}

/* Static card - no hover movement for forms */
.card-static,
.card-static:hover {
    transform: none !important;
    transform-style: flat !important;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s var(--ease-out);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.8s var(--ease-out);
}

.glass-card:hover::after {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(225, 29, 72, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform var(--transition-bounce);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    font-size: 0.875rem;
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--neon-red));
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--primary-light);
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.navbar-cta {
    margin-left: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.6) 50%,
            rgba(10, 10, 10, 0.95) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--neon-red), var(--primary), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    padding-top: 80px;
    /* Extra spacing from navbar */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    /* Gap between navbar and badge */
    box-shadow: 0 0 30px rgba(185, 28, 28, 0.15);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(225, 29, 72, 0.15);
    }

    50% {
        box-shadow: 0 0 50px rgba(225, 29, 72, 0.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 0.9rem 1.75rem;
    font-size: 0.8rem;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-tertiary);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(225, 29, 72, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TIER CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.tier-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s var(--ease-out);
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.8s var(--ease-out);
}

.tier-card:hover::before {
    left: 150%;
}

.tier-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px) rotateX(3deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(225, 29, 72, 0.15);
}

.tier-card.featured {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(225, 29, 72, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tier-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.5);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(225, 29, 72, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(225, 29, 72, 0.8);
    }
}

.tier-name {
    display: block;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tier-price span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tier-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.tier-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tier-feature svg {
    width: 18px;
    height: 18px;
    color: var(--neon-green);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COACH CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.coach-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 3/4;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease-out);
}

.coach-card:hover {
    transform: scale(1.03) rotateY(-3deg);
}

.coach-image {
    width: 100%;
    height: 100%;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all var(--transition-slow);
}

.coach-card:hover .coach-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.coach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.coach-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.coach-specialty {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.coach-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.coach-card:hover .coach-bio {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════════════ */

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: all var(--transition-slow);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.gallery-item:hover::after {
    opacity: 0.5;
}

.gallery-item-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════════════ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A3A3A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

/* Progress Bar */
.progress-bar {
    height: 4px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--neon-red));
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    100% {
        left: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    max-width: 500px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(225, 29, 72, 0.1);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
    padding: 6rem 0 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

/* ═══════════════════════════════════════════════════════════════════════════
   DASHBOARD SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */

.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 2.5rem;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.sidebar-nav-item:hover {
    color: var(--text-primary);
    background: var(--bg-glass-light);
}

.sidebar-nav-item.active {
    color: var(--text-primary);
    background: rgba(225, 29, 72, 0.15);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.sidebar-user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--primary);
}

.sidebar-user-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.sidebar-user-tier {
    font-size: 0.75rem;
    color: var(--primary);
}

.dashboard-main {
    margin-left: 260px;
    padding: 2rem 3rem;
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 1.75rem;
    font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-lg {
    padding: 8rem 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-main {
        margin-left: 0;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}