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

:root {
    --green: #00D632;
    --green-dark: #00B82B;
    --green-glow: rgba(0, 214, 50, 0.15);
    --bg: #0a0e14;
    --bg-card: #111820;
    --bg-card-hover: #161e28;
    --text: #e8ecf1;
    --text-muted: #8a96a5;
    --border: rgba(255,255,255,0.06);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,214,50,0.07) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #fff;
}

.highlight {
    color: var(--green);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 32px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--green);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    box-shadow: 0 4px 24px rgba(0, 214, 50, 0.25);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 214, 50, 0.35);
    background: var(--green-dark);
}

.btn-download:active {
    transform: translateY(0);
}

.trust-row {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image {
    flex: 0 0 420px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--green), transparent 60%);
    border-radius: 26px;
    opacity: 0.3;
    z-index: 0;
}

.stats {
    padding: 0 0 64px;
}

.stats-inner {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-card {
    flex: 1;
    max-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
}

.stat-card:hover {
    border-color: rgba(0, 214, 50, 0.2);
    transform: translateY(-3px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 214, 50, 0.08);
    border-radius: 50%;
    margin: 0 auto 14px;
}

.stat-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cta {
    padding: 80px 0;
}

.cta-inner {
    text-align: center;
    background: linear-gradient(135deg, rgba(0,214,50,0.06) 0%, rgba(0,214,50,0.02) 100%);
    border: 1px solid rgba(0,214,50,0.12);
    border-radius: 24px;
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,214,50,0.1) 0%, transparent 70%);
    top: -100px;
    right: -80px;
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;
}

.cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.btn-cta {
    margin: 0 auto;
}

.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .trust-row {
        justify-content: center;
    }
    .hero-image {
        flex: none;
        max-width: 340px;
        margin: 0 auto;
    }
    .stats-inner {
        flex-direction: column;
        align-items: center;
    }
    .stat-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 48px;
    }
    .trust-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-left {
        flex-direction: column;
        gap: 4px;
    }
    .cta-inner {
        padding: 40px 20px;
    }
}
