:root {
    --bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --gradient-1: #8b5cf6;
    --gradient-2: #3b82f6;
}

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

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

h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 700; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; position: absolute; top: 0; width: 100%; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.logo-icon { width: 24px; height: 24px; background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)); border-radius: 6px; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a, .login { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .login:hover { color: var(--text-main); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }

/* Buttons */
.btn-primary {
    background: var(--text-main); color: white; padding: 0.6rem 1.2rem;
    border-radius: 8px; text-decoration: none; font-weight: 500;
    transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-secondary {
    background: white; color: var(--text-main); border: 1px solid #e2e8f0;
    padding: 0.6rem 1.2rem; border-radius: 8px; text-decoration: none; font-weight: 500;
    transition: all 0.2s; display: inline-block; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-secondary:hover { background: #f8fafc; border-color: #cbd5e1; }
.btn-lg { padding: 0.8rem 1.8rem; font-size: 1.05rem; }

/* Hero */
.hero {
    padding-top: 10rem; text-align: center; position: relative;
}
/* Blurred background blobs */
.blob { position: absolute; filter: blur(80px); opacity: 0.4; z-index: -1; border-radius: 50%; }
.blob-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: var(--gradient-1); }
.blob-2 { top: 200px; right: -100px; width: 500px; height: 500px; background: var(--gradient-2); }

.hero-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.pill { display: inline-block; background: #f1f5f9; color: var(--text-main); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 2rem; border: 1px solid #e2e8f0;}
.hero h1 { font-size: 5rem; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.6; }
.cta-group { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.micro-text { font-size: 0.85rem !important; color: #94a3b8 !important; }

/* Dashboard UI Mockup */
.hero-dashboard {
    max-width: 1000px; margin: 5rem auto 0; padding: 0 2rem;
    position: relative; perspective: 1000px;
}
.dash-header { background: #f1f5f9; padding: 12px 20px; border-radius: 12px 12px 0 0; display: flex; align-items: center; border: 1px solid #e2e8f0; border-bottom: none;}
.dash-header .dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; margin-right: 6px; }
.hero-dashboard img {
    width: 100%; border-radius: 0 0 12px 12px; border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transform: rotateX(5deg) translateY(-10px); transform-origin: top;
}

/* Logos */
.logos { text-align: center; padding: 6rem 5%; }
.logos p { font-size: 0.85rem; font-weight: 600; color: #94a3b8; margin-bottom: 2rem; letter-spacing: 1px; }
.logo-grid { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; opacity: 0.5; filter: grayscale(100%); }
.brand { font-size: 1.5rem; font-weight: 800; }

/* Features */
.features { padding: 5rem 5% 8rem; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 5rem; }
.section-title h2 { font-size: 3.5rem; }
.gradient-text { background: linear-gradient(to right, var(--gradient-1), var(--gradient-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.feature-card { padding: 2rem; }
.f-icon { width: 50px; height: 50px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.feature-card p { color: var(--text-muted); line-height: 1.6; }

/* CTA Bottom */
.cta-bottom { padding: 0 5% 8rem; max-width: 1200px; margin: 0 auto; }
.cta-box { background: var(--text-main); color: white; padding: 5rem 2rem; border-radius: 24px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 50%); z-index: 0; }
.cta-box h2 { position: relative; z-index: 1; font-size: 3rem; margin-bottom: 1rem; }
.cta-box p { position: relative; z-index: 1; color: #94a3b8; font-size: 1.2rem; margin-bottom: 2rem; }
.cta-box .btn-primary { position: relative; z-index: 1; background: white; color: var(--text-main); }
.cta-box .btn-primary:hover { background: #f1f5f9; }

/* Footer */
footer { border-top: 1px solid #e2e8f0; padding: 5rem 5% 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.col-brand p { color: var(--text-muted); margin-top: 1rem; font-size: 0.95rem; }
.col h4 { font-size: 0.95rem; margin-bottom: 1.5rem; }
.col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; font-size: 0.95rem; }
.col a:hover { color: var(--text-main); }
.footer-bottom { text-align: center; color: #94a3b8; font-size: 0.85rem; border-top: 1px solid #e2e8f0; padding-top: 2rem; }

@media (max-width: 900px) {
    .hero h1 { font-size: 3.5rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .col-brand { grid-column: span 2; }
    .nav-links, .nav-actions .login { display: none; }
}