:root {
    --green-950: #032f25;
    --green-900: #063f31;
    --green-800: #075f46;
    --green-700: #087d58;
    --green-600: #0a9b68;
    --green-500: #13b879;
    --green-300: #73dab0;
    --mint-100: #e7f7f0;
    --mint-50: #f4fbf8;
    --ink: #10251e;
    --muted: #5f726b;
    --line: #dce9e3;
    --white: #ffffff;
    --cream: #fffdf8;
    --yellow: #ffd66b;
    --shadow-sm: 0 12px 30px rgba(5, 62, 46, .08);
    --shadow-lg: 0 30px 80px rgba(2, 40, 29, .22);
    --radius-md: 20px;
    --radius-lg: 32px;
    --shell: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -.035em;
    line-height: 1.08;
}

h1 {
    margin-bottom: 24px;
    max-width: 710px;
    font-size: clamp(3.25rem, 6.7vw, 6.4rem);
    font-weight: 780;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 4.2vw, 4.5rem);
    font-weight: 760;
}

h3 {
    font-size: 1.45rem;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--green-950);
    background: var(--white);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    color: var(--white);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

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

.brand img {
    width: 126px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: .95rem;
    font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease;
}

.main-nav > a:not(.nav-cta):hover {
    color: var(--white);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 17px;
    color: var(--green-950);
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(112deg, rgba(2, 47, 37, .98) 8%, rgba(5, 104, 74, .94) 58%, rgba(1, 62, 50, .98)),
        url("../img/backgrounds/1.jpg") center / cover;
}

.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, .12) .7px, transparent .7px);
    background-size: 17px 17px;
    opacity: .16;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero__glow--one {
    width: 530px;
    height: 530px;
    top: -190px;
    right: 4%;
    background: rgba(76, 225, 161, .13);
}

.hero__glow--two {
    width: 420px;
    height: 420px;
    bottom: 4%;
    left: -190px;
    background: rgba(255, 214, 107, .08);
}

.hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    align-items: center;
    gap: 54px;
    min-height: 820px;
    padding-top: 118px;
    padding-bottom: 60px;
}

.hero__content {
    padding-top: 20px;
}

.eyebrow,
.section-kicker {
    margin-bottom: 20px;
    color: var(--green-700);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-300);
}

.eyebrow > span {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: currentColor;
}

.hero__lead {
    max-width: 620px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.08rem, 1.55vw, 1.27rem);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button--primary {
    color: var(--green-950);
    background: var(--white);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.button--primary:hover {
    box-shadow: 0 22px 48px rgba(0, 0, 0, .24);
}

.button--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .24);
    backdrop-filter: blur(12px);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .4);
}

.button__icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--white);
    background: var(--green-600);
    border-radius: 9px;
    font-size: 1.25rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 34px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    list-style: none;
}

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

.hero__trust li > span:not(.trust-dot) {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: var(--green-950);
    background: var(--green-300);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 900;
}

.trust-dot {
    width: 8px;
    height: 8px;
    background: #6cf0b8;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(108, 240, 184, .12);
}

.hero__visual {
    position: relative;
    display: grid;
    min-height: 690px;
    place-items: end center;
}

.phone-stage {
    position: relative;
    z-index: 2;
    width: min(100%, 380px);
}

.phone-halo {
    position: absolute;
    width: 470px;
    height: 470px;
    top: 80px;
    left: 50%;
    z-index: -1;
    background: linear-gradient(145deg, rgba(255, 255, 255, .17), rgba(74, 222, 164, .12));
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
}

.hero-phone {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 35px 40px rgba(0, 0, 0, .32));
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.visual-orbit--one {
    width: 560px;
    height: 560px;
    right: -70px;
    bottom: 20px;
}

.visual-orbit--two {
    width: 410px;
    height: 410px;
    right: 5px;
    bottom: 95px;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 225px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(1, 37, 28, .2);
    backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: .88rem;
}

.floating-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: .72rem;
}

.floating-card__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    background: var(--mint-100);
    border-radius: 13px;
    font-size: 1.25rem;
}

.floating-card--top {
    top: 128px;
    right: -42px;
    animation: float 4.8s ease-in-out infinite;
}

.floating-card--bottom {
    bottom: 82px;
    left: -65px;
    animation: float 5.3s ease-in-out .5s infinite;
}

.live-pulse {
    position: relative;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    flex: 0 0 auto;
    background: var(--green-500);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(19, 184, 121, .14);
}

