:root {
    --bg-dark: #05060f;
    --bg-mission: #eef6ff;
    --bg-tokenomics: #0a0b1e;
    --accent-cyan: #00d4ff;
    --accent-blue: #0072ff;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --text-dark: #1a1a1a;
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.4);
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background System */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0c1a 0%, #05060f 100%);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-primary {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    top: -100px;
    right: -100px;
}

.orb-secondary {
    width: 600px;
    height: 600px;
    background: var(--accent-blue);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.orb-tertiary {
    width: 400px;
    height: 400px;
    background: #7000ff;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

/* Header Ribbon */
.header-ribbon {
    background: white;
    color: #1a1a1a;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.ribbon-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Welcome Ribbon */
.welcome-ribbon {
    background: white;
    color: var(--text-dark);
    padding: 10px 5%;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid #eee;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 10%;
    position: relative;
}

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

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 550px;
    margin-bottom: 2.5rem;
}

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

.hero-logo-container {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.1);
}

.hero-logo {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.05);
}

/* Socials */
.socials {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--accent-cyan);
}

/* Mission Section */
.mission {
    padding: 100px 10%;
    background-color: var(--bg-mission);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mission-diagram {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-content {
    flex: 1;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission p {
    margin-bottom: 1.5rem;
    color: #444;
}

/* Cards (Tokenomics & Greatness) */
.cards-section {
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    color: var(--text-dark);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

/* Roadmap (Moonmap) */
.moonmap {
    padding: 100px 10%;
    text-align: center;
}

.roadmap-wrapper {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.roadmap-wrapper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.roadmap-phase {
    flex: 1;
    position: relative;
    padding-top: 60px;
}

.roadmap-phase::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.roadmap-phase h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.roadmap-phase ul {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Team */
.team {
    padding: 100px 10%;
    background: white;
    color: var(--text-dark);
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo-container {
        width: 300px;
        height: 300px;
        margin-top: 3rem;
    }

    .btn-group,
    .socials {
        justify-content: center;
    }

    .mission {
        flex-direction: column;
    }

    .roadmap-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .roadmap-wrapper::before {
        display: none;
    }
}