/* ================= VARIABLES ================= */
:root {
    --bg-body: #ffffff;
    --bg-light: #f8f9fc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --primary: #FF6B35;
    --primary-hover: #e85d2a;
    --secondary: #2D3142;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= LAYOUT ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-header p {
    color: var(--text-muted);
    margin-top: 10px;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo i,
.highlight {
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-main);
}

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

/* ================= BUTTONS ================= */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #e2e8f0;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: var(--text-main);
}

.btn-secondary:hover {
    background: #f1f5f9;
}

/* ================= HERO ================= */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--secondary);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 20px 0;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

/* ================= SOCIAL ================= */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-proof a {
    font-size: 1.2rem;
    color: var(--text-main);
}

.social-proof a:hover {
    color: var(--primary);
}

/* ================= TRUST ================= */
.trust-metrics {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.trust-metrics strong {
    font-size: 1.5rem;
}

/* ================= HERO VISUAL ================= */
.hero-visual {
    position: relative;
    height: 400px;
}

.circle-bg {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0e6, #fff);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.floating-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 15px;
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

.card-1 { top: 10%; right: 10%; }
.card-2 { bottom: 20%; left: 0; animation-delay: 2s; }

/* ================= FEATURES ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid #eee;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.orange { background: #fff0e6; color: var(--primary); }
.blue { background: #e0f2fe; color: var(--accent-blue); }
.purple { background: #f3e8ff; color: var(--accent-purple); }

/* ================= TOKENOMICS ================= */
.token-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.legend {
    list-style: none;
    margin-top: 20px;
}

.legend li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.c1 { background: var(--primary); }
.c2 { background: var(--secondary); }
.c3 { background: var(--accent-blue); }
.c4 { background: var(--accent-purple); }
.c5 { background: #10b981; }

.bar-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bar {
    height: 40px;
    border-radius: 8px;
    width: 0;
    position: relative;
}

.bar span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
}

.b1 { background: var(--primary); }
.b2 { background: var(--secondary); }
.b3 { background: var(--accent-blue); }
.b4 { background: var(--accent-purple); }
.b5 { background: #10b981; }

/* ================= FAQ ================= */
.faq-grid {
    max-width: 800px;
    margin: auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ================= FOOTER ================= */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 20px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    padding: 15px 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
}

.social-card:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #94a3b8;
}

/* ================= ANIMATIONS ================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes grow {
    from { width: 0; }
}

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

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero-grid,
    .token-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual,
    .nav-links {
        display: none;
    }

    .trust-metrics {
        justify-content: center;
    }
}
