﻿:root {
    --bg: #050816;
    --bg-alt: #0b1020;
    --accent: #3b82f6;
    --accent-soft: rgba(59,130,246,0.18);
    --accent-strong: #2563eb;
    --text: #f9fafb;
    --muted: #9ca3af;
    --border: #1f2937;
    --danger: #ef4444;
    --success: #22c55e;
    --card-radius: 20px;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.shell {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* NAVBAR */
.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: linear-gradient( to bottom, rgba(5, 6, 20, 0.95), rgba(5, 6, 20, 0.75), transparent );
    border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #60a5fa, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 0 20px rgba(59,130,246,0.7);
}

.nav-title {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

    .nav-links a {
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        border: 1px solid transparent;
        color: var(--muted);
        transition: 0.15s ease;
    }

        .nav-links a:hover {
            border-color: var(--border);
            color: var(--text);
            background: rgba(15,23,42,0.85);
        }

.nav-cta {
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(37,99,235,0.55);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

    .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 45px rgba(37,99,235,0.8);
    }

    .nav-cta:active {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(15,23,42,0.9);
    }

/* HERO */
.hero {
    padding: 4rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: center;
}

@@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    background: radial-gradient(circle at left top, rgba(37,99,235,0.35), rgba(15,23,42,0.9));
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 10px rgba(34,197,94,0.9);
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

    .hero-title span {
        background: linear-gradient(to right, #60a5fa, #a855f7);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-subtitle {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 32rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.chip {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(51,65,85,0.9);
    font-size: 0.8rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

    .chip strong {
        color: var(--text);
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-primary {
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(37,99,235,0.7);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

    .btn-primary:hover {
        transform: translateY(-1.5px);
        box-shadow: 0 24px 70px rgba(37,99,235,0.9);
    }

.btn-secondary {
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.7);
    background: rgba(15,23,42,0.85);
    color: var(--muted);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

    .btn-secondary:hover {
        background: rgba(15,23,42,1);
        border-color: rgba(148,163,184,1);
        color: var(--text);
    }

.hero-footnote {
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-card {
    border-radius: var(--card-radius);
    border: 1px solid rgba(55,65,81,0.9);
    background: radial-gradient(circle at top left, rgba(37,99,235,0.24), rgba(15,23,42,0.98));
    padding: 1.5rem 1.25rem;
    box-shadow: 0 28px 80px rgba(15,23,42,1);
    position: relative;
    overflow: hidden;
}

    .hero-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 0% 0%, rgba(59,130,246,0.22), transparent 55%), radial-gradient(circle at 100% 0%, rgba(129,140,248,0.18), transparent 55%);
        opacity: 0.8;
        pointer-events: none;
    }

.hero-card-inner {
    position: relative;
    z-index: 1;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.hero-card-title {
    font-size: 0.96rem;
    font-weight: 600;
}

.hero-card-pill {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(148,163,184,0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.term-item {
    padding: 0.6rem 0.7rem;
    border-radius: 0.75rem;
    background: rgba(15,23,42,0.92);
    border: 1px solid rgba(31,41,55,0.8);
    font-size: 0.8rem;
}

.term-label {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.2rem;
}

.term-value {
    font-weight: 600;
    font-size: 0.88rem;
}

.term-highlight {
    border-color: rgba(59,130,246,0.9);
    box-shadow: 0 0 24px rgba(37,99,235,0.5);
}

.hero-card-footnote {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.6rem;
}

/* SECTION WRAPPER */
section {
    padding: 3.5rem 0;
    border-top: 1px solid rgba(15,23,42,0.9);
}

.section-header {
    margin-bottom: 2rem;
    max-width: 40rem;
}

.section-eyebrow {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
}

.section-description {
    font-size: 0.98rem;
    color: var(--muted);
    margin: 0;
}

/* OPPORTUNITY */
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

@@media (max-width: 900px) {
    .two-col {
        grid-template-columns: minmax(0, 1fr);
    }
}

.opportunity-card,
.generic-card {
    border-radius: var(--card-radius);
    border: 1px solid rgba(31,41,55,0.95);
    background: var(--bg-alt);
    padding: 1.4rem 1.3rem;
    box-shadow: 0 20px 60px rgba(15,23,42,0.9);
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

    .bullet-list li {
        padding-left: 1.1rem;
        position: relative;
        margin-bottom: 0.45rem;
        font-size: 0.95rem;
        color: var(--muted);
    }

        .bullet-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 1.1rem;
            line-height: 1;
            top: 1px;
        }

.highlight-text {
    font-weight: 500;
    color: var(--text);
}

/* PRODUCT GRID */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.85);
    background: rgba(15,23,42,0.9);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@@media (max-width: 700px) {
    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.feature-card {
    border-radius: 0.9rem;
    border: 1px solid rgba(31,41,55,0.95);
    background: radial-gradient(circle at top, rgba(30,64,175,0.22), rgba(15,23,42,1));
    padding: 0.9rem 0.95rem;
}

.feature-title {
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

.feature-body {
    font-size: 0.86rem;
    color: var(--muted);
}

/* TERMS GRID */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

@@media (max-width: 900px) {
    .simple-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@@media (max-width: 650px) {
    .simple-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.stat-card {
    border-radius: 0.9rem;
    border: 1px solid rgba(31,41,55,0.95);
    background: rgba(15,23,42,0.96);
    padding: 0.85rem 0.9rem;
    font-size: 0.88rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.16em;
    margin-bottom: 0.2rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* FOUNDER */
.founder-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote {
    font-size: 0.98rem;
    color: var(--muted);
    border-left: 3px solid rgba(59,130,246,0.9);
    padding-left: 1rem;
}

.founder-name {
    font-weight: 600;
}

.founder-title {
    color: var(--muted);
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    border-radius: 0.9rem;
    border: 1px solid rgba(31,41,55,0.95);
    background: rgba(15,23,42,0.96);
    padding: 0.85rem 0.95rem;
}

.faq-q {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.faq-a {
    font-size: 0.86rem;
    color: var(--muted);
}

/* CTA */
.cta-section {
    text-align: center;
}

.cta-card {
    border-radius: var(--card-radius);
    border: 1px solid rgba(55,65,81,0.98);
    background: radial-gradient(circle at top left, rgba(30,64,175,0.35), rgba(15,23,42,0.98));
    padding: 2rem 1.5rem;
    box-shadow: 0 28px 80px rgba(15,23,42,1);
}

.cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.cta-subtitle {
    font-size: 0.96rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cta-footnote {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ACCREDITATION SECTION */
.accreditation-card {
    border-radius: var(--card-radius);
    border: 1px solid rgba(51,65,85,0.95);
    background: rgba(15,23,42,0.97);
    padding: 1.6rem 1.4rem;
    box-shadow: 0 22px 65px rgba(15,23,42,1);
    max-width: 640px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

@@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.86rem;
}

label {
    color: var(--muted);
}

input, select, textarea {
    border-radius: 0.6rem;
    border: 1px solid rgba(55,65,81,0.95);
    background: rgba(15,23,42,0.98);
    padding: 0.55rem 0.6rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.helper {
    font-size: 0.77rem;
    color: var(--muted);
}

.radio-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
}

    .radio-row label {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        color: var(--muted);
    }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(55,65,81,0.95);
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(59,130,246,1);
}

.alert {
    font-size: 0.8rem;
    padding: 0.6rem 0.7rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(55,65,81,0.95);
    background: rgba(15,23,42,0.95);
    color: var(--muted);
    margin-top: 0.6rem;
}

.alert-legal {
    border-color: rgba(148,163,184,0.8);
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(15,23,42,0.95);
    padding: 1.5rem 0 2rem;
    font-size: 0.78rem;
    color: var(--muted);
}

    footer .footer-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.7rem;
        align-items: center;
    }

input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 52px !important;
    margin-right: 0;
}
.iti__country-list {
    background-color: #0f172a !important;
    border: 1px solid #1e293b !important;
    color: #ffffff !important;
    z-index: 9999 !important;
}

.iti__country {
    color: #ffffff !important;
    opacity: 1 !important;
}

.iti__dial-code {
    color: #cbd5e1 !important;
}

.iti__country:hover {
    background-color: #1e293b !important;
}

.iti__country * {
    opacity: 1 !important;
}