:root {
    --bg-dark: #040810;
    --bg-panel: rgba(12, 19, 36, 0.5);
    
    /* Core cyan/teal brand colors based on logo */
    --cyan: #4cd9e8;
    --cyan-glow: rgba(76, 217, 232, 0.4);
    --blue-dark: #0084a8;
    --blue-glow: rgba(0, 132, 168, 0.6);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-glass: rgba(76, 217, 232, 0.15);
    
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none; /* Custom cursor */
}

/* Backgrounds & Canvas */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none; z-index: 50; mix-blend-mode: overlay;
}
canvas#energyCanvas {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; opacity: 0.8;
}

/* Custom Cursor */
.cursor-glow {
    position: fixed; width: 400px; height: 400px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none; z-index: 10;
    transform: translate(-50%, -50%); transition: top 0.1s, left 0.1s;
    mix-blend-mode: screen;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 20; }

/* Utilities */
.glass-panel {
    background: var(--bg-panel); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass); border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.text-gradient {
    background: linear-gradient(135deg, var(--cyan), #ffffff, var(--blue-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cyan { color: var(--cyan); }
.glow { filter: drop-shadow(0 0 10px var(--cyan-glow)); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.75rem; border-radius: 100px;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem;
    text-decoration: none; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none; position: relative; overflow: hidden;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-cyan {
    background: linear-gradient(90deg, var(--cyan), var(--blue-dark));
    color: #fff; box-shadow: 0 0 20px rgba(76, 217, 232, 0.3);
}
.btn-cyan:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 5px 30px rgba(76, 217, 232, 0.6); }
.btn-glass {
    background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(76, 217, 232, 0.1); border-color: var(--cyan); transform: translateY(-3px); }
.btn-pill-outline {
    background: transparent; color: var(--cyan); border: 1px solid var(--cyan);
    border-radius: 100px; padding: 0.5rem 1.25rem; font-size: 0.9rem;
}
.btn-pill-outline:hover { background: var(--cyan-glow); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; }

/* Navbar */
.navbar {
    position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%);
    width: 95%; max-width: 1200px; z-index: 100;
    background: rgba(4, 8, 16, 0.6); backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass); border-radius: 100px;
    padding: 0.75rem 1.5rem; display: flex; align-items: center;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; width: 100%; padding:0; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: -1px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { 
    color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem;
    display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s;
}
.nav-link:hover { color: #fff; text-shadow: 0 0 10px var(--cyan-glow); }
.nav-link i { color: var(--cyan); }
.menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; }

/* Hero */
.hero { padding: 12rem 0 6rem; position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.hero-bg-glow {
    position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 132, 168, 0.15) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}
.hero-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.glass-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
    color: var(--text-main); background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass);
    margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 1px;
}
.hero-title { font-size: 5.5rem; margin-bottom: 1.5rem; letter-spacing: -2px; }
.hero-desc { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 90%; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; }

