
:root {
    --bg: #071018;
    --bg2: #0b1621;
    --text: #f4f2ed;
    --muted: #a7adb3;
    --orange: #f08a63;
    --yellow: #e6bd58;
    --line: #233340;
    --card: #0b1722;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial,Helvetica,sans-serif
}

    body:before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 70% 25%,rgba(240,138,99,.09),transparent 30%),radial-gradient(circle at 20% 70%,rgba(50,95,120,.08),transparent 35%);
        z-index: -1
    }

nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: auto;
    padding: 0 28px
}

.logo {
    font-weight: 800;
    letter-spacing: -1.5px;
    font-size: 21px
}

    .logo span {
        color: var(--orange)
    }

nav .links {
    display: flex;
    gap: 28px;
    align-items: center
}

.links a {
    color: #d8d9d9;
    text-decoration: none;
    font-size: 13px
}

.btn {
    display: inline-block;
    text-decoration: none;
    background: var(--orange);
    color: #101316;
    padding: 12px 18px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700
}

.hero {
    max-width: 1180px;
    margin: 70px auto 0;
    padding: 0 28px;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 2.7px;
    color: #8e969c;
    margin-bottom: 20px
}

h1 {
    font-size: clamp(50px,7vw,82px);
    line-height: .92;
    letter-spacing: -4px;
    margin: 0 0 25px;
    font-weight: 700;
    max-width: 650px
}

.hero p {
    color: #969ea5;
    font-size: 16px;
    line-height: 1.65;
    max-width: 570px
}

.actions {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 30px
}

.ghost {
    color: #eee;
    text-decoration: none;
    font-size: 12px
}

.orb-wrap {
    height: 480px;
    display: grid;
    place-items: center;
    position: relative
}

.orb {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,#fff3cf 0 5%,#ffb15d 16%,#f17b3e 32%,rgba(240,122,62,.25) 52%,transparent 72%);
    filter: blur(.2px);
    box-shadow: 0 0 80px rgba(242,125,62,.25)
}

    .orb:after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border: 1px solid rgba(105,145,168,.2);
        border-radius: 50%
    }

.orb-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #d6d8d9
}

.section {
    max-width: 1180px;
    margin: auto;
    padding: 110px 28px
}

.tag {
    color: var(--yellow);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700
}

.section h2 {
    font-size: 52px;
    line-height: 1;
    letter-spacing: -2.5px;
    margin: 12px 0 18px
}

.lead {
    color: #9da5ab;
    max-width: 650px;
    line-height: 1.6
}

.cards {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-top: 1px solid var(--line)
}

.card {
    padding: 35px 28px;
    border-bottom: 1px solid var(--line);
    min-height: 220px
}

    .card:nth-child(odd) {
        border-right: 1px solid var(--line)
    }

.num {
    font-size: 14px;
    color: #d8dde0;
    margin-bottom: 35px
}

.card h3 {
    font-size: 23px;
    margin: 0 0 12px
}

.card p {
    color: #969fa6;
    line-height: 1.6;
    font-size: 14px;
    max-width: 450px
}

.work {
    margin-top: 50px
}

.work-row {
    display: grid;
    grid-template-columns: 90px 1fr 1.2fr;
    gap: 25px;
    padding: 35px 0;
    border-top: 1px solid var(--line);
    align-items: start
}

    .work-row:last-child {
        border-bottom: 1px solid var(--line)
    }

    .work-row .num {
        margin: 0
    }

    .work-row h3 {
        margin: 0;
        font-size: 20px
    }

    .work-row p {
        margin: 0;
        color: #969fa6;
        line-height: 1.6;
        font-size: 14px
    }

.cta {
    max-width: 1180px;
    margin: 60px auto 100px;
    padding: 70px 28px;
    border-top: 1px solid var(--line);
    text-align: center
}

    .cta h2 {
        font-size: 58px;
        letter-spacing: -3px;
        line-height: 1;
        margin: 15px auto 20px;
        max-width: 850px
    }

    .cta p {
        color: #9da5ab;
        margin: 0 auto 30px;
        max-width: 600px
    }

footer {
    border-top: 1px solid var(--line);
    padding: 30px 28px;
    color: #737e86;
    font-size: 11px;
    text-align: center
}

@media(max-width:800px) {
    nav {
        height: 70px
    }

    .links a:not(.btn) {
        display: none
    }

    .hero {
        grid-template-columns: 1fr;
        margin-top: 35px;
        min-height: auto
    }

    .orb-wrap {
        height: 390px;
        order: 2
    }

    .orb {
        width: 220px;
        height: 220px
    }

        .orb:after {
            width: 310px;
            height: 310px
        }

    h1 {
        font-size: 56px;
        letter-spacing: -3px
    }

    .section {
        padding: 75px 28px
    }

        .section h2 {
            font-size: 42px
        }

    .cards {
        grid-template-columns: 1fr
    }

    .card:nth-child(odd) {
        border-right: 0
    }

    .work-row {
        grid-template-columns: 55px 1fr;
        gap: 15px
    }

        .work-row p {
            grid-column: 2
        }

    .cta h2 {
        font-size: 44px
    }

    .logo {
        font-size: 19px
    }
}