:root {
    --primary: #7C4DFF;
    --primary-dark: #651FFF;
    --secondary: #E040FB;
    --bg-surface: #ffffff;
    --bg-subtle: #f8f9fc;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --gradient-hero: linear-gradient(135deg, #FFF0F5 0%, #F3E5F5 50%, #E8EAF6 100%);
    --gradient-primary: linear-gradient(135deg, #E040FB 0%, #7C4DFF 100%);
}

body.landing-page {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-surface);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.landing-page .text-muted {
    color: var(--text-muted) !important;
}

/* Navbar */
.landing-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.landing-nav .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.landing-nav .nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 64, 251, 0.15) 0%, rgba(124, 77, 255, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #212121, #4527a0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Features */
.feature-card {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.5rem;
    background: rgba(124, 77, 255, 0.1);
    color: var(--primary);
}

/* Use Cases */
.use-case-section {
    padding: 100px 0;
    background: var(--bg-subtle);
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* Footer */
.landing-footer {
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

/* Utilities */
.tracking-tight {
    letter-spacing: -0.03em;
}

/* Video Showcase Frame */
.video-frame {
    background: white;
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.video-frame img {
    border-radius: 12px;
    width: 100%;
}