:root {
    --ink: #f5fbff;
    --bg: #07111b;
    --teal: #0ea5a4;
    --amber: #d9a441;
    --muted: #c9d2df;
    --soft: #0a1a27;
    --edge: #143244
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg)
}

header {
    position: sticky;
    top: 0;
    background: rgba(7, 17, 27, .9);
    border-bottom: 1px solid var(--edge)
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px
}

.logo-pill {
    background: #0e3a46;
    border-radius: 12px;
    padding: 8px 14px;
    color: #fff;
    font-weight: 700
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center
}

.nav a {
    color: #cfe6f1;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px
}

.nav a:hover {
    background: #0a202e
}

.hero .banner {
    position: relative;
    height: 52vh;
    max-height: 560px;
    min-height: 360px
}

.split {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.split img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.split::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 27, .8)0%, rgba(7, 17, 27, .5)40%, rgba(7, 17, 27, .5)60%, rgba(7, 17, 27, .8)100%)
}

.hero .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 20px
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.hero h1 {
    font-size: 40px;
    margin: 0 0 8px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .5)
}

.hero p {
    margin: 0 0 10px;
    color: #d6e3ec
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px
}

.badge {
    background: #0b2433;
    border: 1px solid #174559;
    color: #cfe6f1;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px
}

.ctas {
    display: flex;
    gap: 12px;
    margin-top: 14px
}

.btn {
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none
}

.btn.primary {
    background: var(--teal);
    color: #072025
}

.btn.secondary {
    background: var(--amber);
    color: #2b1803
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 16px
}

.tile,
.card {
    background: var(--soft);
    border: 1px solid var(--edge);
    border-radius: 12px;
    padding: 16px;
    color: #cfe6f1;
    margin-bottom: 16px
}

.card h3 {
    color: #fff;
    font-size: 20px;
    margin-top: 0
}

.card p {
    color: #e8f1f7;
    font-size: 16px;
    line-height: 1.6
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px
}

.table th {
    text-align: left;
    color: #a9c3d2;
    padding: 6px
}

.table td {
    background: #0b1c29;
    border: 1px solid #16354a;
    border-left: none;
    border-right: none;
    padding: 10px;
    color: #d6e7f0
}

.table tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

.table tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

footer {
    border-top: 1px solid var(--edge);
    background: #07111b;
    color: #98b3c2
}

footer .cols {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px
}

.copy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    color: #6f8ea0
}

@media(max-width:960px) {
    .split {
        grid-template-columns: 1fr
    }

    .split img:last-child {
        display: none
    }
}