@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --green: #00e676;
    --red: #ff1744;
    --gold: #ffd600;
    --dark: #0a0e1a;
    --dark2: #111827;
    --dark3: #1a2235;
    --border: rgba(255,255,255,0.08);
    --text: #e2e8f0;
    --muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 0;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span { color: var(--green); }

.nav-cta {
    background: var(--green);
    color: var(--dark);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
}

.hero-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0,230,118,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(0,100,255,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.ticker-tape {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    padding: 0.4rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    z-index: 99;
}

.ticker-inner {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

.hero-content { flex: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.3);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,23,68,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(255,23,68,0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero h1 span { color: var(--green); }

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--green);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,230,118,0.3); }
.btn-primary.large { padding: 1.2rem 3rem; font-size: 1.1rem; }

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.stat-pct { font-size: 2.2rem; font-weight: 900; color: var(--green); }

.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }

/* CHART CARD */
.hero-visual { flex: 0 0 380px; }

.charts-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.charts-row .chart-card {
    flex: 1;
}

.chart-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.asset { font-weight: 700; font-size: 1rem; }
.green { color: var(--green); }
.red { color: var(--red); }

.live-dot {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.chart-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.trade-signal {
    flex: 1;
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.trade-signal.buy { background: rgba(0,230,118,0.15); color: var(--green); border: 1px solid rgba(0,230,118,0.3); }
.trade-signal.sell { background: rgba(255,214,0,0.1); color: var(--gold); border: 1px solid rgba(255,214,0,0.3); }

/* SECTIONS */
.section { padding: 6rem 2rem; }
.section.dark { background: var(--dark2); }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-container.narrow { max-width: 760px; }

.section-tag {
    display: inline-block;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section h2 span { color: var(--green); }

.section-sub {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.step {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s;
}

.step:hover { border-color: var(--green); }

.step-num {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
}

.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.benefit-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.benefit-card:hover { border-color: rgba(0,230,118,0.3); transform: translateY(-4px); }
.benefit-card.featured { border-color: var(--green); grid-column: span 1; }

.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* TESTIMONIALS */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.testimonial {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial p { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }

.author { display: flex; align-items: center; gap: 1rem; }

.avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), #00b0ff);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem; color: var(--dark);
    flex-shrink: 0;
}

.author strong { display: block; font-size: 0.95rem; }
.author span { font-size: 0.8rem; color: var(--muted); }

/* PLANS */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
    align-items: start;
}

.plan {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.plan.featured {
    border-color: var(--green);
    box-shadow: 0 0 40px rgba(0,230,118,0.1);
}

.plan-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name { font-size: 1rem; font-weight: 600; color: var(--muted); margin-bottom: 1rem; }

.plan-price {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.plan-price span { font-size: 3rem; font-weight: 900; color: white; }
.plan-price small { font-size: 0.9rem; }

.plan-economy {
    display: inline-block;
    background: rgba(0,230,118,0.1);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--muted);
}

.plan-features li:last-child { border-bottom: none; }

.btn-plan {
    display: block;
    text-align: center;
    padding: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    color: var(--text);
    transition: all 0.2s;
}

.btn-plan:hover { border-color: var(--green); color: var(--green); }
.btn-plan.primary { background: var(--green); color: var(--dark); border-color: var(--green); }
.btn-plan.primary:hover { opacity: 0.9; color: var(--dark); }

/* FAQ */
.faq-list { margin-top: 3rem; text-align: left; }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.5rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--green); transition: transform 0.3s; }
.faq-q.open::after { transform: rotate(45deg); }

.faq-a {
    color: var(--muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 0.95rem;
}

.faq-a.open { max-height: 200px; padding-bottom: 1.5rem; }

/* FOOTER CTA */
.footer-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0,230,118,0.08) 0%, rgba(0,100,255,0.08) 100%);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-cta h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
.footer-cta p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* FOOTER */
.footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer p { color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem; }
.footer .disclaimer { font-size: 0.75rem; margin-top: 0.5rem; opacity: 0.6; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero { flex-direction: column; padding-top: 7rem; gap: 3rem; }
    .hero-visual { width: 100%; }
    .chart-card { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 600px) {
    .hero-stats { gap: 1.5rem; }
    .plans { grid-template-columns: 1fr; }
    .section { padding: 4rem 1.5rem; }
}
