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

body {
    font-family: Inter, Arial, sans-serif;
    background: #111111;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 10%;
    border-bottom: 1px solid #222;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

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

    nav a {
        color: white;
        text-decoration: none;
        transition: .2s;
    }

        nav a:hover {
            color: #ffaa00;
        }

main {
    width: min(1200px, 90%);
    margin: auto;
}

.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    color: #ffaa00;
    font-weight: bold;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero span {
    color: #ffaa00;
}

.hero-description {
    max-width: 650px;
    color: #b5b5b5;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    background: #ffaa00;
    color: #111;
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: .2s;
}

    .button:hover {
        transform: translateY(-3px);
    }

.featured {
    margin-bottom: 100px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: white;
    font-family: Inter,Arial,sans-serif;
}

/* ---------- Header ---------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(0,0,0,.45);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

    .logo img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 2px solid #ffaa00;
    }

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

    nav a {
        color: white;
        text-decoration: none;
        transition: .25s;
    }

        nav a:hover {
            color: #ffaa00;
        }

/* ---------- Hero ---------- */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("/assets/images/seedmap.png") center center/cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,.70), rgba(0,0,0,.90) );
    backdrop-filter: blur(4px);
}

.hero-content {
    position: relative;
    width: min(1200px,90%);
    margin: auto;
}

.eyebrow {
    color: #ffaa00;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 72px;
    max-width: 850px;
    line-height: 1.05;
    margin-bottom: 28px;
}

.description {
    max-width: 700px;
    color: #c7c7c7;
    line-height: 1.7;
    font-size: 22px;
    margin-bottom: 40px;
}

/* ---------- Buttons ---------- */

.button {
    display: inline-block;
    padding: 16px 30px;
    background: #ffaa00;
    color: #111;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: .25s;
}

    .button:hover {
        transform: translateY(-3px);
    }

.secondary {
    background: #222;
    color: white;
}

/* ---------- Featured ---------- */

.featured {
    width: min(1200px,90%);
    margin: 120px auto;
}

    .featured h2 {
        font-size: 42px;
        margin-bottom: 35px;
    }

.project {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: #171717;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    padding: 45px;
}

    .project h3 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .project p {
        color: #b8b8b8;
        line-height: 1.8;
    }

    .featured h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

.project-card {
    background: #1b1b1b;
    border: 1px solid #2d2d2d;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

    .project-card p {
        color: #b5b5b5;
        line-height: 1.7;
    }
