:root {
  --ink: #111;
  --paper: #fff;
  --soft: #f2f2f2;
  --line: #ddd;
  --muted: #6c6c6c;
  --dark: #050505;
  --accent: #c50012;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 34px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #eee;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  font-size: 25px;
  font-weight: 900;
}
.brand-mark-link {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
}
.brand-mark {
  width: 350px;
  height: 88px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
}
.site-nav a:hover,
.site-nav a.active { color: var(--accent); }
.lang-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.plus-button {
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}
.language-select {
  width: 70px;
  height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  font: inherit;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111;
}

main { padding-top: 82px; }
.home-hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  background: #eee;
}
.home-hero img,
.home-hero video {
  height: 680px;
  object-fit: cover;
}
.discover {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 74px;
}
.discover h1 {
  margin: 0 0 20px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .95;
}
.discover h2 {
  width: min(740px, 100%);
  margin: 0;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.05;
  font-weight: 800;
}
.home-products {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-product {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #ddd;
}
.home-product img {
  height: 320px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: .22s ease;
}
.home-product span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.82), transparent);
  font-size: 26px;
  font-weight: 900;
}
.home-product:hover img { transform: scale(1.03); filter: grayscale(15%); }

.home-carousel {
  margin-bottom: 0;
  padding: 0;
  background: #fff;
}
.home-carousel-shell {
  width: 100%;
  margin: 0;
}
.home-carousel-viewport {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
}
.home-carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}
.home-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 6;
  background: #f0f0f0;
}
.home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-btn span {
  font-size: 34px;
  line-height: 1;
  margin-top: -2px;
}
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.anchor-nav {
  position: sticky;
  z-index: 30;
  top: 82px;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 15px 24px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e7e7e7;
  font-size: 13px;
  font-weight: 700;
}
.anchor-nav a:hover { color: var(--accent); }

.product-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
  min-height: 640px;
  background: #f7f7f7;
}
.product-opening video {
  height: 640px;
  object-fit: cover;
  filter: grayscale(100%);
}
.opening-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 54px;
}
.opening-copy .lead {
  margin: 0 0 22px;
  color: #222;
  font-size: 25px;
  line-height: 1.2;
}
.opening-copy h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  line-height: .92;
}

.compact-block,
.competitive {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 64px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
}
.compact-block img,
.competitive img {
  height: 460px;
  object-fit: cover;
  filter: grayscale(100%);
}
.compact-block h2,
.competitive h2,
.travel h2,
.specs h2,
.pricing h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 6vw, 86px);
  line-height: .92;
  font-weight: 900;
}
.compact-block p,
.competitive p {
  margin: 0 0 18px;
  color: #555;
  font-size: 22px;
}

.design-section {
  position: relative;
  min-height: 820px;
  padding: 94px 0 70px;
  background: #f6f6f4;
  overflow: hidden;
}
.design-image {
  width: min(760px, calc(100% - 48px));
  margin: 40px auto 0;
}
.design-image img {
  height: 430px;
  object-fit: cover;
  filter: grayscale(100%);
}
.design-section h2 {
  position: absolute;
  left: max(24px, calc((100% - var(--max)) / 2));
  bottom: 72px;
  max-width: 430px;
  margin: 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: .96;
}
.callout {
  position: absolute;
  max-width: 260px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
}
.callout::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin-bottom: 9px;
  background: #222;
}
.c1 { left: 9%; top: 22%; }
.c2 { right: 8%; top: 24%; }
.c3 { left: 13%; top: 53%; }
.c4 { right: 11%; top: 55%; }

.competitive {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  border-top: 1px solid var(--line);
}

.travel {
  padding: 86px 0 96px;
  background: #f4f4f4;
}
.travel > h2 {
  width: min(var(--max), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.case-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.case-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid #ddd;
}
.case-grid img {
  height: 310px;
  object-fit: contain;
  padding: 28px;
}
.case-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-top: 1px solid #e4e4e4;
  font-size: 14px;
}

.feature-list {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd;
}
.feature-list article {
  min-height: 220px;
  padding: 28px;
  background: #fff;
}
.feature-list h3 {
  margin: 0 0 18px;
  font-size: 20px;
}
.feature-list p {
  margin: 0;
  color: #555;
}

