/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: "Inter", sans-serif;
    background: #080808;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

::selection {
    background: #fff;
    color: #000;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --black: #080808;
    --black-soft: #111;
    --white: #fff;
    --off-white: #f3f3f0;
    --gray: #858585;
    --line: rgba(255,255,255,.15);
    --dark-line: rgba(0,0,0,.12);

    --ease: cubic-bezier(.16,1,.3,1);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1440px, calc(100% - 80px));
    margin-inline: auto;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #080808;
    display: grid;
    place-items: center;
}

.preloader-inner {
    width: min(360px, 80vw);
    text-align: center;
}

.preloader-logo {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -.08em;
    margin-bottom: 40px;
}

.loader-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.2);
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
}

.loader-count {
    margin-top: 14px;
    color: #888;
    font-size: 11px;
    letter-spacing: .15em;
}


/* =========================================================
   CURSOR
========================================================= */

.cursor,
.cursor-follower {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor {
    width: 7px;
    height: 7px;
    background: #fff;
}

.cursor-follower {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.5);
    transition:
        width .3s var(--ease),
        height .3s var(--ease),
        background .3s ease;
}

.cursor.is-hover {
    width: 12px;
    height: 12px;
}

.cursor-follower.is-hover {
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,.08);
}


/* =========================================================
   NAV
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    mix-blend-mode: difference;
    color: #fff;
}

.navbar {
    height: 92px;
    width: min(1440px, calc(100% - 80px));
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -.06em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;

    display: grid;
    place-items: center;

    font-size: 15px;
}

.brand-name {
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 23px;
}

.nav-link {
    position: relative;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .65;
    transition: opacity .3s ease;
}

.nav-link span {
    margin-right: 5px;
    opacity: .45;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.nav-cta span {
    font-size: 18px;
}

.menu-toggle {
    display: none;
    width: 35px;
}

.menu-toggle span {
    display: block;
    height: 1px;
    background: #fff;
    margin: 7px 0;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #080808;

    transform: translateY(-100%);
}

.mobile-menu-inner {
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 30px;
}

.mobile-close {
    color: #fff;
    font-size: 30px;
}

.mobile-menu a {
    font-size: clamp(32px, 8vw, 65px);
    line-height: 1.15;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.mobile-menu a small {
    display: inline-block;
    width: 45px;
    color: #666;
    font-size: 10px;
    vertical-align: middle;
}


/* =========================================================
   COMMON
========================================================= */

.section-dark {
    background: var(--black);
    color: #fff;
}

.section-light {
    background: var(--off-white);
    color: #080808;
}

section {
    position: relative;
    overflow: hidden;
}

.eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 25px;
}

.section-heading {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding-top: 130px;
    margin-bottom: 100px;
}

.section-heading.dark {
    color: #080808;
}

.section-number {
    font-size: 11px;
    opacity: .45;
    padding-top: 5px;
}

.split-heading {
    font-size: clamp(55px, 7vw, 110px);
    line-height: .92;
    letter-spacing: -.07em;
    font-weight: 500;
}

.split-heading span {
    color: #666;
}

.split-heading em {
    font-style: normal;
    color: #fff;
}

.large-copy {
    font-size: clamp(24px, 2.4vw, 38px);
    line-height: 1.2;
    letter-spacing: -.035em;
}

.body-copy {
    color: #888;
    font-size: 16px;
    line-height: 1.8;
}

.btn {
    min-height: 54px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;

    transition: color .3s ease, background .3s ease;
}

.btn span {
    font-size: 17px;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.4);
}

.btn-dark {
    background: #080808;
    color: #fff;
}

.text-link {
    display: inline-flex;
    gap: 25px;
    align-items: center;

    margin-top: 35px;

    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.text-link span {
    font-size: 17px;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100svh;
    background: #090909;
    position: relative;

    display: flex;
    align-items: center;

    isolation: isolate;
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );

    z-index: -2;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .04;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    width: min(700px, 55vw);
    margin-left: max(40px, calc((100vw - 1440px) / 2 + 40px));
    position: relative;
    z-index: 5;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 35px;
}

.hero-kicker span {
    width: 25px;
    height: 1px;
    background: #fff;
}

.hero-title {
    font-size: clamp(70px, 9.5vw, 155px);
    line-height: .82;
    letter-spacing: -.09em;
    font-weight: 500;
}

