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

:root {
  --bg: #07101d;
  --bg-soft: #0d1728;
  --panel: rgba(10, 20, 36, 0.72);
  --panel-strong: rgba(10, 20, 36, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #9aa6b8;
  --muted-strong: #c5d1df;
  --accent: #66e0ff;
  --accent-soft: #8cffbf;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-display: "Syne", "Segoe UI", sans-serif;
  --tracking-tight: -0.04em;
  --tracking-tighter: -0.065em;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #000;
  overflow-x: hidden;
  line-height: 1.5;
}

body.is-loading {
  overflow: hidden;
}

.main_logo {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 1rem;
  height: 8rem;
}

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

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

em {
  font-style: normal;
  color: var(--accent);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(71, 129, 255, 0.2), transparent 70%),
    linear-gradient(180deg, #183361 0%, #08111f 100%);
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.preloader__logo,
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}

.preloader__logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
}

.preloader__logo-image {
  display: block;
  width: auto;
  height: 8rem;
  animation: pulse 0.8s ease-in-out infinite;
}

.main-image_np {
  display: block;
  width: auto;
  height: 8rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.preloader__logo-eu {
  position: relative;
  top: -0.18rem;
  left: -0.1rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.preloader__bar-wrap {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.preloader__counter {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.preloader__pct {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-tighter);
}

.preloader__pct-sign {
  color: var(--muted);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  mix-blend-mode: screen;
  background: 
    linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(12, 12, 12, 0.8) 100%);
    /* radial-gradient(circle at 30% 25%, rgba(102, 224, 255, 0.8), transparent 24%); */
}

.nav__logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.12rem;
  font-size: 1.15rem;
}

.nav__logo-image {
  display: block;
  width: auto;
  height: 3.45rem;
}

.nav__logo-eu {
  position: relative;
  top: -0.18rem;
  left: -0.18rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.accent {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  opacity: 0.96;
  overflow: hidden;
  transition:
    color 0.24s ease,
    opacity 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
  will-change: transform;
}

.nav__toggle,
.nav__backdrop {
  display: none;
}

.nav__toggle {
  position: relative;
  z-index: 121;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 16, 29, 0.78);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.nav__toggle span {
  position: absolute;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  transition:
    transform 0.28s var(--ease-out),
    opacity 0.2s ease,
    top 0.28s var(--ease-out);
}

.nav__toggle span:nth-child(1) {
  top: 1rem;
}

.nav__toggle span:nth-child(2) {
  top: 1.46rem;
}

.nav__toggle span:nth-child(3) {
  top: 1.92rem;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav__toggle span:nth-child(1) {
  top: 1.46rem;
  transform: translateX(-50%) rotate(45deg);
}

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

body.nav-open .nav__toggle span:nth-child(3) {
  top: 1.46rem;
  transform: translateX(-50%) rotate(-45deg);
}

.nav__links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  /* background: rgba(255, 255, 255, 0.96); */
  background: linear-gradient(rgba(211, 211, 211, 0.96), rgba(255, 255, 255, 0.96));
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.24s ease;
}

.nav__links a:hover::before,
.nav__links a:focus-visible::before {
  transform: scaleY(1);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: #000;
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.btn {
  border-radius: 999px;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.hero_forward {
  position: relative;
  width: 100%;
  height: 250vh;
}
.hero_forward__pin {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_forward__canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
}
.hero_wheel__canvas {
    position: absolute;
    top: 5%;
    right: 20%;
    transform: translate(10%, 10%);
    width: 20vw;
    border-radius: 30px;
    border: 3px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(45deg, #2caee2, #8cffbf) border-box;
}
.hero_forward__orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

.car-scroll { position: relative; height: 500vh; background: #03070d; }
.car-scroll__pin { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.car-scroll__pin::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -35%;
  display: none;
  pointer-events: none;
  opacity: var(--car-noise-opacity, .075);
  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)' opacity='.72'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  animation: carNoiseShift .22s steps(2, end) infinite;
}
.car-scroll.fx-noise .car-scroll__pin::after { display: block; }
.car-scroll.fx-monochrome .car-scroll__canvas,
.car-scroll.fx-monochrome .car-scroll__copy,
.car-scroll.fx-monochrome .car-scroll__loading { filter: grayscale(1); }

@keyframes carNoiseShift {
  0% { transform: translate3d(-4%, -3%, 0); }
  25% { transform: translate3d(3%, -5%, 0); }
  50% { transform: translate3d(-5%, 4%, 0); }
  75% { transform: translate3d(5%, 2%, 0); }
  100% { transform: translate3d(-2%, -4%, 0); }
}
.car-scroll__canvas { display: block; position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.car-scroll.is-loaded .car-scroll__canvas { opacity: 1; }
.car-scroll.is-loaded .car-scroll__loading { opacity: 0; }
.car-scroll.has-error .car-scroll__loading::after { content: " A 3D nézet most nem érhető el."; }
.car-scroll__loading { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; transition: opacity .4s ease; }
.car-scroll__stats {
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: .32rem;
  padding: .7rem .85rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .35rem;
  background: rgba(1,5,11,.62);
  color: rgba(255,255,255,.58);
  font: 500 .62rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.car-scroll__stats span { display: flex; justify-content: space-between; gap: 1.2rem; white-space: nowrap; }
.car-scroll__stats b { min-width: 4.5ch; color: #55cfff; font-size: .68rem; font-weight: 700; line-height: 1; text-align: right; }
.car-scroll__copy { position: absolute; z-index: 2; left: clamp(1.25rem, 6vw, 6rem); bottom: clamp(2rem, 8vh, 6rem); pointer-events: none; }
.car-scroll__copy > span { display: block; margin-bottom: .8rem; color: #2caee2; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; text-shadow: 0 2px 8px rgba(0, 0, 0, .95), 0 0 18px #000; }
.car-scroll__copy strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 5rem); line-height: .95; text-transform: uppercase; text-shadow: 0 3px 14px rgba(0, 0, 0, .98), 0 0 28px rgba(0, 0, 0, .85); }
.car-scroll__copy strong .word { color: #fff; font: inherit; letter-spacing: inherit; text-transform: inherit; }

@media (prefers-reduced-motion: reduce) {
  .car-scroll { height: 100vh; }
  .car-scroll__canvas { transition: none; }
  .car-scroll__pin::after { animation: none; }
}
.hero_forward__orb--one {
  top: 18%;
  left: 10%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(102, 224, 255, 0.32), transparent 70%);
}
.hero_forward__orb--two {
  right: 8%;
  bottom: 14%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(140, 255, 191, 0.22), transparent 72%);
}



.hero {
  position: relative;
  width: 100%;
  height: 250vh;
}

.hero__pin {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__canvas,
.hero__overlay,
.hero__noise {
  position: fixed;
  inset: 0;
}

.hero__canvas {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.hero__noise {
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  mix-blend-mode: soft-light;
}

.hero__overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 16, 29, 0.12), rgba(7, 16, 29, 0.74) 56%, rgba(5, 11, 21, 0.96) 100%),
    linear-gradient(180deg, rgba(5, 11, 21, 0.45) 0%, rgba(5, 11, 21, 0.22) 36%, rgba(5, 11, 21, 0.84) 100%);
}

.hero__orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

.hero__orb--one {
  top: 18%;
  left: 10%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(102, 224, 255, 0.32), transparent 70%);
}

.hero__orb--two {
  right: 8%;
  bottom: 14%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(140, 255, 191, 0.22), transparent 72%);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(1100px, calc(100% - 3rem));
  text-align: center;
}

.hero__tag,
.intro__label,
.contact__label {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__tag {
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero__heading,
.intro__heading,
.studio__heading,
.cinematic__heading,
.contact__heading {
  font-family: var(--font-display);
  letter-spacing: var(--tracking-tighter);
}

.hero__heading {
  font-size: clamp(3.3rem, 8vw, 6.9rem);
  line-height: 0.96;
  margin-bottom: 1.5rem;
}

.hero__line {
  display: block;
  opacity: 0;
}

.hero__sub {
  width: min(760px, 100%);
  margin: 0 auto 2.1rem;
  font-size: 1.08rem;
  color: var(--muted-strong);
  opacity: 0;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.95rem 1.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
}

.btn--primary {
  color: #04111d;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 20px 48px rgba(102, 224, 255, 0.18);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn:hover,
.btn:focus-visible,
.nav__cta:hover,
.nav__cta:focus-visible {
  transform: translateY(-3px) scale(1.1);
}

.hero__actions .btn:hover,
.hero__actions .btn:focus-visible {
  transform: translateY(-3px) scale(1.1) !important;
}

.btn__arrow {
  transition: transform 0.35s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.hero__meta {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero__meta-card {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 13, 24, 0.52);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  text-align: left;
  opacity: 0;
}

.hero__meta-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__meta-value {
  font-size: 0.98rem;
  color: var(--text);
}

.hero__scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(-50%);
  opacity: 0;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll-line_outer {
  position: relative;
  width: 20px;
  height: 42px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  border-radius: 999px;
  border: #efefef 1px solid;
  align-items: center;
  justify-content: center;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.video-transition,
.cinematic {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 11, 21, 0) 0%, rgba(5, 11, 21, 0.94) 100%);
}

.video-transition {
  height: 300vh;
}

.video-transition__inner,
.cinematic__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-transition__frame {
  position: absolute;
  /* inset: 0; */
  /* clip-path: inset(28% 22% 28% 22% round 24px); */
}

.video-transition__canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-transition__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 21, 0.5) 0%, rgba(5, 11, 21, 0.12) 35%, rgba(5, 11, 21, 0.78) 100%);
}

.video-transition__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
}

.vt-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  opacity: 0;
  white-space: nowrap;
}

.intro,
.services,
.graphics,
.studio,
.contact {
  position: relative;
  z-index: 3;
}

.intro,
.graphics,
.contact {
  padding: 8rem 3rem;
}

.intro__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 21, 0.78) 0%, rgba(7, 16, 29, 0.96) 100%),
    radial-gradient(circle at 30% 25%, rgba(102, 224, 255, 0.08), transparent 24%);
}