.specs {
  padding: 88px 0 95px;
  background: #f5f5f5;
}
.specs > h2,
.specs .note,
.spec-visual {
  width: min(var(--max), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.spec-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: stretch;
}
.crane-drawing {
  position: relative;
  min-height: 360px;
  background: #fff;
  border: 1px solid #ddd;
}
.crane-drawing::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 45%;
  width: 70%;
  height: 8px;
  background: #111;
}
.crane-drawing::after {
  content: "";
  position: absolute;
  left: 34%;
  top: 29%;
  width: 8px;
  height: 135px;
  background: #111;
}
.crane-drawing span {
  position: absolute;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ddd;
  font-weight: 900;
}
.crane-drawing .reach { left: 52%; top: 33%; color: var(--accent); }
.crane-drawing .height { left: 27%; bottom: 24%; }
.spec-visual table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.spec-visual th,
.spec-visual td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}
.spec-visual th { color: #555; width: 46%; }
.specs .note { color: #555; margin-top: 24px; }

.pricing,
.simple-page,
.catalog-page,
.contact-page {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 100px;
}
.pricing { text-align: center; }
.pricing p { color: #555; font-size: 19px; }
.clap {
  margin: 0 auto 24px;
  width: 80px;
  height: 60px;
  color: #fff;
  background: #111;
  display: grid;
  place-items: center;
  font-size: 32px;
}
.price-form {
  margin: 42px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.price-form label {
  display: grid;
  gap: 7px;
  color: #555;
  font-size: 13px;
}
.price-form .wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 12px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.price-form button,
.newsletter button {
  min-height: 44px;
  border: 0;
  color: #fff;
  background: #111;
  padding: 0 24px;
  font-weight: 800;
}
.controller-hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
  text-align: center;
}
.x-logo {
  font-size: clamp(44px, 8vw, 112px);
  font-weight: 900;
}
.x-logo span { color: var(--accent); }
.controller-hero h1 {
  max-width: 820px;
  margin: 28px auto;
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1;
}
.controller-hero img {
  max-width: 760px;
  margin: 0 auto;
  filter: grayscale(100%);
}
.ecosystem {
  padding: 90px max(24px, calc((100% - var(--max)) / 2));
  background: #f5f5f5;
}
.ecosystem.dark {
  color: #fff;
  background: #111;
}
.ecosystem h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 100px);
}
.ecosystem p {
  max-width: 720px;
  font-size: 22px;
}
.simple-page h1,
.catalog-page h1,
.contact-page h1 {
  margin: 0 0 22px;
  font-size: clamp(54px, 8vw, 110px);
}
.simple-page p { max-width: 780px; font-size: 22px; color: #555; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 54px max(24px, calc((100% - var(--max)) / 2));
  color: #fff;
  background: #111;
}
.site-footer a,
.site-footer strong {
  display: block;
  margin-bottom: 16px;
}
.site-footer p { color: #cfcfcf; }
.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

@media (max-width: 1100px) {
  .site-nav { gap: 10px; font-size: 11px; }
  .site-header { padding: 0 18px; }
}
@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 13px 18px;
  }
  .brand-logo { min-height: 42px; }
  .brand-mark-link {
    min-height: 42px;
    max-width: calc(100% - 58px);
  }
  .brand-mark {
    width: 168px;
    height: 42px;
  }
  main { padding-top: 68px; }
  .menu-toggle {
    display: block;
    margin-left: auto;
    flex: 0 0 42px;
  }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    padding: 14px 16px 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid #ddd;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0,0,0,.14);
    overflow: hidden;
    z-index: 45;
  }
  .site-nav.is-open { display: grid; }
  .site-nav a {
    min-height: auto;
    padding: 8px 0;
    white-space: nowrap;
  }
  .lang-wrap {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 8px;
    margin-left: 0;
  }
  .home-hero {
    min-height: 0;
    background: #f2f2f2;
  }
  .home-hero img,
  .home-hero video {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    height: auto;
    object-fit: contain;
    background: #000;
  }
  .discover {
    width: 100%;
    margin: 0;
    padding: 34px 20px 42px;
    background: #f2f2f2;
    color: #111;
  }
  .discover h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 9vw, 56px);
  }
  .discover h2 {
    width: 100%;
    font-size: clamp(20px, 5.4vw, 34px);
    line-height: 1.12;
  }
  .home-carousel-shell {
    width: 100%;
  }
  .home-carousel-slide {
    aspect-ratio: 16 / 9;
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
  }
  .home-products,
  .product-opening,
  .compact-block,
  .competitive,
  .case-grid,
  .feature-list,
  .spec-visual,
  .price-form,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .product-opening video { height: 380px; }
  .opening-copy { padding: 44px 24px; }
  .anchor-nav {
    top: 68px;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .compact-block,
  .competitive { gap: 30px; padding: 60px 0; }
  .design-section { min-height: auto; padding: 64px 0; }
  .design-section h2,
  .callout {
    position: static;
    width: min(var(--max), calc(100% - 48px));
    margin: 18px auto;
  }
  .callout::before { width: 72px; }
  .feature-list { gap: 1px; }
  .price-form .wide { grid-column: auto; }
  .newsletter form { grid-template-columns: 1fr; }
}

