
:root {

    --nw-bg: #0a0f1a;

    --nw-bg-secondary: #111827;

    --nw-bg-card: rgba(17, 24, 39, 0.8);

    --nw-accent: #06b6d4;

    --nw-accent-glow: rgba(6, 182, 212, 0.3);

    --nw-green: #10b981;

    --nw-red: #ef4444;

    --nw-purple: #8b5cf6;

    --nw-orange: #f59e0b;

    --nw-text: #f3f4f6;

    --nw-text-muted: #9ca3af;

    --nw-border: rgba(255,255,255,0.1);

    --nw-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);

}

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

body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--nw-bg); color: var(--nw-text); line-height: 1.6; overflow-x: hidden; }

.gf-icon { width: 20px; height: 20px; vertical-align: middle; filter: brightness(0) invert(1); }

.gf-icon-lg { width: 28px; height: 28px; }

.gf-icon-xl { width: 40px; height: 40px; }

.gf-icon-accent { filter: invert(69%) sepia(89%) saturate(1479%) hue-rotate(152deg) brightness(95%) contrast(96%); }



/* Glassmorphism */

.glass { background: rgba(17, 24, 39, 0.7); backdrop-filter: blur(20px); border: 1px solid var(--nw-border); }

.glass-light { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid var(--nw-border); }



/* Header */

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; }

.header.scrolled { background: rgba(10, 15, 26, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--nw-border); }

.logo { display: flex; align-items: center; gap: 12px; }

.logo-icon { width: 40px; height: 40px; background: var(--nw-gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.logo-text { font-size: 24px; font-weight: 700; }

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

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

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

.nav-links a:hover { color: var(--nw-accent); }

.header-cta { background: var(--nw-gradient); color: white; padding: 12px 28px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; }

.header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--nw-accent-glow); }



/* Hero */

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 120px 40px 80px; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%); }

.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 50px 50px; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--nw-accent-glow); border: 1px solid var(--nw-accent); padding: 8px 20px; border-radius: 30px; font-size: 14px; color: var(--nw-accent); margin-bottom: 30px; }

.hero-title { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }

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

.hero-subtitle { font-size: 22px; color: var(--nw-text-muted); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

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

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

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--nw-accent-glow); }

.btn-secondary { background: transparent; color: white; padding: 16px 40px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 16px; border: 2px solid var(--nw-border); transition: all 0.3s; }

.btn-secondary:hover { border-color: var(--nw-accent); background: rgba(6, 182, 212, 0.1); }



/* Stats Bar */

.stats-bar { display: flex; justify-content: center; gap: 60px; padding: 30px; }

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

.stat-value { font-size: 42px; font-weight: 800; background: var(--nw-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.stat-label { font-size: 14px; color: var(--nw-text-muted); margin-top: 5px; }



/* Entity Showcase */

.entity-showcase { padding: 100px 40px; }

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

.section-badge { display: inline-block; background: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.3); padding: 6px 16px; border-radius: 20px; font-size: 13px; color: var(--nw-accent); margin-bottom: 15px; }

.section-title { font-size: 42px; font-weight: 700; margin-bottom: 15px; }

.section-subtitle { font-size: 18px; color: var(--nw-text-muted); max-width: 600px; margin: 0 auto; }



/* Dashboard Preview */

.dashboard-preview { max-width: 1400px; margin: 0 auto; background: var(--nw-bg-secondary); border-radius: 20px; border: 1px solid var(--nw-border); overflow: hidden; box-shadow: 0 25px 80px rgba(0,0,0,0.5); }

.dashboard-header { background: rgba(0,0,0,0.3); padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--nw-border); }

.dashboard-entity { display: flex; align-items: center; gap: 12px; }

