/* ── Reset / Base ────────────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #23242a;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ── Scrollbar ───────────────────────────────────────────── */

main {
    scrollbar-width: thin;
    scrollbar-color: #3a3b41 #23242a;
}

main::-webkit-scrollbar {
    width: 10px;
}

main::-webkit-scrollbar-track {
    background: #23242a;
}

main::-webkit-scrollbar-thumb {
    background: #3a3b41;
    border-radius: 999px;
    border: 2px solid #23242a;
}

main::-webkit-scrollbar-thumb:hover {
    background: #4a4b52;
}

/* ── Accessibility ───────────────────────────────────────── */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Site Header / Nav ───────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #18191c;
    border-bottom: 1.5px solid #2d2e33;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

    .site-logo:hover {
        text-decoration: none;
        color: #fff;
    }

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #bdbdbd;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: #fff;
        text-decoration: none;
    }

.nav-link-insider {
    color: #93c5fd;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    transition: background 0.2s, color 0.2s;
}

    .nav-link-insider:hover {
        background: rgba(37, 99, 235, 0.15);
        color: #bfdbfe;
        text-decoration: none;
    }

/* ── Buttons */

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: #2563eb;
    color: #fff;
    border: 1.5px solid #2563eb;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

    .btn-primary:hover {
        background: #1d4ed8;
        border-color: #1d4ed8;
        text-decoration: none;
        color: #fff;
    }

    .btn-primary:disabled {
        opacity: 0.45;
        cursor: not-allowed;
        pointer-events: none;
    }

.contact-form .btn-primary {
    align-self: flex-start;
    width: auto;
}

/* ── Hero Section ────────────────────────────────────────── */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 5rem;
    text-align: center;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: #1e3a6e;
    color: #93c5fd;
    border: 1px solid rgba(37, 99, 235, 0.27);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.3rem 1rem;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
}

.accent {
    color: #2563eb;
}

.hero-subtitle {
    color: #bdbdbd;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Divider ─────────────────────────────────────────────── */

.section-divider {
    border: none;
    border-top: 1.5px solid #2d2e33;
    margin: 0;
}

/* ── Features Section ────────────────────────────────────── */

.features {
    padding: 4rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.section-label {
    text-align: center;
    color: #bdbdbd;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #18191c;
    border: 1.5px solid #2d2e33;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .feature-card:hover {
        border-color: rgba(37, 99, 235, 0.27);
        box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
    }

.feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1.2rem;
    color: #2563eb;
    display: block;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: #fff;
}

.feature-card p {
    color: #bdbdbd;
    line-height: 1.65;
    margin: 0;
    font-size: 0.98rem;
    text-align: justify;
}

/* ── Coming Soon Section ─────────────────────────────────── */

.coming-soon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-card {
    max-width: 460px;
    width: 100%;
    background: #18191c;
    border: 1.5px solid #2d2e33;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.coming-soon-logo {
    margin-bottom: 0.5rem;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0 0.5rem;
}

.coming-soon-tagline {
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    margin: 0 0 1.25rem;
}

.coming-soon-text {
    color: #bdbdbd;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Insider Program Page ───────────────────────────────── */

.insider-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.insider-card {
    max-width: 520px;
    width: 100%;
    background: #18191c;
    border: 1.5px solid #2d2e33;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.insider-logo {
    margin-bottom: 0.75rem;
}

.insider-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
}

.insider-tagline {
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    margin: 0 0 1.5rem;
}

.insider-text {
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.insider-disclaimer {
    background: #1e2028;
    border: 1.5px solid #2d2e33;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 0 0 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-align: left;
}

.disclaimer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #93c5fd;
    margin-top: 0.1rem;
    display: block;
}

.insider-disclaimer p {
    color: #bdbdbd;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Content Page (Privacy, Error) ──────────────────────── */

.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

    .content-page h1,
    .content-page h2,
    .content-page h3 {
        margin-top: 1.5rem;
    }

    .content-page h2 {
        margin-top: 2.75rem;
        padding-bottom: 0.4rem;
        border-bottom: 1px solid #2d2e33;
        font-size: 1.15rem;
        font-weight: 600;
        color: #93c5fd;
        letter-spacing: 0.01em;
    }

.contact-form-card {
    background: #18191c;
    border: 1.5px solid #2d2e33;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-form label {
    color: #fff;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1.5px solid #2d2e33;
    border-radius: 6px;
    background: #23242a;
    color: #fff;
    padding: 0.75rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb33;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.turnstile-container {
    width: 100%;
    margin: 0.4rem 0;
}

    .turnstile-container .cf-turnstile {
        width: 100%;
    }

.form-note {
    color: #bdbdbd;
    font-size: 0.9rem;
    margin: 0.2rem 0 0.6rem;
}

.form-success {
    background: #1e2a22;
    border: 1.5px solid #2d5a3a;
    color: #9fe3b4;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-top: 1rem;
}

.honeypot-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Validation / Errors ────────────────────────────────── */

.text-danger {
    color: #ef4444;
}

/* ── Site Footer ─────────────────────────────────────────── */

.site-footer {
    border-top: 1.5px solid #2d2e33;
    background: #18191c;
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #bdbdbd;
    font-size: 0.9rem;
}

.footer-link {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-link:hover {
        color: #fff;
        text-decoration: none;
    }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 767px) {
    .site-header-inner {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 1.25rem 3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .features {
        padding: 3rem 1.25rem 4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-card {
        padding: 2.5rem 1.5rem;
    }

    .site-nav {
        gap: 0.85rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .insider-card {
        padding: 2.5rem 1.5rem;
    }

    .insider-page {
        padding: 2rem 1.25rem;
    }

    .content-page {
        padding: 2rem 1.25rem;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

}