/* PRODUCT SIDEBAR TEMPLATE */
.product-layout {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 88px;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.product-side {
  position: sticky;
  top: 104px;
  align-self: start;
  padding-right: 12px;
}

.product-side .side-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-side .side-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px 8px 14px;
  border-left: 3px solid #e5e5e5;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.side-nav a:hover,
.side-nav a.active {
  border-left-color: var(--accent);
  color: var(--accent);
  background: #fafafa;
}

.product-content {
  min-width: 0;
}

.product-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 26px;
  align-items: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.product-hero-panel video,
.product-hero-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: #111;
}

.product-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 18px 26px 0;
}

.product-hero-copy .eyebrow {
  margin-bottom: 10px;
}

.product-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.92;
}

.product-hero-copy .lead {
  margin: 0;
  color: #3a3a3a;
  font-size: 21px;
  line-height: 1.5;
}

.content-section {
  padding: 56px 0;
  border-bottom: 1px solid #eee;
}

.content-section h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4.3vw, 60px);
  line-height: 0.98;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: 28px;
  align-items: start;
}

.content-grid .media {
  background: #f5f5f5;
}

.content-grid .media img,
.content-grid .media video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.content-grid .copy p {
  margin: 0 0 16px;
  color: #555;
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #ddd;
}

.feature-grid article {
  padding: 24px;
  background: #fff;
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.feature-grid p {
  margin: 0;
  color: #555;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.spec-gallery-layout {
  grid-template-columns: minmax(0, 1.35fr) 360px;
  gap: 36px;
}

.spec-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.spec-gallery figure {
  margin: 0;
  aspect-ratio: 1 / 1.25;
  overflow: hidden;
  border: 2px solid #f44b4b;
  background: #fff;
}

.spec-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spec-panel {
  align-self: start;
}

.spec-drawing {
  position: relative;
  min-height: 340px;
  border: 1px solid #ddd;
  background:
    linear-gradient(transparent 39px, rgba(0, 0, 0, 0.04) 40px),
    linear-gradient(90deg, transparent 39px, rgba(0, 0, 0, 0.04) 40px);
  background-size: 40px 40px;
}

.spec-drawing::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 47%;
  width: 68%;
  height: 8px;
  background: #111;
}

.spec-drawing::after {
  content: "";
  position: absolute;
  left: 36%;
  top: 27%;
  width: 8px;
  height: 150px;
  background: #111;
}

.spec-drawing .label {
  position: absolute;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 13px;
  font-weight: 800;
}

.spec-drawing .reach {
  left: 48%;
  top: 34%;
  color: var(--accent);
}

.spec-drawing .base {
  left: 26%;
  bottom: 20%;
}

.price-panel {
  display: grid;
  gap: 18px;
}

.price-panel p {
  margin: 0;
  color: #555;
  font-size: 18px;
}

