:root {
    --bg-black: #0a0a0c;
    --bg-dark: #121214;
    --text-white: #ffffff;
    --text-dim: #8a8a8a;
    --accent-blue: #368CF7;
    --accent-neon: #00F0FF;
    --accent-purple: #a855f7;
    --glass-bg: rgba(30, 30, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', -apple-system, system-ui, sans-serif;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* ============================================
   COMING SOON PAGE
   ============================================ */

.coming-soon-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
}

/* Animated Background Glow */
.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(54, 140, 247, 0.15) 0%, rgba(168, 85, 247, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    animation: glow-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Grid Background */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Container */
.coming-soon-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 30px rgba(54, 140, 247, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(54, 140, 247, 0.1);
    border: 1px solid rgba(54, 140, 247, 0.3);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-blue);
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {

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

    50% {
        background-position: 100% 50%;
    }
}

.subheadline {
    font-size: clamp(1rem, 3vw, 1.35rem);
    color: var(--text-dim);
    font-weight: 500;
    margin-bottom: 40px;
}

/* Email Signup */
.email-signup {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-signup input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: 99px;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 1rem;
    width: 280px;
    outline: none;
    transition: all 0.3s ease;
}

.email-signup input::placeholder {
    color: var(--text-dim);
}

.email-signup input:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(54, 140, 247, 0.15);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 99px;
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(54, 140, 247, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(54, 140, 247, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    display: none;
    padding: 16px 28px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 99px;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 24px;
}

.success-message.show {
    display: block;
    animation: fade-in 0.4s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Pills */
.feature-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

.pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Footer */
.coming-soon-footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-white);
}

.copyright {
    color: #444;
    font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
    .email-signup {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .email-signup input {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .feature-pills {
        gap: 8px;
    }

    .pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-content {
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 900;
    font-size: 1.25rem;
}

.legal-content {
    max-width: 680px;
    width: 100%;
    margin: 40px auto;
    text-align: left;
    color: var(--text-dim);
    line-height: 1.7;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

.legal-content h1 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.legal-meta {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 40px;
    display: block;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 24px;
}

.legal-content h2 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p,
.legal-content ul,
.legal-content li {
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-white);
    font-weight: 600;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.legal-content th {
    text-align: left;
    color: var(--text-white);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.legal-content td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.back-nav {
    width: 100%;
    max-width: 680px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
    text-decoration: none;
}

.back-link:hover {
    opacity: 1;
    color: var(--accent-blue);
}