:root {
    --dark: #171a1d;
    --dark-soft: #202428;
    --dark-light: #2c3136;

    --background: #f1f2f2;
    --surface: #ffffff;

    --text: #171a1d;
    --muted: #667078;

    --orange: #f28c18;
    --orange-hover: #ff9f31;

    --line: #d8dbdd;

    --max-width: 1380px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--background);
    color: var(--text);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
}

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

button {
    font: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;

    background: rgba(23, 26, 29, .98);

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    min-height: 86px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #fff;
}

.brand-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: var(--orange);

    color: var(--dark);

    font-size: 23px;
    font-weight: 950;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    font-size: 17px;
}

.brand-text small {
    margin-top: 5px;

    color: #9ba3a9;

    font-size: 13px;
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 22px;
}

.main-nav a {
    position: relative;

    color: #e7e9ea;

    font-size: 13px;
    font-weight: 750;
}

.main-nav a:hover {
    color: var(--orange);
}

.nav-soon span {
    position: absolute;

    top: -17px;
    right: -7px;

    color: var(--orange);

    font-size: 8px;
    font-weight: 900;

    text-transform: uppercase;
}

.nav-toggle {
    display: none;

    padding: 8px;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 27px;

    cursor: pointer;
}


/* =========================================================
   COMMON
   ========================================================= */

.section {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;

    padding: 105px 0;
}

.eyebrow,
.section-title small,
.future-copy small {
    color: var(--orange);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .16em;
}

.button {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .04em;
}

.button-primary {
    background: var(--orange);

    color: var(--dark);
}

.button-primary:hover {
    background: var(--orange-hover);
}

.button-outline {
    border: 1px solid rgba(255,255,255,.25);

    color: #fff;
}

.button-outline:hover {
    border-color: var(--orange);

    color: var(--orange);
}

.badge {
    width: fit-content;

    padding: 7px 11px;

    display: inline-flex;

    background: var(--orange);

    color: var(--dark);

    font-size: 10px;
    font-weight: 950;

    letter-spacing: .08em;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #121416 0%,
            #171a1d 65%,
            #202428 100%
        );

    color: #fff;
}

.blueprint-grid {
    position: absolute;
    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(
            rgba(255,255,255,.3) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.3) 1px,
            transparent 1px
        );

    background-size: 65px 65px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -230px;
    bottom: -320px;

    border: 120px solid rgba(242, 140, 24, .08);

    transform: rotate(26deg);
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;

    align-items: end;

    gap: 90px;
}

.hero-content h1 {
    max-width: 900px;

    margin: 18px 0 0;

    font-size: clamp(
        64px,
        8vw,
        116px
    );

    font-weight: 950;

    line-height: .87;

    letter-spacing: -.065em;
}

.hero-content h1 span {
    display: block;

    color: var(--orange);
}

.hero-content > p {
    max-width: 700px;

    margin: 35px 0 0;

    color: #c7cdd1;

    font-size: 21px;
}

.hero-buttons {
    margin-top: 36px;

    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.hero-info {
    padding: 32px;

    border-left: 5px solid var(--orange);

    background: rgba(255,255,255,.055);
}

.block-number {
    color: var(--orange);

    font-size: 12px;
    font-weight: 900;
}

.hero-info h2 {
    margin: 18px 0 0;

    font-size: 25px;

    line-height: 1.12;
}

.hero-info p {
    margin: 17px 0 0;

    color: #adb5bb;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-title {
    margin-bottom: 58px;

    display: flex;

    gap: 24px;
}

.section-title > span {
    padding-top: 7px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 900;
}

.section-title h2 {
    margin: 8px 0 0;

    font-size: clamp(
        40px,
        5vw,
        68px
    );

    line-height: .96;

    letter-spacing: -.045em;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 100px;
}

.intro-highlight {
    max-width: 650px;

    font-size: clamp(
        50px,
        6vw,
        84px
    );

    font-weight: 950;

    line-height: .9;

    letter-spacing: -.055em;
}

.intro-text p {
    color: var(--muted);

    font-size: 18px;
}

.text-link {
    display: inline-block;

    margin-top: 15px;

    color: #c76d04;

    font-weight: 900;
}


/* =========================================================
   SERVICES
   ========================================================= */

.dark-section {
    width: 100%;

    background: var(--dark);

    color: #fff;
}

.dark-inner {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top:
        1px solid rgba(255,255,255,.13);
}

.service-card {
    min-height: 290px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    border-right:
        1px solid rgba(255,255,255,.13);

    transition:
        background .15s ease,
        color .15s ease;
}

.service-card:first-child {
    border-left:
        1px solid rgba(255,255,255,.13);
}

.service-card:hover {
    background: var(--orange);

    color: var(--dark);
}

.service-card > span {
    color: var(--orange);

    font-size: 12px;
    font-weight: 900;
}

.service-card:hover > span {
    color: var(--dark);
}

.service-card h3 {
    margin: auto 0 12px;

    font-size: 25px;
}

.service-card p {
    margin: 0;

    opacity: .68;
}


/* =========================================================
   FUTURE
   ========================================================= */

.future-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 80px;
}