.intro__content,
.studio__inner,
.contact__content,
.services__inner {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.label-line {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.intro__label,
.contact__label {
  margin-bottom: 2.4rem;
}

.intro__label,
.contact__label {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.intro__heading,
.studio__heading {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 3rem;
  max-width: 1100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.intro__label,
.intro__heading,
.intro__cols,
.stat {
  opacity: 1;
}

.intro__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.intro__col p,
.services__desc,
.service-item__content p,
.studio-card p,
.graphics__lead,
.contact__lead {
  color: var(--muted-strong);
  line-height: 1.8;
}

.intro__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.stat__inner,
.studio-card {
  padding: 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(6, 13, 24, 0.58);
  box-shadow: var(--shadow);
}

.stat__number {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: var(--tracking-tighter);
}

.stat__plus {
  margin-left: 10px;
  color: var(--accent);
}

.stat__label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.services {
  padding: 0 3rem;
}

.graphics {
  margin-top: -100px;
  padding-top: 0;
  padding-bottom: 0;
  background: #000;
  overflow: hidden;
  color: #fff;
}

.graphics__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 18%, rgba(233, 233, 233, 0.04), transparent 34%),
    radial-gradient(circle at 28% 62%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #13aae6 0%, #093586 50%, #18ecff 100%);
    /* linear-gradient(180deg, #e61364 0%, #860939 50%, #000000 100%); */
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  opacity: 0;
  transition: opacity 0.75s var(--ease-out);
  pointer-events: none;
}

.graphics.is-visible .graphics__bg {
  opacity: 1;
}

.graphics__inner {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.graphics__header {
  position: relative;
  min-height: 12rem;
  margin-bottom: 3rem;
  padding-top: 0.5rem;
}

.graphics__label {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.6vw, 6.6rem);
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
}

.graphics__label .label-line {
  width: 82px;
  background: rgba(255, 255, 255, 0.55);
}

.graphics__heading {
  margin-top: 7.6rem;
  font-size: clamp(5.2rem, 11vw, 9.5rem);
  line-height: 0.98;
  letter-spacing: var(--tracking-tighter);
  text-transform: uppercase;
  color: #fff;
}

.graphics__lead {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.graphics__band {
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.graphics__band:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.graphics__band-label {
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.graphics__track {
  display: grid;
  gap: 1rem;
}

.graphics__track--images {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.graphic-card,
.graphic-logo {
  margin: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(6, 13, 24, 0.76);
  box-shadow: var(--shadow);
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
  transform: translateX(1px);
  opacity: 0;
  will-change: transform;
  z-index: 1;
}

.graphic-card {
  aspect-ratio: 3 / 4;
}

.graphic-logo {
  aspect-ratio: 1.45 / 1;
  padding: 0.8rem;
  transition:
    opacity 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.graphics__band--images .graphic-card {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
}

.graphics__band {
  transform: translateY(-40px);
}

.graphics__band--images .graphic-card img {
  height: 100%;
  object-fit: cover;
}

.graphic-card::after,
.graphic-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 21, 0) 25%, rgba(5, 11, 21, 0.45) 100%);
  opacity: 0.85;
  pointer-events: none;
}

.graphic-logo::after {
  background: linear-gradient(180deg, rgba(5, 11, 21, 0) 34%, rgba(5, 11, 21, 0.24) 100%);
}

.graphic-card img,
.graphic-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-2deg);
  transition:
    transform 0.45s var(--ease-out),
    filter 0.45s var(--ease-out);
}

.graphic-logo img {
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.25));
}

.graphics.is-visible .graphic-card,
.graphics.is-visible .graphic-logo {
  opacity: 1;
  transform: translateX(0);
}

.graphics.is-visible .graphic-card:hover,
.graphics.is-visible .graphic-logo:hover {
  z-index: 12;
  overflow: hidden;
}

.graphics.is-visible .graphics__band--images .graphic-card:hover,
.graphics.is-visible .graphics__band--images .graphic-card:focus-visible {
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.graphics.is-visible .graphics__band--images .graphic-card:hover img,
.graphics.is-visible .graphics__band--images .graphic-card:focus-visible img {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.35));
}

