:root {
    --font-geist: Arial, Helvetica, sans-serif;
    --font-manrope: Manrope, Arial, sans-serif;
    --ink: #0a0e1a;
    --navy: #0d1525;
    --panel: #121829;
    --gold: #d4af37;
    --gold2: #f0d36d;
    --blue: #5dd8ff;
    --blue2: #00aaff;s
    --paper: #f5f6f8;
    --muted: #7a8599
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-geist), Arial, sans-serif
}

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

.shell {
    width: min(1160px, calc(100% - 48px));
    margin: auto
}

.nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    border-bottom: 1px solid #ffffff1a
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font: 800 21px var(--font-manrope);
    letter-spacing: -.04em
}

.brand>span:last-child>span {
    color: var(--blue)
}

.brandMark {
    width: 34px;
    height: 34px;
    border: 1px solid #d4af3766;
    border-radius: 9px;
    background: #d4af3712;
    display: grid;
    place-items: center;
    color: var(--blue)
}

nav {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #c7ced9
}

nav a:hover {
    color: white
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--blue);
    color: var(--ink);
    padding: 15px 22px;
    border-radius: 7px;
    font-weight: 750;
    font-size: 14px;
    box-shadow: 0 8px 30px #d4af3728;
    transition: .2s
}

.button:hover {
    background: var(--blue2);
    transform: translateY(-1px)
}

.buttonSmall {
    padding: 11px 16px;
    font-size: 13px
}

.hero {
    min-height: 760px;
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 160px 0 90px
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#ffffff08 1px, transparent 1px), linear-gradient(90deg, #ffffff08 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none
}

.heroGlow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    right: -200px;
    top: -220px;
    background: #5dd8ff12;
    filter: blur(30px)
}

.heroGrid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: var(--blue) !important;
    margin: 0 0 22px
}

.eyebrow i {
    margin-right: 8px
}

.hero h1,
.section h2,
.cta h2 {
    font-family: var(--font-manrope);
    letter-spacing: -.055em
}

.hero h1 {
    font-size: clamp(52px, 6vw, 78px);
    line-height: 1.02;
    margin: 0 0 28px;
    font-weight: 750
}

.hero h1 em {
    font-style: normal;
    color: var(--blue)
}

.lede {
    font-size: 19px;
    line-height: 1.65;
    color: #b8c5d6;
    max-width: 650px
}

.heroActions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 36px 0 48px
}

.textLink {
    font-size: 14px;
    color: #d7dce4
}

.textLink i {
    margin-left: 8px;
    color: var(--blue)
}

.trustLine {
    display: flex;
    gap: 34px;
    color: #8e9aab;
    font-size: 12px
}

.trustLine strong {
    display: block;
    color: white;
    font: 750 21px var(--font-manrope);
    margin-bottom: 3px
}