.future-copy h2 {
    margin: 12px 0 0;

    font-size: clamp(
        44px,
        5vw,
        72px
    );

    line-height: .94;

    letter-spacing: -.05em;
}

.future-copy p {
    max-width: 450px;

    color: var(--muted);

    font-size: 18px;
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.future-card {
    min-height: 330px;

    padding: 34px;

    display: flex;
    flex-direction: column;

    background: var(--dark);

    color: #fff;
}

.future-card:hover {
    background: var(--dark-soft);
}

.future-card h3 {
    margin: 55px 0 14px;

    font-size: 34px;
}

.future-card p {
    margin: 0;

    color: #adb5bb;
}

.future-card strong {
    margin-top: auto;

    color: var(--orange);

    font-size: 13px;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    padding:
        125px
        max(
            24px,
            calc(
                (100vw - var(--max-width))
                / 2
            )
        );

    background: var(--dark);

    color: #fff;
}

.page-hero h1 {
    max-width: 1000px;

    margin: 18px 0 0;

    font-size: clamp(
        56px,
        7vw,
        102px
    );

    line-height: .9;

    letter-spacing: -.06em;
}

.page-hero > p {
    max-width: 720px;

    margin: 32px 0 0;

    color: #b8c0c5;

    font-size: 20px;
}

.page-hero-small h1 {
    font-size: clamp(
        50px,
        6vw,
        82px
    );
}

.coming-page .badge {
    margin-bottom: 20px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.simple-content {
    max-width: 850px;
}

.simple-content h2 {
    margin-top: 0;

    font-size: 48px;

    line-height: 1;

    letter-spacing: -.04em;
}

.simple-content p {
    color: var(--muted);

    font-size: 18px;
}

.public-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.public-card {
    min-height: 260px;

    padding: 35px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.public-card > span {
    color: var(--orange);

    font-size: 12px;
    font-weight: 900;
}

.public-card h2 {
    margin: 60px 0 10px;

    font-size: 30px;
}

.public-card p {
    margin: 0;

    color: var(--muted);
}

.notice {
    margin-top: 40px;

    padding: 20px 24px;

    border-left: 5px solid var(--orange);

    background: #fff;

    color: var(--muted);
}

.feature-box {
    padding: 55px;

    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    background: #fff;
}

.feature-box h2 {
    margin: 25px 0 0;

    font-size: 48px;

    line-height: 1;

    letter-spacing: -.04em;
}

.feature-box p {
    color: var(--muted);

    font-size: 18px;
}

.three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.three-grid article {
    min-height: 210px;

    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--line);
}

.three-grid article:last-child {
    border-right: 0;
}

.three-grid strong {
    font-size: 23px;
}

.three-grid span {
    margin-top: 10px;

    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.contact-grid h2 {
    margin-top: 0;

    font-size: 48px;

    letter-spacing: -.04em;
}

.contact-grid p {
    color: var(--muted);

    font-size: 18px;
}

.contact-box {
    padding: 40px;

    display: flex;
    flex-direction: column;

    border-left: 5px solid var(--orange);

    background: #fff;
}

.contact-box small {
    color: var(--muted);

    font-weight: 800;
}

.contact-box strong {
    margin: 20px 0 6px;

    font-size: 26px;
}

.contact-box span {
    color: var(--muted);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #111315;

    color: #fff;
}

.footer-inner {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;

    padding: 58px 0;

    display: flex;
    justify-content: space-between;

    gap: 40px;
}

.footer-brand strong {
    font-size: 22px;
}

.footer-brand p {
    color: #8d959b;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;

    gap: 24px;

    color: #b7bec3;

    font-size: 13px;
}

.footer-inner nav a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 20px;

    border-top:
        1px solid rgba(255,255,255,.08);

    color: #737b81;

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1150px) {

    .main-nav {
        position: absolute;

        top: 86px;
        right: 0;
        left: 0;

        padding: 28px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        background: var(--dark);

        border-top:
            1px solid rgba(255,255,255,.08);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-soon span {
        position: static;

        margin-left: 8px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-info {
        max-width: 620px;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .three-grid {
        grid-template-columns: 1fr;
    }

    .three-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}


@media (max-width: 760px) {

    .header-inner,
    .hero-inner,
    .section,
    .footer-inner {
        width: min(
            calc(100% - 30px),
            var(--max-width)
        );
    }

    .hero {
        min-height: auto;

        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: clamp(
            56px,
            18vw,
            82px
        );
    }

    .hero-content > p {
        font-size: 18px;
    }

    .section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .intro-grid,
    .future-section,
    .feature-box,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .service-grid,
    .future-grid,
    .public-grid {
        grid-template-columns: 1fr;
    }

    .service-card:first-child {
        border-left: 0;
    }

    .service-card {
        min-height: 230px;

        border-right: 0;
        border-bottom:
            1px solid rgba(255,255,255,.13);
    }

    .feature-box {
        padding: 30px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
