:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --bg-light: #F8F9FF;
    --text-dark: #1B2C41;
    --text-gray: #6B7280;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

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

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

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Navbar */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(248, 249, 255, 0.8);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 12px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    transition: 0.3s;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #000;
    border: 12px solid #1a1a1a;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary), #8E85FF);
    filter: blur(60px);
    opacity: 0.2;
    border-radius: 50%;
}

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

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}

.feature-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 24px;
}

/* Showcase Grid (3+2) */
.showcase {
    padding: 100px 0;
    background: #fff;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.ss-container {
    width: 260px;
    padding: 16px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ss-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.ss-container img {
    width: 100%;
    border-radius: 32px;
    margin-bottom: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 4px solid #f0f0f0;
}

.ss-container span {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 16px;
    display: block;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Privacy Banner */
.privacy-banner {
    padding: 60px;
    margin-top: 60px;
    text-align: center;
}

.privacy-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.privacy-banner p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 32px;
}

.rejoice-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #F1F3F9;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
}

.footer-copy {
    color: var(--text-gray);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p {
        margin: 0 auto 40px;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .showcase-row {
        flex-wrap: wrap;
    }
    .ss-container {
        width: 45%;
    }
}
