/* Landing Page - Exclusive Premium Design */

:root {
    /* Premium Palette - Dark & Elegant */
    --landing-bg-primary: #0f0f0f;
    --landing-bg-secondary: #1a1a1a;
    --landing-accent: #d4af37;
    --landing-accent-hover: #e8c547;
    --landing-text-primary: #ffffff;
    --landing-text-secondary: #b0b0b0;
    --landing-border: #333333;
}

/* Override global styles for landing page */
.landing-page {
    background-color: var(--landing-bg-primary) !important;
    color: var(--landing-text-primary) !important;
}

.landing-page body {
    background-color: var(--landing-bg-primary) !important;
}

/* Navigation */
.landing-nav {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--landing-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand h2 {
    font-size: 22px;
    color: var(--landing-accent);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-brand p {
    font-size: 11px;
    color: var(--landing-text-secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

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

.nav-link {
    color: var(--landing-text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--landing-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.login-link {
    color: var(--landing-text-secondary);
}

.login-link:hover {
    color: var(--landing-text-primary);
}

.request-link {
    color: var(--landing-accent);
}

.request-link:hover {
    color: var(--landing-accent-hover);
}

/* Main Content */
main {
    background-color: var(--landing-bg-primary);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--landing-accent);
    color: var(--landing-accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--landing-text-primary);
    margin: 0;
}

.hero h1 .highlight {
    color: var(--landing-accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--landing-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--landing-accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--landing-accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--landing-text-primary);
    border: 1px solid var(--landing-accent);
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.hero-footer {
    font-size: 13px;
    color: var(--landing-text-secondary);
    margin-top: 8px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-box {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.features h2 {
    font-size: 44px;
    color: var(--landing-text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--landing-text-secondary);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--landing-accent);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--landing-text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--landing-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Exclusivity Section */
.exclusivity {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.exclusivity-content h2 {
    font-size: 40px;
    color: var(--landing-text-primary);
    margin-bottom: 20px;
}

.exclusivity-content p {
    font-size: 18px;
    color: var(--landing-text-secondary);
    line-height: 1.8;
    margin-bottom: 60px;
}

.exclusivity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat strong {
    font-size: 48px;
    color: var(--landing-accent);
    display: block;
    margin-bottom: 8px;
}

.stat span {
    font-size: 14px;
    color: var(--landing-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Final CTA Section */
.final-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.final-cta h2 {
    font-size: 44px;
    color: var(--landing-text-primary);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: var(--landing-text-secondary);
    margin-bottom: 40px;
}

/* Footer */
.landing-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--landing-border);
    padding: 40px;
    text-align: center;
    color: var(--landing-text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-visual {
        display: none;
    }

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

    .nav-container {
        padding: 0 24px;
    }

    .features {
        padding: 60px 24px;
    }

    .exclusivity {
        padding: 60px 24px;
    }

    .final-cta {
        padding: 60px 24px;
    }
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--landing-border);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--landing-accent);
    letter-spacing: 2px;
}

.nav-brand p {
    font-size: 11px;
    color: var(--landing-text-secondary);
    margin: 4px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    font-size: 14px;
    text-decoration: none;
    color: var(--landing-text-secondary);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--landing-accent);
}

.nav-link.login-link {
    color: var(--landing-text-primary);
}

.nav-link.request-link {
    color: var(--landing-accent);
    font-weight: 600;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--landing-accent);
    color: var(--landing-accent);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--landing-text-primary);
}

.hero h1 .highlight {
    color: var(--landing-accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--landing-text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background-color: var(--landing-accent);
    color: var(--landing-bg-primary);
}

.btn-primary:hover {
    background-color: var(--landing-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--landing-accent);
    border: 2px solid var(--landing-accent);
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

.hero-footer {
    font-size: 12px;
    color: var(--landing-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.gradient-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--landing-border);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
    display: block;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Features Section */
.features {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--landing-text-secondary);
    font-size: 16px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--landing-bg-secondary);
    border: 1px solid var(--landing-border);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--landing-accent);
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--landing-text-primary);
}

.feature-card p {
    color: var(--landing-text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Exclusivity Section */
.exclusivity {
    background: linear-gradient(135deg, var(--landing-bg-secondary) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
    padding: 100px 40px;
    text-align: center;
}

.exclusivity-content {
    max-width: 800px;
    margin: 0 auto;
}

.exclusivity h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.exclusivity > div > p {
    font-size: 16px;
    color: var(--landing-text-secondary);
    margin-bottom: 60px;
    line-height: 1.8;
}

.exclusivity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat strong {
    font-size: 32px;
    color: var(--landing-accent);
    margin-bottom: 10px;
    display: block;
}

.stat span {
    font-size: 12px;
    color: var(--landing-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-cta > p {
    font-size: 16px;
    color: var(--landing-text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Footer */
.landing-footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--landing-border);
    color: var(--landing-text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-visual {
        height: 350px;
        order: -1;
    }

    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .exclusivity-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landing-nav {
        padding: 15px 0;
    }
}
