/* Hero Section Styles for Landing Page */

.landing-page {
    background: linear-gradient(135deg, #E9F3FF 0%, #E8FFF7 100%);
    color: #0f172a;
    display: block;
    min-height: auto;
    padding: 0;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

/* Make header blend into the hero on landing */
.landing-page .header,
.header--landing {
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.65) 100%) !important;
    box-shadow: 0 2px 12px rgba(2, 30, 84, 0.06) !important;
    border-bottom: 1px solid rgba(2, 30, 84, 0.06);
    backdrop-filter: saturate(140%) blur(8px);
}

.landing-page .header .nav-link,
.header--landing .nav-link {
    background: transparent !important;
    color: #0f172a !important;
    box-shadow: none !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: 8px !important;
    border: 1px solid transparent !important;
}

.landing-page .header .nav-link:hover,
.header--landing .nav-link:hover {
    background: rgba(10, 80, 194, 0.06) !important;
    color: #0A50C2 !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.landing-page .header .nav-link.active,
.header--landing .nav-link.active {
    background: rgba(10, 80, 194, 0.08) !important;
    color: #0A50C2 !important;
    border-color: rgba(10, 80, 194, 0.25) !important;
}

/* Language toggle chips */
.landing-page .header .lang-link,
.header--landing .lang-link {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(2, 30, 84, 0.15);
    color: #0f172a !important;
    text-decoration: none;
    background: rgba(255,255,255,0.6);
}

.landing-page .header .lang-link.active,
.header--landing .lang-link.active {
    background: rgba(10, 80, 194, 0.08);
    border-color: rgba(10, 80, 194, 0.25);
    color: #0A50C2 !important;
}

/* Language toggles in header */
.landing-page .header .nav-menu li a:not(.nav-link) {
    color: #0f172a !important;
}

/* Avatar button on landing should be light */
.landing-page .avatar-button,
.landing-page .user-avatar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #0f172a !important;
    border-color: rgba(2, 30, 84, 0.15) !important;
}

.hero {
    padding: 4.5rem 1.5rem 3rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 2rem 4rem;
    }
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 74, 173, 0.08);
    color: #0a3a88;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1220;
    margin: 0 0 1rem 0;
}

.hero__logo { display: none; }

.hero__visual {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: clamp(8px, 2vw, 16px);
}

.hero__logo-large {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(2, 30, 84, 0.15));
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: #334155;
    margin-bottom: 1.5rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hero__badge {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-size: 0.9rem;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    border-radius: 12px;
    background: #0A50C2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    min-width: 200px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 24px rgba(10, 80, 194, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(10, 80, 194, 0.35);
    background: #0947aa;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0A50C2;
    text-decoration: none;
    font-weight: 600;
}

.hero__microcopy {
    margin-top: 0.5rem;
    color: #55637a;
    font-size: 0.95rem;
}

.hero__trust {
    margin-top: 2rem;
}

.hero__trust-label {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .logo-row {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.logo-row img {
    width: 100%;
    max-height: 28px;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(1);
}

.hero__visual {
    position: relative;
    isolation: isolate;
}

.hero__visual::before,
.hero__visual::after {
    content: "";
    position: absolute;
    inset: -10% -10% auto auto;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
}

.hero__visual::before {
    width: 300px;
    height: 300px;
    background: rgba(43, 127, 255, 0.25);
    top: -40px;
    right: -40px;
}

.hero__visual::after {
    width: 240px;
    height: 240px;
    background: rgba(46, 214, 161, 0.25);
    top: 120px;
    right: 40px;
}

.device-frame {
    background: white;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(2, 30, 84, 0.18);
    padding: 12px;
    border: 1px solid rgba(2, 30, 84, 0.06);
}

.device-screen {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.hero .container-ish {
    max-width: 1200px;
    margin: 0 auto;
}


