:root {
    --background: #0b0d12;
    --surface: #131722;
    --surface-hover: #191e2b;
    --text: #f4f6fb;
    --muted: #9aa3b2;
    --accent: #7c5cff;
    --border: #252b38;
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 10;

    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}


.navbar {
    width: min(1100px, 90%);
    margin: auto;

    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    font-size: 1.2rem;
    font-weight: 700;
}


.nav-links {
    display: flex;
    gap: 28px;

    color: var(--muted);
}


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


.hero {
    width: min(900px, 90%);
    margin: auto;

    min-height: 75vh;

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


.eyebrow {
    margin-bottom: 14px;

    color: var(--accent);

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}


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


.hero-description {
    max-width: 650px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 1.15rem;
}


.primary-button {
    display: inline-block;

    margin-top: 30px;
    padding: 12px 20px;

    background: var(--accent);

    border-radius: 8px;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.primary-button:hover {
    transform: translateY(-2px);
    background: #8d73ff;
}


.section {
    width: min(900px, 90%);
    margin: auto;

    padding: 100px 0;
}


.section-heading {
    margin-bottom: 40px;
}


.section-heading h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
}


.project-card {
    padding: 32px;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 16px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.project-card:hover {
    transform: translateY(-4px);
    background: var(--surface-hover);
}


.project-label {
    margin-bottom: 10px;

    color: var(--accent);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.1em;
}


.project-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}


.project-card p {
    color: var(--muted);
}


.project-actions {
    margin-top: 10px;
}


.about {
    max-width: 900px;
}


.about > p {
    max-width: 650px;

    color: var(--muted);

    font-size: 1.1rem;
}


.site-footer {
    width: min(900px, 90%);
    margin: auto;

    padding: 40px 0;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 0.9rem;

    display: flex;
    justify-content: space-between;
    gap: 20px;
}


@media (max-width: 650px) {

    .nav-links {
        display: none;
    }


    .hero {
        min-height: 70vh;
    }


    .project-card {
        padding: 24px;
    }


    .site-footer {
        flex-direction: column;
    }

    .legal-content {
    max-width: 780px;
    }

    .legal-content h2 {
        margin-top: 48px;
        margin-bottom: 14px;

        font-size: 1.6rem;
    }

    .legal-content h3 {
        margin-top: 30px;
        margin-bottom: 10px;

        font-size: 1.2rem;
    }

    .legal-content p {
        margin-bottom: 18px;

        color: var(--muted);
    }

    .legal-content a {
        color: var(--accent);
    }

    .legal-content a:hover {
        text-decoration: underline;
    }

}