.heroPanel {
    border: 1px solid #ffffff18;
    background: linear-gradient(145deg, #151d31dd, #0d1220dd);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 32px 80px #0008;
    transform: perspective(1000px) rotateY(-3deg)
}

.panelTop {
    display: flex;
    justify-content: space-between;
    color: #aeb7c5;
    font-size: 12px
}

.live {
    color: #94e0ba
}

.live i {
    font-size: 7px;
    margin-right: 5px
}

.routeVisual {
    height: 260px;
    position: relative;
    margin: 20px 0;
    background: radial-gradient(circle at center, #5dd8ff12, transparent 62%);
    border: 1px solid #ffffff0c;
    border-radius: 12px
}

.routeLine {
    position: absolute;
    width: 66%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    left: 17%;
    top: 51%;
    transform: rotate(-13deg);
    box-shadow: 0 0 12px #5dd8ff88
}

.city {
    position: absolute;
    font-size: 10px;
    color: #98a5b7
}

.city i {
    color: var(--gold);
    margin-right: 5px
}

.cityOne {
    left: 8%;
    bottom: 22%
}

.cityTwo {
    right: 7%;
    top: 20%
}

.truckDot {
    position: absolute;
    left: 49%;
    top: 42%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 8px #d4af3718
}

.panelMetrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.panelMetrics div {
    background: #ffffff08;
    border: 1px solid #ffffff0a;
    padding: 14px;
    border-radius: 9px
}

.panelMetrics small {
    display: block;
    color: #7f8b9c;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.panelMetrics strong {
    font-size: 13px;
    margin-top: 5px;
    display: block
}

.section {
    padding: 110px 0
}

.sectionIntro {
    max-width: 720px
}

.sectionIntro h2,
.cta h2 {
    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.06;
    margin: 0 0 22px
}

.sectionIntro>p:last-child,
.split>p,
.platformCopy>p,
.ctaInner p {
    font-size: 17px;
    line-height: 1.7;
    color: #697487
}

.equation {
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 58px
}

.equation>div {
    padding: 32px;
    border: 1px solid #e1e4e9;
    border-radius: 13px;
    background: #fafafa
}

.equation>div>i {
    font-size: 24px;
    color: #9ba4b0;
    margin-bottom: 38px;
    display: block
}

.equation span {
    display: block;
    color: #8a94a2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.equation strong {
    display: block;
    font: 750 20px var(--font-manrope);
    margin-top: 7px
}

.equation>b {
    text-align: center;
    color: #a5acb7
}

.equation .accentCard {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
    box-shadow: 0 18px 45px #0a0e1a22
}

.equation .accentCard>i {
    color: var(--blue)
}

.sectionDark {
    background: var(--navy);
    color: white
}

.split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end
}

.split>p {
    color: #9ca8b9;
    margin: 0
}

.serviceGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    border-top: 1px solid #ffffff14;
    border-left: 1px solid #ffffff14
}

.service {
    padding: 34px;
    border-right: 1px solid #ffffff14;
    border-bottom: 1px solid #ffffff14
}

.service>i {
    color: var(--blue);
    font-size: 21px
}

.service h3 {
    font: 700 17px var(--font-manrope);
    margin: 25px 0 10px
}

.service p {
    color: #97a4b7;
    font-size: 14px;
    line-height: 1.65;
    margin: 0
}

.platform {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: center
}

.dashboard {
    background: #0f1627;
    border-radius: 16px;
    box-shadow: 0 30px 70px #10192c35;
    overflow: hidden;
    color: white
}

.dashBar {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid #ffffff13
}

.dashBar span {
    font-weight: 700
}

.dashBar span i {
    color: var(--gold);
    margin-right: 8px
}

.dashBar small {
    color: #7f8998
}

.dashBody {
    display: flex;
    height: 350px
}

.dashSidebar {
    width: 60px;
    border-right: 1px solid #ffffff10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 28px;
    color: #667083
}

.dashSidebar .active {
    color: var(--gold)
}

.dashContent {
    padding: 25px;
    flex: 1
}

.dashCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.dashCards span {
    padding: 16px;
    background: #ffffff08;
    border-radius: 8px
}

.dashCards small {
    display: block;
    color: #788495;
    font-size: 9px;
    text-transform: uppercase
}

.dashCards strong {
    display: block;
    margin-top: 6px;
    font-size: 13px
}

.chart {
    height: 155px;
    margin-top: 22px;
    display: flex;
    align-items: end;
    gap: 10px;
    border-bottom: 1px solid #ffffff18
}

