:root {
    color-scheme: dark;
    --bg: #090d0c;
    --ink: #f3f4ef;
    --muted: #9ba39f;
    --quiet: #6f7773;
    --surface: #111715;
    --surface-2: #171d1b;
    --light: #eef1eb;
    --light-ink: #111612;
    --light-muted: #5d675f;
    --line: rgba(243, 244, 239, 0.16);
    --line-dark: rgba(17, 22, 18, 0.16);
    --accent: #f04b58;
    --accent-strong: #ff5964;
    --route: #8fbe20;
    --route-dark: #5e8500;
    --header: rgba(9, 13, 12, 0.88);
    --shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    --max: 1440px;
    --font: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.lightbox-open,
body.menu-open {
    overflow: hidden;
}

button,
a {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}

img,
svg {
    display: block;
}

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

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-160%);
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 0;
    height: 3px;
    background: var(--route);
    pointer-events: none;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 80;
    border-bottom: 1px solid transparent;
    color: #ffffff;
    transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(9, 13, 12, 0.88);
    backdrop-filter: blur(18px);
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 82px;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: max-content;
    color: inherit;
    font-size: 18px;
    font-weight: 750;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
}

.nav-center,
.nav-actions,
.language-switch {
    display: flex;
    align-items: center;
}

.nav-center {
    gap: 32px;
}

.nav-center a {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 650;
    transition: color 160ms ease;
}

.nav-center a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--route);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-center a:hover {
    color: #ffffff;
}

.nav-center a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    justify-content: flex-end;
    gap: 9px;
}

.language-switch {
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.language-switch button {
    min-width: 34px;
    padding: 6px 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.54);
    font-size: 10px;
    font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
    background: #ffffff;
    color: #111612;
}

.icon-button,
.gallery-controls button,
.lightbox-close {
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
}

.icon-button {
    width: 40px;
    height: 40px;
}

.icon-button svg,
.nav-download svg,
.primary-action svg,
.text-action svg {
    width: 17px;
    height: 17px;
}

.nav-download {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    transition: transform 160ms ease, background 160ms ease;
}

.nav-download:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.menu-close-icon,
.site-header.menu-open .menu-open-icon {
    display: none;
}

.site-header.menu-open .menu-close-icon {
    display: block;
}

.hero {
    position: relative;
    min-height: 92svh;
    overflow: hidden;
    background: #0b1214;
    color: #ffffff;
}

.hero-media,
.hero-media img,
.hero-media-wash {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.025);
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero.is-ready .hero-media img {
    transform: scale(1);
}

.hero-media-wash {
    background: rgba(4, 9, 11, 0.47);
}

.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 92svh;
    align-items: flex-end;
    padding-top: 150px;
    padding-bottom: 80px;
}

.hero-copy {
    width: min(790px, 67%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.eyebrow > span:first-child {
    width: 28px;
    height: 2px;
    background: var(--route);
}

.hero h1 {
    margin-top: 22px;
    font-size: 136px;
    font-weight: 800;
    line-height: 0.88;
}

.hero h1 span,
.hero h1 em {
    display: block;
}

.hero h1 em {
    max-width: 680px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 48px;
    font-style: normal;
    font-weight: 520;
    line-height: 1.03;
}

.hero-description {
    max-width: 520px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.primary-action {
    display: inline-flex;
    min-width: 210px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 30px;
    border-radius: 999px;
    background: #ffffff;
    color: #101412;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
    transform: translateY(-3px);
}

.primary-action > .apple-mark {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    line-height: 1;
}

.primary-action span,
.primary-action small,
.primary-action strong {
    display: block;
}

.primary-action small {
    font-size: 9px;
    font-weight: 650;
    line-height: 1.1;
}

.primary-action strong {
    font-size: 17px;
    line-height: 1.1;
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.hero-signal {
    position: absolute;
    display: flex;
    min-width: 230px;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(9, 13, 12, 0.8);
    backdrop-filter: blur(16px);
}

.hero-turn {
    top: 25%;
    left: 46%;
}

.hero-watch {
    top: 15%;
    left: 58%;
    min-width: 205px;
}

.hero-record {
    top: 45%;
    right: 1%;
}

.hero-distance {
    right: 25%;
    bottom: 20%;
    min-width: 220px;
}

.hero-status {
    right: 7%;
    bottom: 6%;
    min-width: 255px;
}

.status-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
}

.status-icon svg {
    width: 22px;
    height: 22px;
}

.status-icon-route {
    background: var(--route);
    color: #111612;
}

.hero-signal strong,
.hero-signal small {
    display: block;
}

.hero-signal strong {
    font-size: 16px;
}

.hero-signal small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.hero-coordinate {
    position: absolute;
    top: 110px;
    right: 0;
    display: flex;
    gap: 19px;
    color: rgba(255, 255, 255, 0.48);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
}

.motion-strip {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--accent);
    color: #111612;
}

.motion-strip-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: ticker 32s linear infinite;
}

.motion-strip-group {
    display: flex;
    min-width: 100vw;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-around;
    gap: 28px;
    padding: 19px 24px;
}

.motion-strip span {
    font-size: 16px;
    font-weight: 820;
}

.motion-strip i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--route);
}

