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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #f5f5f5;
    line-height: 1.6;
}


/* =========================
   NAVIGATION
   ========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

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

    padding: 22px 7%;

    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid #1c1c1c;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: #8b5cf6;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;

    transition: 0.2s;
}

nav a:hover {
    color: white;
}


/* =========================
   HERO SECTION
   ========================= */

.hero {
    min-height: 90vh;

    display: flex;
    align-items: center;

    padding: 100px 7%;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(139, 92, 246, 0.15),
            transparent 35%
        );
}

.hero-content {
    max-width: 900px;
}

.eyebrow {
    color: #8b5cf6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 25px;
}

h1 {
    font-size: clamp(50px, 8vw, 100px);
    line-height: 0.98;
    letter-spacing: -5px;

    margin-bottom: 35px;
}

h1 span {
    display: block;
    color: #8b5cf6;
}

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

    color: #aaa;
    font-size: 19px;

    margin-bottom: 40px;
}


/* =========================
   BUTTONS
   ========================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;

    padding: 13px 22px;

    text-decoration: none;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.2s;
}

.primary {
    background: #8b5cf6;
    color: white;
}

.primary:hover {
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid #333;
    color: white;
}

.secondary:hover {
    background: #151515;
}


/* =========================
   GENERAL SECTIONS
   ========================= */

.section {
    padding: 120px 7%;

    border-top: 1px solid #1c1c1c;
}

.section-content {
    max-width: 1100px;
    margin: auto;
}

.section-label {
    color: #777;

    font-size: 12px;
    letter-spacing: 3px;

    margin-bottom: 25px;
}

h2 {
    font-size: clamp(36px, 5vw, 65px);
    line-height: 1.05;

    margin-bottom: 25px;

    letter-spacing: -2px;
}

.section-content > p:not(.section-label) {
    max-width: 700px;

    color: #999;

    font-size: 18px;
}


/* =========================
   PROJECTS
   ========================= */

.project-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 60px;
}

.project-card {
    padding: 35px;

    min-height: 300px;

    background: #0b0b0b;

    border: 1px solid #202020;

    border-radius: 10px;

    transition: 0.25s;
}

.project-card:hover {
    transform: translateY(-5px);

    border-color: #8b5cf6;
}

.project-number {
    color: #666;

    font-size: 13px;

    margin-bottom: 50px;
}

.project-card h3 {
    font-size: 25px;

    margin-bottom: 15px;
}

.project-card p {
    color: #888;

    font-size: 15px;

    margin-bottom: 25px;
}

.status {
    display: inline-block;

    color: #8b5cf6;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================
   CONTACT
   ========================= */

.contact {
    min-height: 60vh;

    display: flex;
    align-items: center;
}


/* =========================
   FOOTER
   ========================= */

footer {
    display: flex;
    justify-content: space-between;

    padding: 30px 7%;

    border-top: 1px solid #1c1c1c;

    color: #666;

    font-size: 12px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

    nav {
        display: none;
    }

    h1 {
        letter-spacing: -3px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 10px;
    }

}
