:root {
  color-scheme: light;
  --ink: #111a22;
  --muted: #5f7078;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #dce6ee;
  --teal: #5269ed;
  --teal-deep: #3449c9;
  --copper: #4fd5ec;
  --dark: #101820;
  --forest: #40575e;
  --shadow: 0 18px 42px rgba(17, 26, 34, 0.1);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px clamp(22px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(18, 22, 20, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(18, 22, 20, 0.12);
  box-shadow: 0 12px 34px rgba(18, 22, 20, 0.08);
}

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

.brand img,
.footer-brand img {
  width: 138px;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
  color: rgba(18, 22, 20, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--ink);
  background: rgba(82, 105, 237, 0.08);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(18, 22, 20, 0.16);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 58px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 74px clamp(22px, 6vw, 88px) 62px;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 15, 20, 0.78) 0%, rgba(9, 15, 20, 0.45) 42%, rgba(9, 15, 20, 0.08) 82%),
    linear-gradient(0deg, rgba(9, 15, 20, 0.42), rgba(9, 15, 20, 0.02));
}

.hero-inner {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: end;
  margin: 0 auto;
}

.hero-content {
  max-width: 720px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.34);
  animation: fadeUp 620ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dealer-hero .eyebrow,
.home-cta .eyebrow,
.band .eyebrow {
  color: var(--copper);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Poppins, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: 5.4rem;
  max-width: 790px;
}

h2 {
  font-size: 3.45rem;
}

p {
  margin: 0;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button::after {
  display: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.52);
}

.timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gecko-hero {
  min-height: calc(100svh - var(--header-height));
}

.gecko-hero-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.landing-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(18, 22, 20, 0.08);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.landing-nav a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  color: rgba(18, 22, 20, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

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

.landing-nav a:hover,
.landing-nav a:focus-visible {
  color: var(--ink);
  background: #ffffff;
}

.gecko-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 68px;
  align-items: start;
}

.gecko-feature-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gecko-feature-list > * {
  padding: 30px;
  background: var(--panel);
  transition: transform 180ms ease, background 180ms ease;
}

.gecko-feature-list > *:hover {
  background: #fbfcfb;
  transform: translateX(3px);
}

.compact-list {
  gap: 0;
  border-width: 0 0 0 2px;
  background: transparent;
}

.compact-list > * {
  padding: 0 0 24px 28px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.compact-list > *:hover {
  background: transparent;
}

.gecko-feature-list span,
.tech-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gecko-feature-list h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.gecko-feature-list p {
  color: var(--muted);
}

.image-story {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
  isolation: isolate;
}

.image-story > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transition: transform 520ms ease;
}

.image-story::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 15, 20, 0.76), rgba(9, 15, 20, 0.26) 55%, rgba(9, 15, 20, 0.06)),
    linear-gradient(0deg, rgba(9, 15, 20, 0.42), rgba(9, 15, 20, 0.02));
}

.image-story:hover > img {
  transform: scale(1.01);
}

.image-story > div {
  width: min(1180px, calc(100% - 44px));
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 0 0 74px;
}

.image-story h2 {
  max-width: 720px;
}

.tech-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
  isolation: isolate;
}

.tech-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transition: transform 700ms ease;
}

.tech-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 11, 10, 0.88), rgba(7, 11, 10, 0.44) 50%, rgba(7, 11, 10, 0.12)),
    linear-gradient(0deg, rgba(7, 11, 10, 0.72), rgba(7, 11, 10, 0.12));
}

.tech-hero:hover > img {
  transform: scale(1.018);
}

.tech-copy {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0 166px;
}

.tech-copy h2 {
  max-width: 680px;
}

.tech-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.tech-stats {
  position: absolute;
  right: clamp(22px, 6vw, 88px);
  bottom: 42px;
  left: clamp(22px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.tech-stats div {
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 22px;
  background: rgba(16, 21, 19, 0.42);
}

.tech-stats span {
  color: var(--copper);
}

.tech-stats strong {
  font-size: 1.18rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 1px;
  background: var(--line);
}

.product-copy {
  min-height: 580px;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(34px, 6vw, 74px);
  background: #ffffff;
}

.product-copy h2 {
  font-size: 3.05rem;
}

.product-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-grid article {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--dark);
}

.product-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease;
}

.product-grid article:hover img {
  transform: scale(1.012);
}

.product-grid article::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(0deg, rgba(9, 15, 20, 0.72), rgba(9, 15, 20, 0));
}

.product-grid article > div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: #ffffff;
}