@media (max-width: 860px) {
  .product-layout,
  .product-hero-panel,
  .content-grid,
  .spec-layout {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    flex-direction: column;
  }

  .hero-collage-item {
    min-height: 0;
  }

  .hero-collage-item img {
    height: auto;
    min-height: 0;
    object-fit: cover;
  }

  .hero-collage-caption {
    left: 16px;
    right: 16px;
    bottom: 22px;
  }

  .full-bleed-hero.hero-collage-hero .hero-collage-caption span {
    font-size: 7px !important;
  }

  .full-bleed-hero.hero-collage-hero .hero-collage-caption strong {
    font-size: 14px !important;
    line-height: 1.02;
  }

  .spec-gallery {
    grid-template-columns: 1fr;
  }

  .product-side {
    position: static;
    top: auto;
    padding: 0 0 8px;
  }

  .side-nav {
    grid-auto-flow: column;
    grid-template-columns: repeat(6, max-content);
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .side-nav a {
    white-space: nowrap;
  }

  .product-hero-panel video,
  .product-hero-panel img {
    height: 360px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
  .home-products {
    padding-top: 0;
  }
}

/* PRODUCT LAYERED WINDOWS */
.layered-stage {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #f3f3f3;
}
.layered-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.38) 45%, rgba(255,255,255,.88));
}
.layered-art {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.layered-art img {
  width: 78%;
  height: 100%;
  margin-left: 2%;
  object-fit: contain;
  opacity: .72;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}
.layered-art.right { justify-content: flex-end; }
.layered-art.right img { width: 70%; margin: 0 3% 0 0; }
.transparent-window {
  position: absolute;
  z-index: 2;
  width: min(430px, 46%);
  padding: 48px 42px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
  backdrop-filter: blur(3px);
}
.transparent-window h2 { margin: 0 0 24px; font-size: clamp(36px, 4.8vw, 76px); line-height: .94; }
.transparent-window p { margin: 0 0 18px; color: #555; font-size: 18px; }
.transparent-window .accent-list { display: grid; gap: 16px; margin-top: 28px; }
.transparent-window .accent-list p { position: relative; margin: 0; padding-left: 28px; font-size: 15px; }
.transparent-window .accent-list p::before { content: "›"; position: absolute; left: 0; top: -8px; color: var(--accent); font-size: 32px; }
.design-window { left: 10%; top: 24%; }
.transport-window { right: 9%; top: 18%; }
.layered-stage .floating-caption { position: absolute; z-index: 3; left: 12%; bottom: 10%; max-width: 300px; color: #111; font-size: 16px; font-weight: 800; }
.pricing-overlay { position: relative; min-height: 940px; padding: 120px 24px; overflow: hidden; background: #cfcfcf; }
.pricing-overlay > video,
.pricing-overlay > img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; filter: saturate(.78); }
.pricing-overlay::after { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(245,245,245,.2); }
.pricing-card { position: relative; z-index: 2; width: min(760px, 100%); margin: 0 auto; padding: 74px 80px 84px; background: rgba(255,255,255,.92); box-shadow: 0 25px 80px rgba(0,0,0,.18); backdrop-filter: blur(5px); }
.pricing-card h2 { margin: 0 0 16px; text-align: center; font-size: clamp(42px, 6vw, 78px); line-height: .95; }
.pricing-card > p { margin: 0 auto 34px; color: #555; text-align: center; font-size: 18px; }
.pricing-card .price-form { max-width: none; margin-top: 0; }
@media (max-width: 860px) {
  .layered-stage { min-height: 0; padding: 28px 0 56px; }
  .layered-art, .layered-art.right { position: relative; inset: auto; min-height: 360px; display: block; }
  .layered-art img, .layered-art.right img { width: 100%; height: 360px; margin: 0; object-position: center; }
  .transparent-window, .design-window, .transport-window { position: relative; inset: auto; width: calc(100% - 32px); margin: -34px auto 0; padding: 36px 28px; }
  .layered-stage .floating-caption { position: relative; left: auto; bottom: auto; width: calc(100% - 32px); margin: 28px auto 0; }
  .pricing-overlay { min-height: 0; padding: 48px 16px; }
  .pricing-card { padding: 48px 22px 54px; }
}

/* FULL BLEED PARALLAX 37FT */
.full-bleed-product {
  position: relative;
  width: 100%;
}

.full-bleed-content {
  width: 100%;
}

.full-bleed-product .overlay-side {
  position: fixed;
  z-index: 25;
  top: 50%;
  left: 18px;
  width: 184px;
  padding: 12px 10px 12px 0;
  background: rgba(255,255,255,.58);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(4px);
  transform: translateY(-50%);
}

.full-bleed-product .overlay-side .side-title {
  padding-left: 12px;
}

.full-bleed-product .side-nav {
  gap: 4px;
}

.full-bleed-product .side-nav a {
  border-left-color: rgba(0,0,0,.22);
}

.full-bleed-product .side-nav a.active {
  border-left-color: var(--accent);
  background: rgba(255,255,255,.62);
}

.full-bleed-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: #111;
}

.hero-collage-hero {
  min-height: 0;
  background: #111;
}

.hero-collage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.hero-collage-item {
  position: relative;
  margin: 0;
  min-height: calc(100vh - 82px);
  background: transparent;
}

.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: saturate(.96) contrast(1.02);
}

.hero-collage-caption {
  position: absolute;
  left: max(24px, calc((100% - var(--max)) / 2));
  bottom: 12%;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #111;
  text-shadow: 0 1px 0 rgba(255,255,255,.85);
}

.hero-collage-caption span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-collage-caption strong {
  font-size: clamp(26px, 4vw, 54px);
  line-height: .94;
  font-weight: 900;
}

.hero-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.03) 45%, rgba(0,0,0,0));
  z-index: -1;
}

