:root {
    --brand-ink: #0a2240;
    --brand-blue: #1a4b8c;
    --brand-cyan: #12a4b5;
    --brand-sand: #f2eee7;
    --surface: #ffffff;
    --text-main: #11243b;
    --text-soft: #51637b;
    --shadow-soft: 0 24px 48px rgba(10, 34, 64, 0.14);
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-main);
    background-color: #f7fafc;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 20%, rgba(18, 164, 181, 0.17), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(26, 75, 140, 0.18), transparent 40%),
        linear-gradient(180deg, #f9fcff 0%, #f2f7fb 100%);
}

.pt-nav {
    padding-top: 84px;
}

.site-nav {
    background: rgba(10, 34, 64, 0.87);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand span,
.footer-brand span,
h1, h2, h3, h4, h5 {
    font-family: "Space Grotesk", sans-serif;
}

.brand-logo {
    border-radius: 10px;
}

.btn-brand {
    background: linear-gradient(120deg, var(--brand-cyan), #27c3a7);
    color: #03202b;
    font-weight: 700;
    border: none;
}

.btn-brand:hover {
    color: #00141b;
    transform: translateY(-1px);
}

.btn-outline-brand {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline-brand:hover {
    background: var(--brand-blue);
    color: #fff;
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-panel {
    background: linear-gradient(140deg, rgba(10, 34, 64, 0.95), rgba(26, 75, 140, 0.92));
    color: #ecf7ff;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-panel::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -210px;
    right: -120px;
    background: radial-gradient(circle, rgba(18, 164, 181, 0.3), transparent 70%);
}

.badge-soft {
    background-color: rgba(255, 255, 255, 0.16);
    color: #dff8ff;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

.hero p {
    color: #cfe2f7;
}

.surface-card {
    background: var(--surface);
    border: 1px solid rgba(17, 36, 59, 0.08);
    border-radius: 20px;
    padding: 1.3rem;
    box-shadow: 0 10px 24px rgba(10, 34, 64, 0.06);
}

.stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--brand-ink);
}

.section-space {
    padding: 3.5rem 0;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    background: linear-gradient(130deg, rgba(18, 164, 181, 0.2), rgba(26, 75, 140, 0.2));
    color: var(--brand-blue);
}

.soft-text {
    color: var(--text-soft);
}

.legal-sheet {
    background: #fff;
    border: 1px solid rgba(17, 36, 59, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(10, 34, 64, 0.08);
}

.legal-sheet h2 {
    margin-top: 1.8rem;
    font-size: 1.3rem;
}

.site-footer {
    background: #07162b;
    color: #dce7f7;
    margin-top: 3rem;
}

.footer-brand span {
    color: #fff;
    font-size: 1.3rem;
}

.footer-title {
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #dce7f7;
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover {
    color: #7de4ef;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1.2rem;
}

.footer-muted {
    color: #9ab0cc;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

@media (max-width: 991.98px) {
    .hero-panel {
        padding: 2.1rem;
    }

    .pt-nav {
        padding-top: 76px;
    }
}
