/* ====== LANDING PAGE STYLES (v2 — Light Theme) ====== */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #f6f5fb;
    color: #1a1a23;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Navigation ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 40px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #ececf2;
    z-index: 100;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 20px; color: #1a1a23;
}

.nav-logo-mark {
    font-size: 24px;
    background: linear-gradient(135deg, #6a4dff, #9b7aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex; align-items: center; gap: 28px;
}

.nav-links a {
    text-decoration: none; color: #6a6a78; font-size: 14px;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: #1a1a23; }

.nav-cta {
    background: #6a4dff !important; color: #fff !important;
    padding: 8px 20px; border-radius: 8px;
    transition: background 0.2s;
}
.nav-cta:hover { background: #5a3ee6 !important; }

/* ── Hero ── */
.hero {
    display: flex; align-items: center; justify-content: space-between;
    gap: 60px; padding: 140px 40px 80px;
    max-width: 1200px; margin: 0 auto;
}

.hero-content { flex: 1; max-width: 600px; }

.hero-title {
    font-size: 48px; font-weight: 700; line-height: 1.15;
    color: #1a1a23; margin-bottom: 20px;
}

.hero-highlight {
    background: linear-gradient(135deg, #6a4dff, #9b7aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px; line-height: 1.6; color: #6a6a78;
    margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; }

.btn {
    display: inline-flex; align-items: center;
    padding: 12px 24px; border-radius: 10px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    border: none; transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: #6a4dff; color: #fff;
}
.btn-primary:hover { background: #5a3ee6; transform: translateY(-1px); }

.btn-secondary {
    background: #fff; color: #6a4dff;
    border: 1.5px solid #6a4dff;
}
.btn-secondary:hover { background: #efeaff; }

/* Hero visual card */
.hero-visual { flex: 1; display: flex; justify-content: center; }

.hero-card {
    background: #fff; border-radius: 20px; padding: 40px;
    box-shadow: 0 12px 40px rgba(38,22,96,0.08);
    border: 1px solid #ececf2;
}

.hero-card-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}

.hero-stat {
    display: flex; flex-direction: column; align-items: center;
}

.hero-stat-num {
    font-size: 36px; font-weight: 700;
    background: linear-gradient(135deg, #6a4dff, #9b7aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    font-size: 13px; color: #9a98a8; font-weight: 500;
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav { padding: 12px 20px; }
    .nav-links { display: none; }
    .hero {
        flex-direction: column; padding: 100px 20px 40px;
        gap: 40px; text-align: center;
    }
    .hero-title { font-size: 32px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-visual { width: 100%; }
    .hero-card { width: 100%; }
}
