:root {
    --bg-color: #0A1128;
    --card-bg: #152238;
    --gold: #9D92F1;
    --text-main: #ffffff;
    --text-dim: #a1a1a1;
    --border: #3E5271;
}

* {
    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;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover { color: white; }

/* Hero Section */
.hero {
    padding: 0 5%;
    text-align: center;
    background: radial-gradient(circle at center, #0A1128 0%, #0A1128 100%);
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 1.5rem 0;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: white;
    color: black;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--border);
    padding: 12px 28px;
    border-radius: 8px;
    margin-left: 10px;
}

/* Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop Force 2x2 */
@media (min-width: 900px) {
    .features-grid {
        /* This forces exactly two columns of equal width */
        grid-template-columns: 1fr 1fr; 
    }
}

.card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.card .icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* Container for Input and Button */
.input-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
    max-width: 500px;
    margin: 0 auto;
    transition: border-color 0.3s ease;
}

/* Light up the border when clicking into the input */
.input-group:focus-within {
    border-color: #8D82E6; /* Light version of #6050DC */
    box-shadow: 0 0 15px rgba(96, 80, 220, 0.2);
}

/* The Email Input Field */
.waitlist-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

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

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .waitlist-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-bottom: 10px;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
    }
}


.simple-footer {
    text-align: center;
    padding: 30px 20px 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #f0f0f0;
    margin-top: 60px;
}

.footer-text {
    color: #666;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.copyright {
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 400;
}

.privacy-note {
    font-size: 0.80rem !important;
    color: #888;
    padding:15px 30px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Better Footer Styling */
.main-footer {
    background-color: var(--bg-color);
    padding: 40px 5% 40px;
    border-top: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
    
}

.footer-col {
    padding: 10px 420px;
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-tagline {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    margin-top: 5px;
}

/* Social Icons Placeholder */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: 0.3s;
}

.social-icon:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* FAQ Accordion Styling */
.footer-faq details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
}

.footer-faq summary {
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-main);
    list-style: none; /* Removes default arrow */
}

.footer-faq summary::-webkit-details-marker {
    display: none;
}

.footer-faq p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 8px;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
}

.footer-support {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 5%;
}

.support-title {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-accordion {
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion details {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-accordion summary {
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    list-style: none;
    outline: none;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion .content {
    padding: 0 15px 15px;
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Hover effect to make it feel premium */
.faq-accordion details:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}