:root {
  --ink: #111314;
  --panel: #181b1d;
  --panel-soft: #f3f0e8;
  --text: #c9c2b4;
  --hero-heading-text: #ffffff;
  --heading-text: #c9c2b4;
  --muted: #c9c2b4;
  --body-text: #232629;
  --line: rgba(255,255,255,0.16);
  --accent: #FDC82F;
  --accent-warm: #ffd43b;
  --danger: #ff4338;
  --shadow: 0 22px 60px rgba(0,0,0,0.35);
  --gusta-footer-offset: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text);
  overflow-x: hidden;
  background: var(--ink);
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 126px 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 66px;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(13,15,16,0.92), rgba(13,15,16,0.55));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 112px;
}

.brand-logo {
  width: 112px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2.2rem);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-switcher img {
  width: 26px;
  height: auto;
  opacity: 0.82;
  transition: opacity 0.2s, transform 0.2s;
}

.lang-switcher a:hover img,
.lang-switcher a:focus-visible img {
  opacity: 1;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 7rem 1rem 6rem;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8,10,10,0.18), rgba(8,10,10,0.55) 58%, rgba(8,10,10,0.94)),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.18), transparent 36%),
    rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 30vh;
  background: linear-gradient(0deg, var(--ink), transparent);
}

.hero-content {
  width: min(920px, 100%);
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: min(480px, 86vw);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.5));
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0.65rem;
}

.hero h1 {
  color: var(--hero-heading-text);
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

.hero-copy {
  width: min(780px, 100%);
  margin: 1.25rem auto 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.store-links img {
  height: 44px;
  max-width: 43vw;
  object-fit: contain;
  transition: transform 0.2s, filter 0.2s;
}

.store-links a:hover img,
.store-links a:focus-visible img {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-links a:focus-visible,
.main-nav a:focus-visible,
.lang-switcher a:focus-visible,
.back-to-top:focus-visible,
.footer-links a:focus-visible,
.social-links a:focus-visible,
.carousel-button:focus-visible,
.card-media-button:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.gusta {
  position: fixed;
  z-index: 6;
  right: clamp(0.5rem, 1.6vw, 1.5rem);
  bottom: var(--gusta-footer-offset);
  width: min(18vw, 260px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 22px 32px rgba(0,0,0,0.45));
}

.section {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  scroll-margin-top: 84px;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(253,200,47,0.08), transparent 38%),
    #0b0d0e;
}

.section-inner {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.section-heading h2,
.download-band h2 {
  color: var(--heading-text);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  line-height: 1.7;
}

.trailer-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.14);
  background: #202020;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card {
  flex-basis: 100%;
}

.video-card .video-container {
  max-width: none;
  border: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.video-card h3 {
  font-size: 1.1rem;
}

.video-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

#trailer-carousel .carousel-track {
  gap: 0;
}

#trailer-carousel .content-card {
  flex-basis: 100%;
}

.content-card,
.feature-card,
.roadmap-card,
.preview-panel,
.track-card {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    #131617;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.card-carousel {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: -0.5rem 0 0.8rem;
}

.carousel-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}

.carousel-button:hover {
  color: #141414;
  background: var(--accent);
  transform: translateY(-1px);
}

.carousel-button:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 0.7rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(253,200,47,0.62) rgba(255,255,255,0.08);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(253,200,47,0.62);
  border-radius: 999px;
}

.content-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card {
  min-height: 230px;
  padding: 1.25rem;
}

.feature-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 8px;
  background: var(--accent);
  color: #141414;
  font-size: 1.25rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.08rem;
}

.roadmap-card {
  min-height: 210px;
  padding: 1.25rem;
}

.roadmap-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.15rem;
  border-radius: 8px;
  background: rgba(253,200,47,0.14);
  color: var(--accent);
  border: 1px solid rgba(253,200,47,0.28);
  font-size: 1.15rem;
}

.roadmap-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.roadmap-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.08rem;
}

.future-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.future-layout.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.future-layout.reverse .section-heading {
  order: 2;
}