.section-light {
    background: var(--light);
    color: var(--light-ink);
}

.manifesto,
.continuity {
    padding: 126px 0;
}

.section-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.62fr);
    gap: 86px;
    align-items: end;
    padding-top: 62px;
}

.manifesto h2,
.product-heading h2,
.ways-heading h2,
.continuity-heading h2,
.gallery-heading h2,
.final-cta h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 0.98;
}

.manifesto-side {
    padding-bottom: 6px;
}

.manifesto-side img {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(17, 22, 18, 0.16);
}

.manifesto-side p,
.continuity-heading p {
    color: var(--light-muted);
    font-size: 18px;
    line-height: 1.6;
}

.manifesto-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 92px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.manifesto-fact {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 13px;
    align-items: center;
    padding: 22px 18px 22px 0;
    border-right: 1px solid var(--line-dark);
}

.manifesto-fact:not(:first-child) {
    padding-left: 18px;
}

.manifesto-fact:last-child {
    border-right: 0;
}

.manifesto-fact-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(240, 75, 88, 0.12);
    color: var(--accent);
}

.manifesto-fact-icon svg {
    width: 18px;
    height: 18px;
}

.manifesto-fact strong,
.manifesto-fact small {
    display: block;
}

.manifesto-fact strong {
    color: var(--light-ink);
    font-size: 13px;
    font-weight: 750;
}

.manifesto-fact small {
    margin-top: 3px;
    color: var(--light-muted);
    font-size: 10px;
    line-height: 1.35;
}

.product-story {
    padding: 120px 0 0;
    background: #0b100f;
    color: #f4f6f0;
}

.product-heading h2 {
    width: 100%;
    max-width: none;
    margin-top: 55px;
}

.product-heading h2 span {
    display: block;
    white-space: nowrap;
}

.product-heading h2 span:last-child {
    text-align: right;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    gap: 100px;
    margin-top: 85px;
}

.product-device-wrap {
    min-height: 2250px;
}

.product-device {
    position: sticky;
    top: 110px;
    width: min(100%, 390px);
    margin-inline: auto;
}

.phone-frame,
.gallery-phone {
    position: relative;
    overflow: hidden;
    border: 10px solid #202625;
    background: #151a19;
    box-shadow: var(--shadow);
}

.phone-frame {
    width: 100%;
    padding: 6px;
    border-radius: 50px;
}

.phone-frame img,
.gallery-phone img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.phone-frame img {
    border-radius: 36px;
    transition: opacity 220ms ease, transform 400ms ease;
}

.phone-frame img.is-changing {
    opacity: 0.08;
    transform: scale(0.985);
}

.phone-island {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 2;
    width: 30%;
    height: 23px;
    border-radius: 999px;
    background: #050706;
    transform: translateX(-50%);
}

.phone-home {
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 30%;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%);
}