.hero__partners {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-height: 80px;
    margin-top: -42px;
    color: rgba(255, 255, 255, .58);
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .77rem;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero__partners i {
    width: 4px;
    height: 4px;
    background: var(--green-300);
    border-radius: 50%;
}

.section {
    padding: 120px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading > p:last-child {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -90px;
    right: -80px;
    content: "";
    background: var(--mint-100);
    border-radius: 50%;
    transition: transform .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #b9ddce;
    box-shadow: 0 22px 50px rgba(6, 75, 54, .13);
}

.service-card:hover::after {
    transform: scale(1.25);
}

.service-card--featured {
    color: var(--white);
    background: var(--green-900);
    border-color: var(--green-900);
}

.service-card--featured::after {
    background: rgba(115, 218, 176, .1);
}

.service-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 46px;
    place-items: center;
    background: var(--mint-100);
    border-radius: 17px;
    font-size: 1.65rem;
}

.service-card--featured .service-card__icon {
    background: rgba(255, 255, 255, .12);
}

.service-card__tag {
    position: absolute;
    top: 30px;
    right: 24px;
    padding: 6px 10px;
    color: var(--green-950);
    background: var(--yellow);
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 14px;
}

.service-card p {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: .94rem;
}

.service-card--featured p {
    color: rgba(255, 255, 255, .68);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--green-700);
    font-size: .87rem;
    font-weight: 780;
}

.service-card--featured a {
    color: var(--green-300);
}

.tracking {
    background: var(--mint-50);
}

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

.tracking__content > p:not(.section-kicker) {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

.tracking__demo {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #dff2e9;
    border: 10px solid var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 125, 88, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 125, 88, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: rotate(-8deg) scale(1.2);
}

.map-road {
    position: absolute;
    height: 30px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(8, 125, 88, .08);
    border-radius: 30px;
}

.map-road--one {
    width: 720px;
    top: 205px;
    left: -100px;
    transform: rotate(-26deg);
}

.map-road--two {
    width: 620px;
    top: 205px;
    left: -34px;
    transform: rotate(61deg);
}

.map-pin {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--white);
    background: var(--green-800);
    border: 5px solid var(--white);
    border-radius: 50% 50% 50% 8px;
    box-shadow: 0 12px 25px rgba(3, 57, 41, .2);
    transform: rotate(-45deg);
}

.map-pin > * {
    transform: rotate(45deg);
}

.map-pin--store {
    top: 92px;
    right: 95px;
}

.map-pin--rider {
    bottom: 112px;
    left: 110px;
    color: var(--green-950);
    background: var(--yellow);
    font-size: 1.25rem;
}

.tracking-status {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.tracking-status__dot {
    width: 11px;
    height: 11px;
    background: var(--green-500);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(19, 184, 121, .13);
}

.tracking-status small,
.tracking-status strong {
    display: block;
}

.tracking-status small {
    color: var(--muted);
    font-size: .7rem;
}

.tracking-status strong {
    font-size: .95rem;
}

.tracking-status b {
    color: var(--green-800);
    font-size: 1.1rem;
}

.check-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 650;
}

.check-list span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--green-800);
    background: var(--mint-100);
    border-radius: 9px;
    font-size: .8rem;
    font-weight: 900;
}

.how {
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step {
    position: relative;
    padding: 34px;
    background: var(--cream);
    border: 1px solid #eee9dc;
    border-radius: var(--radius-md);
}

.step__number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: #d9dedb;
    font-size: 2.4rem;
    font-weight: 850;
    letter-spacing: -.06em;
}

.step__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 46px;
    place-items: center;
    color: var(--white);
    background: var(--green-800);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(7, 95, 70, .18);
    font-size: 1.5rem;
    font-weight: 800;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    margin-bottom: 0;
    color: var(--muted);
}

.download {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    color: var(--white);
    background: var(--green-950);
}

.download::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: radial-gradient(rgba(255, 255, 255, .1) .8px, transparent .8px);
    background-size: 18px 18px;
    opacity: .2;
}

.download__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.download__shape--one {
    width: 420px;
    height: 420px;
    top: -230px;
    left: 10%;
    background: rgba(19, 184, 121, .12);
}

.download__shape--two {
    width: 340px;
    height: 340px;
    right: -130px;
    bottom: -190px;
    background: rgba(255, 214, 107, .08);
}

.download__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 80px;
}

.eyebrow--light {
    color: var(--green-300);
}

.download__content h2 {
    max-width: 700px;
}

.download__content > p:not(.eyebrow) {
    max-width: 610px;
    color: rgba(255, 255, 255, .66);
    font-size: 1.08rem;
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.store-badge {
    position: relative;
    display: inline-flex;
    width: 154px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 9px;
    transition: transform .2s ease, border-color .2s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .58);
}

.store-badge img {
    width: 100%;
    height: auto;
}

.store-badge--soon {
    cursor: default;
    opacity: .68;
}