.hero-title em {
    font-style: normal;
    color: #777;
}

.hero-description {
    max-width: 420px;
    margin-top: 40px;

    color: #999;
    font-size: 15px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.hero-vehicle {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 62vw;
    max-width: 1050px;
    height: 85vh;

    z-index: 1;
    pointer-events: none;
}

.vehicle-glow {
    position: absolute;
    width: 65%;
    aspect-ratio: 1;
    right: 5%;
    top: 15%;

    background: radial-gradient(
        circle,
        rgba(255,255,255,.12),
        transparent 65%
    );

    filter: blur(25px);
}

.vehicle-image-wrap {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    position: relative;
}

.hero-bike {
    width: 95%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 50px 70px rgba(0,0,0,.8));

    transform: translateY(5%);
}

.hero-wheel-line {
    position: absolute;
    left: 10%;
    right: 0;
    bottom: 4%;

    height: 1px;
    background: rgba(255,255,255,.18);
}

.hero-specs {
    position: absolute;
    right: 50px;
    bottom: 55px;

    display: flex;
    gap: 45px;

    z-index: 5;
}

.hero-spec {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-spec strong {
    font-size: 28px;
    letter-spacing: -.06em;
}

.hero-spec strong small {
    font-size: 12px;
    color: #888;
}

.hero-spec > span {
    font-size: 8px;
    color: #777;
    letter-spacing: .13em;
}

.hero-scroll {
    position: absolute;
    left: 40px;
    bottom: 40px;

    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 8px;
    color: #777;
    letter-spacing: .15em;
    z-index: 5;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: #777;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding-bottom: 150px;
}

.about-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 120px;
    align-items: center;
}

.about-copy {
    max-width: 570px;
}

.about-copy .body-copy {
    margin-top: 30px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    aspect-ratio: 1.25;
    object-fit: cover;
    filter: grayscale(1);
    transform: scale(1.15);
}

.image-label {
    position: absolute;
    left: 25px;
    bottom: 25px;

    display: flex;
    gap: 15px;

    font-size: 9px;
    letter-spacing: .15em;
}

.image-label span {
    color: #777;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    margin-top: 130px;
}

.about-stat {
    padding: 35px 40px 0 0;
    border-right: 1px solid var(--line);
}

.about-stat:not(:first-child) {
    padding-left: 40px;
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat > span {
    color: #666;
    font-size: 10px;
}

.about-stat strong {
    display: block;
    font-size: 22px;
    margin-top: 30px;
}

.about-stat p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 15px;
}


/* =========================================================
   VEHICLES
========================================================= */

.vehicles {
    padding-bottom: 160px;
}

.vehicle-feature {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    min-height: 650px;
    align-items: center;
}

.vehicle-feature-image {
    position: relative;
    height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.vehicle-bg-text {
    position: absolute;

    font-size: 400px;
    line-height: 1;

    font-weight: 800;
    color: rgba(0,0,0,.035);

    letter-spacing: -.15em;
}

.vehicle-feature-image img {
    width: 90%;
    position: relative;
    z-index: 2;

    filter: drop-shadow(0 40px 40px rgba(0,0,0,.18));
}

.vehicle-feature-content {
    padding-left: 50px;
}

.vehicle-index {
    font-size: 10px;
    color: #999;
    margin-bottom: 30px;
}

.vehicle-feature-content h3 {
    font-size: clamp(70px, 8vw, 120px);
    line-height: .8;
    letter-spacing: -.09em;
}

.vehicle-feature-content h3 span {
    color: #aaa;
}

.vehicle-feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    max-width: 430px;
    margin: 35px 0;
}

.vehicle-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    margin-bottom: 35px;
}

.vehicle-spec-grid div {
    padding: 20px 0;
}

.vehicle-spec-grid div:nth-child(odd) {
    border-right: 1px solid var(--dark-line);
}

.vehicle-spec-grid div:nth-child(3),
.vehicle-spec-grid div:nth-child(4) {
    border-top: 1px solid var(--dark-line);
}

.vehicle-spec-grid div:nth-child(even) {
    padding-left: 20px;
}

.vehicle-spec-grid small {
    display: block;
    font-size: 8px;
    color: #999;
    letter-spacing: .13em;
    margin-bottom: 6px;
}

