:root {
    --bg: #08111f;
    --bg-soft: #eef4fb;
    --panel: #101a2d;
    --card: #ffffff;
    --text: #162033;
    --muted: #627089;
    --line: #dbe4f0;
    --gold: #f4b942;
    --gold-deep: #d99816;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(9, 18, 36, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #f9fbfe;
}

a { color: inherit; }

.site-nav {
    background: rgba(8, 17, 31, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-subtitle {
    font-size: .72rem;
    opacity: .7;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.navbar .nav-link {
    color: rgba(255,255,255,0.82);
    font-weight: 500;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus { color: #fff; }

.hero-section,
.page-hero {
    background:
        radial-gradient(circle at top right, rgba(244, 185, 66, 0.18), transparent 28%),
        linear-gradient(135deg, #08111f, #0f2345 55%, #112c5a 100%);
    color: #fff;
}
.hero-section { padding: 110px 0 85px; }
.compact-hero { padding: 92px 0 70px; }
.hero-title,
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero-text,
.page-hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.84);
    max-width: 760px;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.hero-panel {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.hero-panel h3 { font-size: 1.35rem; margin-bottom: 18px; }
.feature-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 12px;
}
.dark-list li { color: var(--text); }
.hero-stats .stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero-stats strong { font-size: 1.3rem; }
.hero-stats span { color: rgba(255,255,255,0.78); font-size: .92rem; }

.section-padding { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-heading { max-width: 760px; }
.section-heading h2,
h2 {
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}
.section-heading p,
p { color: var(--muted); line-height: 1.8; }

.info-card,
.platform-card,
.service-box,
.contact-form,
.cta-box {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.info-card,
.platform-card { padding: 28px; }
.info-card h5,
.platform-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}
.platform-card a {
    font-weight: 700;
    text-decoration: none;
    color: #0f58d6;
}
.platform-card a:hover { color: #0b43a2; }
.alt-card .btn { color: #fff; }
.pill-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #1345a9;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.service-box {
    padding: 18px;
    display: grid;
    gap: 12px;
}
.service-item {
    padding: 16px 18px;
    background: #f8fbff;
    border: 1px solid #e1eaf7;
    border-radius: 16px;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(180deg, #f9fbfe 0%, #eef4fb 100%);
}
.cta-box {
    padding: 48px 28px;
    background: linear-gradient(135deg, #fff8e9, #ffffff);
}

.contact-form { padding: 26px; }
.form-control,
.form-select {
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid #d9e3f0;
}
.form-control:focus,
.form-select:focus {
    border-color: #7ea7ef;
    box-shadow: 0 0 0 .2rem rgba(53, 114, 230, 0.12);
}

.site-footer {
    background: #08111f;
    color: rgba(255,255,255,0.82);
}
.site-footer h5,
.site-footer h6 { color: #fff; }
.footer-links li + li { margin-top: 8px; }
.footer-links a,
.footer-text { color: rgba(255,255,255,0.74); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
}

.btn-warning {
    background: var(--gold);
    border-color: var(--gold);
    color: #1f1605;
    font-weight: 700;
}
.btn-warning:hover,
.btn-warning:focus {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: #1f1605;
}

@media (max-width: 991.98px) {
    .hero-section { padding-top: 90px; }
}
