@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #ffffff;
    color: #1d1d1f;
    line-height: 1.65;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================
Navbar
============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;

    text-decoration: none;
    color: #1d1d1f;

}

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

    list-style: none;

}

.nav-links a {
    display: inline-block;

    padding: 6px 14px;

    text-decoration: none;

    font-size: 0.88rem;
    font-weight: 500;

    color: #6e6e73;

    border-radius: 999px;

    transition: all 0.2s ease;

}

.nav-links a:hover {
    color: #1d1d1f;
    background: #f0f0f2;
}

/* ============================================================
Hero
============================================================ */

.hero {
    padding: 100px 0 20px;
    background: #ffffff;
}

.hero-inner {
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    padding: 5px 14px;

    background: rgba(0, 113, 227, 0.08);
    color: #0071e3;

    border-radius: 999px;
    border: 1px solid rgba(0, 113, 227, 0.14);

    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;

}

.dot {
    width: 6px;
    height: 6px;

    background: #0071e3;
    border-radius: 50%;

}

.hero-name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 800;

    letter-spacing: -0.04em;
    line-height: 1.06;

    color: #1d1d1f;

    margin-bottom: 16px;

}

.description {
    max-width: 600px;

    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.7;

    color: #6e6e73;

}

/* ============================================================
Content
============================================================ */

.section {
    padding: 40px 0 80px;
}

.project-card {
    display: block;

    max-width: 850px;
    margin: 0 auto;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}

.project-content {
    padding: 40px;
}

.project-content h3 {
    margin-bottom: 20px;

    color: #1d1d1f;

    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;

}

.project-content p {
    margin-bottom: 20px;

    color: #424245;

    line-height: 1.8;

}

.project-content ul {
    margin-bottom: 20px;
    margin-left: 20px;

    list-style-type: disc;

}

.project-content li {
    margin-bottom: 8px;

    color: #424245;

    line-height: 1.8;

}

/* ============================================================
Footer
============================================================ */

.footer {
    padding: 120px 0 60px;

    text-align: center;

    background: #f5f5f7;

    border-top: 1px solid rgba(0, 0, 0, 0.05);

}

.footer .footer-brand {
    display: inline-block;

    margin-bottom: 40px;

    text-decoration: none;

    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;

    letter-spacing: -0.06em;
    line-height: 1;

    background: linear-gradient(180deg,
            #1d1d1f 0%,
            #434345 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.footer-nav {
    display: flex;
    justify-content: center;

    gap: 60px;

    margin-bottom: 60px;

}

.footer-col {
    display: flex;
    flex-direction: column;

    align-items: center;
    gap: 12px;

}

.footer-col a {
    text-decoration: none;

    color: #6e6e73;

    font-size: 0.9rem;
    font-weight: 500;

    transition: color 0.2s ease;

}

.footer-col a {
    color: #0071e3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 24px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);

    color: #86868b;
    font-size: 0.75rem;

}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer a,
.footer a:visited,
.footer a:active {
    color: #6e6e73;
    text-decoration: none;
}

.hamburger {
    display: none;
}