.product-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-grid h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.product-grid p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 68px;
  align-items: start;
}

.about-band > p {
  padding-top: 9px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dealer-scope {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 68px;
  align-items: start;
}

.dealer-scope {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.dealer-scope ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.dealer-scope li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.footer-brand p,
.footer-column p,
.page-section p {
  color: var(--muted);
}

.page-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
}

.split-section,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 68px;
  align-items: start;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 900;
}

.text-link.light {
  color: #ffffff;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 48px;
}

.home-cta {
  width: min(1180px, calc(100% - 44px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 92px;
  padding: 42px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(16, 24, 32, 0.96), rgba(64, 87, 94, 0.84)),
    url("assets/gecko-ev80.jpg") center right / cover;
  box-shadow: var(--shadow);
}

.home-cta h2 {
  max-width: 760px;
  font-size: 2.7rem;
}

.home-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  min-height: 470px;
  display: grid;
  align-items: end;
  padding: 118px clamp(22px, 6vw, 88px) 78px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(16, 24, 32, 0.9), rgba(64, 87, 94, 0.58)),
    url("assets/gecko-magicway.jpg") center right / cover;
}

.page-hero > div {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.compact-hero {
  min-height: 430px;
}

.dealer-hero {
  background:
    linear-gradient(120deg, rgba(16, 24, 32, 0.9), rgba(82, 105, 237, 0.42)),
    url("assets/gecko-ev80.jpg") center right / cover;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  padding: 0;
  margin-top: 76px;
  margin-bottom: 76px;
}

.timeline article {
  min-height: 300px;
  padding: 32px;
  background: var(--panel);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.timeline article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 22, 20, 0.08);
}

.timeline h2 {
  font-size: 2.1rem;
}

.band {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 64px clamp(22px, 6vw, 88px);
  color: #ffffff;
  background: var(--forest);
}

.band h2 {
  max-width: 840px;
  font-size: 3rem;
}

.magic-page {
  background: #f6f8fb;
}

.magic-page section {
  scroll-margin-top: calc(var(--header-height) + 72px);
}

.magic-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
  isolation: isolate;
}

.magic-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transform: scale(1.012);
  animation: softZoom 1800ms ease both;
}

.magic-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.78), rgba(7, 12, 18, 0.32) 48%, rgba(7, 12, 18, 0.05)),
    linear-gradient(0deg, rgba(7, 12, 18, 0.54), rgba(7, 12, 18, 0));
}

.magic-hero-copy {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 76px;
  animation: fadeUp 620ms ease both;
}

.magic-hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: 5.8rem;
}

.magic-hero p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.35rem;
  font-weight: 700;
}

.magic-subnav {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.magic-specs,
.magic-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.magic-specs {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 58px;
  align-items: start;
  padding: 86px 0;
}

.magic-specs h2 {
  font-size: 3rem;
}

.magic-specs dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.magic-specs dl > div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: #ffffff;
  transition: transform 180ms ease, background 180ms ease;
}

.magic-specs dl > div:hover {
  background: #fbfdff;
  transform: translateY(-2px);
}

.magic-specs dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.magic-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.05;
}

.magic-section {
  padding: 92px 0;
}

.magic-centered {
  text-align: center;
}

.magic-centered > h2 {
  max-width: 900px;
  margin: 0 auto;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.scenario-grid figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.scenario-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.scenario-grid figure:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.018);
}

.scenario-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.scenario-grid figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(0deg, rgba(7, 12, 18, 0.62), rgba(7, 12, 18, 0));
}

.magic-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.magic-copy h2 {
  font-size: 3rem;
}

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

.feature-stack article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number copy";
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-stack span,
.assist-grid .eyebrow {
  color: var(--copper);
}

.feature-stack span {
  display: block;
  grid-area: number;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-stack h3 {
  grid-area: title;
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-stack p {
  grid-area: copy;
  color: var(--muted);
}

.magic-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(17, 26, 34, 0.08);
}

.magic-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.magic-visual:hover img {
  transform: scale(1.012);
}

.magic-banner,
.magic-image-text,
.app-panel {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
  isolation: isolate;
}

.magic-banner {
  min-height: 640px;
  display: grid;
  align-items: end;
  margin: 36px 0;
}

.magic-banner img,
.magic-image-text > img,
.app-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 720ms ease;
}

.magic-banner::after,
.magic-image-text::after,
.app-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.86), rgba(7, 12, 18, 0.46) 52%, rgba(7, 12, 18, 0.12)),
    linear-gradient(0deg, rgba(7, 12, 18, 0.36), rgba(7, 12, 18, 0));
}

