* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #0f0f1a;
    color: white;
    overflow-x: hidden;
}

/* Ticker */
#crypto-ticker {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a2e;
}
.ticker-wrap { overflow: hidden; white-space: nowrap; }
.ticker {
    display: inline-block;
    animation: scroll 40s linear infinite;
}
.ticker span {
    margin: 0 40px;
    font-size: 14px;
    font-weight: 500;
}
.green { color: #00ff9d; }
.red { color: #ff006e; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
}
#particles-js {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.hero-content {
    max-width: 600px;
    z-index: 2;
}
.badge {
    display: inline-block;
    background: #00d4ff;
    color: black;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}
h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(90deg, #00d4ff, #00ff9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-primary {
    background: #00d4ff;
    color: black;
}
.btn-primary:hover { background: #00ff9d; transform: translateY(-3px); }
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #00d4ff;
}
.btn-secondary:hover { background: #00d4ff; color: black; }

/* Chart */
.hero-chart {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    z-index: 1;
}
.hero-chart img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

/* Funded By */
.funded-section {
    padding: 100px 5%;
    background: white;
    color: #333;
    text-align: center;
}
.funded-title {
    font-size: 2rem;
    margin-bottom: 60px;
    color: #555;
}
.funded-logos {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}
.logo-item {
    text-align: center;
    max-width: 200px;
}
.logo-item img {
    height: 80px;
    margin-bottom: 15px;
}
.logo-item p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-chart { display: none; }
    h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}.remedy-navbar {
    background: #0d0d1a;
    padding: 20px 5%;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 99999;
    border-bottom: 1px solid #1a1a2e;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo h2 { font-size: 2rem; font-weight: 900; margin: 0; }
.nav-logo small { color: #666; font-size: 0.8rem; display: block; margin-top: 4px; }
.nav-menu { display: flex; gap: 40px; align-items: center; }
.nav-menu a { color: white; text-decoration: none; font-weight: 500; font-size: 1rem; }
.nav-auth .btn-login { color: white; margin-right: 15px; font-weight: 600; }
.nav-auth .btn-signup {
    background: #00d4ff;
    color: black;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}
#crypto-ticker {
    background: #000;
    padding: 15px 0;
    margin-top: 88px;
    text-align: center;
}
.ticker span { margin: 0 45px; font-family: 'Courier New', monospace; font-size: 15px; }
.green { color: #00ff9d; } .flat { color: #888; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker { display: inline-block; animation: scroll 40s linear infinite; }
