html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;
    color: #20232a;

    background: #e8eaed;
}

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 2rem;
    box-sizing: border-box;

    background:
        linear-gradient(101.44deg,
            rgba(226, 139, 146, 0.48) 8%,
            rgba(207, 169, 126, 0.43) 35%,
            rgba(137, 158, 211, 0.48) 62%,
            rgba(120, 197, 218, 0.46) 82%,
            rgba(192, 192, 218, 0.38) 100%),
        #e8eaed;

    background-size: 160% 160%;
    background-position: 0% 0%;
}

.hero-logo {
    width: 220px;
    height: auto;
    margin-bottom: 1rem;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.75rem, 5vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero p {
    margin: 2rem 0 0;
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.about {
    min-height: 80vh;
    padding: 6rem 4rem;
    box-sizing: border-box;

    display: flex;
    align-items: center;

    background:
        linear-gradient(101.44deg,
            rgba(226, 139, 146, 0.48) 8%,
            rgba(207, 169, 126, 0.43) 35%,
            rgba(137, 158, 211, 0.48) 62%,
            rgba(120, 197, 218, 0.46) 82%,
            rgba(192, 192, 218, 0.38) 100%),
        #e8eaed;

    background-size: 160% 160%;
    background-position: 100% 100%;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin: 0 0 2rem;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
}

.about-content p {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.focus {
    padding: 6rem 2rem;

    background:
        linear-gradient(101.44deg,
            rgba(192, 192, 218, 0.38) 10%,
            rgba(120, 197, 218, 0.38) 35%,
            rgba(137, 158, 211, 0.34) 60%,
            rgba(207, 169, 126, 0.28) 85%),
        #e8eaed;

    background-size: 160% 160%;
    background-position: 50% 100%;
}

.focus-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.focus-logo {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.focus-card {
    padding: 3rem;

    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 18px;

    backdrop-filter: blur(8px);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(32, 35, 42, 0.12);
}

.focus-link {
    display: inline-block;
    margin-top: 1.5rem;

    color: #20232a;
    text-decoration: none;
    font-weight: 600;
}

.focus-link:hover {
    text-decoration: underline;
}


.focus-card h2 {
    margin-top: 0;
    margin-bottom: 1rem;

    font-size: 1.5rem;
}

.focus-card p {
    margin: 0;

    line-height: 1.7;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .focus-container {
        grid-template-columns: 1fr;
    }

    .focus {
        padding: 4rem 1.5rem;
    }

    .focus-card {
        padding: 2rem;
    }
}