﻿/* Public header and landing hero; product heroes retain their existing layout. */
body > .site-header {
    padding: 14px clamp(20px, 4vw, 64px);
    min-width: 0;
    gap: 24px;
    background: #ffffff;
    border-bottom: 1px solid #e1e9f4;
    box-shadow: 0 4px 24px #12264b08;
    font-family: "Segoe UI", Arial, sans-serif;
}
.site-header nav { display: flex; align-items: center; min-width: 0; }
.site-header nav a {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    min-height: 46px; padding: 8px 18px; margin: 0;
    border: 1px solid #dce8fa; border-radius: 12px;
    background: #f3f7fe; color: #17365f; font-size: 13px; font-weight: 600;
    transition: background .2s, border-color .2s, box-shadow .2s;
    max-width: 100%; box-sizing: border-box;
}
.site-header nav a:hover { color: #075bd3; background: #eaf2ff; border-color: #9bc0f5; box-shadow: 0 4px 14px #0864ee10; }
.site-header nav a:focus-visible { outline: 3px solid #76afff; outline-offset: 4px; }
.site-header nav a.signup { background: #0864ee; color: #fff; border: 1px solid #0864ee; box-shadow: 0 4px 12px #0864ee20; }
.site-header nav a.signup:hover { background: #0054ce; }
.site-header .site-account > i { display: grid; place-items: center; flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #deebff; color: #0864ee !important; font-size: 15px; }
.site-header .site-account::after { content: '↗'; font-size: 19px; color: #0864ee; }
.site-header .active-client { min-width: 0; overflow-wrap: anywhere; }
.site-header .logo p { color: #526682; }
#content > section.hero {
    height: auto; min-height: 490px; display: flex; align-items: center;
    isolation: isolate; background: #10243a; font-family: "Segoe UI", Arial, sans-serif;
}
#content > section.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
#content > section.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9, 24, 43, .95), rgba(9, 24, 43, .83) 45%, rgba(9, 24, 43, .18)); }
#content > section.hero .hero-text {
    position: relative; inset: auto; transform: none; width: min(760px, 100%);
    box-sizing: border-box; padding: 68px clamp(24px, 5vw, 80px); text-align: left;
    background: transparent; text-shadow: none; color: #fff;
}
#content > section.hero h1 { margin: 0 0 22px; font-size: clamp(32px, 4.2vw, 60px); line-height: 1.1; letter-spacing: -.035em; font-weight: 750; color: #fff; text-wrap: balance; }
#content > section.hero h2 { margin: 0 0 22px; padding-left: 16px; border-left: 3px solid #5eb5ff; font-size: clamp(21px, 2.2vw, 30px); line-height: 1.35; letter-spacing: -.015em; font-weight: 550; color: #9dd4ff; }
#content > section.hero p { max-width: 510px; margin: 0; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.8; font-weight: 400; color: #e0eafa; }
@media (max-width: 600px) {
    body > .site-header { padding: 12px 18px; flex-wrap: wrap; gap: 12px; }
    .site-header .logo { max-width: 100%; }
    .site-header nav { width: 100%; }
    .site-header nav a { width: 100%; }
    #content > section.hero { min-height: 410px; }
    #content > section.hero .hero-text { padding: 48px 24px; }
    #content > section.hero::after { background: rgba(9, 24, 43, .86); }
}
#content > section.hero .hero-text { margin: 0; }
#content > section.hero :is(h1, h2, p) { text-shadow: none; }