.magic-banner:hover img,
.magic-image-text:hover > img,
.app-panel:hover .app-panel-bg {
  transform: scale(1.012);
}

.magic-banner > div {
  width: min(1180px, calc(100% - 44px));
  display: grid;
  gap: 28px;
  margin: 0 auto;
  padding: 0 0 76px;
}

.magic-banner h2,
.magic-image-text h2,
.app-panel h2 {
  max-width: 780px;
  font-size: 3rem;
}

.payload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.payload-grid p {
  min-height: 168px;
  display: grid;
  align-content: center;
  padding: 24px;
  background: rgba(11, 17, 25, 0.38);
  color: rgba(255, 255, 255, 0.78);
}

.magic-image-text {
  min-height: 690px;
  display: grid;
  align-items: center;
  margin: 0;
}

.magic-image-text > div {
  width: min(1180px, calc(100% - 44px));
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 88px 0;
}

.magic-image-text p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.callout-line {
  width: min(640px, 100%);
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.callout-line strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.callout-line span {
  color: rgba(255, 255, 255, 0.76);
}

.comfort-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: center;
  margin-top: 56px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.comfort-block.reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.comfort-block.reverse > div:first-child {
  order: 2;
}

.comfort-block h3,
.drive-copy h3,
.assist-grid h3,
.magic-image-text h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.comfort-block p,
.drive-copy li {
  color: var(--muted);
  font-size: 1.02rem;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.phone-row img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  background: #111a22;
  box-shadow: 0 16px 30px rgba(17, 26, 34, 0.1);
  transition: transform 180ms ease;
}

.phone-row img:nth-child(2) {
  transform: translateY(-18px);
}

.phone-row img:hover {
  transform: translateY(-4px);
}

.phone-row img:nth-child(2):hover {
  transform: translateY(-22px);
}

.drive-experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: center;
  margin-top: 58px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-align: left;
}

.drive-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.drive-images {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  align-items: center;
}

.drive-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.drive-images img:last-child {
  height: 230px;
}

.assistance-section {
  padding-top: 0;
}

.magic-banner.compact {
  min-height: 500px;
  margin: 0 0 52px;
  border-radius: 8px;
}

.magic-banner.compact > div {
  padding-bottom: 56px;
}

.assist-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.assist-grid ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assist-grid li {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.ota-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 28px 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(115deg, var(--dark), var(--forest));
}

.ota-strip strong {
  flex: 0 0 auto;
  font-size: 1.2rem;
}

.ota-strip p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

.ecosystem::after {
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.9), rgba(7, 12, 18, 0.55) 48%, rgba(7, 12, 18, 0.16)),
    linear-gradient(0deg, rgba(7, 12, 18, 0.5), rgba(7, 12, 18, 0));
}

.app-panel {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
  padding: 88px clamp(22px, 6vw, 88px);
}

.app-panel::after {
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.92), rgba(7, 12, 18, 0.74) 50%, rgba(7, 12, 18, 0.35)),
    linear-gradient(0deg, rgba(7, 12, 18, 0.28), rgba(7, 12, 18, 0));
}

.app-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.app-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.app-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.app-copy li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
}

