* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0d1324;
    --panel: #121b31;
    --surface: #f4f7fb;
    --paper: #ffffff;
    --line: #d7deeb;
    --text: #33415d;
    --brand: #0066ff;
    --brand-2: #00b7d9;
    --highlight: #ff7a18;
    --ok: #00b894;
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow: 0 16px 40px rgba(13, 19, 36, 0.12);
}

body {
    font-family: "Sora", "Montserrat", "Avenir Next", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 5% 0%, rgba(0, 102, 255, 0.08), transparent 30%),
        radial-gradient(circle at 95% 15%, rgba(0, 183, 217, 0.08), transparent 34%),
        var(--surface);
    line-height: 1.7;
}

a {
    color: inherit;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.9rem;
}

.section-lead {
    max-width: 760px;
    color: #556483;
    margin-bottom: 2rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 1.1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #435271;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--ink);
    background: #eaf0ff;
}

.hero {
    position: relative;
    padding: 5.3rem 0 4rem;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 560px;
    height: 560px;
    right: -180px;
    top: -220px;
    background: linear-gradient(140deg, rgba(0, 102, 255, 0.16), rgba(255, 122, 24, 0.12));
}

.hero::after {
    width: 340px;
    height: 340px;
    left: -90px;
    bottom: -140px;
    background: linear-gradient(140deg, rgba(0, 183, 217, 0.17), rgba(0, 102, 255, 0.12));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid #c9d6f5;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2e4471;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.9rem);
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 1.1rem;
    letter-spacing: -0.03em;
}

.hero p {
    color: #435271;
    margin-bottom: 1.6rem;
    max-width: 600px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.2rem;
    border-radius: 11px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(140deg, var(--brand), var(--brand-2));
}

.btn-ghost {
    color: var(--ink);
    border: 1px solid #bcc9e5;
    background: rgba(255, 255, 255, 0.8);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.stat {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0.9rem;
}

.stat strong {
    display: block;
    color: var(--ink);
    font-size: 1.26rem;
}

.hero-panel {
    background: var(--panel);
    color: #dfe8ff;
    border-radius: var(--radius-lg);
    padding: 1.3rem;
    box-shadow: var(--shadow);
}

.hero-panel h3 {
    color: #fff;
    margin-bottom: 0.6rem;
}

.hero-list {
    list-style: none;
    display: grid;
    gap: 0.62rem;
    margin-top: 0.7rem;
}

.hero-list li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.68rem 0.75rem;
    border-radius: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
}

.card h3 {
    margin-bottom: 0.45rem;
    color: var(--ink);
}

.card p {
    color: #5a6782;
}

.badge {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: #ebf2ff;
    color: #2053b8;
    font-size: 0.76rem;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.tile {
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    background: linear-gradient(140deg, #f7faff, #eef3fd);
    border: 1px solid var(--line);
}

.tile h3 {
    color: var(--ink);
    margin-bottom: 0.7rem;
}

.tile ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.tile li::before {
    content: "• ";
    color: var(--ok);
    font-weight: 700;
}

.quote {
    border-left: 4px solid var(--highlight);
    background: #fff6ef;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem;
    color: #52392b;
}

.footer {
    margin-top: 3rem;
    background: #0b1120;
    color: #dae3ff;
}

.footer-main {
    padding: 2.6rem 0 1.6rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 1.4rem;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer a {
    text-decoration: none;
    color: #b7c7ff;
}

.footer a:hover {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 0 1.4rem;
    color: #9aaddf;
    font-size: 0.92rem;
}

.page-hero {
    padding: 3.2rem 0 2rem;
}

.page-hero p {
    max-width: 820px;
}

.legal-content {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
}

.legal-content h2 {
    color: var(--ink);
    margin: 1.2rem 0 0.65rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: #4f5f7f;
}

.legal-content ul {
    margin: 0.6rem 0 0.8rem 1.2rem;
}

@media (max-width: 960px) {
    .hero-grid,
    .split,
    .cards,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-inner {
        align-items: flex-start;
        padding: 0.7rem 0;
        flex-direction: column;
    }

    .nav-menu {
        width: 100%;
        justify-content: flex-start;
    }
}
