@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700;900&display=swap');

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: #ff6b2c;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #ff8547;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 44, 0.3);
}

.phone-mockup {
    text-align: center;
}

.phone-mockup img {
    max-width: 80%;
    height: auto;
    border-radius: 30px;

}

/* What's in it section */
.whats-in-it {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.whats-in-it h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.whats-in-it p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Coming Features */
.coming-features {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.coming-features h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 20px;
}

.feature-icon {
    background: #ff6b2c;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-text strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phone-mockup {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .whats-in-it h2,
    .coming-features h2 {
        font-size: 2.2rem;
    }
}