/* 
 * Convert Pro - landing.css
 * Premium Marketing Design System
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --brand: #7c3aed;
    --brand-glow: rgba(124, 58, 237, 0.5);
    --accent: #06b6d4;
    --bg: #030014;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── Background ────────────────────────────────────── */
.blob-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #1a0b3a 0%, #030014 100%);
}

.blob {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    filter: blur(80px); opacity: 0.4; animation: move 20s infinite alternate;
}

@keyframes move {
    from { transform: translate(-20%, -20%) rotate(0deg); }
    to { transform: translate(20%, 20%) rotate(360deg); }
}

/* ─── Header ────────────────────────────────────────── */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: var(--transition);
}

header.scrolled {
    background: rgba(3, 0, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

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

.logo {
    display: flex; align-items: center; gap: 12px;
    font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
}

.logo-icon {
    width: 40px; height: 40px; background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 20px var(--brand-glow);
}

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--text-dim); text-decoration: none; font-size: 15px; font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover { color: #fff; }

.btn-launch {
    background: #fff; color: #000; padding: 12px 24px; border-radius: 100px;
    font-weight: 700; text-decoration: none; transition: var(--transition);
    font-size: 14px;
}
.btn-launch:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
    padding: 180px 0 100px; text-align: center;
    position: relative;
}

.badge {
    display: inline-block; padding: 6px 16px; background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3); border-radius: 100px;
    color: var(--brand); font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 24px;
}

h1 {
    font-size: 72px; font-weight: 900; line-height: 1.1; letter-spacing: -2px;
    margin-bottom: 24px; background: linear-gradient(to bottom, #fff, #999);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

h1 span {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-p {
    font-size: 20px; color: var(--text-dim); max-width: 650px; margin: 0 auto 40px;
}

.hero-image-wrap {
    margin-top: 60px; position: relative; max-width: 1000px; margin-left: auto; margin-right: auto;
}

.hero-img {
    width: 100%; border-radius: 32px; border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.floating-card {
    position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 20px; padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); animation: float 6s infinite ease-in-out;
}

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

/* ─── Features ──────────────────────────────────────── */
.features { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }

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

.f-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px;
    padding: 40px; transition: var(--transition); position: relative; overflow: hidden;
}

.f-card:hover {
    background: rgba(255, 255, 255, 0.05); transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.4);
}

.f-icon {
    font-size: 32px; margin-bottom: 24px; color: var(--brand);
}

.f-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.f-card p { color: var(--text-dim); font-size: 15px; }

/* ─── Privacy ───────────────────────────────────────── */
.privacy {
    padding: 100px 0; background: rgba(124, 58, 237, 0.05);
    border-radius: 60px; margin: 0 30px; border: 1px solid rgba(124, 58, 237, 0.1);
}

.privacy-flex { display: flex; align-items: center; gap: 80px; }
.privacy-text { flex: 1; }
.privacy-visual { flex: 1; position: relative; }

.shield-icon {
    width: 200px; height: 200px; background: rgba(124, 58, 237, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 80px; border: 2px solid var(--brand); animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    70% { box-shadow: 0 0 0 60px rgba(124, 58, 237, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

/* ─── Footer ────────────────────────────────────────── */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border); margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }

.footer-logo { margin-bottom: 20px; }
.footer-p { color: var(--text-dim); font-size: 14px; max-width: 300px; }

.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }

.copyright {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 40px; border-top: 1px solid var(--border);
    color: var(--text-dim); font-size: 13px;
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
    h1 { font-size: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .privacy-flex { flex-direction: column; text-align: center; }
}