.device-caption {
    display: flex;
    justify-content: space-between;
    padding: 18px 4px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-steps {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-step {
    display: grid;
    min-height: 750px;
    grid-template-columns: 56px 1fr;
    gap: 34px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0.38;
    transition: opacity 320ms ease;
}

.product-step.is-active {
    opacity: 1;
}

.step-number {
    align-self: start;
    padding-top: 92px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.step-kicker {
    margin-bottom: 17px;
    color: var(--route);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-step h3 {
    max-width: 630px;
    font-size: 58px;
    line-height: 1.02;
}

.product-step > div > p:not(.step-kicker) {
    max-width: 580px;
    margin-top: 23px;
    color: #9ca49f;
    font-size: 17px;
    line-height: 1.65;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.step-tags span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #d9ded9;
    font-size: 10px;
    font-weight: 700;
}

.ways {
    padding: 126px 0;
    background: var(--accent);
    color: #101412;
}

.ways-heading {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
    margin-bottom: 76px;
}

.ways-heading .section-index {
    border-color: rgba(16, 20, 18, 0.4);
}

.ways-list {
    border-top: 1px solid rgba(16, 20, 18, 0.45);
}

.way-row {
    display: grid;
    min-height: 154px;
    grid-template-columns: 55px 58px minmax(230px, 0.8fr) minmax(260px, 1fr) 34px;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid rgba(16, 20, 18, 0.45);
    transition: background 200ms ease, padding 200ms ease;
}

.way-row:hover {
    padding-right: 18px;
    padding-left: 18px;
    background: #f2f3ed;
}

.way-number {
    font-size: 11px;
    font-weight: 800;
}

.way-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(16, 20, 18, 0.5);
    border-radius: 50%;
}

.way-icon svg {
    width: 22px;
    height: 22px;
}

.way-row h3 {
    font-size: 31px;
}

.way-row p {
    max-width: 540px;
    color: rgba(16, 20, 18, 0.7);
    font-size: 15px;
    line-height: 1.55;
}

.way-arrow {
    width: 24px;
    height: 24px;
}

.drive-scene {
    position: relative;
    min-height: 92svh;
    overflow: hidden;
    background: #080c0b;
    color: #ffffff;
}

.drive-photo,
.drive-wash {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.drive-photo {
    object-fit: cover;
    object-position: center;
}

.drive-wash {
    background: rgba(3, 7, 7, 0.4);
}

.drive-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 92svh;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
    padding-top: 130px;
    padding-bottom: 80px;
}

.drive-copy {
    max-width: 710px;
}

.drive-copy h2 {
    margin-top: 20px;
    font-size: 82px;
    line-height: 0.98;
}

.drive-copy > p:last-child {
    max-width: 580px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.6;
}

.carplay-hud {
    width: 360px;
    flex: 0 0 360px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: rgba(8, 13, 12, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
}

.hud-top,
.hud-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hud-top {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    font-weight: 700;
}

.hud-turn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 25px 0;
}

.hud-turn > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
}

.hud-turn svg {
    width: 27px;
    height: 27px;
}

.hud-turn strong,
.hud-turn small,
.hud-bottom strong,
.hud-bottom small {
    display: block;
}

.hud-turn strong {
    font-size: 20px;
}

.hud-turn small,
.hud-bottom small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.hud-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hud-bottom span:last-child {
    text-align: right;
}

.hud-bottom strong {
    margin-top: 3px;
    font-size: 15px;
}

.continuity-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.55fr);
    gap: 100px;
    align-items: end;
    margin-top: 58px;
}

.platform-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 85px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.platform {
    min-width: 0;
    padding: 0;
}

.platform-top {
    display: flex;
    justify-content: space-between;
    color: var(--light-muted);
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
}

.platform-visual {
    position: relative;
    height: 520px;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 6px;
    background: #111715;
}

.platform p {
    width: 100%;
    max-width: none;
    padding-inline: 12px;
    color: var(--light-muted);
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
}

.platform-photo,
.platform-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.platform-photo {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.platform-photo-car {
    object-position: 43% center;
}

.platform-shade {
    background: linear-gradient(to top, rgba(5, 9, 8, 0.72), rgba(5, 9, 8, 0.02) 55%);
}

.platform:hover .platform-photo {
    transform: scale(1.035);
}

.platform-ui {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(8, 13, 12, 0.78);
    color: #ffffff;
    backdrop-filter: blur(14px);
}

.platform-ui-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
}

.platform-ui-icon-route {
    background: var(--route);
    color: #111612;
}

.platform-ui-icon svg {
    width: 20px;
    height: 20px;
}

.platform-ui strong,
.platform-ui small {
    display: block;
}

.platform-ui strong {
    font-size: 15px;
}

.platform-ui small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.gallery {
    padding: 126px 0 140px;
    overflow: hidden;
    background: #070b0a;
    color: #f4f6f0;
}

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.gallery-heading > div:first-child {
    width: min(100%, 900px);
}

.gallery-heading h2 {
    margin-top: 55px;
}

.gallery-controls {
    display: flex;
    gap: 8px;
    padding-bottom: 8px;
}

