:root {
    --primary: #6C63FF;
    --background: #0A0B0D;
    --surface: #14161C;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A5B5;
    --success: #10B981;
    --warning: #F59E0B;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    overflow-x: hidden; /* critical */
}

h1, h2, h3, .logo, .display-4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* ================= NAVBAR ================= */
.navbar-custom {
    background-color: var(--background) !important;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
}

.nav-link-custom {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.2s;
}

.nav-link-custom:hover {
    color: white !important;
}

.btn-nav {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    border: none;
}

/* ================= HERO ================= */
.hero-section {
    padding: 4rem 0 6rem;
}

.hero-headline {
    font-size: 2.9rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subhead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* ================= FEATURES ================= */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-icon {
    background-color: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ================= FULL WIDTH GRADIENT (FIXED) ================= */
.full-width-gradient {
    width: 100%;
    background: linear-gradient(90deg, rgba(3,3,3,0.85), rgb(156, 90, 156));
    padding: 3rem 0 5rem;
    overflow: hidden;
}

/* ================= BUTTONS ================= */
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background-color: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.secondary-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    margin-left: 1.5rem;
}

.secondary-link:hover {
    color: white;
}

/* ================= PROGRESS ================= */
.presale-info {
    margin-top: 2.5rem;
    max-width: 400px;
}

.progress {
    height: 8px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.progress-bar {
    background-color: var(--primary);
    border-radius: 10px;
}

/* ================= HERO GRAPHIC ================= */
.hero-graphic {
    border-radius: 24px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.graphic-placeholder {
    text-align: center;
    padding: 2rem;
    border-radius: 24px;
}

.graphic-placeholder i {
    font-size: 5rem;
    opacity: 0.7;
}

/* ================= TRUST BAR ================= */
.trust-bar {
    background-color: rgba(20, 22, 28, 0.8);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-title {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-logo {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0.7;
    filter: grayscale(1);
}

.trust-logo:hover {
    opacity: 1;
}

/* ================= RESPONSIVE FIXES ================= */

/* Tablets */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subhead {
        text-align: center;
        max-width: 100%;
    }

    .hero-section {
        padding: 3rem 0 4rem;
    }

    .btn-primary-custom {
        width: 100%;
    }
}

/* Phones */
@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.7rem;
    }

    .hero-graphic {
        min-height: 260px;
        margin-top: 2rem;
    }

    .nav-link-custom {
        margin: 0.5rem 0;
        text-align: center;
    }

    .btn-nav {
        width: 100%;
        margin-top: 1rem;
    }
}
