:root {
    --bg-color: #050212;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary-gradient: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    --accent-purple: #a855f7;
    --accent-cyan: #06b6d4;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% -20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 2, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-main);
}

.btn-buy {
    background: var(--primary-gradient);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white !important;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Navigation Button */
.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    font-size: 0.75rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan) !important;
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1.2;
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.3);
}

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

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

.logo-frame {
    width: 350px;
    height: 350px;
    border-radius: 40px;
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: floating 6s ease-in-out infinite;
}

.logo-frame img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Ticker Animation */
.metrics-ticker {
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-dot {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
}

/* Sections Alignment Fix */
.grid-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Changed from stretch for better vertical center */
    gap: 5rem;
}

.about-text {
    flex: 1.2;
}

.security-card {
    flex: 0.8;
    max-width: 500px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.security-icon {
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* Glass Card */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}

.security-list {
    list-style: none;
    margin: 2rem 0;
}

.security-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.status {
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.red-glow {
    color: #ff4b4b;
    border-color: rgba(255, 75, 75, 0.2);
}

.cyan-glow {
    color: var(--accent-cyan);
    border-color: rgba(6, 182, 212, 0.2);
}

.card-footer {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-align: center;
    font-style: italic;
}

/* Vision */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.vision-item {
    text-align: center;
    padding: 2.5rem;
}

.vision-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.vision-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vision-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.vision-footer {
    margin-top: 4rem;
    font-weight: 600;
    color: var(--text-dim);
}

/* Community CTA */
.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .section-padding {
        padding: 4rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .btn-buy {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    .logo-frame {
        width: 260px;
        height: 260px;
        padding: 1.5rem;
    }

    .ticker-content {
        gap: 2rem;
        font-size: 0.8rem;
    }

    .grid-2 {
        flex-direction: column;
        gap: 3rem;
        display: flex;
    }

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

    .security-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-inner h2 {
        font-size: 2.2rem;
    }

    .social-grid {
        gap: 1rem;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1rem;
    }

    .navbar {
        position: absolute;
        padding: 0.5rem 0;
    }

    .ticker-content {
        animation-duration: 20s;
    }
}