.graphics.is-visible .graphic-card:hover img,
.graphics.is-visible .graphic-logo:hover img {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.35));
}

.graphics__track--images .graphic-card:nth-child(1),
.graphics__track--logos .graphic-logo:nth-child(1) {
  transition-delay: 0s;
}

.graphics__track--images .graphic-card:nth-child(2),
.graphics__track--logos .graphic-logo:nth-child(2) {
  transition-delay: 0s;
}

.graphics__track--images .graphic-card:nth-child(3),
.graphics__track--logos .graphic-logo:nth-child(3) {
  transition-delay: 0s;
}

.graphics__track--images .graphic-card:nth-child(4),
.graphics__track--logos .graphic-logo:nth-child(4) {
  transition-delay: 0s;
}

.graphics__track--images .graphic-card:nth-child(5),
.graphics__track--logos .graphic-logo:nth-child(5) {
  transition-delay: 0s;
}

.graphics__track--images .graphic-card:nth-child(6),
.graphics__track--logos .graphic-logo:nth-child(6) {
  transition-delay: 0s;
}

.graphics__track--logos .graphic-logo:nth-child(7) {
  transition-delay: 0s;
}

.graphics__track--logos .graphic-logo:nth-child(8) {
  transition-delay: 0s;
}

.graphics__band--logos .graphic-logo {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.graphics__band--logos {
  background: transparent;
}

.graphics__band--logos .graphic-logo::after {
  content: none;
}

.graphics.is-visible .graphics__band--logos .graphic-logo:hover {
  transform: translateX(0) scale(var(--hover-scale, 2));
}

.graphics__band--logos .graphic-logo img {
  transition:
    transform 0.4s var(--ease-out),
    filter 0.4s var(--ease-out);
}

.graphics.is-visible .graphics__band--logos .graphic-logo:hover img {
  transform: scale(1.03);
}

.graphic-card-preview {
  position: fixed;
  z-index: 200;
  pointer-events: none;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(6, 13, 24, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition:
    transform 0.3s var(--ease-out),
    left 0.3s var(--ease-out),
    top 0.3s var(--ease-out),
    width 0.3s var(--ease-out),
    height 0.3s var(--ease-out),
    opacity 0.12s ease;
}

.graphic-card-preview.is-open {
  opacity: 1;
}

.graphic-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.image-lightbox.is-open,
.image-lightbox.is-closing {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.image-lightbox__stage {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 1280px);
  max-height: 70vh;
}

.image-lightbox.is-open .image-lightbox__dialog {
  transform: scale(1);
  opacity: 1;
}

.image-lightbox.is-closing .image-lightbox__dialog {
  transform: scale(0.96);
  opacity: 0;
}

.image-lightbox__image {
  display: block;
  max-width: min(92vw, 1280px);
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-sizing: border-box;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: scale(1);
  opacity: 1;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center center;
}

.image-lightbox__image.is-switching {
  transform: scale(0.94);
  opacity: 0.5;
}

.image-lightbox__close {
  position: absolute;
  top: -56px;
  right: 0;
  z-index: 10002;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  padding: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.image-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  padding: 0;
  font-family: Arial, sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.image-lightbox__nav--prev {
  left: -70px;
  padding-bottom: 3px;
}

.image-lightbox__nav--next {
  right: -70px;
  padding-bottom: 3px;
}

.image-lightbox__nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
}

.car-viewer {
  width: 100vw;
  margin-top: 3.25rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.car-viewer__copy {
  width: min(1200px, 100%);
  margin: 0 auto 1.5rem;
}

.car-viewer__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.car-viewer__title {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
}

.car-viewer__lead {
  max-width: 48rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
}

.car-viewer__stage {
  position: relative;
  min-height: 46rem;
  background: transparent;
  overflow: hidden;
}

.car-viewer__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 1;
  pointer-events: none;
}

.car-viewer__stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.car-viewer__canvas {
  position: relative;
  width: 100%;
  height: 46rem;
  cursor: grab;
  touch-action: none;
}

.car-viewer__canvas:active {
  cursor: grabbing;
}

.car-viewer__canvas canvas {
  width: 100%;
  height: 100%;
}

.car-viewer__flight-toggle,
.car-viewer__visual-toggle {
  position: absolute;
  z-index: 14;
  right: clamp(1.25rem, 7vw, 7rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(7, 12, 19, 0.62);
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.car-viewer__flight-hotkey {
  position: absolute;
  z-index: 14;
  right: calc(clamp(1.25rem, 7vw, 7rem) + 5.65rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(7, 12, 19, 0.52);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.car-viewer__flight-hotkey:hover:not(:disabled) {
  border-color: rgba(104, 201, 237, 0.9);
  background: rgba(30, 129, 169, 0.38);
  box-shadow: 0 14px 42px rgba(44, 174, 226, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.car-viewer__flight-hotkey:focus-visible {
  outline: 2px solid #68c9ed;
  outline-offset: 4px;
}

.car-viewer__flight-hotkey:disabled {
  cursor: wait;
  opacity: 0.46;
}

.car-viewer__flight-hotkey.is-airborne {
  border-color: rgba(120, 227, 162, 0.82);
  background: rgba(16, 79, 45, 0.52);
  box-shadow: 0 14px 42px rgba(20, 178, 91, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.car-viewer__flight-toggle svg,
.car-viewer__visual-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.car-viewer__flight-toggle:hover:not(:disabled),
.car-viewer__visual-toggle:hover:not(:disabled) {
  border-color: rgba(104, 201, 237, 0.9);
  background: rgba(30, 129, 169, 0.4);
  box-shadow: 0 14px 42px rgba(44, 174, 226, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.car-viewer__flight-toggle:focus-visible,
.car-viewer__visual-toggle:focus-visible {
  outline: 2px solid #68c9ed;
  outline-offset: 4px;
}

.car-viewer__flight-toggle:disabled,
.car-viewer__visual-toggle:disabled {
  cursor: wait;
  opacity: 0.46;
}

.car-viewer__flight-toggle.is-airborne svg {
  transform: rotate(180deg);
}

.car-viewer__visual-toggle {
  right: calc(clamp(1.25rem, 7vw, 7rem) + 5.5rem);
}

.car-viewer__visual-toggle.is-active {
  border-color: rgba(55, 164, 255, 0.88);
  background: rgba(7, 67, 132, 0.58);
  box-shadow: 0 14px 42px rgba(15, 112, 231, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.car-viewer__visual-toggle .car-viewer__visual-slash {
  opacity: 1;
  transition: opacity 0.22s ease;
}

.car-viewer__visual-toggle.is-active .car-viewer__visual-slash {
  opacity: 0;
}

.car-viewer__status {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(5, 11, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  width: 340px;
  text-align: center;
}

.car-viewer__status.is-hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.car-hotspot-card {
  position: absolute;
  z-index: 12;
  right: clamp(1rem, 4vw, 4rem);
  bottom: calc(clamp(1rem, 7vw, 4.5rem) + 130px);
  width: min(25rem, calc(100% - 2rem));
  padding: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(18, 23, 31, 0.78), rgba(4, 8, 14, 0.66));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.35s;
  pointer-events: none;
}

.car-hotspot-card.is-visible { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.car-hotspot-card__close { position: absolute; top: 0.85rem; right: 0.85rem; width: 2.25rem; height: 2.25rem; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 50%; background: rgba(255, 255, 255, 0.07); color: #fff; font-size: 1.35rem; line-height: 1; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.car-hotspot-card__close:hover { background: rgba(255, 255, 255, 0.14); transform: rotate(6deg); }
.car-hotspot-card__eyebrow { margin: 0 0 0.7rem; color: rgba(255, 255, 255, 0.48); font-size: 0.68rem; letter-spacing: 0.19em; }
.car-hotspot-card__title { margin: 0; padding-right: 2rem; font-family: var(--font-display); font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1; text-transform: uppercase; }
.car-hotspot-card__description { margin: 1rem 0 1.1rem; color: rgba(255, 255, 255, 0.72); line-height: 1.55; }
.car-hotspot-card__details { display: grid; gap: 0.65rem; margin: 0; padding: 1rem 0 0 1.15rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; }
.car-hotspot-card__details li::marker { color: #68c9ed; }
.car-hotspot-card__more { margin-top: 1.25rem; padding: 0; border: 0; background: none; color: #fff; font: inherit; font-size: 0.82rem; letter-spacing: 0.06em; cursor: pointer; }
.car-hotspot-card__more span { margin-left: 0.4rem; color: #68c9ed; }

.car-viewer__stage[data-quality="mobile"]::before {
  opacity: 0.8;
}

.car-viewer__stage[data-quality="mobile"]::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(255, 255, 255, 0.02) 72%, rgba(0, 0, 0, 0.28) 100%);
}

.services__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.services__bg.is-visible {
  opacity: 1;
}

.services__grid {
  width: 100%;
  height: 100%;
  /* background:
    radial-gradient(circle at 20% 20%, rgba(28, 109, 129, 0.274), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(34, 116, 197, 0.141), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 16, 29, 0.62) 0%, rgba(7, 16, 29, 0.88) 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, auto; */
}

.services__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 4rem;
}

.services__left,
.services__right {
  padding: 8rem 0;
}

.services__sticky {
  position: sticky;
  top: 24vh;
}

.services__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 9.5rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: var(--tracking-tighter);
}

.services__title {
  margin: 1rem 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
}

.service-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.38;
  transform: translateX(30px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.service-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item.is-active {
  opacity: 1;
  transform: translateX(0);
}

.service-item__index {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding-top: 0.35rem;
}

.service-item__content h3,
.studio-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0.75rem;
}

.studio {
  padding: 7rem 3rem 4rem;
}

.studio__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.studio-card {
  min-height: 15rem;
}

.studio-card__step {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.cinematic {
  height: 320vh;
}

.cinematic__panel,
.cinematic__mesh,
.cinematic__overlay {
  position: absolute;
  inset: 0;
}

.cinematic__panel {
  clip-path: inset(44% 36% 44% 36% round 16px);
  background:
    radial-gradient(circle at 22% 22%, rgba(102, 224, 255, 0.32), transparent 26%),
    radial-gradient(circle at 74% 70%, rgba(140, 255, 191, 0.2), transparent 28%),
    linear-gradient(135deg, #19335e 0%, #1e2566 55%, #0e113d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cinematic__mesh {
  clip-path: inset(44% 36% 44% 36% round 16px);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

.cinematic__overlay {
  background: linear-gradient(180deg, rgba(5, 11, 21, 0.48) 0%, rgba(5, 11, 21, 0.16) 32%, rgba(5, 11, 21, 0.72) 100%);
}

.cinematic__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.cinematic__heading {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96;
}

.cin-line {
  display: block;
  opacity: 0;
}

.cinematic__counter {
  position: absolute;
  right: 2.5rem;
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  opacity: 0;
}

.cinematic__count {
  font-family: var(--font-display);
  font-size: 2rem;
}

.cinematic__count-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact {
  padding-top: 7rem;
  background: linear-gradient(#000 0%, #111 42%, #222 100%);
}

.contact__heading {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  max-width: 1100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact__lead {
  max-width: 720px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  opacity: 0;
}

.contact__actions {
  justify-content: center;
  margin-bottom: 2rem;
}

.contact__email {
  display: inline-block;
  margin-bottom: 4rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: var(--tracking-tight);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.18); */
  padding-bottom: 0.2rem;
  opacity: 0;
}

.contact__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__copy,
.contact__socials a {
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal-text {
  opacity: 1;
}

.reveal-up {
  opacity: 1;
}

@media (max-width: 960px) {
  .nav {
    padding: 1.1rem 1.2rem;
  }

  .nav__links {
    gap: 1rem;
    font-size: 0.82rem;
  }

  .hero__meta,
  .intro__cols,
  .studio__grid,
  .services__inner {
    grid-template-columns: 1fr;
  }

  .graphics__track--images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .graphics__track--logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .services__inner {
    gap: 0;
  }

  .services__left {
    padding: 5rem 0 2rem;
  }

  .services__sticky {
    position: relative;
    top: auto;
  }

  .services__right {
    padding: 0 0 5rem;
  }
}

@media (max-width: 768px) {
  .hero_wheel__canvas {
    display: none;
  }   
  .nav {
    z-index: 130;
    mix-blend-mode: normal;
  }

  .nav__logo {
    gap: 0.08rem;
  }

  .nav__logo-image {
    height: 3rem;
  }

  .preloader__logo-eu {
    position: relative;
    top: -0.18rem;
    left: -0.4rem;
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    color: var(--text);
  }

  .nav__logo-eu {
    left: -0.24rem;
    top: -0.12rem;
    font-size: 1.55rem;
  }

  .nav__toggle,
  .nav__backdrop {
    display: block;
  }

  .nav__toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 132;
  }

  .nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  body.nav-open .nav__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 131;
    width: min(82vw, 21rem);
    height: 100vh;
    padding: 6.2rem 1.2rem 1.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    background:
      linear-gradient(180deg, rgba(9, 17, 31, 0.96) 0%, rgba(6, 12, 24, 0.98) 100%);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(104%);
    transition: transform 0.32s var(--ease-out);
  }

  body.nav-open .nav__links {
    transform: translateX(0);
  }

  body.nav-open .nav__toggle {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
  }

  .nav__links a {
    display: inline-flex;
    width: 100%;
    min-height: 3.3rem;
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
    opacity: 1;
  }

  .nav__links a::before {
    transform-origin: bottom center;
  }

  .graphics {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .graphics__header {
    min-height: auto;
    margin-bottom: 2rem;
    padding-top: 0;
  }

  .graphics__label {
    position: relative;
    top: auto;
    left: auto;
    font-size: clamp(2rem, 9vw, 3.4rem);
    margin-bottom: 1rem;
    justify-content: center;
  }

  .graphics__heading {
    margin-top: 0;
    text-align: center;
  }

  .graphics__lead {
    max-width: 100%;
    text-align: center;
  }

  .graphics__track--images,
  .graphics__track--logos {
    gap: 0.8rem;
  }

  .car-viewer {
    margin-top: 6.25rem;
    padding-left: 0;
    padding-right: 0;
  }

  .car-viewer__copy {
    width: calc(100% - 2.5rem);
  }

  .hero__content,
  .intro,
  .services,
  .studio,
  .contact {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero__content {
    width: calc(100% - 2.5rem);
    padding-top: 3.4rem;
  }

  .hero__heading {
    font-size: clamp(2.15rem, 10.8vw, 3.5rem);
    line-height: 1;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .hero__tag {
    display: none;
  }
/* 
  .hero__scroll-indicator {
    display: none;
  } */

  .hero__meta {
    margin-top: 1.5rem;
  }

  .hero__meta-card {
    padding: 0.95rem 1rem;
  }

  .video-transition__frame {
    clip-path: inset(22% 10% 22% 10% round 18px);
  }

  .vt-line {
    font-size: clamp(1.55rem, 8.5vw, 2.8rem);
    letter-spacing: -0.03em;
    white-space: normal;
  }

  .graphics {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .graphics__track--images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    max-width: 24rem;
  }

  .graphics__track--logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    max-width: 24rem;
  }

  .graphic-card,
  .graphic-logo {
    width: 100%;
    max-width: 11rem;
  }

  .graphics__heading {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .graphics__band {
    transform: none;
  }

  .car-viewer__title {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .car-viewer__stage,
  .car-viewer__canvas {
    min-height: 32rem;
    height: 32rem;
  }

  .car-hotspot-card {
    right: 0.75rem;
    bottom: calc(0.75rem + 130px);
    width: calc(100% - 1.5rem);
    padding: 1.25rem;
  }

  .car-viewer__flight-toggle {
    right: 1rem;
    bottom: 4.5rem;
    width: 3.75rem;
    height: 3.75rem;
  }

  .car-viewer__visual-toggle {
    right: 5.5rem;
    bottom: 1rem;
    width: 3.75rem;
    height: 3.75rem;
  }

  .cinematic__panel,
  .cinematic__mesh {
    clip-path: inset(38% 12% 38% 12% round 16px);
  }

  .contact__actions,
  .contact__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cinematic__counter {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .graphic-card-preview {
    display: none !important;
  }

  .graphics.is-visible .graphic-card:hover,
  .graphics.is-visible .graphic-logo:hover,
  .graphics.is-visible .graphics__band--images .graphic-card:hover,
  .graphics.is-visible .graphics__band--logos .graphic-logo:hover,
  .graphics.is-visible .graphic-card:hover img,
  .graphics.is-visible .graphic-logo:hover img,
  .graphics.is-visible .graphics__band--images .graphic-card:hover img,
  .graphics.is-visible .graphics__band--logos .graphic-logo:hover img {
    transform: none;
    filter: none;
  }

  .graphic-card,
  .graphic-logo {
    transition: none;
  }

  .graphic-card img,
  .graphic-logo img {
    transition: none;
  }

  .image-lightbox__dialog {
    max-width: none;
  }

  .image-lightbox__stage,
  .image-lightbox__image {
    max-width: 80vw;
  }

  .image-lightbox__image {
    width: auto;
    max-height: 70vh;
    object-fit: contain;
  }

  .image-lightbox__nav--prev {
    left: -20px;
  }

  .image-lightbox__nav--next {
    right: -20px;
  }

  .image-lightbox__close {
    top: -48px;
    right: 0;
    font-size: 44px;
  }

  .car-viewer__status {
    width: 90%;
    max-width: 90%;
    text-align: center;
    line-height: 1.4;
  }
}
@font-face {
  font-family: "Oswald";
  src: url("vendor/oswald-latin-ext.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02FF, U+1E00-1EFF;
}
html{scrollbar-color:#454a4c #090b0c;scrollbar-width:thin}html::-webkit-scrollbar{width:12px;height:12px}html::-webkit-scrollbar-track{background:#090b0c}html::-webkit-scrollbar-thumb{background:#454a4c;border:3px solid #090b0c;border-radius:999px}html::-webkit-scrollbar-thumb:hover{background:#697074}
