.blaize-page {
    background: linear-gradient(-45deg, #0A2540 0%, #1E3D59 100%);
    min-height: calc(100vh - 86px);
    color: white;
}

.hero {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: min(5rem, 15vw);
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #60A5FA 0%,
        #7DD3FC 25%,
        #9fddfa 40%,
        #ffa42d 50%,
        #0EA5E9 75%,
        #60A5FA 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 8s ease infinite;
}

.hero-subtitle {
    font-size: min(2rem, 6vw);
    margin-bottom: 3rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.optional-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.waitlist-form input {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Style for optional fields */
.optional-fields input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
}

.waitlist-form input:focus {
    outline: none;
    border-color: #60A5FA;
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-form .cta-button {
    width: 100%;
    margin: 0;
}

.features {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #60A5FA, #0EA5E9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.how-it-works {
    padding: 6rem 2rem;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #60A5FA, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.pricing {
    padding: 6rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #60A5FA, #0EA5E9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.other-services {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    min-width: 280px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.total-price {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.strike-through {
    text-decoration: line-through;
    color: #FF6B6B;
}

.vs {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.blaize-price {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(14, 165, 233, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #60A5FA;
    min-width: 280px;
}

.blaize-price .service-name {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.blaize-price .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60A5FA;
    margin-bottom: 1rem;
}

.price-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .price-comparison {
        flex-direction: column;
        gap: 2rem;
    }

    .other-services, .blaize-price {
        width: 100%;
    }

    .vs {
        position: relative;
        text-align: center;
        opacity: 0.6;
    }

    .vs::before,
    .vs::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 30%;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

    .vs::before {
        right: 65%;
    }

    .vs::after {
        left: 65%;
    }
} 