.vehicle-spec-grid strong {
    font-size: 17px;
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology {
    background: #080808;
    min-height: 300vh;
}

.technology-pin {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.technology .section-heading {
    padding-top: 0;
    margin-bottom: 50px;
}

.technology-stage {
    display: grid;
    grid-template-columns: .8fr 1.4fr .8fr;
    min-height: 480px;
    align-items: center;
}

.technology-menu {
    align-self: stretch;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.technology-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px;

    padding: 20px 0;

    border-top: 1px solid var(--line);

    opacity: .4;

    cursor: pointer;

    transition:
        opacity .4s ease,
        padding .5s var(--ease);
}

.technology-item:last-child {
    border-bottom: 1px solid var(--line);
}

.technology-item.active {
    opacity: 1;
    padding-left: 15px;
}

.technology-item > span {
    font-size: 9px;
    color: #777;
}

.technology-item strong {
    display: block;
    font-size: 13px;
}

.technology-item small {
    display: block;
    color: #666;
    font-size: 9px;
    margin-top: 4px;
}

.technology-visual {
    position: relative;
    height: 550px;

    display: grid;
    place-items: center;
}

.tech-image {
    width: 75%;
    position: relative;
    z-index: 3;
}

.tech-image img {
    filter: drop-shadow(0 40px 50px rgba(0,0,0,.7));
}

.tech-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.orbit-1 {
    width: 65%;
    aspect-ratio: 1;
}

.orbit-2 {
    width: 80%;
    aspect-ratio: 1;
}

.orbit-3 {
    width: 95%;
    aspect-ratio: 1;
}

.tech-pulse {
    position: absolute;
    width: 8px;
    height: 8px;

    background: #fff;
    border-radius: 50%;

    box-shadow:
        0 0 0 10px rgba(255,255,255,.05),
        0 0 40px rgba(255,255,255,.8);

    z-index: 5;
}

.technology-detail {
    position: relative;
    min-height: 350px;
}

.technology-panel {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(30px);
}

.technology-panel.active {
    opacity: 1;
    visibility: visible;
}

.panel-number {
    font-size: 10px;
    color: #666;
}

.technology-panel h3 {
    font-size: clamp(35px, 3.3vw, 58px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 500;

    margin: 25px 0;
}

.technology-panel p {
    color: #777;
    font-size: 13px;
    line-height: 1.8;
    max-width: 350px;
}

.panel-stat {
    border-top: 1px solid var(--line);
    margin-top: 35px;
    padding-top: 20px;
}

.panel-stat strong {
    display: block;
    font-size: 28px;
}

.panel-stat span {
    color: #666;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* =========================================================
   STATEMENT
========================================================= */

.statement {
    padding: 180px 0;
}

.statement-line {
    width: 100%;
    height: 1px;
    background: var(--line);
}

.statement-label {
    margin: 30px 0;
    color: #777;
    font-size: 9px;
    letter-spacing: .15em;
}

.statement-title {
    font-size: clamp(70px, 12vw, 190px);
    line-height: .78;
    letter-spacing: -.09em;
    font-weight: 500;

    padding: 80px 0;
}

.statement-title span {
    display: block;
}

.statement-title span:nth-child(2) {
    margin-left: 15%;
}

.statement-title span:nth-child(3) {
    margin-left: 30%;
}

.statement-title em {
    font-style: normal;
    color: #666;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
    padding-bottom: 160px;
}

.experience-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.dark-number {
    color: #111;
}

.experience-content .large-copy {
    color: #555;
    max-width: 540px;
    margin: 35px 0;
}

.experience-image {
    position: relative;
}

.experience-image img {
    aspect-ratio: 1;
    object-fit: cover;
}

.experience-circle {
    position: absolute;
    right: -35px;
    top: -35px;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background: #080808;
    color: #fff;

    display: grid;
    place-items: center;

    text-align: center;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .15em;

    z-index: 3;
}


/* =========================================================
   NETWORK
========================================================= */

.network {
    padding-bottom: 150px;
}

.network-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.network-copy {
    max-width: 450px;
}

.network-copy > p:not(.large-copy) {
    margin-top: 30px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.network-map {
    height: 500px;
    position: relative;
    overflow: hidden;

    border: 1px solid var(--line);
}

.map-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.05) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.map-center {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 45px;
    height: 45px;

    border-radius: 50%;
    border: 1px solid #fff;

    display: grid;
    place-items: center;

    font-size: 7px;
}

.route {
    position: absolute;

    height: 1px;

    background: rgba(255,255,255,.45);

    transform-origin: left center;
}

.route-1 {
    width: 38%;
    left: 50%;
    top: 50%;
    transform: rotate(-140deg);
}

.route-2 {
    width: 43%;
    left: 50%;
    top: 50%;
    transform: rotate(-25deg);
}

.route-3 {
    width: 40%;
    left: 50%;
    top: 50%;
    transform: rotate(28deg);
}

.route-4 {
    width: 35%;
    left: 50%;
    top: 50%;
    transform: rotate(150deg);
}

.map-point {
    position: absolute;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.4);

    display: grid;
    place-items: center;

    font-size: 6px;
}

.point-1 {
    left: 18%;
    top: 27%;
}

.point-2 {
    right: 14%;
    top: 38%;
}

.point-3 {
    right: 19%;
    bottom: 20%;
}

.point-4 {
    left: 17%;
    bottom: 23%;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 90px;

    border-top: 1px solid var(--line);
}

.network-stats > div {
    padding: 35px 30px 0 0;
    border-right: 1px solid var(--line);
}

.network-stats > div:not(:first-child) {
    padding-left: 30px;
}

.network-stats > div:last-child {
    border-right: 0;
}

.network-stats strong {
    display: block;
    font-size: 60px;
    letter-spacing: -.08em;
}

.network-stats span {
    color: #666;
    font-size: 9px;
    letter-spacing: .12em;
}


/* =========================================================
   NEWS
========================================================= */

.news {
    padding-bottom: 150px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    border-top: 1px solid var(--dark-line);
    padding-top: 15px;
}

.news-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.news-image img {
    aspect-ratio: 1.3;
    object-fit: cover;

    filter: grayscale(1);

    transition:
        transform .8s var(--ease),
        filter .8s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.news-image span {
    position: absolute;
    left: 15px;
    top: 15px;

    padding: 7px 10px;

    background: #080808;
    color: #fff;

    font-size: 7px;
    letter-spacing: .12em;
}

.news-meta {
    font-size: 9px;
    color: #999;
    letter-spacing: .12em;
}

.news-card h3 {
    max-width: 400px;

    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.045em;

    margin-top: 15px;
}


/* =========================================================
   CAREERS
========================================================= */

.careers {
    padding-bottom: 80px;
}

.careers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
}

.careers-copy {
    max-width: 500px;
}

.careers-copy > p:not(.large-copy) {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin: 25px 0 35px;
}

.careers-bottom {
    border-top: 1px solid var(--line);
    margin-top: 130px;

    display: flex;
    justify-content: space-between;

    padding-top: 20px;

    color: #666;
    font-size: 8px;
    letter-spacing: .13em;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding-bottom: 140px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 120px;
}

.contact-intro {
    max-width: 480px;
}

.contact-email {
    display: inline-block;
    margin-top: 40px;

    font-size: 19px;
    letter-spacing: -.03em;

    border-bottom: 1px solid #aaa;
    padding-bottom: 5px;
}

.contact-form {
    border-top: 1px solid var(--dark-line);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-field {
    border-bottom: 1px solid var(--dark-line);
    padding: 25px 0;
}

.form-field label {
    display: block;

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;

    color: #777;

    margin-bottom: 12px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 0;
    outline: 0;
    resize: none;

    background: transparent;

    color: #080808;

    font-size: 17px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aaa;
}

.contact-form .btn {
    margin-top: 35px;
}

.contact-info {
    margin-top: 100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--dark-line);
}

.contact-info > div {
    padding: 30px 30px 0 0;
}

.contact-info > div:not(:first-child) {
    padding-left: 30px;
    border-left: 1px solid var(--dark-line);
}

.contact-info small {
    display: block;

    font-size: 8px;
    color: #999;
    letter-spacing: .13em;

    margin-bottom: 10px;
}

.contact-info strong {
    font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #080808;
    color: #fff;

    padding: 70px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-brand {
    font-size: clamp(100px, 18vw, 270px);
    font-weight: 800;
    line-height: .65;
    letter-spacing: -.12em;
}

.footer-tagline {
    color: #777;

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: .15em;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 80px;
    padding-top: 20px;

    display: flex;
    justify-content: space-between;

    color: #555;
    font-size: 9px;
}

.footer-links {
    display: flex;
    gap: 25px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .nav-links {
        gap: 12px;
    }

    .nav-link {
        font-size: 8px;
    }

    .hero-content {
        width: 55vw;
    }

    .hero-vehicle {
        width: 65vw;
    }

    .technology-stage {
        grid-template-columns: .8fr 1fr .8fr;
    }

}


@media (max-width: 900px) {

    .container,
    .navbar {
        width: calc(100% - 40px);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        width: calc(100% - 40px);
        margin: 0 20px;
        align-self: flex-start;
        margin-top: 160px;
    }

    .hero-title {
        font-size: clamp(65px, 15vw, 120px);
    }

    .hero-vehicle {
        width: 100vw;
        height: 55vh;
        bottom: 50px;
        right: -10%;
    }

    .hero-specs {
        left: 20px;
        right: auto;
        bottom: 25px;
        gap: 25px;
    }

    .hero-scroll {
        display: none;
    }

    .section-heading {
        grid-template-columns: 55px 1fr;
        padding-top: 90px;
        margin-bottom: 65px;
    }

    .about-layout,
    .experience-layout,
    .network-layout,
    .careers-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vehicle-feature {
        grid-template-columns: 1fr;
    }

    .vehicle-feature-content {
        padding: 40px 0 0;
    }

    .technology {
        min-height: auto;
    }

    .technology-pin {
        min-height: auto;
        padding-bottom: 100px;
    }

    .technology-stage {
        grid-template-columns: 1fr;
    }

    .technology-menu {
        order: 2;
    }

    .technology-visual {
        order: 1;
        height: 450px;
    }

    .technology-detail {
        order: 3;
        min-height: 350px;
        margin-top: 50px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}


@media (max-width: 600px) {

    .container,
    .navbar {
        width: calc(100% - 30px);
    }

    .navbar {
        height: 75px;
    }

    .brand-name {
        font-size: 15px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        margin-left: 15px;
        width: calc(100% - 30px);
        margin-top: 130px;
    }

    .hero-kicker {
        font-size: 8px;
    }

    .hero-description {
        font-size: 13px;
        max-width: 320px;
    }

    .hero-actions {
        flex-direction: column;
        width: max-content;
    }

    .hero-vehicle {
        width: 125vw;
        right: -25%;
        bottom: 60px;
    }

    .hero-specs {
        bottom: 18px;
        gap: 18px;
    }

    .hero-spec strong {
        font-size: 20px;
    }

    .hero-spec > span {
        font-size: 6px;
    }

    .section-heading {
        grid-template-columns: 40px 1fr;
    }

    .split-heading {
        font-size: clamp(48px, 14vw, 80px);
    }

    .about {
        padding-bottom: 100px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat,
    .about-stat:not(:first-child) {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .vehicle-feature-image {
        height: 350px;
    }

    .vehicle-bg-text {
        font-size: 250px;
    }

    .vehicle-feature-content h3 {
        font-size: 80px;
    }

    .technology-visual {
        height: 350px;
    }

    .statement {
        padding: 100px 0;
    }

    .statement-title {
        font-size: 18vw;
        padding: 50px 0;
    }

    .statement-title span:nth-child(2) {
        margin-left: 5%;
    }

    .statement-title span:nth-child(3) {
        margin-left: 10%;
    }

    .network-map {
        height: 350px;
    }

    .network-stats {
        grid-template-columns: 1fr;
    }

    .network-stats > div,
    .network-stats > div:not(:first-child) {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .careers-bottom {
        flex-wrap: wrap;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info > div,
    .contact-info > div:not(:first-child) {
        padding: 25px 0;
        border-left: 0;
        border-bottom: 1px solid var(--dark-line);
    }

    .footer-brand {
        font-size: 25vw;
    }

    .footer-top {
        display: block;
    }

    .footer-tagline {
        margin-top: 40px;
    }

    .footer-bottom {
        display: block;
        line-height: 2;
    }

    .footer-links {
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}