.app-screens {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.app-screens img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.app-screens img:nth-child(2),
.app-screens img:nth-child(4) {
  transform: translateY(-28px);
}

.app-screens img:hover {
  transform: translateY(-6px);
}

.app-screens img:nth-child(2):hover,
.app-screens img:nth-child(4):hover {
  transform: translateY(-34px);
}

.magic-cta {
  margin-top: 92px;
  background:
    linear-gradient(110deg, rgba(16, 24, 32, 0.95), rgba(82, 105, 237, 0.54)),
    url("assets/magicway-hero.jpg") center / cover;
}

.form-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ccd8e2;
  border-radius: 4px;
  padding: 12px 13px;
  background: #fbfdff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(82, 105, 237, 0.16);
  border-color: var(--teal);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  color: #ffffff;
  background: var(--dark);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
  padding: 54px clamp(22px, 6vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand img {
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(22px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softZoom {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1.012);
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .site-header {
    gap: 14px;
  }

  .hero-inner,
  .product-showcase,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .gecko-hero-inner {
    align-items: start;
  }

  .product-copy,
  .product-grid,
  .product-grid article {
    min-height: 430px;
  }

  .magic-specs,
  .magic-split,
  .comfort-block,
  .comfort-block.reverse,
  .drive-experience,
  .assist-grid,
  .app-panel {
    grid-template-columns: 1fr;
  }

  .comfort-block.reverse > div:first-child {
    order: 0;
  }

  .app-screens img {
    height: 360px;
  }

  .footer-main {
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: var(--header-height);
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 72px);
    align-items: end;
    padding-top: 178px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 15, 20, 0.86) 0%, rgba(9, 15, 20, 0.54) 58%, rgba(9, 15, 20, 0.08) 100%);
  }

  .landing-nav,
  .timeline,
  .gecko-intro,
  .tech-stats,
  .about-band,
  .product-grid,
  .dealer-scope,
  .split-section,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .landing-nav {
    position: static;
  }

  .landing-nav a {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .magic-subnav {
    position: sticky;
    top: var(--header-height);
    display: flex;
    overflow-x: auto;
  }

  .magic-subnav a {
    flex: 0 0 auto;
    justify-content: center;
    min-width: 154px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .magic-hero h1 {
    font-size: 4.3rem;
  }

  .magic-specs dl,
  .scenario-grid,
  .payload-grid,
  .assist-grid ul,
  .app-copy ul {
    grid-template-columns: 1fr;
  }

  .magic-banner,
  .magic-image-text {
    min-height: 620px;
  }

  .payload-grid p {
    min-height: auto;
  }

  .phone-row,
  .drive-images,
  .app-screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-row img,
  .drive-images img,
  .drive-images img:last-child,
  .app-screens img {
    height: 320px;
  }

  .app-screens img:nth-child(2),
  .app-screens img:nth-child(4),
  .app-screens img:nth-child(2):hover,
  .app-screens img:nth-child(4):hover,
  .phone-row img:nth-child(2),
  .phone-row img:nth-child(2):hover {
    transform: none;
  }

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

  .timeline article {
    min-height: auto;
  }

  .band,
  .home-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .tech-hero {
    min-height: 620px;
  }

  .image-story {
    min-height: 520px;
  }

  .tech-copy {
    padding-bottom: 260px;
  }

  .tech-stats {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

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

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2,
  .band h2,
  .home-cta h2 {
    font-size: 2.25rem;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img,
  .footer-brand img {
    width: 118px;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 42px;
  }

  .gecko-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-actions,
  .hero-actions .button,
  .home-cta .button {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }

  .page-section,
  .home-cta {
    width: min(100% - 28px, 1180px);
  }

  .page-section {
    padding: 66px 0;
  }

  .magic-hero {
    min-height: 560px;
  }

  .magic-hero-copy {
    width: min(100% - 28px, 1180px);
    padding-bottom: 48px;
  }

  .magic-hero h1 {
    font-size: 3.05rem;
  }

  .magic-specs,
  .magic-section {
    width: min(100% - 28px, 1180px);
  }

  .magic-specs,
  .magic-section {
    padding: 66px 0;
  }

  .magic-specs h2,
  .magic-copy h2,
  .magic-banner h2,
  .magic-image-text h2,
  .app-panel h2 {
    font-size: 2.25rem;
  }

  .magic-specs dl > div {
    min-height: 104px;
    padding: 20px;
  }

  .magic-specs dd {
    font-size: 1.35rem;
  }

  .scenario-grid figure {
    aspect-ratio: 4 / 3;
  }

  .feature-stack article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "title"
      "copy";
    gap: 8px;
  }

  .magic-visual img {
    min-height: 260px;
  }

  .magic-banner > div,
  .magic-image-text > div {
    width: min(100% - 28px, 1180px);
    padding-bottom: 48px;
  }

  .magic-image-text > div {
    padding-top: 66px;
  }

  .comfort-block,
  .drive-experience,
  .assist-grid,
  .ota-strip {
    padding: 22px;
  }

  .phone-row,
  .drive-images,
  .app-screens {
    gap: 10px;
  }

  .phone-row img,
  .drive-images img,
  .drive-images img:last-child,
  .app-screens img {
    height: 260px;
  }

  .app-panel {
    min-height: auto;
    padding: 66px 14px;
  }

  .home-cta {
    padding: 24px;
  }

  .tech-hero {
    min-height: 560px;
  }

  .tech-copy {
    width: min(100% - 28px, 1180px);
    padding: 58px 0 292px;
  }

  .tech-stats div,
  .gecko-feature-list article {
    padding: 20px;
  }

  .product-copy,
  .product-grid,
  .product-grid article {
    min-height: 340px;
  }

  .page-hero {
    min-height: 410px;
    padding: 96px 18px 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
