:root {
    --orange: #ff4e13;
    --ink: #0a0a0a;
    --muted: #686868;
    --paper: #ffffff;
    --surface: #f7f7f7;
    --line: #dedede;
    --shell: 1280px;
    --radius: 28px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--paper);
}

#features,
#transfer,
#download {
    scroll-margin-top: 104px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    color: inherit;
    font: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-150%);
}

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

.site-nav {
    position: relative;
    z-index: 100;
    height: 88px;
    background: rgba(255, 255, 255, 0.96);
    transition: box-shadow 180ms ease;
}

.site-nav.is-scrolled {
    position: sticky;
    top: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 9px;
    width: fit-content;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand strong {
    color: var(--orange);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a,
.footer-links a {
    transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
    color: var(--orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 16px;
}

.nav-stores {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-stores a {
    display: block;
    transition: transform 160ms ease;
}

.nav-stores a:hover {
    transform: translateY(-2px);
}

.nav-stores img {
    width: auto;
    height: 40px;
}

.language-switcher {
    display: flex;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.language-switcher button {
    width: 34px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.language-switcher button.active {
    background: var(--ink);
    color: #fff;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 25px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

.hero {
    overflow: hidden;
    background: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    align-items: center;
    min-height: calc(100svh - 88px);
    padding-block: 62px 92px;
}

.hero-copy {
    position: relative;
    z-index: 5;
    max-width: 590px;
    padding-left: 24px;
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin: 0 0 26px;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
}

.hero-proof::before {
    width: 8px;
    height: 8px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(56px, 5.1vw, 76px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.03;
}

.hero-lede {
    max-width: 545px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

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

.hero-store-row {
    margin-top: 28px;
}

.store-button {
    display: block;
    transition: transform 160ms ease, opacity 160ms ease;
}

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

.store-button:focus-visible {
    outline: 3px solid rgba(255, 78, 19, 0.3);
    outline-offset: 4px;
}

.store-button img {
    width: auto;
    height: 50px;
}

.hero-note {
    margin: 14px 0 0;
    color: #8b8b8b;
    font-size: 12px;
}

.hero-product {
    position: relative;
    min-height: 760px;
}

.hero-device {
    position: relative;
    width: min(100%, 610px);
    height: 750px;
    margin-left: auto;
    isolation: isolate;
}

.device-shell {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: 340px;
    height: 676px;
    padding: 6px;
    border: 1px solid #2a2a2a;
    border-radius: 52px;
    background: #090909;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16), 0 7px 18px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.device-screen {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background: #f1f3f7;
}

.device-screen::before {
    position: absolute;
    inset: 0 0 auto;
    height: 468px;
    background: #000;
    content: "";
}

.device-statusbar,
.device-vehicle-meta,
.device-screen h2,
.device-lower-panel,
.device-tabs {
    position: relative;
    z-index: 2;
}

.device-statusbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 45px;
    padding: 10px 19px 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.device-island {
    width: 90px;
    height: 25px;
    border-radius: 999px;
    background: #080808;
    box-shadow: inset 0 0 0 1px #111;
}

.device-status-icons {
    display: flex;
    justify-self: end;
    gap: 5px;
    align-items: center;
    font-size: 13px;
}

.device-status-icons i:last-child {
    color: #43d16f;
    font-size: 17px;
}

.device-vehicle-meta {
    display: grid;
    grid-template-columns: 27px 1fr auto;
    gap: 9px;
    align-items: center;
    padding: 12px 18px 0;
    color: #fff;
}

.device-vehicle-meta img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.device-vehicle-meta strong,
.device-vehicle-meta small {
    display: block;
}

.device-vehicle-meta strong {
    max-width: 160px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-vehicle-meta small {
    margin-top: 4px;
    color: #aaa;
    font-size: 9px;
}

.device-emergency {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ff4651;
    font-size: 9px;
    font-weight: 700;
}

.device-screen h2 {
    max-width: 285px;
    margin: 30px 18px 0;
    color: #fff;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.device-vehicle-stage {
    position: absolute;
    z-index: 4;
    top: 226px;
    left: 50%;
    width: 570px;
    height: 190px;
    transform: translateX(-47%);
}

.vehicle-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.2));
    transform: translateX(28px) scale(0.965);
    transition: opacity 420ms ease, transform 620ms cubic-bezier(.2,.78,.2,1);
}

.vehicle-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.device-health-card {
    position: absolute;
    z-index: 6;
    top: 390px;
    left: 50%;
    width: 410px;
    min-height: 112px;
    padding: 17px 20px 16px;
    border: 1px solid rgba(255, 78, 19, 0.72);
    border-radius: 22px;
    background: #050505;
    color: #fff;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
    transform: translateX(-50%);
}

.device-health-card.is-updating {
    animation: health-pop 420ms cubic-bezier(.2,.8,.2,1);
}

.device-health-topline,
.device-health-topline > div,
.device-health-topline > small {
    display: flex;
    align-items: center;
}

.device-health-topline {
    justify-content: space-between;
}

.device-health-topline > div {
    gap: 11px;
}

.device-health-topline strong {
    font-size: 43px;
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.device-health-topline span {
    color: #a5a5a5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.device-health-topline > small {
    gap: 6px;
    color: #9c9c9c;
    font-size: 9px;
}

.device-health-topline > small b {
    color: #fff;
    font-size: 11px;
}

.device-health-track {
    overflow: hidden;
    height: 5px;
    margin-top: 17px;
    border-radius: 999px;
    background: #292929;
}

.device-health-track span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #77da17;
    transition: width 500ms cubic-bezier(.2,.8,.2,1), background 240ms ease;
}

.device-health-card p {
    margin: 8px 0 0;
    color: #77da17;
    font-size: 10px;
    font-weight: 600;
}

.device-lower-panel {
    position: absolute;
    inset: 468px 0 70px;
    padding: 36px 15px 14px;
    background: #f1f3f7;
}

.device-check-button {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 52px;
    padding: 0 17px;
    border-radius: 16px;
    background: var(--orange);
    color: #fff;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14);
    font-size: 13px;
    font-weight: 750;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.device-check-button:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14), 0 8px 18px rgba(255, 78, 19, 0.24);
}

.device-lower-panel > p {
    margin: 9px 0 11px;
    color: #7b8190;
    font-size: 8px;
    text-align: center;
}

.device-insight {
    display: grid;
    grid-template-columns: 29px 1fr auto;
    gap: 9px;
    align-items: center;
    min-height: 50px;
    padding: 8px 10px;
    border: 1px solid #e0e2e7;
    border-radius: 14px;
    background: #fff;
    color: #111827;
}

.device-insight > i:first-child {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    background: #f0f1f3;
    font-size: 16px;
}

.device-insight strong,
.device-insight small {
    display: block;
}

.device-insight strong {
    font-size: 9px;
    line-height: 1.2;
}

.device-insight small {
    margin-top: 2px;
    color: #7e8797;
    font-size: 7px;
}

.device-tabs {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    height: 70px;
    padding: 11px 8px 9px;
    border-top: 1px solid #e4e5e9;
    background: #fff;
}

.device-tabs > span {
    display: grid;
    justify-items: center;
    gap: 4px;
    color: #697386;
    font-size: 15px;
}

.device-tabs small {
    font-size: 7px;
    font-weight: 600;
}

.device-tabs .is-active {
    color: var(--orange);
}

.device-tabs .device-camera {
    align-self: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 7px;
    place-content: center;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 1px #d9dce2;
}

.vehicle-slider-footer {
    position: absolute;
    z-index: 7;
    top: 700px;
    left: 50%;
    display: grid;
    grid-template-columns: auto minmax(70px, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: min(430px, 86%);
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #dedede;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
    transform: translateX(-50%);
}

.vehicle-slider-footer > span {
    color: #888;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.vehicle-slider-footer > strong {
    font-size: 15px;
    letter-spacing: -0.02em;
}

.vehicle-controls,
.vehicle-dots {
    display: flex;
    align-items: center;
}

.vehicle-controls {
    gap: 8px;
}

.vehicle-dots {
    gap: 5px;
}

.vehicle-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.vehicle-controls > button {
    width: 27px;
    height: 27px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    font-size: 12px;
}

.vehicle-dots button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d0d0d0;
}

.vehicle-dots button.is-active {
    width: 15px;
    border-radius: 999px;
    background: var(--ink);
}

@keyframes health-pop {
    0% { transform: translateX(-50%) scale(0.985); }
    62% { transform: translateX(-50%) scale(1.012); }
    100% { transform: translateX(-50%) scale(1); }
}

.statement {
    padding: 98px 0 112px;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.statement-inner {
    text-align: center;
}

.statement h2 {
    max-width: 1000px;
    margin: 0 auto;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.features {
    padding: 120px 0;
    background: #fff;
}

.section-title {
    margin: 0 0 56px;
    text-align: center;
    font-size: clamp(42px, 4.7vw, 64px);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.feature-showcase {
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 1.08fr);
    gap: 70px;
    align-items: center;
    min-height: 830px;
    padding: 60px 64px;
    border: 1px solid transparent;
    border-radius: 36px;
    background: var(--paper);
}

.feature-preview {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 710px;
}

.feature-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 100%;
    height: min(690px, 66vw);
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 30px;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.11));
    transform: translate(-50%, -48%) scale(0.98);
    transition: opacity 320ms ease, transform 420ms cubic-bezier(.2,.75,.2,1);
    pointer-events: none;
}

.feature-screen.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.feature-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.feature-pagination span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d2d2d2;
    transition: background 180ms ease, transform 180ms ease;
}

.feature-pagination span.is-active {
    background: var(--ink);
    transform: scale(1.12);
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature-tab {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    width: 100%;
    min-height: 132px;
    padding: 26px 28px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.feature-tab:hover {
    transform: translateY(-2px);
}

.feature-tab.is-active {
    border-color: var(--ink);
    background: #f1f1f1;
}

.feature-tab strong,
.feature-tab small {
    display: block;
}

.feature-tab strong {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.feature-tab small {
    margin-top: 9px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.feature-tab i {
    font-size: 20px;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.feature-tab.is-active i {
    opacity: 1;
    transform: translateX(0);
}

.transfer {
    padding: 128px 0;
    border-top: 1px solid #ededed;
    background: #fff;
}

.transfer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    gap: 82px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 22px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.transfer-copy h2,
.benefits-heading h2,
.download-inner h2 {
    margin: 0;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.04;
}

.transfer-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.transfer-points {
    display: grid;
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.transfer-points div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 13px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
}

.transfer-points i {
    color: var(--orange);
    font-size: 21px;
}

.transfer-visual {
    overflow: hidden;
    margin: 0;
    border-radius: 30px;
    background: var(--surface);
}

.transfer-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.benefits {
    padding: 128px 0 116px;
    border-top: 1px solid #ededed;
    background: #fff;
}

.benefits-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
    gap: 80px;
    align-items: end;
}

.benefits-heading p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 78px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit {
    min-height: 300px;
    padding: 38px 40px 44px;
}

.benefit + .benefit {
    border-left: 1px solid var(--line);
}

.benefit i {
    color: var(--orange);
    font-size: 35px;
}

.benefit h3 {
    margin: 76px 0 12px;
    font-size: 24px;
    letter-spacing: -0.045em;
}

.benefit p {
    max-width: 310px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.download {
    padding: 126px 0 138px;
    border-top: 1px solid #ededed;
    background: #fff;
}

.download-inner {
    text-align: center;
}

.download-inner h2 {
    max-width: 940px;
    margin-inline: auto;
}

.download-inner > p:not(.eyebrow) {
    max-width: 660px;
    margin: 25px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.store-row-centered {
    justify-content: center;
    margin-top: 32px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #070707;
    color: #fff;
}

.footer-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 235px;
    gap: 48px;
    align-items: end;
    min-height: 430px;
    padding: 74px 0 0;
    border-bottom: 1px solid #292929;
}

.footer-stage::before {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: #292929;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 900ms cubic-bezier(.2,.75,.2,1) 120ms;
}

.footer-stage.is-visible::before {
    transform: scaleX(1);
}

.footer-stage-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}

.footer-brand-morph {
    position: relative;
    width: fit-content;
}

.footer-wordmark {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 22px;
    width: fit-content;
    font-size: clamp(84px, 9.7vw, 148px);
    font-weight: 700;
    letter-spacing: -0.082em;
    line-height: 0.82;
    white-space: nowrap;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(8px) scale(0.985);
    transition: opacity 520ms ease, filter 700ms ease, transform 800ms cubic-bezier(.16,.8,.2,1);
}

.footer-word-window {
    display: block;
    overflow: hidden;
    padding: 0.04em 0.05em 0.1em 0;
}

.footer-word {
    display: block;
}

.footer-word-copilot {
    color: var(--orange);
    font-weight: inherit;
}

.footer-morph-canvas {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: -9%;
    width: 118%;
    height: 220px;
    opacity: 1;
    pointer-events: none;
    transform: translateY(-52%);
    transition: opacity 460ms ease;
    will-change: opacity;
}

.footer-stage.is-morph-complete .footer-morph-canvas {
    opacity: 0;
}

.footer-stage.is-morph-complete .footer-wordmark {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.footer-stage-copy > p {
    margin: 27px 0 0 4px;
    color: #a2a2a2;
    font-size: 14px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 420ms ease 120ms, transform 560ms cubic-bezier(.2,.75,.2,1) 80ms;
}

.footer-stage.is-morph-complete .footer-stage-copy > p {
    opacity: 1;
    transform: translateY(0);
}

.footer-character {
    position: relative;
    z-index: 3;
    align-self: end;
    width: 235px;
    height: auto;
    max-height: 365px;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0;
    filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
    transform: translateY(28px) scale(0.97);
    transition: opacity 520ms ease 160ms, transform 900ms cubic-bezier(.16,.8,.2,1) 100ms;
}

.footer-stage.is-morph-complete .footer-character {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.footer-lower {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    padding: 48px 0 54px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 62px;
    width: min(600px, 100%);
    color: #9b9b9b;
    font-size: 12px;
}

.footer-links > div {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 11px;
}

.footer-links span {
    margin-bottom: 5px;
    color: #5f5f5f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    font-weight: 550;
}

.footer-links a:focus-visible,
.footer-wordmark:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 5px;
}

.footer-meta {
    align-self: end;
    text-align: right;
}

.footer-meta p {
    margin: 0;
    color: #686868;
    font-size: 11px;
}

.footer-meta p:first-child {
    margin-bottom: 12px;
    color: #a6a6a6;
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 650ms cubic-bezier(.2,.75,.2,1);
}

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

@media (max-width: 1180px) {
    .nav-stores {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero-product {
        min-height: 750px;
    }

    .feature-showcase {
        grid-template-columns: minmax(360px, 0.8fr) 1fr;
        gap: 42px;
        padding-inline: 42px;
    }

    .transfer-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
        gap: 52px;
    }
}

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

    .site-nav {
        height: 76px;
    }

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

    .brand {
        font-size: 20px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .desktop-nav {
        display: none;
    }

    .nav-actions {
        gap: 9px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-nav {
        position: fixed;
        z-index: 90;
        inset: 76px 0 auto;
        display: grid;
        gap: 0;
        padding: 18px;
        border-top: 1px solid #ededed;
        border-bottom: 1px solid #ededed;
        background: #fff;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
        pointer-events: none;
    }

    .mobile-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-nav a {
        padding: 15px 4px;
        border-bottom: 1px solid #ededed;
        font-size: 17px;
        font-weight: 600;
    }

    .mobile-nav a:last-child {
        border: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 60px 50px;
    }

    .hero-copy {
        max-width: 650px;
    }

    .hero h1 {
        font-size: clamp(54px, 10vw, 74px);
    }

    .hero-product {
        width: min(700px, 100%);
        min-height: 760px;
        margin: 54px auto 0;
    }

    .hero-device {
        margin-inline: auto;
    }

    .statement {
        padding: 86px 0 94px;
    }

    .features,
    .transfer,
    .benefits {
        padding-block: 94px;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 56px;
        min-height: auto;
        padding: 48px 28px;
    }

    .feature-preview {
        min-height: 650px;
    }

    .feature-screen {
        height: 620px;
    }

    .transfer-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .transfer-copy {
        max-width: 690px;
    }

    .benefits-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .benefits-heading p {
        max-width: 620px;
    }

    .benefit {
        padding-inline: 26px;
    }

    .footer-stage {
        grid-template-columns: minmax(0, 1fr) 190px;
        gap: 30px;
        min-height: 380px;
        padding-top: 64px;
    }

    .footer-stage-copy {
        padding-bottom: 60px;
    }

    .footer-wordmark {
        gap: 16px;
        font-size: clamp(68px, 10.8vw, 108px);
    }

    .footer-morph-canvas {
        height: 190px;
    }

    .footer-character {
        width: 190px;
        max-height: 320px;
    }

    .footer-lower {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .footer-meta {
        text-align: left;
    }
}

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

    .language-switcher button {
        width: 30px;
        height: 28px;
    }

    .hero-grid {
        padding-top: 26px;
    }

    .hero-proof {
        min-height: 36px;
        margin-bottom: 18px;
        padding-inline: 14px;
        font-size: 11px;
    }

    .hero h1 {
        max-width: 350px;
        font-size: clamp(44px, 12.2vw, 52px);
        line-height: 1.04;
    }

    .hero-lede {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.45;
    }

    .hero-store-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 22px;
    }

    .hero-store-row .store-button img {
        height: 40px;
    }

    .hero-product {
        min-height: 665px;
        margin-top: 24px;
    }

    .hero-device {
        width: 100%;
        height: 655px;
    }

    .device-shell {
        width: 286px;
        height: 586px;
        border-radius: 45px;
    }

    .device-screen {
        border-radius: 38px;
    }

    .device-screen::before {
        height: 405px;
    }

    .device-statusbar {
        height: 39px;
        padding: 8px 16px 3px;
        font-size: 10px;
    }

    .device-island {
        width: 77px;
        height: 22px;
    }

    .device-vehicle-meta {
        grid-template-columns: 23px 1fr auto;
        gap: 7px;
        padding: 10px 15px 0;
    }

    .device-vehicle-meta img {
        width: 23px;
        height: 23px;
    }

    .device-vehicle-meta strong {
        max-width: 126px;
        font-size: 10px;
    }

    .device-emergency {
        font-size: 8px;
    }

    .device-screen h2 {
        max-width: 245px;
        margin: 25px 15px 0;
        font-size: 27px;
    }

    .device-vehicle-stage {
        top: 194px;
        width: 470px;
        height: 157px;
    }

    .device-health-card {
        top: 334px;
        width: 332px;
        min-height: 96px;
        padding: 14px 16px 13px;
        border-radius: 18px;
    }

    .device-health-topline strong {
        font-size: 36px;
    }

    .device-health-track {
        margin-top: 13px;
    }

    .device-lower-panel {
        inset: 405px 0 61px;
        padding: 31px 12px 10px;
    }

    .device-check-button {
        min-height: 45px;
        padding-inline: 13px;
        border-radius: 14px;
        font-size: 11px;
    }

    .device-lower-panel > p {
        margin-block: 7px 8px;
        font-size: 7px;
    }

    .device-insight {
        min-height: 44px;
        grid-template-columns: 25px 1fr auto;
        padding: 6px 8px;
    }

    .device-insight > i:first-child {
        width: 25px;
        height: 25px;
    }

    .device-insight strong {
        font-size: 8px;
    }

    .device-insight small {
        font-size: 6px;
    }

    .device-tabs {
        height: 61px;
        padding-block: 9px 7px;
    }

    .device-tabs .device-camera {
        width: 38px;
        height: 38px;
        margin-bottom: 6px;
    }

    .vehicle-slider-footer {
        top: 606px;
        grid-template-columns: auto minmax(66px, 1fr) auto;
        width: min(360px, 94%);
        padding: 10px 11px;
    }

    .vehicle-slider-footer > span {
        display: none;
    }

    .vehicle-slider-footer > strong {
        font-size: 13px;
    }

    .vehicle-controls {
        justify-self: end;
    }

    .vehicle-controls > button {
        width: 25px;
        height: 25px;
    }

    .statement {
        padding: 74px 0 80px;
    }

    .statement h2,
    .section-title,
    .transfer-copy h2,
    .benefits-heading h2,
    .download-inner h2 {
        font-size: 42px;
        letter-spacing: -0.055em;
    }

    .features,
    .transfer,
    .benefits {
        padding-block: 78px;
    }

    .download {
        padding-block: 88px 96px;
    }

    .section-title {
        margin-bottom: 36px;
        text-align: left;
    }

    .feature-showcase {
        gap: 38px;
        padding: 30px 14px 14px;
        border-radius: 24px;
    }

    .feature-preview {
        min-height: 520px;
    }

    .feature-screen {
        height: 495px;
        max-width: 94%;
        border-radius: 24px;
    }

    .feature-tab {
        min-height: 0;
        padding: 21px 18px;
        border-radius: 16px;
    }

    .feature-tab strong {
        font-size: 17px;
    }

    .feature-tab small {
        font-size: 13px;
    }

    .feature-tab i {
        display: none;
    }

    .transfer-grid {
        gap: 42px;
    }

    .transfer-copy > p:not(.eyebrow),
    .benefits-heading p,
    .download-inner > p:not(.eyebrow) {
        font-size: 16px;
    }

    .transfer-visual {
        border-radius: 20px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .benefit {
        min-height: 0;
        padding: 30px 0 34px;
    }

    .benefit + .benefit {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .benefit h3 {
        margin-top: 36px;
    }

    .store-row-centered {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 26px;
    }

    .store-row-centered .store-button img {
        height: 40px;
    }

    .footer-stage {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
        padding-top: 58px;
        text-align: center;
    }

    .footer-stage-copy {
        display: grid;
        justify-items: center;
        padding-bottom: 0;
    }

    .footer-wordmark {
        gap: 9px;
        font-size: clamp(44px, 13.6vw, 56px);
        letter-spacing: -0.078em;
    }

    .footer-morph-canvas {
        left: -13%;
        width: 126%;
        height: 150px;
    }

    .footer-stage-copy > p {
        margin: 20px 0 0;
        font-size: 13px;
    }

    .footer-character {
        justify-self: center;
        width: 160px;
        max-height: none;
        margin-top: 4px;
    }

    .footer-lower {
        gap: 44px;
        padding: 38px 0 44px;
    }

    .footer-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        font-size: 11px;
    }

    .footer-links > div {
        gap: 9px;
    }

    .footer-meta p:first-child {
        font-size: 12px;
    }
}

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

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

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

    .footer-wordmark,
    .footer-character,
    .footer-stage-copy > p {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .footer-word-copilot {
        color: var(--orange);
    }

    .footer-morph-canvas {
        display: none;
    }
}
