* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #070707;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.75);
    backdrop-filter: blur(15px);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span,
h1 span,
h2 span {
    color: #a855f7;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hero {
    min-height: 100vh;
    padding: 180px 8% 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(168, 85, 247, 0.18),
            transparent 35%
        );
}

.eyebrow {
    color: #a855f7;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

h1 {
    font-size: clamp(60px, 9vw, 140px);
    line-height: 0.88;
    letter-spacing: -7px;
    max-width: 1100px;
}

.hero-description {
    margin-top: 35px;
    max-width: 520px;
    color: #999;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.primary {
    background: #a855f7;
    color: white;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.35);
}

.secondary {
    border: 1px solid #333;
    color: white;
}

.secondary:hover {
    border-color: #a855f7;
}

.section {
    padding: 140px 8%;
}

.section-heading p {
    color: #a855f7;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: clamp(45px, 6vw, 90px);
    letter-spacing: -4px;
}

.projects {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    cursor: pointer;
}

.project-placeholder {
    height: 400px;
    background: #111;
    border: 1px solid #222;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #555;
    transition: 0.4s;
}

.project-card:hover .project-placeholder {
    transform: scale(0.98);
    border-color: #a855f7;
    color: #a855f7;
}

.project-card h3 {
    margin-top: 18px;
    font-size: 22px;
}

.project-card p {
    margin-top: 8px;
    color: #666;
}

.about-text {
    max-width: 850px;
    margin-top: 60px;
    font-size: 32px;
    line-height: 1.4;
    color: #aaa;
}

.services {
    margin-top: 70px;
    border-top: 1px solid #222;
}

.service {
    padding: 40px 0;
    border-bottom: 1px solid #222;

    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: center;
}

.service span {
    color: #a855f7;
}

.service h3 {
    font-size: 28px;
}

.service p {
    color: #777;
}

.contact {
    padding: 180px 8%;
    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(168, 85, 247, 0.15),
            transparent 45%
        );
}

.contact > p {
    color: #a855f7;
    letter-spacing: 3px;
}

.contact h2 {
    margin: 30px 0 50px;
    font-size: clamp(55px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
}

footer {
    padding: 30px 8%;
    border-top: 1px solid #222;
    color: #555;
    font-size: 13px;
}


@media (max-width: 768px) {

    nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 150px 6% 80px;
    }

    h1 {
        letter-spacing: -4px;
    }

    .projects {
        grid-template-columns: 1fr;
    }

    .project-placeholder {
        height: 280px;
    }

    .service {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .service p {
        grid-column: 2;
    }

    .about-text {
        font-size: 23px;
    }

    .section {
        padding: 100px 6%;
    }

    .contact {
        padding: 120px 6%;
    }
}