:root {
    --violet-primary: #7c3aed;
    --violet-dark: #6d28d9;
    --violet-soft: #f5f3ff;
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-body: #fdfdfd;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography */
.fw-800 { font-weight: 800; }
.text-violet { color: var(--violet-primary); }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.brand-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--violet-primary);
    border-radius: 50%;
    margin-right: 5px;
}

.nav-link {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Buttons */
.btn-violet-outline {
    border: 2px solid var(--violet-primary);
    color: var(--violet-primary);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-violet-outline:hover {
    background: var(--violet-primary);
    color: white;
}

.btn-violet-lg {
    background: var(--violet-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
}

.btn-light-lg {
    background: var(--white);
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, var(--violet-soft), transparent 40%);
}

.badge-new {
    display: inline-block;
    padding: 6px 16px;
    background: var(--violet-soft);
    color: var(--violet-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-image-container {
    position: relative;
}

.mockup-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}