:root {
    --top-primary: #17358f;
    --top-primary-dark: #0f266a;
    --top-accent: #20b7ea;
    --top-ink: #10224d;
    --top-muted: #62719a;
    --top-soft: #eef5ff;
    --top-card: rgba(255, 255, 255, 0.82);
    --top-border: rgba(20, 53, 143, 0.12);
    --top-shadow: 0 20px 60px rgba(16, 34, 77, 0.12);
    --top-radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--top-ink);
    background:
        radial-gradient(circle at top left, rgba(32, 183, 234, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(23, 53, 143, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfdff 0%, #eef5ff 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    overflow: hidden;
}

.glass-nav,
.hero-panel,
.feature-strip,
.product-card,
.access-panel,
.segment-card,
.contact-card,
.footer-panel {
    backdrop-filter: blur(16px);
    background: var(--top-card);
    border: 1px solid var(--top-border);
    box-shadow: var(--top-shadow);
}

.glass-nav {
    margin-top: 1rem;
    border-radius: 28px;
}

.navbar-brand img {
    width: 220px;
    max-width: 100%;
}

.navbar-nav .nav-link {
    color: var(--top-ink);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.55rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--top-primary), var(--top-accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-menu-row {
    width: 100%;
}

.nav-actions-row {
    width: 100%;
}

.btn-top-primary,
.btn-top-outline:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--top-primary), #234bc0);
    border: none;
}

.btn-top-primary {
    box-shadow: 0 14px 28px rgba(23, 53, 143, 0.22);
}

.btn-top-outline {
    color: var(--top-primary);
    border: 1px solid rgba(23, 53, 143, 0.25);
    background: rgba(255, 255, 255, 0.8);
}

.hero {
    padding: 4rem 0 2rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-size: 0.85rem;
    color: var(--top-primary);
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.9rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.hero-title .accent {
    color: #2b5fff;
}

.hero-copy {
    color: var(--top-muted);
    font-size: 1.1rem;
    max-width: 42rem;
}

.hero-panel {
    border-radius: 40px;
    padding: 2.5rem;
    position: relative;
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
}

.hero-panel::before {
    width: 180px;
    height: 180px;
    right: -48px;
    top: 56px;
    background: rgba(32, 183, 234, 0.18);
}

.hero-panel::after {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -90px;
    background: rgba(23, 53, 143, 0.12);
}

.mascot-wrap {
    position: relative;
    display: grid;
    place-items: center;
}

.mascot-wrap::before {
    content: "";
    position: absolute;
    inset: 9% 12%;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 255, 0.75)),
        radial-gradient(circle at top, rgba(32, 183, 234, 0.22), transparent 40%);
    border: 1px solid rgba(23, 53, 143, 0.08);
}

.mascot-wrap img {
    position: relative;
    max-width: min(320px, 100%);
    filter: drop-shadow(0 26px 50px rgba(23, 53, 143, 0.18));
}

.mascot-wrap-hero {
    min-height: 100%;
}

.mascot-wrap-hero::before {
    display: none;
}

.mascot-wrap-hero img {
    max-width: min(360px, 100%);
    width: 100%;
    filter: drop-shadow(0 28px 54px rgba(23, 53, 143, 0.14));
}

.dashboard-card {
    position: relative;
    padding: 1.35rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 53, 143, 0.1);
    box-shadow: 0 20px 44px rgba(16, 34, 77, 0.12);
}

.dashboard-card-hero {
    padding: 1.5rem;
}

.metric-card {
    border-radius: 18px;
    padding: 1rem;
    background: linear-gradient(180deg, #fff, #f4f8ff);
    border: 1px solid rgba(23, 53, 143, 0.08);
    height: 100%;
}

.metric-card strong {
    display: block;
    font-size: 1.4rem;
    color: var(--top-primary);
}

.mini-chart {
    height: 220px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(32, 183, 234, 0.1), rgba(32, 183, 234, 0)),
        #fff;
    border: 1px solid rgba(23, 53, 143, 0.08);
    position: relative;
    overflow: hidden;
}

.mini-chart-dashboard {
    height: clamp(280px, 38vw, 530px);
    background: #f7fbff;
}

.mini-chart svg {
    position: absolute;
    inset: 0;
}

.mini-chart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-strip,
.access-panel,
.contact-card,
.footer-panel {
    border-radius: 28px;
}

.feature-strip {
    margin-top: -1.4rem;
    position: relative;
    z-index: 3;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--top-primary);
    background: linear-gradient(135deg, rgba(23, 53, 143, 0.12), rgba(32, 183, 234, 0.14));
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-copy {
    color: var(--top-muted);
    max-width: 42rem;
}

.product-card,
.segment-card {
    border-radius: 26px;
    padding: 1.7rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.segment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(16, 34, 77, 0.14);
}

.product-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: #fff;
}

.icon-blue { background: linear-gradient(135deg, #2f67ff, #17358f); }
.icon-cyan { background: linear-gradient(135deg, #14c7d8, #1487d8); }
.icon-purple { background: linear-gradient(135deg, #6a5cff, #4a38cd); }
.icon-sky { background: linear-gradient(135deg, #2fc4ff, #0f8fe3); }

.access-panel,
.contact-card {
    padding: 2rem;
}

.form-control,
.form-select {
    border-radius: 14px;
    border-color: rgba(23, 53, 143, 0.15);
    padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(32, 183, 234, 0.65);
    box-shadow: 0 0 0 0.25rem rgba(32, 183, 234, 0.16);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    color: var(--top-primary);
    background: rgba(23, 53, 143, 0.06);
    font-weight: 600;
}

.footer {
    padding: 4rem 0 2rem;
}

.footer-panel {
    background: linear-gradient(135deg, #11285f, #17358f);
    color: rgba(255, 255, 255, 0.9);
    padding: 2.4rem;
}

.footer-logo {
    width: 200px;
    filter: brightness(0) invert(1);
}

.footer-link {
    color: rgba(255, 255, 255, 0.78);
}

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

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

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

@media (max-width: 991.98px) {
    .glass-nav {
        padding-inline: 0.35rem;
    }

    .hero-panel {
        padding: 1.5rem;
    }

    .feature-strip {
        margin-top: 1rem;
    }

    .mascot-wrap-hero {
        min-height: auto;
    }
}