.gallery-controls button {
    width: 48px;
    height: 48px;
    transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.gallery-controls button:not(:disabled):hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.gallery-controls button:disabled {
    cursor: default;
    opacity: 0.28;
}

.gallery-controls svg {
    width: 20px;
    height: 20px;
}

.gallery-track {
    display: flex;
    gap: 26px;
    margin: 76px auto 0;
    padding: 0 0 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-shot {
    width: 380px;
    flex: 0 0 380px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    scroll-snap-align: start;
}

.gallery-shot > span,
.gallery-shot > strong {
    display: block;
    font-size: 11px;
    font-weight: 750;
}

.gallery-shot > span {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.gallery-shot > strong {
    margin-top: 16px;
    font-size: 14px;
}

.gallery-phone {
    padding: 6px;
    border-width: 8px;
    border-radius: 42px;
    background: #070b0a;
    transition: transform 260ms ease, border-color 260ms ease;
}

.gallery-phone img {
    border-radius: 29px;
}

.gallery-shot:hover .gallery-phone {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.final-cta {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--accent);
    color: #111612;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 760px;
    place-items: center;
    align-content: center;
    text-align: center;
}

.final-cta-inner > img {
    width: 104px;
    height: 104px;
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: 0 24px 55px rgba(31, 15, 15, 0.22);
}

.final-cta-inner > p {
    margin-bottom: 19px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.final-cta h2 {
    font-size: 80px;
}

.final-cta h2 span {
    display: block;
}

.primary-action-light {
    margin-top: 38px;
    background: #111612;
    color: #ffffff;
}

.site-footer {
    padding: 46px 0;
    background: var(--accent);
    color: #111612;
}

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

.footer-grid > p,
.footer-links {
    color: rgba(17, 22, 18, 0.68);
    font-size: 12px;
    font-weight: 750;
}

.site-footer .brand,
.site-footer a {
    color: #111612;
}

.footer-links {
    display: flex;
    gap: 22px;
    justify-content: flex-end;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 6, 5, 0.93);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 13px;
}

.lightbox-dialog > img {
    width: auto;
    max-width: min(430px, 84vw);
    height: min(80vh, 800px);
    border: 9px solid #252c29;
    border-radius: 42px;
    object-fit: contain;
}

.lightbox-dialog p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: -56px;
    z-index: 2;
    width: 42px;
    height: 42px;
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 200ms;
}

@keyframes route-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes point-in {
    from { opacity: 0; transform: scale(0.4); transform-origin: center; }
    to { opacity: 1; transform: scale(1); transform-origin: center; }
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

@media (max-width: 1280px) {
    .hero-watch,
    .hero-distance {
        display: none;
    }
}

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

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

    .menu-toggle {
        display: grid;
    }

    .site-header.menu-open .nav-center {
        position: absolute;
        top: 82px;
        right: 36px;
        left: 36px;
        display: grid;
        gap: 0;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: #111715;
    }

    .site-header.menu-open .nav-center a {
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header.menu-open .nav-center a:last-child {
        border-bottom: 0;
    }

    .hero h1 {
        font-size: 108px;
    }

    .hero h1 em {
        font-size: 41px;
    }

    .manifesto h2,
    .product-heading h2,
    .ways-heading h2,
    .continuity-heading h2,
    .gallery-heading h2 {
        font-size: 66px;
    }

    .product-layout {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

    .product-step h3 {
        font-size: 45px;
    }

    .ways-heading {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .way-row {
        grid-template-columns: 42px 50px minmax(210px, 0.8fr) minmax(250px, 1fr) 28px;
    }

    .drive-copy h2 {
        font-size: 64px;
    }

    .continuity-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .platform-visual {
        height: 430px;
    }

    .gallery-shot {
        width: 330px;
        flex-basis: 330px;
    }
}

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

    .nav {
        min-height: 72px;
    }

    .nav-download {
        display: none;
    }

    .site-header.menu-open .nav-center {
        top: 72px;
        right: 18px;
        left: 18px;
    }

    .hero,
    .hero-content {
        min-height: 88svh;
    }

    .hero-media img {
        object-position: 61% center;
    }

    .hero-media-wash {
        background: rgba(4, 9, 11, 0.58);
    }

    .hero-content {
        align-items: flex-end;
        padding-top: 116px;
        padding-bottom: 72px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero h1 em {
        max-width: 450px;
        font-size: 34px;
    }

    .hero-description {
        max-width: 440px;
        font-size: 16px;
    }

    .hero-signal,
    .hero-coordinate {
        display: none;
    }

    .manifesto,
    .continuity,
    .ways,
    .gallery {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .manifesto h2,
    .product-heading h2,
    .ways-heading h2,
    .continuity-heading h2,
    .gallery-heading h2 {
        font-size: 52px;
    }

    .manifesto-side {
        display: grid;
        grid-template-columns: 86px 1fr;
        gap: 24px;
        align-items: center;
    }

    .manifesto-side img {
        width: 76px;
        height: 76px;
        margin: 0;
        border-radius: 18px;
    }

    .manifesto-facts {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 60px;
    }

    .manifesto-fact:nth-child(2) {
        border-right: 0;
    }

    .manifesto-fact:nth-child(n + 3) {
        border-top: 1px solid var(--line-dark);
    }

    .product-story {
        padding-top: 90px;
    }

    .product-heading h2 span {
        white-space: normal;
    }

    .product-heading h2 span:last-child {
        text-align: left;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 70px;
        margin-top: 62px;
    }

    .product-device-wrap {
        min-height: 0;
    }

    .product-device {
        position: relative;
        top: auto;
        width: min(100%, 330px);
    }

    .product-step {
        min-height: 500px;
    }

    .way-row {
        grid-template-columns: 38px 48px 1fr 28px;
        gap: 16px;
        padding: 30px 0;
    }

    .way-row h3 {
        font-size: 25px;
    }

    .way-row p {
        grid-column: 3 / -1;
    }

    .drive-content {
        display: grid;
        align-content: end;
        padding-top: 110px;
        padding-bottom: 42px;
    }

    .drive-copy h2 {
        font-size: 54px;
    }

    .carplay-hud {
        width: min(100%, 420px);
    }

    .platform-rail {
        grid-template-columns: 1fr;
    }

    .platform,
    .platform:first-child,
    .platform:last-child {
        padding: 28px 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .platform:last-child {
        border-bottom: 0;
    }

    .platform-visual {
        height: 420px;
    }

    .gallery-heading {
        align-items: flex-end;
    }

    .gallery-heading h2 {
        margin-top: 42px;
    }

    .gallery-track {
        margin-top: 54px;
    }

    .final-cta,
    .final-cta-inner {
        min-height: 650px;
    }

    .final-cta h2 {
        font-size: 58px;
    }

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

    .footer-grid > p {
        display: none;
    }
}

@media (max-width: 520px) {
    .shell {
        width: calc(100% - 28px);
    }

    .brand span {
        display: none;
    }

    .brand img {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .nav-actions {
        gap: 6px;
    }

    .icon-button {
        width: 38px;
        height: 38px;
    }

    .language-switch button {
        min-width: 30px;
        padding: 5px 6px;
    }

    .hero,
    .hero-content {
        min-height: 90svh;
    }

    .hero-media img {
        object-position: 67% center;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero h1 em {
        margin-top: 16px;
        font-size: 28px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .motion-strip-track {
        animation-duration: 24s;
    }

    .motion-strip-group {
        gap: 18px;
        padding: 16px 12px;
    }

    .manifesto h2,
    .product-heading h2,
    .ways-heading h2,
    .continuity-heading h2,
    .gallery-heading h2 {
        font-size: 41px;
    }

    .manifesto-side {
        grid-template-columns: 1fr;
    }

    .manifesto-side p,
    .continuity-heading p {
        font-size: 16px;
    }

    .manifesto-fact {
        grid-template-columns: 34px 1fr;
        gap: 9px;
        padding: 18px 10px 18px 0;
    }

    .manifesto-fact:not(:first-child) {
        padding-left: 10px;
    }

    .manifesto-fact-icon {
        width: 32px;
        height: 32px;
    }

    .product-step {
        min-height: 460px;
        grid-template-columns: 38px 1fr;
        gap: 12px;
    }

    .step-number {
        padding-top: 70px;
    }

    .product-step h3 {
        font-size: 37px;
    }

    .product-step > div > p:not(.step-kicker) {
        font-size: 15px;
    }

    .ways-heading {
        margin-bottom: 50px;
    }

    .way-row {
        grid-template-columns: 32px 44px 1fr 22px;
        gap: 10px;
    }

    .way-icon {
        width: 40px;
        height: 40px;
    }

    .way-row h3 {
        font-size: 22px;
    }

    .drive-scene,
    .drive-content {
        min-height: 820px;
    }

    .drive-photo {
        object-position: 42% center;
    }

    .drive-copy h2 {
        font-size: 44px;
    }

    .drive-copy > p:last-child {
        font-size: 15px;
    }

    .carplay-hud {
        padding: 16px;
    }

    .platform-visual {
        height: 360px;
    }

    .gallery-heading {
        display: block;
    }

    .gallery-controls {
        margin-top: 28px;
    }

    .gallery-shot {
        width: 270px;
        flex-basis: 270px;
    }

    .final-cta h2 {
        font-size: 45px;
    }

    .final-cta-inner > img {
        width: 88px;
        height: 88px;
        border-radius: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .lightbox-close {
        top: -50px;
        right: 0;
    }
}

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

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

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