:root {
    --blue: #356FD6;
    --blue-dark: #1E4F9A;
    --yellow: #F5D76E;
    --red: #E85D5D;
    --green: #41A66B;
    --bg: #F7F9FC;
    --surface: #FFFFFF;
    --text: #263241;
    --muted: #657386;
    --border: #D8E0EA;
    --shadow: 0 14px 35px rgba(31, 50, 72, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--text);
    background: var(--bg);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(18px, 4vw, 56px);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    color: var(--blue-dark);
    font-size: 22px;
    font-weight: 800;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.landing {
    min-height: calc(100vh - 74px);
}

.hero {
    display: grid;
    align-items: center;
    min-height: 58vh;
    padding: clamp(54px, 8vw, 92px) 20px;
    background:
        linear-gradient(135deg, rgba(53, 111, 214, 0.92), rgba(65, 166, 107, 0.80)),
        url("https://images.unsplash.com/photo-1573497491208-6b1acb260507?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-content {
    width: min(920px, 100%);
    margin: 0 auto;
    color: #fff;
}

.hero h1 {
    max-width: 720px;
    margin: 8px 0 16px;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.02;
}

.hero p {
    max-width: 640px;
    font-size: 19px;
}

.hero-actions {
    margin-top: 28px;
}

.public-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: min(1060px, calc(100% - 32px));
    margin: 32px auto 54px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 6px;
    color: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .brand {
        font-size: 20px;
    }

    .topnav {
        width: 100%;
    }

    .topnav a,
    .topnav .button {
        flex: 1 1 auto;
    }

    .public-section {
        grid-template-columns: 1fr;
    }
}
