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

:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --primary-light: #8B5CF6;
    --secondary: #F59E0B;
    --secondary-light: #FCD34D;
    --success: #10b981;
    --warning: #f59e0b;
    --dark-bg: #0A0118;
    --darker-bg: #050008;
    --card-bg: #1A0B2E;
    --card-hover: #2A1540;
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #CBD5E1;
    --border: rgba(124, 58, 237, 0.2);
    --border-light: rgba(139, 92, 246, 0.1);
    --gold-glow: rgba(245, 158, 11, 0.3);
    --purple-glow: rgba(124, 58, 237, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #0A0118 0%, #1A0B2E 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3.5" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.portal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #0A0118;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px var(--gold-glow);
}

.portal-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px var(--gold-glow), 0 0 32px rgba(245, 158, 11, 0.2);
}

.hero {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 2rem 60px;
    text-align: center;
    background: transparent;
    border: none;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 76px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}

.gradient-text {
    color: #FFFFFF !important;
}

.hero-description {
    font-size: 21px;
    line-height: 1.7;
    color: #E2E8F0 !important;
    max-width: 720px;
    margin: 0 auto 48px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 18px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #0A0118;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 6px 24px var(--gold-glow), 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px var(--gold-glow), 0 4px 16px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--purple-glow);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 36px 48px;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(10, 1, 24, 0.9) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 58, 237, 0.15);
}

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

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF !important;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.problem-section {
    max-width: 1280px;
    margin: 120px auto;
    padding: 0 2rem;
    text-align: center;
}

.problem-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight-text {
    color: var(--primary);
}

.problem-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.problem-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
}

.problem-item:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: var(--text-muted);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.problem-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.problem-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.platform-section {
    max-width: 1280px;
    margin: 120px auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.platform-card {
    padding: 32px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.platform-card:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: var(--text-muted);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    color: white;
}

.platform-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.platform-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-features span {
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #60a5fa;
}

.use-cases-section {
    max-width: 1280px;
    margin: 120px auto;
    padding: 0 2rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.use-case-card {
    padding: 32px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.use-case-card:hover {
    background: rgba(30, 41, 59, 0.5);
    transform: translateY(-4px);
}

.use-case-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.use-case-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.use-case-list {
    list-style: none;
}

.use-case-list li {
    padding: 8px 0;
    padding-left: 24px;
    color: var(--text-secondary);
    position: relative;
}

.use-case-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.docs-section {
    max-width: 1280px;
    margin: 120px auto;
    padding: 0 2rem;
}

.docs-header {
    text-align: center;
    margin-bottom: 64px;
}

.docs-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.docs-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.docs-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.docs-nav {
    position: sticky;
    top: 100px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.docs-nav-group {
    margin-bottom: 24px;
}

.docs-nav-group:last-child {
    margin-bottom: 0;
}

.docs-nav-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.docs-nav-link {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    margin-bottom: 4px;
}

.docs-nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-primary);
}

.docs-nav-link.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
    font-weight: 600;
}

.docs-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.docs-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.docs-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.docs-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.code-block {
    background: #0d1117;
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.5);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.code-lang {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.code-copy {
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--primary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.code-copy:hover {
    background: rgba(59, 130, 246, 0.2);
}

.code-block pre {
    padding: 20px;
    overflow-x: auto;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-block code {
    color: #e6edf3;
}

.comment { color: #8b949e; }
.keyword { color: #ff7b72; }
.string { color: #a5d6ff; }
.function { color: #d2a8ff; }
.property { color: #79c0ff; }
.number { color: #79c0ff; }
.boolean { color: #79c0ff; }

.api-reference {
    margin-top: 32px;
}

.api-reference h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.endpoint-item {
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s;
}

.endpoint-item:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: var(--text-muted);
}

.endpoint-method {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.method-get {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.method-post {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.method-ws {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.endpoint-path {
    font-family: 'Menlo', monospace;
    font-size: 14px;
    color: var(--text-primary);
}

.endpoint-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-section {
    max-width: 1280px;
    margin: 120px auto;
    padding: 0 2rem;
}

.coming-soon-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 60px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
}

.coming-soon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    margin-bottom: 32px;
    color: var(--primary);
}

.coming-soon-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.coming-soon-box p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.coming-soon-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.early-access-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.feature-badge svg {
    flex-shrink: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.pricing-card {
    position: relative;
    padding: 40px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.pricing-card.featured {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--primary);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price {
    margin: 20px 0;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
}

.price-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-btn.btn-primary {
    background: var(--primary);
    color: white;
}

.pricing-btn.btn-primary:hover {
    background: var(--primary-dark);
}

.pricing-btn.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.pricing-btn.btn-outline:hover {
    background: rgba(148, 163, 184, 0.1);
    border-color: var(--text-secondary);
}

.cta {
    position: relative;
    max-width: 1280px;
    margin: 120px auto;
    padding: 80px 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(148, 163, 184, 0.15);
    border-color: var(--text-secondary);
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 100px 2rem;
    background: linear-gradient(180deg, #1A0B2E 0%, #0A0118 100%);
    position: relative;
}

.tokenomics-content {
    max-width: 1280px;
    margin: 0 auto;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.tokenomics-card {
    background: rgba(26, 11, 46, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s ease;
}

.tokenomics-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.tokenomics-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 16px 32px rgba(124, 58, 237, 0.25);
}

.token-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tokenomics-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.token-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Flywheel Diagram */
.flywheel-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.flywheel-step {
    background: rgba(10, 1, 24, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease;
}

.flywheel-step:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-size: 14px;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-content strong {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
}

.step-content span {
    color: var(--text-muted);
    font-size: 12px;
}

.flywheel-arrow {
    color: var(--gold);
    font-size: 28px;
    font-weight: 700;
    opacity: 0.7;
}

/* Token Stats */
.token-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.token-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.token-stat-row:last-child {
    border-bottom: none;
}

.token-stat-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.token-stat-value {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

/* Investment Highlights */
.investment-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(10, 1, 24, 0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(124, 58, 237, 0.1);
}

.highlight-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.highlight-item strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* Token CTA Box */
.token-cta-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    margin-top: 48px;
}

.token-cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.token-cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.token-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 2rem 40px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

@media (max-width: 1024px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .docs-nav {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
