:root {
    --bg: #f8fafc;
    --card: #ffffff;
    --muted: #64748b;
    --accent: #3b82f6;
    --shadow: rgba(15, 23, 42, 0.08);
    --highlight: #eff6ff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
}

body {
    margin: 0;
    background: var(--bg);
    color: #0f172a;
    line-height: 1.5;
    overflow-x: hidden;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-child(even) {
    flex-direction: row-reverse;
    background: #f1f5f9;
}

.text {
    flex: 1 1 460px;
}

.text h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.text p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 10px;
}

.visual {
    flex: 1 1 460px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px var(--shadow);
    display: grid;
    place-items: center;
    background: #e2e8f0;
}

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




.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;

    flex-wrap: wrap;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.hero-left p {
    font-size: 18px;
    color: #475569;
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.5;
}


/* 🎨 Workflow Graphic */
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;



    /* Image styling */
    .hero-graphic {
        width: 100%;
        max-width: 420px;
        height: auto;
        display: block;
        border-radius: 16px;

        /* optional shadow to lift the graphic */
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */

        /* smooth scaling */
        transition: transform 0.3s ease;
    }

    .hero-graphic:hover {
        transform: translateY(-4px);
    }

    /* Responsive layout */
    @media (max-width: 900px) {
        .hero {
            flex-direction: column;
            text-align: center;
        }

        .hero-left {
            order: 1;
        }

        .hero-right {
            order: 2;
            margin-top: 30px;
        }

        .hero-graphic {
            max-width: 320px;
        }
    }

}





/* 🎴 Hero section ends */



.micro-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.micro-benefits.visible {
    opacity: 1;
    transform: translateY(0);
}

.micro-benefit {
    text-align: center;
    max-width: 220px;
}

.micro-benefit h4 {
    margin: 10px 0 6px;
    color: #0f172a;
}

.micro-benefit p {
    color: var(--muted);
    font-size: 14px;
}




footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 36px;
    }

    .section {
        flex-direction: column;
        padding: 60px 16px;
    }

    .text h2 {
        font-size: 26px;
    }

    .visual {
        height: 260px;
    }
}

@media (max-width: 600px) {

    .hero p {
        font-size: 16px;
    }
}

.feature-section--graphic-content {
    position: relative;
    padding: 0 var(--spacing__xlarge);
    overflow: hidden;
    min-width: 450px;
    max-width: 100%;
}

@media (max-width: 600px) {
    header {
        padding: 16px 20px;
    }

    nav {
        display: none;
    }

    .hero p {
        font-size: 16px;
    }

    .feature-section--graphic-content {
        position: relative;
        padding: 0 var(--spacing__xlarge);
        overflow: hidden;
        min-width: unset;
        max-width: 100%;
    }
}

.new-project-screenshot {
    width: 200px;
    position: absolute;
    top: 100px;
    left: 150px;
    box-shadow: 0 0 20px 0 #0002;
}

.new-workflow-screenshot {

    width: 300px;
    box-shadow: 0 0 20px 0 #0002;
}



.founder-assurance {
    width: 100%;
    padding: 70px 20px;
    background: #f8fafc;
    /* soft neutral to stand out gently */
    border-radius: 16px;
    margin: 60px auto;
}

.assurance-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.founder-assurance h2 {
    font-size: 30px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.founder-assurance p {
    font-size: 18px;
    color: #475569;
    line-height: 1.55;
    max-width: 650px;
    margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .founder-assurance {
        padding: 50px 16px;
        margin: 40px 0;
    }

    .founder-assurance h2 {
        font-size: 24px;
    }

    .founder-assurance p {
        font-size: 16px;
    }
}

.cta-section {
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    padding: 100px 20px;
    background: var(--card);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;

    &.visible {
        opacity: 1;
        transform: translateY(0);
    }

    h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    p {
        color: var(--muted);
        font-size: 16px;
        margin-bottom: 24px;
    }
}