:root {
    --color-bg: #0B0E14;
    --color-surface: #151921;
    --color-gold-light: #F2D06B;
    --color-gold: #D4AF37;
    --color-gold-dark: #B68D1F;
    --color-text-main: #FFFFFF;
    --color-text-muted: #9CA3AF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;

    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Background Effects */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(21, 25, 33, 1) 0%, rgba(11, 14, 20, 0) 100%);
    z-index: -3;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Uniform grid pattern without masking for consistency */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}


/* Header */
.header {
    height: 80px;
    /* Standard height */
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: center;
    /* Centered logo */
    align-items: center;
    width: 100%;
}

.blur-nav {
    backdrop-filter: blur(12px);
    background: rgba(11, 14, 20, 0.9);
    /* Slightly darker for contrast */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 1;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Clean, no heavy glow or box */
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    /* Subtle glow only */
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    /* Standard readable size */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* Full viewport height to push next section down */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--header-height);
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-spacer {
    height: 40px;
}

.badge-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(212, 175, 55, 0.05);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 32px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    /* Large but contained */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #fff;
}

/* Specific sizing for the two parts of the headline */
.hero-title .text-gradient {
    font-size: 1em;
    /* Same size */
    display: inline;
    /* Keep on same line or wrap naturally */
}

.hero-title-sub {
    font-size: 1em;
    /* Same size */
    font-weight: 700;
    color: #fff;
    opacity: 1;
    display: inline;
    /* Keep flow */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Waitlist Form */
.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-group:focus-within {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: var(--gradient-gold);
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    color: #0B0E14;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
    flex-shrink: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}

/* Features */
.features {
    padding: 2rem 0 8rem;
    position: relative;
    z-index: 2;
}

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

.glass-panel {
    background: rgba(11, 14, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    background: rgba(21, 25, 33, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.glass-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.glass-panel p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: none;
    color: rgba(255, 255, 255, 0.3);
}

.copyright {
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .hero-title {
        font-size: 3.5rem;
        /* Smaller for tablets/mobile */
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 16px;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .input-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        /* Keep pill shape */
        margin-bottom: 12px;
        text-align: center;
    }

    .btn-primary {
        width: 100%;
        min-width: unset;
        border-radius: 100px;
        padding: 14px 20px;
    }

    .features {
        padding-top: 4rem;
        /* More space on mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        /* Even smaller for phones */
    }

    .container {
        padding: 0 20px;
    }
}