.chart span {
    flex: 1;
    background: linear-gradient(var(--blue), #5dd8ff18);
    border-radius: 4px 4px 0 0
}

.chart span:nth-child(1) {
    height: 36%
}

.chart span:nth-child(2) {
    height: 57%
}

.chart span:nth-child(3) {
    height: 44%
}

.chart span:nth-child(4) {
    height: 71%
}

.chart span:nth-child(5) {
    height: 63%
}

.chart span:nth-child(6) {
    height: 82%
}

.chart span:nth-child(7) {
    height: 92%;
    background: linear-gradient(var(--gold), #d4af3718)
}

.dashFooter {
    font-size: 9px;
    color: #7e8b9e;
    margin-top: 24px
}

.dashFooter i {
    color: var(--gold)
}

.platformCopy h2 {
    font: 750 44px/1.08 var(--font-manrope);
    letter-spacing: -.05em;
    margin: 0 0 22px
}

.platformCopy ul {
    list-style: none;
    padding: 0;
    margin: 28px 0
}

.platformCopy li {
    padding: 9px 0;
    font-size: 14px
}

.platformCopy li i {
    color: var(--gold);
    margin-right: 12px
}

.process {
    background: var(--paper)
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 55px
}

.steps article {
    padding: 0 28px;
    border-left: 1px solid #dce0e6
}

.steps article:first-child {
    padding-left: 0;
    border: 0
}

.steps span {
    font: 700 12px var(--font-manrope);
    color: var(--gold)
}

.steps h3 {
    font: 700 17px var(--font-manrope);
    margin: 28px 0 12px
}

.steps p {
    font-size: 13px;
    line-height: 1.65;
    color: #707b8b
}

.faq .sectionIntro {
    text-align: center;
    margin: auto
}

.faqList {
    max-width: 820px;
    margin: 50px auto 0
}

.faqList details {
    border-top: 1px solid #dfe3e8
}

.faqList details:last-child {
    border-bottom: 1px solid #dfe3e8
}

.faqList summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-weight: 700;
    cursor: pointer
}

.faqList summary::-webkit-details-marker {
    display: none
}

.faqList summary i {
    color: var(--blue);
    transition: .2s
}

.faqList details[open] summary i {
    transform: rotate(45deg)
}

.faqList details p {
    color: #687587;
    line-height: 1.7;
    margin: 0 40px 26px 0
}

.cta {
    background: var(--blue);
    padding: 80px 0
}

.ctaInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.cta .eyebrow {
    color: #5a4810 !important
}

.cta h2 {
    margin-bottom: 12px
}

.ctaInner p {
    color: #564814;
    max-width: 680px;
    margin-bottom: 0
}

.buttonLight {
    background: var(--ink);
    color: white;
    white-space: nowrap
}

.buttonLight:hover {
    background: #1a2035
}

.cta .button {
    box-shadow: none
}

footer {
    background: var(--ink);
    color: white;
    padding: 70px 0 25px
}

.footerGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px
}

.footerGrid>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #8f9bae;
    font-size: 13px
}

.footerGrid>div:first-child p {
    max-width: 350px;
    line-height: 1.6
}

.footerGrid strong {
    color: white;
    margin-bottom: 8px
}

.legal {
    border-top: 1px solid #ffffff12;
    margin-top: 50px;
    padding-top: 22px;
    color: #697487;
    font-size: 11px;
    display: flex;
    justify-content: space-between
}

@media(max-width:900px) {
    nav {
        display: none
    }

    .heroGrid,
    .platform,
    .split {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 140px
    }

    .heroPanel {
        transform: none
    }

    .serviceGrid {
        grid-template-columns: 1fr 1fr
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 35px
    }

    .steps article:nth-child(3) {
        border: 0;
        padding-left: 0
    }

    .equation {
        grid-template-columns: 1fr
    }

    .equation>b {
        padding: 4px
    }

    .ctaInner {
        align-items: flex-start;
        flex-direction: column
    }

    .footerGrid {
        grid-template-columns: 1fr 1fr
    }

    .footerGrid>div:first-child {
        grid-column: 1/-1
    }
}

@media(max-width:600px) {
    .shell {
        width: min(100% - 32px, 1160px)
    }

    .nav {
        height: 72px
    }

    .buttonSmall {
        display: none
    }

    .hero {
        min-height: auto;
        padding: 125px 0 70px
    }

    .hero h1 {
        font-size: 45px
    }

    .lede {
        font-size: 16px
    }

    .heroActions {
        align-items: flex-start;
        flex-direction: column
    }

    .trustLine {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .heroPanel {
        padding: 16px
    }

    .routeVisual {
        height: 210px
    }

    .section {
        padding: 78px 0
    }

    .serviceGrid {
        grid-template-columns: 1fr
    }

    .split {
        gap: 25px
    }

    .platform {
        gap: 45px
    }

    .dashBody {
        height: 300px
    }

    .steps {
        grid-template-columns: 1fr
    }

    .steps article,
    .steps article:nth-child(3) {
        border-left: 1px solid #dce0e6;
        padding-left: 22px
    }

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .footerGrid>div:first-child {
        grid-column: auto
    }

    .legal {
        flex-direction: column;
        gap: 10px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .button {
        transition: none
    }
}