:root {
  color-scheme: dark;
  color: #f3f4f6;
  background: #07090f;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  min-height: 100%;
  background: #05070b;
}

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

button {
  border: none;
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(18px);
  background: rgba(4, 6, 10, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-subtitle {
  margin: 0;
  color: #b9c1d6;
  font-size: 0.95rem;
}

.brand-logo {
  display: block;
  max-width: 10rem;
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-link {
  color: #b9c1d6;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
  margin-right: 1.5rem;
}

.home-link:hover {
  color: #f3f4f6;
  opacity: 0.9;
}

.brand h1 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand p {
  margin: 0.15rem 0 0;
  color: #b9c1d6;
  font-size: 0.95rem;
}

.menu {
  display: flex;
  gap: 0.5rem;
}

.lang-menu {
  position: relative;
  display: inline-block;
}

.lang-trigger {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, background 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 3rem;
}

.lang-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.lang-trigger::after {
  content: '▼';
  font-size: 0.65rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.lang-menu.open .lang-trigger::after {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(6, 9, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  min-width: 140px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.lang-menu.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: #cbd5e1;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #e5e9f3;
}

.lang-option.active {
  background: rgba(124, 92, 255, 0.1);
  color: #8aa1ff;
  font-weight: 600;
}

.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-color: #020408;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.35), rgba(4, 6, 10, 0.95));
}

.hero-copy {
  position: relative;
  max-width: 780px;
  text-align: left;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: #8aa1ff;
  margin-bottom: 1rem;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 42rem;
  color: #d8dde5;
  font-size: 1.05rem;
  margin: 1.4rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #5a4a9f, #a64658);
  color: #fff;
  box-shadow: 0 12px 28px rgba(90, 74, 159, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: #e5e9f3;
}

.section {
  padding: 6rem 2rem;
  position: relative;
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.95), rgba(6, 9, 15, 0.95));
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.98), rgba(3, 5, 10, 0.98));
}

.section-intro {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7f8bff;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 0.8rem;
}

.section h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.75rem;
  padding: 2rem;
  min-height: 220px;
  backdrop-filter: blur(8px);
}

.card h4 {
  margin-top: 0;
  font-size: 1.12rem;
}

.card p {
  color: #b9c1d6;
}

.parallax-panel {
  min-height: 62vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #02060e;
}

.parallax-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.16), transparent 28%), radial-gradient(circle at bottom right, rgba(255, 106, 112, 0.1), transparent 30%);
  pointer-events: none;
}

.parallax-layer {
  position: absolute;
  top: -35%;
  left: 0;
  right: 0;
  bottom: -35%;
  background-size: cover;
  background-position: center 50%;
  filter: saturate(1.2) brightness(0.68) contrast(1.05);
  will-change: transform;
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.parallax-copy {
  margin: 0 auto;
  max-width: 760px;
  padding: 4rem 2rem;
  background: rgba(6, 9, 15, 0.78);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
  position: relative;
  z-index: 10;
}

.parallax-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.parallax-copy p,
.feature-card p,
.preview-text p,
.creator-copy p,
.footer p {
  color: #cad2e4;
}

.subtle {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8aa1ff;
  margin-bottom: 1rem;
}

.features .feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card h4 {
  margin-top: 0;
}

.preview {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.preview-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.preview-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.creator,
.specs {
  background: rgba(255, 255, 255, 0.02);
}

.creator {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  background: linear-gradient(180deg, rgba(6, 11, 22, 0.92), rgba(14, 23, 43, 0.96));
  border: 1px solid rgba(124, 92, 255, 0.12);
  border-radius: 2rem;
  padding: 3rem;
}

.creator-quote {
  background: transparent;
  border: none;
  padding: 0;
}

.creator-quote blockquote {
  margin: 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid rgba(124, 92, 255, 0.95);
  border-radius: 1.5rem;
  color: #eef1f8;
}

.creator-quote blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
}

.creator-quote .note {
  margin-top: 1.35rem;
  font-size: 0.95rem;
  color: #8c9ecc;
}

.specs .spec-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.specs ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: #c8d2e5;
}

.specs li {
  margin-bottom: 0.8rem;
}

.footer {
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #040608;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  margin: 0;
  max-width: 740px;
  color: #a9b3cc;
}

