:root {
    --bg: #ffffff;
    --ink: #0b1220;
    --muted: #4b5563;
    --border: #e5e7eb;
    --shadow: 0 20px 50px rgba(2,6,23,.12);
    --radius: 24px;
    --accent: #f59e0b;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Arial,sans-serif;
    color: var(--ink);
    background: radial-gradient(900px 520px at 12% 0%, rgb(255 255 255 / 12%), transparent 60%), radial-gradient(900px 520px at 88% 10%, rgba(59, 130, 246, .10), transparent 60%), linear-gradient(180deg, #fff, #f8fafc 55%, #fff)
}

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

    a:hover {
        text-decoration: underline
    }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 16px 56px
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: .2px
}

    .brand img {
        width: 40px;
        height: 40px;
        border-radius: 14px
    }

.links {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 800;
}

    .btn.primary {
        border-color: rgba(245,158,11,.45);
        background: linear-gradient(180deg, rgba(245,158,11,.24), rgba(245,158,11,.10));
    }

.hero {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
    align-items: center;
}

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

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.75);
    color: #111827;
    font-weight: 800;
}

.kdot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent)
}

h1 {
    margin: 14px 0 10px;
    font-size: 54px;
    line-height: 1.02;
    letter-spacing: -.02em
}

@media (max-width: 560px) {
    h1 {
        font-size: 40px
    }
}

.lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
    max-width: 70ch
}

.hero-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.slider {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.slides {
    display: flex;
    width: 100%;
    transform: translateX(0%);
    transition: transform .55s cubic-bezier(.2,.8,.2,1);
    will-change: transform
}

.slide {
    flex: 0 0 100%;
    width: 100%
}

    .slide img {
        display: block;
        width: 100%;
        height: auto
    }

.slider-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,.85);
}

.dots {
    display: flex;
    gap: 8px;
    align-items: center
}

.pdot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer
}

    .pdot.active {
        background: var(--accent);
        border-color: rgba(245,158,11,.9)
    }

.ctrls {
    display: flex;
    gap: 8px
}

.ctrl {
    width: 40px;
    height: 36px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 900;
}

    .ctrl:hover {
        filter: brightness(0.98)
    }

.caption {
    font-weight: 800;
    color: #111827
}

.proof {
    margin-top: 22px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted)
}

.stat {
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.72)
}

    .stat b {
        color: #111827
    }

.section {
    margin-top: 44px;
    display: grid;
    gap: 18px
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: center
}

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

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,.82);
    padding: 20px;
    box-shadow: 0 14px 34px rgba(2,6,23,.06);
}

    .card h2 {
        margin: 0 0 8px;
        font-size: 22px;
        letter-spacing: -.01em
    }

    .card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7
    }

.mini {
    display: grid;
    gap: 10px;
    margin-top: 14px
}

.item {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.badge {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    border: 1px solid rgba(245,158,11,.35);
    background: rgba(245,158,11,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900
}

.figure {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}

    .figure img {
        width: 100%;
        height: auto;
        display: block
    }

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

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

.quote {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.82);
    padding: 16px 16px;
}

    .quote p {
        margin: 0;
        color: #111827;
        line-height: 1.6
    }

    .quote small {
        display: block;
        margin-top: 10px;
        color: var(--muted);
        font-weight: 700
    }

.footer {
    margin-top: 48px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
}

.page {
    margin-top: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,.86);
    padding: 22px;
    box-shadow: 0 14px 34px rgba(2,6,23,.06);
}

    .page h1 {
        margin: 0 0 10px;
        font-size: 28px
    }

    .page h2 {
        margin: 18px 0 8px;
        font-size: 16px
    }

    .page p, .page li {
        color: var(--muted);
        line-height: 1.75
    }