/* 3D Coin Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1000px; height: 500px;}
.coin-3d-wrapper {
    position: relative; width: 300px; height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}
.coin-ring {
    position: absolute; top:0; left:0; width:100%; height:100%;
    border-radius: 50%; border: 1px dashed var(--cyan);
    animation: rotateRing 20s linear infinite;
}
.coin-ring.inner { transform: scale(0.8); border: 2px solid rgba(76, 217, 232, 0.3); animation-direction: reverse; animation-duration: 30s;}
.coin-center {
    position: absolute; top:10%; left:10%; width:80%; height:80%;
    border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: radial-gradient(circle at top left, rgba(76, 217, 232, 0.2), rgba(0, 132, 168, 0.05));
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 0 50px var(--cyan-glow);
    border: 1px solid var(--cyan); z-index: 5;
}
.giant-icon { font-size: 4rem; color: var(--cyan); filter: drop-shadow(0 0 15px var(--cyan)); margin-bottom: 0.5rem; }
.ticker { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; }
.orbit-orb {
    position: absolute; width: 50px; height: 50px; border-radius: 50%; background: var(--bg-panel); border: 1px solid var(--cyan);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
    box-shadow: 0 0 20px var(--cyan-glow); z-index: 10;
}
.orb-1 { top: -10%; left: 40%; animation: float 4s ease-in-out infinite; }
.orb-2 { bottom: 10%; right: -10%; animation: float 5s ease-in-out infinite 1s; }
.orb-3 { bottom: 0%; left: -5%; animation: float 6s ease-in-out infinite 2s; }

@keyframes rotateRing { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Ticker Tape */
.ticker-tape {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: var(--cyan); color: var(--bg-dark);
    padding: 1rem 0; overflow: hidden; transform: rotate(-2deg) scale(1.05);
    z-index: 50; box-shadow: 0 0 30px var(--cyan-glow);
}
.ticker-track {
    display: flex; white-space: nowrap; align-items: center; gap: 2rem;
    font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; text-transform: uppercase;
    animation: tickerScroll 20s linear infinite;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sections */
.section { padding: 8rem 0; position: relative; }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-tag { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--cyan); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.section-title { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.subtitle { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

/* Vision */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.vision-img { position: relative; width: 100%; aspect-ratio: 1; display:flex; align-items:center; justify-content:center; border-radius: 40px; overflow: hidden; }
.img-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background: radial-gradient(circle, transparent, var(--bg-dark)); pointer-events:none; }
.global-icon { font-size: 15rem; color: rgba(76, 217, 232, 0.4); }
.stat-float { position: absolute; bottom: 10%; right: -5%; padding: 1.5rem; display:flex; flex-direction:column; background: rgba(12, 19, 36, 0.8); }
.stat-val { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--cyan); }
.stat-lbl { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; }

.lead { font-size: 1.4rem; font-weight: 500; color: #fff; margin-bottom: 1.5rem; }
.vision-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
.feature-bullets { list-style: none; margin-top: 2rem; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; font-size: 1.1rem; color: #fff;}
.feature-bullets li i { font-size: 1.5rem; margin-top: 0.2rem; }
.feature-bullets li strong { font-family: var(--font-head); }

/* Bento Grid */
.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}
.bento-card {
    padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}
.bento-card:hover { border-color: var(--cyan); transform: translateY(-5px); }
.bento-icon { font-size: 2.5rem; color: var(--cyan); margin-bottom: auto; }
.bento-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; z-index:2; position:relative;}
.bento-card p { color: var(--text-muted); z-index:2; position:relative; }
.bento-large { grid-column: span 1; grid-row: span 2; }
.bento-wide { grid-column: span 2; grid-row: span 1; display:flex; flex-direction:row; align-items:center; }
.bento-cta { background: linear-gradient(135deg, rgba(76, 217, 232, 0.1), rgba(0, 132, 168, 0.2)); border-color: rgba(76, 217, 232, 0.3); }
.bento-bg-icon { position:absolute; right: -5%; bottom: -20%; font-size: 15rem; color: rgba(255,255,255,0.03); z-index:1; }

/* Metrics */
.metrics-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 3rem 4rem; border-radius: 30px;
}
.outline-glow { border: 1px solid var(--cyan); box-shadow: inset 0 0 30px rgba(76, 217, 232, 0.1), 0 0 40px rgba(76, 217, 232, 0.1); }
.metric { text-align: center; }
.metric-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem; }
.metric-label { color: var(--text-muted); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.verse-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 6rem; background: #02050a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--text-muted); margin-top: 1.5rem; }
.contact-info { display:flex; flex-direction:column; gap:0.5rem; }
.contact-link { color: #fff; text-decoration:none; display:flex; align-items:center; gap:0.5rem; transition:color 0.3s; }
.contact-link:hover { color: var(--cyan); }
.mt { margin-top: 2rem;}

.footer-links h4 { font-size: 1.2rem; margin-bottom: 1.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; display: flex; align-items:center; gap:0.5rem; margin-bottom: 1rem; transition: all 0.3s; }
.footer-links a:hover { color: var(--cyan); transform: translateX(5px); }

.glass-form { display: flex; background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass); border-radius: 100px; padding: 0.25rem; margin-top: 1rem; }
.glass-form input { background: transparent; border: none; padding: 0.75rem 1.5rem; color: #fff; width: 100%; outline:none; font-family: var(--font-body); }
.btn-cyan-icon { background: var(--cyan); color: #000; border: none; width: 40px; height: 40px; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-size: 1.2rem; cursor:pointer; transition:transform 0.3s; }
.btn-cyan-icon:hover { transform: scale(1.1); }

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

/* Utilities / Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 1s ease; }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-cta { justify-content: center; }
    .split-layout { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .hero-title { font-size: 3rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .bento-cta { flex-direction: column; text-align: center; }
    .metrics-row { flex-direction: column; gap: 2rem; }
    .verse-divider { width: 60px; height: 1px; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .cursor-glow { display: none; }
}
