:root {
    --bg-color: #0b0c10;
    --surface-color: rgba(25, 26, 35, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #f8f9fa;
    --text-muted: #a0aab2;
    --accent-1: #4f46e5;
    --accent-2: #ec4899;
    --gradient-glow: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Glowing Background Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: var(--accent-1);
}

.orb-2 {
    top: 40%; right: -10%;
    width: 600px; height: 600px;
    background: var(--accent-2);
}

.orb-3 {
    bottom: -20%; left: 30%;
    width: 400px; height: 400px;
    background: #0ea5e9;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.logo span {
    color: var(--accent-2);
}

.status-badge {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero {
    max-width: 800px;
    margin-bottom: 5rem;
}

.subtitle {
    color: var(--accent-1);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    padding: 0 2rem;
}

/* Pricing Card */
.pricing-card {
    background: var(--surface-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-glow);
}

.price-header {
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.price-compare {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.retail-price {
    display: flex;
    flex-direction: column;
    opacity: 0.6;
}

.retail-price .label { font-size: 0.9rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.retail-price .strike { font-size: 2rem; text-decoration: line-through; font-weight: 600; }
.retail-price .interval { font-size: 1rem; }

.launch-price {
    display: flex;
    flex-direction: column;
    background: rgba(79, 70, 229, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.launch-price .label { color: var(--accent-2); font-weight: 800; font-size: 1rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.launch-price .amount { font-size: 3.5rem; font-weight: 900; font-family: 'Outfit', sans-serif; color: #fff; line-height: 1; }
.launch-price .interval { font-size: 1.1rem; color: var(--text-muted); margin-top: 0.5rem;}

.price-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Waitlist Form */
.waitlist-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
}

.btn-primary {
    background: var(--gradient-glow);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.form-message {
    margin-top: 1rem;
    min-height: 24px;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.success-msg { color: #4ade80; }
.error-msg { color: #f87171; }

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.feature-card {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 900px) {
    .title { font-size: 3rem; }
    .price-compare { flex-direction: column; gap: 1.5rem; }
    .features { grid-template-columns: 1fr; }
    .input-group { flex-direction: column; border-radius: 20px; background: transparent; border: none; padding: 0; }
    input[type="email"], .btn-primary { border-radius: 12px; width: 100%; }
    input[type="email"] { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); margin-bottom: 1rem; }
}