.footer a {
  color: #7c5cff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    padding: 1.5rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .preview,
  .creator {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero h2 {
    font-size: 2.7rem;
  }

  .preview-gallery img {
    height: 220px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s ease, visibility 0s linear 0.42s;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.42s ease, visibility 0s;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.42s ease, backdrop-filter 0.42s ease, -webkit-backdrop-filter 0.42s ease;
}

.video-modal.open .video-modal-backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.video-modal-panel {
  position: relative;
  max-width: 1000px;
  width: min(92vw, 1000px);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.55);
  z-index: 1;
  background: #000;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.open .video-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-frame video {
  display: block;
  background: #000;
}

.steam-trailer-link {
  display: block;
  padding: 0.9rem 1rem 1rem;
  color: #cbd5e1;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  background: #05070b;
}

.steam-trailer-link:hover {
  color: #fff;
}

.no-scroll {
  overflow: hidden;
}

/* Gallery Styles */
.gallery-toggle {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.toggle-btn.active {
  background: rgba(124, 92, 255, 0.2);
  color: #8aa1ff;
}

.gallery-content {
  position: relative;
}

.gallery-photos,
.gallery-videos {
  display: none;
}

.gallery-photos.active,
.gallery-videos.active {
  display: block;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.carousel-container img,
.video-wrapper {
  flex: 0 0 100%;
  width: 100%;
  max-height: 70vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.carousel-container img {
  display: block;
}

.video-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

@media (max-width: 640px) {
  .carousel-container img,
  .video-wrapper {
    height: 250px;
  }
}

/* Specs Toggle Styles */
.specs-toggle {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.specs-toggle .toggle-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.specs-toggle .toggle-btn.active {
  background: rgba(124, 92, 255, 0.2);
  color: #8aa1ff;
}

.specs-content {
  position: relative;
}

.specs-windows,
.specs-mac {
  display: none;
}

.specs-windows.active,
.specs-mac.active {
  display: block;
}

/* Product app pages */
.app-page {
  min-height: 100vh;
  color: #f6f8fb;
  background: #05070b;
  font-family: 'Inter', sans-serif;
}

.deskx-page {
  background:
    linear-gradient(135deg, rgba(3, 12, 20, 0.98), rgba(6, 22, 30, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(77, 187, 255, 0.22), transparent 32%);
}

.stranger-page {
  background:
    linear-gradient(135deg, rgba(8, 6, 8, 0.98), rgba(14, 8, 11, 0.96)),
    radial-gradient(circle at 72% 18%, rgba(179, 38, 57, 0.22), transparent 30%);
}

.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(4, 6, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.app-back {
  color: #d7deea;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-lang {
  position: relative;
}

.app-lang-trigger,
.app-lang-menu button {
  font: inherit;
}

.app-lang-trigger {
  min-width: 3.4rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: #f6f8fb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 148px;
  display: grid;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  border-radius: 14px;
  background: rgba(8, 11, 17, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.app-lang.open .app-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.app-lang-menu button {
  padding: 0.75rem 1rem;
  color: #cbd5e1;
  text-align: left;
  background: transparent;
}

.app-lang-menu button:hover,
.app-lang-menu button.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.product-hero {
  width: min(1180px, calc(100vw - 32px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.product-copy {
  max-width: 620px;
}

.app-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin-bottom: 1.25rem;
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}

.product-kicker {
  margin: 0 0 0.8rem;
  color: #8ec7ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stranger-page .product-kicker,
.stranger-page .section-label {
  color: #ff8f9d;
}

.product-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.product-lead {
  margin: 1.35rem 0 0;
  color: #d8deea;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.product-stats div {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-stats dt {
  color: #9ca9bd;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-stats dd {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  font-weight: 800;
}

.desktop-showcase {
  perspective: 1200px;
}

.deskx-carousel {
  perspective: 1200px;
}

.deskx-carousel-stage {
  position: relative;
  aspect-ratio: 1286 / 594;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 42, 62, 0.86), rgba(6, 15, 24, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.12), transparent);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
  transform: rotateY(-9deg) rotateX(4deg);
  transform-origin: center;
}

.deskx-carousel-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 32%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
  mix-blend-mode: screen;
}

.deskx-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(34px) scale(1.025);
  filter: saturate(0.92) brightness(0.72);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.deskx-page .deskx-slide {
  object-fit: contain;
  background: rgba(2, 8, 14, 0.62);
}

.stranger-page .deskx-slide {
  object-fit: cover;
}

.deskx-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: saturate(1.08) brightness(0.94);
}

.deskx-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
  transform: translateX(-4%);
}

.deskx-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.26);
  transition: width 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.deskx-dots button:hover,
.deskx-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.62);
  outline: none;
}

.deskx-dots button.active {
  width: 30px;
  background: #8ed8ff;
  transform: translateY(-1px);
}

.stranger-carousel-stage {
  background:
    linear-gradient(135deg, rgba(45, 11, 15, 0.9), rgba(8, 7, 10, 0.94)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55);
  transform: rotateY(9deg) rotateX(4deg);
}

.stranger-carousel-stage::before {
  background: linear-gradient(135deg, rgba(255, 146, 158, 0.16), transparent 36%, rgba(255, 255, 255, 0.07));
}

.stranger-dots button.active {
  background: #ff8f9d;
}

.glass-desktop {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 42, 62, 0.86), rgba(6, 15, 24, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.12), transparent);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
  transform: rotateY(-9deg) rotateX(4deg);
}

.desktop-bar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  color: #d7e9ff;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.desktop-icons {
  position: absolute;
  top: 4.5rem;
  left: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.desktop-icons span {
  width: 72px;
  min-height: 62px;
  display: grid;
  place-items: end center;
  padding: 0.45rem;
  border-radius: 14px;
  color: #d9e8f8;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
}

.window {
  position: absolute;
  border-radius: 20px;
  background: rgba(238, 248, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.window-top {
  display: flex;
  gap: 0.35rem;
  padding: 0.8rem;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.window-main {
  width: 66%;
  min-height: 255px;
  left: 21%;
  top: 22%;
  padding: 0 1.3rem 1.4rem;
}

.window-main h2 {
  margin: 0.5rem 0 0;
  font-size: 2rem;
}

.window-main p,
.window-side p {
  color: #cbd9e8;
}

.window-side {
  width: 34%;
  min-height: 152px;
  right: 7%;
  bottom: 18%;
  padding: 0 1rem 1rem;
}

.window-side strong {
  display: block;
  color: #fff;
}

.desktop-dock {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  display: flex;
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: 20px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.desktop-dock span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #75e0ff, #7d85ff);
}

.stranger-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.5);
}

.stranger-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.stranger-frame img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-section {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.product-section .section-intro {
  max-width: 760px;
}

.product-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.product-grid article {
  min-height: 210px;
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-grid h3 {
  margin: 0;
  font-size: 1.15rem;
}

.product-grid p {
  color: #c9d1df;
}

.product-band {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.product-band p:last-child {
  margin: 0;
  color: #ccd6e7;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.screenshot-strip img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}

.parallax-strip {
  align-items: center;
  overflow: hidden;
}

.parallax-shot {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.03);
  transition: transform 0.16s linear, filter 0.28s ease;
  will-change: transform;
}

.parallax-shot:hover {
  filter: brightness(1.08) saturate(1.08);
}

.trailer-section {
  padding-top: 1rem;
}

.trailer-frame {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.48);
  aspect-ratio: 16 / 9;
}

.trailer-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  color: #9facbd;
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.product-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .desktop-showcase {
    perspective: none;
  }

  .glass-desktop {
    transform: none;
  }

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

  .product-band,
  .screenshot-strip {
    grid-template-columns: 1fr;
  }

  .deskx-carousel-stage {
    transform: none;
  }

  .stranger-carousel-stage {
    transform: none;
  }

  .deskx-dots {
    transform: none;
  }
}

@media (max-width: 640px) {
  .app-nav {
    padding: 0.85rem 1rem;
  }

  .product-stats,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .glass-desktop {
    min-height: 430px;
  }

  .window-main {
    width: 72%;
    left: 18%;
  }

  .window-side {
    width: 52%;
  }

  .stranger-frame img {
    min-height: 300px;
  }

  .product-footer {
    flex-direction: column;
  }
}
