:root {
    --bg-dark: #0f172a;
    /* Slate 900 */
    --accent-primary: #6366f1;
    /* Indigo 500 */
    --accent-secondary: #4f46e5;
    /* Indigo 600 */
    --text-primary: #f8fafc;
    /* Slate 50 */
    --text-secondary: #94a3b8;
    /* Slate 400 */
    --glass-bg: rgba(30, 41, 59, 0.4);
    /* Slate 800 with opacity */
    --glass-border: rgba(255, 255, 255, 0.1);
    --border-color: #334155;
    /* Slate 700 */
    --success-color: #10b981;
    /* Emerald 500 */
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.5;
}

.background-radial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, #1e293b 0%, #0f172a 100%);
    z-index: -2;
}

.glass-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Nav */
.nav {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* Hero */
.hero {
    margin-top: 10vh;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Form */
.notify-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    padding: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.glass-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.primary-btn {
    background: white;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.primary-btn:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

.form-hint {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Sections */
.section {
    margin-top: 15vh;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Scope Grid */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 10vh;
}

.scope-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scope-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.scope-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.scope-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Trust Section */
.trust-container {
    padding: 4rem;
    text-align: center;
    border-radius: 32px;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.badge-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.glass:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
}

/* Footer */
.footer {
    margin-top: 15vh;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent-primary);
}

/* Platform Simulation: Removing placeholder badges */
.coming-soon {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}

/* Footer Link highlight for Primary Actions */
.footer-col a[href^="#waitlist"] {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-col a[href^="#waitlist"]::before {
    content: '→';
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-primary);
}

/* Tooltip Discovery */
.footer-col a[data-info]:hover::before {
    content: attr(data-info);
    position: absolute;
    bottom: 150%;
    left: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.8rem;
    width: 280px;
    line-height: 1.5;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInUpTooltip 0.3s forwards ease-out;
    text-align: left;
    white-space: normal;
    font-weight: 400;
}

@keyframes fadeInUpTooltip {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin-top: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--text-primary);
}

/* Animations */
.animate-text {
    animation: fadeInUp 0.8s forwards ease-out;
}

.animate-text-delay {
    animation: fadeInUp 0.8s 0.2s forwards ease-out;
    opacity: 0;
}

.animate-text-delay-2 {
    animation: fadeInUp 0.8s 0.4s forwards ease-out;
    opacity: 0;
}

.animate-text-delay-3 {
    animation: fadeInUp 0.8s 0.6s forwards ease-out;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 1.25rem 2.5rem;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s;
    max-width: 90vw;
    width: max-content;
    text-align: center;
    line-height: 1.4;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.toast.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav {
        height: 80px;
    }

    .hero {
        margin-top: 10vh;
    }

    .features {
        margin-top: 10vh;
    }

    .notify-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
    }

    .glass-input {
        padding: 1rem;
    }

    .footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}