
:root {
    --primary: #F26B21;
    --primary-light: #fff7f3;
    --bg-light: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body { 
    background-color: var(--bg-light); 
    color: var(--text-main); 
    margin: 0;
    padding: 0;
}




.ambient-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at top right, #ffffff 0%, #f8fafc 100%);
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}
.orb-1 { width: 40vw; height: 40vw; background: rgba(242, 107, 33, 0.08); top: -10%; left: -10%; }
.orb-2 { width: 50vw; height: 50vw; background: rgba(15, 23, 42, 0.03); bottom: -20%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: rgba(242, 107, 33, 0.05); top: 40%; left: 50%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.05); }
}


.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.logo-wrapper {
    background: var(--surface);
    padding: 16px 40px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    border: 1px solid var(--border);
}
.brand-logo { height: 45px; width: auto; object-fit: contain; mix-blend-mode: multiply; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface);
    color: var(--primary);
    border: 1px solid rgba(242, 107, 33, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(242, 107, 33, 0.05);
}
.badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }


h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-main);
}
h1 span { color: var(--primary); }

p.subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 500;
}

/* Forms */
.waitlist-form { width: 100%; max-width: 550px; margin: 0 auto 60px; position: relative; }

.input-group {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.input-group:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(242, 107, 33, 0.1); }
.input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: var(--text-main);
    font-size: 16px;
    outline: none;
    font-weight: 500;
}
.input-group input::placeholder { color: #94a3b8; font-weight: 400; }

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0 32px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit:hover { background: #d95a1a; transform: translateY(-2px); box-shadow: 0 8px 15px rgba(242, 107, 33, 0.2); }
.btn-submit:disabled { background: #cbd5e1; cursor: not-allowed; transform: none; box-shadow: none; }

/* Alerts */
.form-message {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    display: none;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}
.form-message.success { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; display: block; }
.form-message.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }


.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(242, 107, 33, 0.3); box-shadow: 0 12px 25px rgba(242, 107, 33, 0.08); }
.feature-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--text-main); }
.feature-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* Footer */
.footer {
    text-align: center;
    padding: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-weight: 500;
    width: 100%;
    margin-top: auto; 
}
.footer span { color: var(--text-main); font-weight: 700; }


#downloadPageBtn {
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background: var(--text-main); 
    color: #fff; 
    border: none; 
    padding: 14px 24px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 14px; 
    cursor: pointer; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
    z-index: 9999; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    transition: 0.2s;
}
#downloadPageBtn:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(0,0,0,0.25); }


@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; } }
@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; max-width: 400px; }
    .input-group { flex-direction: column; border-radius: 20px; padding: 16px; background: var(--surface); border: 1px solid var(--border); gap: 12px;}
    .input-group:focus-within { box-shadow: 0 10px 25px rgba(0,0,0,0.03); }
    .input-group input { border: 1px solid var(--border); border-radius: 12px; background: var(--bg-light); text-align: center;}
    .btn-submit { padding: 16px; border-radius: 12px; width: 100%; }
}