:root {
    --bg-dark: #07090f;
    --text-primary: #f0f2f5;
    --text-secondary: #9da3b5;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --btn-hover-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glows */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
}

.top-left {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.bottom-right {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
}

.middle-right {
    top: 40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #10b981, transparent 70%);
    opacity: 0.3;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background: rgba(7, 9, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

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

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

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-btn {
    background: white;
    color: var(--bg-dark);
}

.nav-btn:hover {
    background: #e2e8f0;
}

.decoration-none {
    text-decoration: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    padding-top: 5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(to right, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Glass Card Terminal */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.scanner-preview {
    width: 100%;
    max-width: 800px;
    min-height: 300px;
    text-align: left;
    margin: 0 auto;
}

.scan-header {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #f59e0b;
}

.green {
    background: #10b981;
}

.scan-body {
    padding: 2rem;
    font-family: monospace;
    color: #a7f3d0;
    font-size: 1.1rem;
}

/* Sections Global */
section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Docs Section (How it works) */
.docs-section {
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.05), transparent);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-blue);
    opacity: 0.8;
    min-width: 60px;
    text-align: center;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-secondary);
}

/* Tokenomics Section */
.tokenomics-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.donut-chart {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(#3b82f6 0% 40%,
            #ec4899 40% 60%,
            #8b5cf6 60% 75%,
            #10b981 75% 90%,
            #f59e0b 90% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.donut-hole {
    width: 180px;
    height: 180px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.token-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.stat-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-info p {
    color: var(--text-secondary);
    font-weight: 600;
}

.tax-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.tax-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Roadmap Section */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-card {
    padding: 2.5rem 2rem;
    background: #11131a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.phase-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.phase-1 {
    color: #10b981;
}

.phase-2 {
    color: #c026d3;
}

.phase-3,
.phase-4,
.pending-title {
    color: #4b5563;
}

.phase-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.roadmap-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.roadmap-list .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.phase-1-done {
    color: #f0f2f5;
}

.phase-1-done .icon {
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981;
}

.phase-2-done {
    color: #f0f2f5;
}

.phase-2-done .icon {
    background: transparent;
    border: 2px solid #c026d3;
    color: #c026d3;
}

.pending {
    color: #9da3b5;
}

.pending .icon {
    background: transparent;
    border: 2px solid #4b5563;
    color: transparent;
}

/* Partners Section */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.partner-logo img {
    border-radius: 50%;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 350px;
}

.footer-links,
.footer-social {
    min-width: 150px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

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

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

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

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

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

/* Responsive Overrides */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 8rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .glass-card {
        margin: 0 1rem;
    }

    section {
        padding: 4rem 1rem;
    }

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

    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tokenomics-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .donut-chart {
        width: 200px;
        height: 200px;
    }

    .donut-hole {
        width: 140px;
        height: 140px;
        font-size: 1.5rem;
    }

    .partners-grid {
        gap: 1rem;
    }

    .partner-logo {
        padding: 1rem;
        font-size: 0.9rem;
        width: calc(50% - 0.5rem);
        justify-content: center;
    }

    .partner-logo img {
        width: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 1rem auto 0;
    }
}