.preview-panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.panel-label {
  display: inline-flex;
  color: var(--accent-warm);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.car-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.car-slots span {
  display: block;
  aspect-ratio: 1.2;
  border-radius: 8px;
  border: 1px dashed rgba(255,255,255,0.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03)),
    radial-gradient(circle at 50% 70%, rgba(253,200,47,0.18), transparent 50%);
}

.preview-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.car-card {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    #131617;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  overflow: hidden;
}

.card-media-button,
.card-media-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  padding: 0;
  border: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03)),
    radial-gradient(circle at 50% 70%, rgba(253,200,47,0.18), transparent 50%),
    #252829;
}

.card-media-button {
  cursor: zoom-in;
}

.card-media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s, filter 0.35s;
}

.card-media-button:hover img,
.card-media-button:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.card-status {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.car-card h3,
.track-card h3 {
  font-size: 1.25rem;
  margin-top: 0.45rem;
  margin-bottom: 0.7rem;
}

.car-card p,
.track-card p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.08rem;
}

.time-value {
  display: block;
  margin-top: 0.45rem;
  color: var(--accent);
  font-size: 1.28rem;
}

.card-specs {
  display: grid;
  gap: 0.45rem;
  margin: auto 0 0;
}

.card-specs div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.card-specs dt {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.card-specs dd {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 800;
  text-align: right;
}

.download-band {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253,200,47,0.2), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.15);
}

.download-band .store-links {
  margin-top: 0;
  flex: 0 0 auto;
}

.gallery-lightbox {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.gallery-lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3,4,5,0.78);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(86vh, 860px);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 1rem;
}

.lightbox-panel figure {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    #101213;
  box-shadow: var(--shadow);
}

.lightbox-panel img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  background: #050606;
}

.lightbox-panel figcaption {
  padding: 1rem clamp(1rem, 3vw, 1.5rem) 1.2rem;
}

.lightbox-panel figcaption span {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.lightbox-panel figcaption h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.lightbox-panel figcaption p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.55;
}

.lightbox-close,
.lightbox-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

.lightbox-close {
  position: absolute;
  top: -3.25rem;
  right: 0;
  width: 44px;
  height: 44px;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: #141414;
  background: var(--accent);
  transform: translateY(-1px);
}

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

footer {
  position: relative;
  z-index: 5;
  background: #0a0b0c;
  color: #eee;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 2rem 1rem;
  gap: 2rem;
}

.company-summary {
  flex: 1 1 320px;
  max-width: 620px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.social-links {
  flex: 0 0 auto;
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #eee;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-links {
  flex: 1 1 240px;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  gap: 1rem;
}

.back-to-top {
  color: #eee;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 104px 1fr auto;
  }

  .brand-link,
  .brand-logo {
    width: 92px;
  }

  .main-nav {
    gap: 0.8rem;
    font-size: 0.72rem;
  }

  .future-layout,
  .future-layout.reverse {
    grid-template-columns: 1fr;
  }

  .content-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .future-layout.reverse .section-heading {
    order: 0;
  }

  .download-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox-panel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.65rem;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .brand-link,
  .brand-logo {
    width: 82px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 7.5rem 0.875rem 4rem;
  }

  .hero-logo {
    width: min(330px, 88vw);
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .store-links {
    gap: 0.65rem;
  }

  .store-links img {
    height: 36px;
    max-width: 44vw;
  }

  .gusta {
    display: none;
  }

  .section {
    padding: 3.5rem 0.875rem;
  }

  .feature-card,
  .roadmap-card {
    min-height: 0;
  }

  .car-slots {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    justify-content: flex-start;
    margin-top: -0.25rem;
  }

  .content-card {
    flex-basis: 100%;
  }

  .card-body {
    padding: 1rem;
  }

  .lightbox-panel {
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .lightbox-panel figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-panel img {
    max-height: 54vh;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    background: rgba(0,0,0,0.58);
  }

  .lightbox-nav {
    width: 100%;
    height: 46px;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }

  .download-band {
    width: calc(100% - 1.75rem);
    margin-bottom: 3.5rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.25rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    justify-content: center;
  }

  .company-summary,
  .social-links,
  .footer-links {
    flex: 0 1 auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
