:root {
    --obsidian: #050510;
    --gold: #D4AF37;
    --gold-glow: #FFD700;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --text-main: #E0E0E0;
    --text-dim: #999999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--obsidian);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

.nav-links a {
    display: none;
    /* Hide on mobile by default */
}

.btn-primary {
    background: var(--gold);
    color: var(--obsidian) !important;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 10rem 5% 5rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.8) 0%, rgba(5, 5, 16, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 10vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--gold);
    font-style: italic;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat label {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.glow-button {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
}

.glow-button:hover {
    background: var(--gold);
    color: var(--obsidian);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
}

.tier-card.featured {
    border: 1px solid var(--gold);
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--obsidian);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
}

.tier-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gold);
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.tier-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.tier-card ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.tier-card ul li::before {
    content: "✔️";
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--gold);
}

.btn-tier,
.btn-tier-gold {
    display: block;
    padding: 1rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-tier {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-tier-gold {
    background: var(--gold);
    color: var(--obsidian);
}

/* Waitlist */
.waitlist-section {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
}

.waitlist-card {
    background: #000;
    padding: 3rem 2rem;
    border: 1px solid var(--gold);
    text-align: center;
    width: 100%;
    max-width: 500px;
}

#signup-form {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#signup-form input {
    background: #111;
    border: 1px solid #333;
    padding: 1rem;
    color: #fff;
    width: 100%;
}

.btn-gold {
    background: var(--gold);
    border: none;
    padding: 1rem;
    font-weight: 700;
    cursor: pointer;
}

/* Media Queries for Desktop */
@media (min-width: 768px) {
    .nav-links a {
        display: inline-block;
    }

    .logo {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 4rem;
    }

    .stat span {
        font-size: 3.5rem;
    }
}