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

:root {
    --orange: #F16718;
    --orange-light: #FF9B62;
    --dark: #162542;
    --mid: #7B8BAD;
    --light: #E8EFF2;
    --white: #FFFFFF;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}


/* ========
   NAVBAR
   ======== */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dark);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--mid);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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


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

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 3rem auto 4rem;
    padding: 0 2.5rem;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    max-width: 520px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mid);
    margin-bottom: 2.2rem;
    max-width: 400px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.25s, transform 0.15s;
}

.btn-primary:hover {
    background-color: var(--orange-light);
    transform: translateY(-2px);
}

.release-date {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--mid);
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Hero Image */

.hero-image {
    flex: 1;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--light);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange) 0%, transparent 60%);
    opacity: 0.08;
    z-index: 1;
    border-radius: 20px;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}


/* ===============
   FEATURES SECTION
   =============== */

.features {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2.5rem;
    gap: 3rem;
}

.feature-images {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.feat-img {
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.feat-img--1 {
    width: 130px;
    height: 160px;
    margin-top: 2rem;
}

.feat-img--2 {
    width: 200px;
    height: 220px;
}

.feature-text {
    max-width: 420px;
}

.feature-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.05;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--mid);
}


/* ==============
   SPECS SECTION
   ============== */

.specs {
    background-color: var(--dark);
    padding: 4rem 2.5rem;
}

.specs {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.spec-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    max-width: 280px;
    flex: 1;
    min-width: 220px;
    transition: background-color 0.25s, transform 0.2s;
}

.spec-card:hover {
    background-color: rgba(241, 103, 24, 0.15);
    transform: translateY(-4px);
}

.spec-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.spec-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.spec-card p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.65;
}


/* =================
   RESPONSIVE
   ================= */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 1.5rem;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image {
        max-width: 100%;
        width: 100%;
    }
    .features {
        flex-direction: column;
        align-items: flex-start;
    }
    .feature-images {
        width: 100%;
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
}