.full-bleed-hero video {
  width: 100%;
  height: calc(100vh - 82px);
  object-fit: cover;
  opacity: .72;
}

.full-bleed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,0) 42%);
  z-index: 0;
}

.full-bleed-hero-copy {
  position: absolute;
  z-index: 2;
  left: max(240px, calc((100% - var(--max)) / 2));
  bottom: 11%;
  width: min(600px, calc(100% - 270px));
  color: #fff;
}

.full-bleed-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(54px, 9vw, 132px);
  line-height: .88;
}

.full-bleed-hero-copy p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: 22px;
}

.parallax-window-section {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  isolation: isolate;
  background-color: #f4f4f4;
}

.design-parallax,
.pricing-overlay {
  background-attachment: fixed;
  background-position: center calc(50% + var(--bg-drift, 0px));
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-back {
  display: none;
  position: sticky;
  z-index: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  will-change: transform;
}

.parallax-back img,
.parallax-back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.02) saturate(.9);
  mix-blend-mode: multiply;
  opacity: .96;
  transform: scale(1.12);
}

.design-parallax::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.7), rgba(255,255,255,.08) 48%, rgba(255,255,255,.42));
}

.parallax-front {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 23%;
  width: min(520px, 42vw);
  padding: 58px 48px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 30px 80px rgba(0,0,0,.14);
  backdrop-filter: blur(6px);
}

.parallax-front h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .92;
}

.parallax-front p {
  color: #555;
  font-size: 18px;
}

.parallax-bullets {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.parallax-bullets p {
  position: relative;
  margin: 0;
  padding-left: 25px;
  font-size: 15px;
}

.parallax-bullets p::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -8px;
  color: var(--accent);
  font-size: 30px;
}

.full-bleed-section {
  width: 100%;
}

.full-bleed-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.pricing-overlay {
  position: relative;
  min-height: 1080px;
  padding: 140px 24px;
  overflow: hidden;
  isolation: isolate;
  background-color: #d4d4d4;
}

.pricing-back {
  z-index: 0;
}

.pricing-back img,
.pricing-back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04) brightness(.96);
  opacity: .96;
  transform: scale(1.12);
}

.pricing-overlay::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(238,238,238,.06);
}

.pricing-front {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 74px 80px 84px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 28px 90px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
}

.pricing-front h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
}

.pricing-front > p {
  margin: 0 auto 34px;
  color: #555;
  text-align: center;
  font-size: 18px;
}

.pricing-front .price-form {
  max-width: none;
  margin-top: 0;
}

@media (max-width: 860px) {
  .full-bleed-hero.hero-collage-hero {
    min-height: 0;
    height: auto;
    overflow: visible;
    background: transparent;
  }

  .full-bleed-hero.hero-collage-hero .hero-collage {
    background: transparent;
  }

  .full-bleed-hero.hero-collage-hero .hero-collage-item {
    min-height: 0;
    height: auto;
    background: transparent;
  }

  .full-bleed-hero.hero-collage-hero .hero-collage-item img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
    background: transparent;
  }

  .full-bleed-product .overlay-side {
    position: fixed;
    top: 52%;
    left: 8px;
    width: 82px;
    padding: 7px 6px;
    border-radius: 10px;
    background: rgba(255,255,255,.82);
    transform: translateY(-50%);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    z-index: 25;
  }

  .full-bleed-product .overlay-side .side-title {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
  }

  .full-bleed-product .side-nav {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 2px;
    overflow: visible;
    padding-bottom: 0;
  }

  .full-bleed-product .side-nav a {
    min-height: 22px;
    padding: 4px 4px 4px 8px;
    font-size: 9px;
    white-space: nowrap;
  }

  .full-bleed-hero,
  .full-bleed-hero video {
    min-height: calc(100vh - 68px);
    height: auto;
  }

  .full-bleed-hero-copy {
    left: 16px;
    bottom: 28px;
    width: calc(100% - 32px);
  }

  .hero-collage-hero .full-bleed-hero-copy {
    display: none;
  }

  .parallax-window-section {
    min-height: 780px;
  }

  .parallax-front {
    top: 24%;
    left: 16px;
    width: calc(100% - 32px);
    padding: 38px 26px;
  }

  .pricing-overlay {
    min-height: 0;
    padding: 52px 16px;
  }

  .pricing-front {
    padding: 48px 22px 54px;
  }
}
