* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body {
    background-color: #0b0f14;
    color: #e6e6e6;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: #05070a;
    border-bottom: 1px solid #1a1f2b;
}

.logo {
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar nav a {
    color: #cfd8ff;
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
}

.navbar nav a:hover {
    color: #ffffff;
}

/* HERO */
.hero {
    height: 70vh;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.8)
    ), url("assets/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    color: #d0d6ff;
}

/* SECTIONS */
.section {
    padding: 80px 60px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section p, .section li {
    max-width: 800px;
    font-size: 16px;
}

.section ul {
    list-style: square;
    padding-left: 20px;
}

.dark {
    background: #05070a;
}

/* SPECS GRID */
.spec-grid {
    display: grid;
    grid-template-columns: 200px auto;
    gap: 12px 40px;
    max-width: 600px;
    margin-top: 30px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 24px;
    background: #05070a;
    font-size: 14px;
    color: #8892b0;
}