.entity-avatar { width: 40px; height: 40px; background: var(--nw-gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; }

.entity-info h3 { font-size: 16px; font-weight: 600; }

.entity-info p { font-size: 13px; color: var(--nw-accent); }

.dashboard-tabs { display: flex; gap: 5px; }

.dashboard-tab { padding: 8px 20px; border-radius: 8px; font-size: 14px; cursor: pointer; transition: all 0.2s; color: var(--nw-text-muted); background: transparent; border: none; }

.dashboard-tab:hover { background: rgba(255,255,255,0.05); color: var(--nw-text); }

.dashboard-tab.active { background: var(--nw-accent); color: white; }

.dashboard-content { padding: 25px; }

.dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 25px; }

.metric-card { background: rgba(255,255,255,0.03); border: 1px solid var(--nw-border); border-radius: 12px; padding: 20px; }

.metric-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 15px; }

.metric-icon { width: 45px; height: 45px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.metric-icon.sales { background: rgba(16, 185, 129, 0.2); }

.metric-icon.orders { background: rgba(59, 130, 246, 0.2); }

.metric-icon.customers { background: rgba(139, 92, 246, 0.2); }

.metric-icon.revenue { background: rgba(245, 158, 11, 0.2); }

.metric-change { font-size: 13px; padding: 4px 10px; border-radius: 20px; }

.metric-change.up { background: rgba(16, 185, 129, 0.2); color: var(--nw-green); }

.metric-change.down { background: rgba(239, 68, 68, 0.2); color: var(--nw-red); }

.metric-value { font-size: 32px; font-weight: 700; margin-bottom: 5px; }

.metric-label { font-size: 14px; color: var(--nw-text-muted); }



/* Widget Grid */

.widgets-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }

.widget { background: rgba(255,255,255,0.03); border: 1px solid var(--nw-border); border-radius: 12px; padding: 20px; }

.widget-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }

.widget-title { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 10px; }

.widget-actions { display: flex; gap: 10px; }

.widget-btn { background: rgba(255,255,255,0.05); border: none; padding: 6px 12px; border-radius: 6px; color: var(--nw-text-muted); font-size: 13px; cursor: pointer; }

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



/* Chart Placeholder */

.chart-area { height: 200px; background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, transparent 100%); border-radius: 8px; position: relative; overflow: hidden; }

.chart-line { position: absolute; bottom: 0; left: 0; right: 0; height: 100%; background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), rgba(139, 92, 246, 0.3), transparent); clip-path: polygon(0 80%, 10% 60%, 20% 70%, 30% 40%, 40% 50%, 50% 30%, 60% 45%, 70% 25%, 80% 35%, 90% 20%, 100% 30%, 100% 100%, 0 100%); }



/* Activity Feed */

.activity-feed { max-height: 250px; overflow-y: auto; }

.activity-item { display: flex; align-items: start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--nw-border); }

.activity-item:last-child { border-bottom: none; }

.activity-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.activity-icon.sale { background: rgba(16, 185, 129, 0.2); }

.activity-icon.message { background: rgba(59, 130, 246, 0.2); }

.activity-icon.call { background: rgba(139, 92, 246, 0.2); }

.activity-icon.order { background: rgba(245, 158, 11, 0.2); }

.activity-text { font-size: 14px; line-height: 1.4; }

.activity-text strong { color: var(--nw-accent); }

.activity-time { font-size: 12px; color: var(--nw-text-muted); margin-top: 4px; }



/* dApp Showcase */

.dapps-section { padding: 100px 40px; background: var(--nw-bg-secondary); }

.dapps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }

.dapp-card { background: var(--nw-bg); border: 1px solid var(--nw-border); border-radius: 16px; padding: 30px 20px; text-align: center; cursor: pointer; transition: all 0.3s; }

.dapp-card:hover { transform: translateY(-5px); border-color: var(--nw-accent); box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2); }

.dapp-icon { width: 60px; height: 60px; margin: 0 auto 15px; background: rgba(6, 182, 212, 0.1); border-radius: 15px; display: flex; align-items: center; justify-content: center; }

.dapp-name { font-size: 16px; font-weight: 600; margin-bottom: 5px; }

.dapp-desc { font-size: 13px; color: var(--nw-text-muted); }



/* Value Props */

