/* preorder.css - Styling for the Pre-Order Conversion Section */

/* Global Pre-Order Styling */
.preorder-section {
    padding: 120px 10%;
    background-color: var(--bg-color); /* Deep black/blue inherited */
    color: var(--text-primary);
    position: relative;
    z-index: 20;
    font-family: 'Outfit', sans-serif;
}

/* Base Utility */
.massive-cta, .giant-cta, .pricing-cta {
    display: inline-block;
    padding: 20px 45px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
}

.massive-cta:hover, .giant-cta:hover, .pricing-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.6);
}

/* --- SECTION 1: HERO (CONVERSION) --- */
.preorder-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #000000;
}

.preorder-hero-content {
    flex: 1;
}

.preorder-headline {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preorder-subtext {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.early-access-note {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ffcc00;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.preorder-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.preorder-product-glow {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 0 100px rgba(0, 200, 255, 0.3), inset 0 0 50px rgba(0, 200, 255, 0.1);
    animation: slowPulseBlue 4s infinite alternate;
}

@keyframes slowPulseBlue {
    0% { box-shadow: 0 0 80px rgba(0, 200, 255, 0.2), inset 0 0 40px rgba(0, 200, 255, 0.1); }
    100% { box-shadow: 0 0 120px rgba(0, 200, 255, 0.5), inset 0 0 60px rgba(0, 200, 255, 0.2); }
}

/* --- SECTION 2, 3 & 8: GRIDS (WHY, EARLY, TRUST) --- */
.preorder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.preorder-card, .trust-card {
    background: rgba(15, 15, 15, 0.8);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, background 0.4s ease;
}

.preorder-card:hover, .trust-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 25, 25, 1);
}

.preorder-card .icon, .trust-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.preorder-card h3, .trust-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* SECTION 3: EARLY ACCESS GOLD GLOW */
.gold-glow {
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 204, 0, 0.05);
}

.gold-glow:hover {
    border-color: rgba(255, 204, 0, 0.8);
    box-shadow: 0 15px 50px rgba(255, 204, 0, 0.2);
}

/* --- SECTION 4: PRICING --- */
.pricing-section {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    background: rgba(20, 20, 25, 1);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 40px;
    padding: 60px 80px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 20px 80px rgba(0, 240, 255, 0.15);
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.early-price {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.early-price span {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.save-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 204, 0, 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

/* --- SECTION 5: URGENCY --- */
.urgency-section {
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

.urgency-banner {
    background: rgba(255, 50, 50, 0.1);
    border: 2px solid rgba(255, 50, 50, 0.5);
    padding: 40px 80px;
    border-radius: 20px;
    text-align: center;
    animation: pulseWarning 2s infinite alternate;
}

.urgency-banner h2 {
    font-size: 2rem;
    color: #ff5555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.urgency-banner p {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.units-left {
    font-weight: 800;
    color: #ffcc00;
    font-size: 2rem;
}

@keyframes pulseWarning {
    0% { box-shadow: 0 0 20px rgba(255, 50, 50, 0.2); }
    100% { box-shadow: 0 0 60px rgba(255, 50, 50, 0.6); }
}

/* --- SECTION 6: WHAT YOU GET --- */
.whats-included {
    background: linear-gradient(180deg, #000 0%, var(--bg-color) 100%);
    text-align: center;
}

.preorder-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.preorder-list li {
    font-size: 1.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.preorder-list li span {
    font-size: 2rem;
}

/* --- SECTION 7: COMPATIBILITY --- */
.compatibility-section {
    background: #000;
}

.compatibility-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.comp-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- SECTION 9: FINAL CTA --- */
.final-cta-section {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, #000 70%);
}

.massive-headline {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.final-subtext {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 900px) {
    .preorder-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .preorder-headline, .massive-headline {
        font-size: 3.5rem;
    }
    
    .pricing-card {
        padding: 40px 20px;
    }
    
    .early-price span {
        font-size: 3rem;
    }
    
    .urgency-banner {
        padding: 30px 20px;
    }
}
