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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e1a;
    color: #e8f0fe;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated starfield background */
.stars,
.stars2,
.stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="2"><circle cx="1" cy="1" r="1" fill="%236bb6ff" opacity="0.3"/></svg>') repeat;
    animation: animateStars 50s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="3"><circle cx="1.5" cy="1.5" r="1" fill="%23ff6600" opacity="0.2"/></svg>') repeat;
    animation: animateStars 100s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><circle cx="2" cy="2" r="1" fill="%23b8c8e0" opacity="0.15"/></svg>') repeat;
    animation: animateStars 150s linear infinite;
}

@keyframes animateStars {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-2000px);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 100px;
    padding: 60px 20px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 30px rgba(107, 182, 255, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #6bb6ff 0%, #e8f0fe 50%, #6bb6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.highlight {
    display: block;
    background: linear-gradient(135deg, #ff6600 0%, #ff8844 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 102, 0, 0.3);
}

.subheadline {
    font-size: 1.55rem;
    font-weight: 300;
    color: #b8c8e0;
    letter-spacing: 1px;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

/* Pricing Info */
.pricing-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #ff6600;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Screenshot Section */
.screenshot-section {
    margin-bottom: 80px;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #6bb6ff;
    letter-spacing: 2px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.section-title .signup-cta {
    color: #ffd700;
    display: block;
    margin-top: 10px;
}

.screenshot-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}

.screenshot-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(107, 182, 255, 0.3);
    box-shadow: 0 20px 80px rgba(107, 182, 255, 0.25);
    background: radial-gradient(circle at top, rgba(107, 182, 255, 0.12), rgba(10, 14, 26, 0.9));
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    width: 100%;
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 110px rgba(107, 182, 255, 0.35);
    border-color: rgba(107, 182, 255, 0.55);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.secondary-screenshot {
    width: 66%;
    align-self: center;
}

.primary-screenshot::after,
.secondary-screenshot::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(107, 182, 255, 0.1) 0%, rgba(10, 14, 26, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.screenshot-card:hover::after {
    opacity: 1;
}

.screenshot-divider {
    width: 62%;
    height: 2px;
    background: linear-gradient(90deg, rgba(107, 182, 255, 0), rgba(107, 182, 255, 0.45), rgba(107, 182, 255, 0));
    box-shadow: 0 6px 26px rgba(107, 182, 255, 0.25);
    margin: 12px 0;
}

@media (max-width: 768px) {
    .secondary-screenshot {
        width: 100%;
    }
}

/* Beta Signup Dialog */
.beta-signup-dialog {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 340px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(20, 30, 48, 0.95) 100%);
    border: 2px solid rgba(107, 182, 255, 0.4);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(107, 182, 255, 0.3), 0 0 40px rgba(255, 102, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.beta-signup-dialog h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #6bb6ff;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 1px;
}

.beta-signup-dialog p {
    color: #b8c8e0;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

.beta-signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: #b8c8e0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 12px 15px;
    background: rgba(107, 182, 255, 0.05);
    border: 1px solid rgba(107, 182, 255, 0.3);
    border-radius: 8px;
    color: #e8f0fe;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6bb6ff;
    background: rgba(107, 182, 255, 0.1);
    box-shadow: 0 0 20px rgba(107, 182, 255, 0.2);
}

.form-group input::placeholder {
    color: #6b7d95;
}

.beta-submit-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8844 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 5px;
}

.beta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #ff7711 0%, #ff9955 100%);
}

.close-dialog {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #6b7d95;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.close-dialog:hover {
    color: #ff6600;
}

/* Thank You Dialog */
.thank-you-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 90%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(20, 30, 48, 0.98) 100%);
    border: 2px solid rgba(107, 182, 255, 0.5);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(107, 182, 255, 0.4), 0 0 60px rgba(255, 102, 0, 0.2);
    z-index: 2000;
    backdrop-filter: blur(15px);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.thank-you-dialog.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.thank-you-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.thank-you-dialog h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, #6bb6ff 0%, #e8f0fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.thank-you-dialog p {
    color: #b8c8e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.checkmark-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 3px solid #6bb6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkmarkPop 0.5s ease-out 0.2s both;
}

.checkmark-icon::before {
    content: '✓';
    font-size: 3rem;
    color: #6bb6ff;
    font-weight: bold;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-ok-btn {
    padding: 16px 50px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8844 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.thank-you-ok-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
    background: linear-gradient(135deg, #ff7711 0%, #ff9955 100%);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #6b7d95;
    font-size: 0.95rem;
    border-top: 1px solid rgba(107, 182, 255, 0.1);
    margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .logo {
        max-width: 280px;
    }

    .pricing-table {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 40px 20px;
    }

    .beta-signup-dialog {
        width: 90%;
        max-width: 340px;
        right: 5%;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 3rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }
}
