@import url('/assets/css/styles.css?v=20260519-drawer1');

/* Critical home guard: keeps the new landing page readable even if an older
   shared stylesheet is cached somewhere between Cloudflare and the browser. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 250, 255, 0.92);
    border-bottom: 1px solid rgba(9, 20, 51, 0.08);
    backdrop-filter: blur(18px);
}

.header-shell {
    width: min(1240px, calc(100% - 28px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #091433;
}

.brand-mark {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand-word {
    font-weight: 800;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    white-space: nowrap;
}

.brand-word span {
    color: #2176FF;
}

.hero-home {
    min-height: 640px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 26%, rgba(94, 235, 255, 0.26), transparent 22%),
        radial-gradient(circle at 83% 15%, rgba(255, 200, 87, 0.2), transparent 18%),
        linear-gradient(135deg, #091433 0%, #10245D 46%, #211B55 100%);
}

.hero-layout {
    display: grid;
    gap: 34px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 7.6rem);
    line-height: 0.86;
}

.hero-brand-panel img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 900px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) 430px;
    }
}
