/*---------- TO BE DELETED ----------*/
.work-in-progress {
    text-align: center;
    padding: 40px 20px;
    background: #fff3cd;
    border: 2px dashed #ffecb5;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 600px;
}

/* ---------- GLOBAL STYLES ---------- */
:root {
    --purple-dark: #4b136f;
    --purple: #6f2dbd;
    --purple-light: #9b6ddf;
    --green: #9fd356;
    --bg-light: #f6f7fb;
    --text-dark: #1f1f1f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ---------- NAVBAR ---------- */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 48px;
}

.navbar nav a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: var(--purple);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--green));
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(111, 45, 189, 0.3);
}

.btn-outline {
    border: 2px solid var(--purple);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--purple);
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background: var(--purple-light);
    color: white;
}

.btn-secondary {
    background: var(--purple-light);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px #9fd356;
}

/* ---------- HERO ---------- */

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

.hero-text {
    animation: fadeUp 0.8s ease forwards;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions a {
    margin-right: 16px;
    text-decoration: none;
}

/* ---------- VISUAL ---------- */

.hero-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    text-align: center;
    color: var(--purple-dark);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: floatIn 0.8s ease forwards;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(111, 45, 189, 0.25);
}

/* ---------- FEATURES ---------- */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px;
    gap: 40px;
    background: white;
}

.feature {
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
}

.feature h3 {
    color: var(--purple);
    margin-bottom: 12px;
}

.feature p {
    font-size: 15px;
}

/* ---------- FOOTER ---------- */

.footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    background: var(--bg-light);
}

/* ---------- ANIMATIONS ---------- */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 32px;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }

    .navbar nav a {
        margin-left: 12px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 24px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 30px;
    }

    .hero-actions a {
        display: block;
        margin: 12px 0;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }
}