.value-section { padding: 100px 40px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }

.value-card { background: var(--nw-bg-secondary); border: 1px solid var(--nw-border); border-radius: 20px; padding: 40px; text-align: center; position: relative; overflow: hidden; }

.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--nw-gradient); }

.value-number { font-size: 64px; font-weight: 800; background: var(--nw-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; }

.value-title { font-size: 20px; font-weight: 600; margin-bottom: 10px; }

.value-desc { font-size: 15px; color: var(--nw-text-muted); }



/* Comparison */

.comparison-section { padding: 100px 40px; background: var(--nw-bg-secondary); }

.comparison-table { max-width: 1000px; margin: 0 auto; background: var(--nw-bg); border-radius: 20px; border: 1px solid var(--nw-border); overflow: hidden; }

.comparison-header { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 20px 30px; background: rgba(0,0,0,0.3); font-weight: 600; }

.comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 20px 30px; border-bottom: 1px solid var(--nw-border); align-items: center; }

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

.comparison-feature { display: flex; align-items: center; gap: 12px; }

.check { color: var(--nw-green); font-size: 20px; }

.cross { color: var(--nw-red); font-size: 20px; }

.trad-col { color: var(--nw-text-muted); text-align: center; }

.nw-col { color: var(--nw-accent); text-align: center; font-weight: 600; }



/* CTA Section */

.cta-section { padding: 120px 40px; text-align: center; position: relative; overflow: hidden; }

.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.2) 0%, transparent 70%); }

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

.cta-title { font-size: 48px; font-weight: 700; margin-bottom: 20px; }

.cta-subtitle { font-size: 20px; color: var(--nw-text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.namespace-demo { display: flex; justify-content: center; align-items: center; gap: 0; margin-bottom: 40px; }

.namespace-input { background: var(--nw-bg-secondary); border: 2px solid var(--nw-border); border-right: none; padding: 18px 25px; font-size: 20px; color: var(--nw-text); border-radius: 15px 0 0 15px; width: 300px; outline: none; }

.namespace-input:focus { border-color: var(--nw-accent); }

.namespace-suffix { background: var(--nw-gradient); padding: 18px 30px; font-size: 20px; font-weight: 700; border-radius: 0 15px 15px 0; }



/* Footer */

.footer { background: var(--nw-bg); padding: 80px 40px 40px; border-top: 1px solid var(--nw-border); }

.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 60px; max-width: 1200px; margin: 0 auto 60px; }

.footer-brand p { color: var(--nw-text-muted); margin-top: 20px; font-size: 15px; line-height: 1.7; }

.footer h4 { font-size: 15px; font-weight: 600; margin-bottom: 20px; color: var(--nw-text); }

.footer ul { list-style: none; }

.footer li { margin-bottom: 12px; }

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

.footer a:hover { color: var(--nw-accent); }

.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 40px; border-top: 1px solid var(--nw-border); display: flex; justify-content: space-between; align-items: center; }

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



/* Animations */

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

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

@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.animate-float { animation: float 6s ease-in-out infinite; }

.animate-pulse { animation: pulse 2s ease-in-out infinite; }



/* Responsive */

@media (max-width: 1200px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr); } .dapps-grid { grid-template-columns: repeat(3, 1fr); } .value-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) { .hero-title { font-size: 42px; } .widgets-grid { grid-template-columns: 1fr; } .comparison-header, .comparison-row { grid-template-columns: 1fr 1fr; } .comparison-feature { grid-column: span 2; margin-bottom: 10px; } .footer-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) { .hero-title { font-size: 32px; } .stats-bar { flex-direction: column; gap: 30px; } .dashboard-grid { grid-template-columns: 1fr; } .dapps-grid { grid-template-columns: repeat(2, 1fr); } .namespace-demo { flex-direction: column; } .namespace-input { border-radius: 15px; border-right: 2px solid var(--nw-border); width: 100%; max-width: 300px; } .namespace-suffix { border-radius: 15px; margin-top: 10px; } }