.store-badge--soon small {
    position: absolute;
    right: 4px;
    bottom: 3px;
    padding: 2px 5px;
    color: var(--green-950);
    background: var(--yellow);
    border-radius: 4px;
    font-size: .52rem;
    font-weight: 850;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.web-card {
    position: relative;
    padding: 42px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.web-card::after {
    position: absolute;
    width: 130px;
    height: 130px;
    top: -52px;
    right: -44px;
    content: "";
    background: var(--yellow);
    border-radius: 50%;
    opacity: .24;
}

.web-card__icon {
    position: relative;
    display: grid;
    width: 76px;
    height: 62px;
    margin-bottom: 34px;
    place-items: center;
    background: var(--mint-100);
    border-radius: 18px;
}

.web-card__icon::before {
    width: 42px;
    height: 28px;
    content: "";
    border: 3px solid var(--green-800);
    border-radius: 5px;
}

.web-card__icon::after {
    position: absolute;
    width: 30px;
    height: 3px;
    margin-top: 39px;
    content: "";
    background: var(--green-800);
    border-radius: 3px;
}

.web-card p {
    margin-bottom: 6px;
    color: var(--green-700);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.web-card h3 {
    margin-bottom: 28px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.button--web {
    width: 100%;
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 15px 28px rgba(8, 125, 88, .2);
}

.button--web:hover {
    background: var(--green-800);
}

.web-card > small {
    display: block;
    margin-top: 13px;
    color: var(--muted);
    text-align: center;
}

.site-footer {
    padding: 36px 0;
    color: rgba(255, 255, 255, .62);
    background: #021f19;
}

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

.brand--footer img {
    width: 90px;
}

.footer__inner p {
    margin: 0;
    font-size: .86rem;
}

.footer__copy {
    text-align: right;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay,
.reveal--delay-1 {
    transition-delay: .1s;
}

.reveal--delay-2 {
    transition-delay: .18s;
}

.reveal--delay-3 {
    transition-delay: .26s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@media (max-width: 1100px) {
    .hero__layout {
        grid-template-columns: 1.05fr .95fr;
        gap: 26px;
    }

    .floating-card--top {
        right: 0;
    }

    .floating-card--bottom {
        left: 0;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tracking__layout {
        gap: 60px;
    }
}

@media (max-width: 820px) {
    .header__inner {
        min-height: 78px;
    }

    .brand img {
        width: 105px;
    }

    .js .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 16px auto;
        display: grid;
        gap: 0;
        padding: 14px;
        color: var(--ink);
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow-lg);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity .2s ease, transform .2s ease;
    }

    .js .main-nav {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        visibility: hidden;
    }

    .js .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .main-nav > a:not(.nav-cta) {
        padding: 13px 12px;
        color: var(--ink);
        border-bottom: 1px solid var(--line);
    }

    .nav-cta {
        justify-content: center;
        margin-top: 10px;
        color: var(--white);
        background: var(--green-700);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
    }

    .hero__layout {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 132px;
        text-align: center;
    }

    .eyebrow,
    .hero__actions,
    .hero__trust {
        justify-content: center;
    }

    .hero__lead {
        margin-inline: auto;
    }

    .hero__visual {
        min-height: 620px;
    }

    .phone-stage {
        width: min(100%, 390px);
    }

    .hero__partners {
        margin-top: 0;
    }

    .tracking__layout,
    .download__layout {
        grid-template-columns: 1fr;
    }

    .tracking__layout {
        gap: 70px;
    }

    .tracking__content {
        max-width: 650px;
    }

    .download__layout {
        gap: 55px;
    }

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

    .footer__inner {
        grid-template-columns: auto 1fr;
    }

    .footer__copy {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    h1 {
        font-size: clamp(2.8rem, 15vw, 4rem);
    }

    h2 {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
    }

    .hero__layout {
        padding-bottom: 36px;
    }

    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero__trust {
        display: grid;
        justify-content: start;
        width: max-content;
        margin-inline: auto;
        text-align: left;
    }

    .hero__visual {
        min-height: 525px;
    }

    .phone-stage {
        width: 310px;
    }

    .phone-halo {
        width: 340px;
        height: 340px;
    }

    .visual-orbit--one {
        width: 390px;
        height: 390px;
        right: calc(50% - 195px);
    }

    .visual-orbit--two {
        width: 310px;
        height: 310px;
        right: calc(50% - 155px);
    }

    .floating-card {
        min-width: auto;
        padding: 10px 12px;
    }

    .floating-card--top {
        top: 88px;
        right: -4px;
    }

    .floating-card--bottom {
        bottom: 52px;
        left: -4px;
    }

    .floating-card__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .floating-card strong {
        font-size: .76rem;
    }

    .floating-card small {
        font-size: .62rem;
    }

    .hero__partners {
        flex-wrap: wrap;
        gap: 11px 15px;
        padding: 22px 0;
        font-size: .62rem;
    }

    .section {
        padding: 84px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

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

    .service-card {
        min-height: 310px;
    }

    .tracking__demo {
        min-height: 420px;
        border-width: 7px;
    }

    .map-pin--store {
        right: 54px;
    }

    .map-pin--rider {
        left: 52px;
    }

    .tracking-status {
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 14px;
    }

    .step {
        padding: 28px;
    }

    .download {
        padding: 84px 0;
    }

    .store-links {
        justify-content: center;
    }

    .store-badge {
        width: calc(50% - 6px);
    }

    .web-card {
        padding: 30px 24px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    .brand--footer {
        justify-content: center;
    }

    .footer__copy {
        grid-column: auto;
        text-align: center;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
