/* Custom Architecture Variables */
:root {
    --bg-main: #0B0F12;
    --bg-surface: #13191E;
    --bg-card: #1A2127;
    --brand-primary: #00FF66;
    --brand-glow: rgba(0, 255, 102, 0.15);
    --text-white: #FFFFFF;
    --text-muted: #8E9AA4;
    --border-subtle: #242F39;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Premium Layout Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* Modern Header / Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 18, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo-link {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--brand-primary);
    box-shadow: 0 0 10px var(--brand-glow);
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--text-white) !important;
}

.nav-social-btn:hover {
    border-color: var(--brand-primary);
    background: rgba(0, 255, 102, 0.05);
}

/* Modern Hero Layout */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(90deg, #00FF66 0%, #00B2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slogan {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.hero-subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--bg-main);
    box-shadow: 0 4px 20px var(--brand-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 255, 102, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.03);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: linear-gradient(135deg, var(--border-subtle) 0%, transparent 100%);
}

.main-logo {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    display: block;
}

/* Concept Section Alignment */
.grid-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.grid-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.grid-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    border-radius: 16px;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    border-color: #2e3d4a;
}

.bento-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

/* Tokenomics Metrics Grid */
.metrics-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 48px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.metric-card {
    background: var(--bg-main);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-primary);
}

/* Minimalist Footer & Clean Icon styling */
.footer {
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-main);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    display: block;
}

.footer-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-icon {
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-social-icon:hover {
    color: var(--text-white);
}

/* -----------------------------------------------
   Responsive Layout & Breakpoint Constraints
-------------------------------------------------- */
@media (max-width: 968px) {
    .hero-container { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center; 
    }
    .hero-subtext { margin-left: auto; margin-right: auto; }
    .cta-group { justify-content: center; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr; } /* Layout stack drop forces clean mobile layout boundaries */
    .footer-container { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 12px 16px;
        gap: 12px;
    }
    .nav-links {
        gap: 14px;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .nav-social-btn {
        padding: 6px 12px;
    }
    .nav-social-btn .btn-text {
        display: none; /* Keeps navigation clean on small headers */
    }
    h1 {
        font-size: 2.8rem;
    }
    
    /* Responsive Fluid Typography Fix for 1 Billion Text Overflow */
    .metric-value {
        font-size: calc(1.3rem + 1.2vw); 
        word-break: break-all;
    }
    .metric-card {
        padding: 30px 16px;
    }
}
