:root {
  --coal: #101214;
  --white: #f5f5f1;
  --orange: #ff5b32;
  --steel: #a9b0b5;
  --line: #34383c;
  --page-max: 1600px;
  --scroll-progress: 0;
  color-scheme: dark;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--coal);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--coal);
  color: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body,
button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 2px;
  background: var(--white);
  color: var(--coal);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav,
.product-nav {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: min(100%, var(--page-max));
  height: 72px;
  margin: 0 auto;
  padding: 0 42px;
  border-bottom: 1px solid rgba(245, 245, 241, 0.38);
}

.wordmark,
.footer-wordmark {
  width: fit-content;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a,
.back-link,
.nav-purchase,
.text-link,
.band-actions a {
  position: relative;
}

.nav-links a::after,
.back-link::after,
.nav-purchase::after,
.text-link::after,
.band-actions a:not(.band-primary)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.back-link:hover::after,
.nav-purchase:hover::after,
.text-link:hover::after,
.band-actions a:not(.band-primary):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-index {
  justify-self: end;
  color: rgba(245, 245, 241, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.scroll-meter {
  height: 2px;
  overflow: hidden;
  background: rgba(245, 245, 241, 0.12);
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  background: var(--orange);
}

.cinematic-hero {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--page-max));
  height: min(850px, calc(100vh - 120px));
  min-height: 700px;
  margin: 0 auto;
  overflow: hidden;
  background: #181b1e;
}

.scene-image,
.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-image {
  object-position: center 43%;
  transition: opacity 180ms ease, transform 600ms ease;
}

.scene-image.is-changing,
.fit-stage img.is-changing,
.scenario-visual img.is-changing {
  opacity: 0.42;
  transform: scale(1.008);
}

.hero-shade,
.product-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(7, 8, 9, 0.31);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 46px;
  left: 42px;
  max-width: 1190px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.scene-kicker,
.section-label {
  margin: 0 0 18px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 1050px;
  margin: 0;
  font-size: 82px;
  font-weight: 700;
  line-height: 0.94;
}

.hero-content h1 span {
  display: block;
}

.hero-bottomline {
  display: grid;
  grid-template-columns: minmax(0, 620px) auto;
  gap: 42px;
  align-items: end;
  margin-top: 30px;
}

.hero-bottomline p {
  max-width: 600px;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.scene-number {
  position: absolute;
  z-index: 2;
  right: 34px;
  top: 80px;
  margin: 0;
  color: rgba(245, 245, 241, 0.55);
  font-size: 86px;
  font-weight: 700;
  line-height: 1;
}

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cta span {
  margin-left: 26px;
  font-size: 18px;
}

.cta-orange {
  justify-self: start;
  background: var(--orange);
  color: #111315;
  text-shadow: none;
}

.cta-orange:hover {
  background: var(--white);
}

.chapter-selector {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 2.28fr);
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 72px 42px 78px;
  background: var(--white);
  color: var(--coal);
}

.section-heading h2,
.film-intro h2,
.fit-heading h2,
.scenario-copy-panel h2,
.service-band h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 650;
  line-height: 1;
}

.chapter-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #bfc2be;
  border-bottom: 1px solid #bfc2be;
}

.chapter-button {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  min-height: 154px;
  padding: 18px 16px;
  border: 0;
  border-right: 1px solid #bfc2be;
  border-radius: 0;
  background: transparent;
  color: var(--coal);
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease;
}

.chapter-button:first-child {
  border-left: 1px solid #bfc2be;
}

.chapter-button span,
.fit-button span {
  color: #686d70;
  font-size: 11px;
  font-weight: 700;
}

.chapter-button strong {
  align-self: end;
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.15;
}

.chapter-button:hover,
.chapter-button.is-active {
  background: var(--orange);
  color: var(--coal);
}

.chapter-button.is-active span {
  color: var(--coal);
}

.commerce-interlude {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  width: min(100%, var(--page-max));
  min-height: 760px;
  margin: 0 auto;
  background: var(--coal);
}

.commerce-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #d64e2d;
}

.commerce-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.commerce-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 9px;
  border-radius: 2px;
  background: rgba(16, 18, 20, 0.82);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.commerce-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 74px 70px;
}

.commerce-copy h2 {
  margin: 0;
  font-size: 90px;
  font-weight: 700;
  line-height: 0.9;
}

.commerce-lead {
  max-width: 520px;
  margin: 34px 0 38px;
  color: #d7dad6;
  font-size: 22px;
  line-height: 1.4;
}

.commerce-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 0 0 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commerce-facts div {
  padding: 18px 18px 20px 0;
}

.commerce-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.commerce-facts dt {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.commerce-facts dd {
  margin: 0;
  font-size: 16px;
}

.cta-dark {
  border-color: var(--white);
  color: var(--white);
}

.cta-dark:hover {
  background: var(--white);
  color: var(--coal);
}

.film-strip {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 86px 42px 104px;
  background: #e5e6e2;
  color: var(--coal);
}

.film-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 38px;
}

.film-intro .section-label {
  margin: 0;
}

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

.film-grid figure {
  min-width: 0;
  margin: 0;
}

.film-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.film-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 3px solid var(--coal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.film-grid figcaption span {
  color: #6a6f72;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 44px;
  align-items: center;
  width: min(100%, var(--page-max));
  min-height: 120px;
  margin: 0 auto;
  padding: 28px 42px;
  border-top: 1px solid var(--line);
  background: var(--coal);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Product */

.product-nav .nav-shell {
  grid-template-columns: 1fr auto 1fr;
}

.back-link,
.nav-purchase {
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.back-link span {
  margin-right: 8px;
  font-size: 17px;
}

.product-nav .wordmark {
  justify-self: center;
}

.nav-purchase {
  justify-self: end;
}

.product-hero {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--page-max));
  height: min(850px, calc(100vh - 84px));
  min-height: 740px;
  margin: 0 auto;
  overflow: hidden;
  background: #24282b;
}

.product-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.product-hero-media img {
  object-position: center 43%;
}

.product-hero-content {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  left: 42px;
  width: min(720px, calc(100% - 84px));
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.product-hero-content h1 {
  margin: 0;
  font-size: 122px;
  font-weight: 700;
  line-height: 0.83;
}

.product-positioning {
  max-width: 610px;
  margin: 32px 0 28px;
  font-size: 25px;
  line-height: 1.25;
}

.product-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-caption {
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(245, 245, 241, 0.25);
  border-radius: 2px;
  background: rgba(16, 18, 20, 0.84);
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.product-hero-media .proof-caption {
  position: absolute;
  right: 42px;
  bottom: 24px;
  max-width: 300px;
}

.sticky-product-band {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  width: min(100%, var(--page-max));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 42px;
  border-bottom: 1px solid #c8cac6;
  background: var(--white);
  color: var(--coal);
}

.band-product {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.sticky-product-band ul {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sticky-product-band li {
  padding: 0 18px;
  border-left: 1px solid #c8cac6;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.band-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.band-primary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 2px;
  background: var(--orange);
}

.fit-chapters {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 106px 42px;
  scroll-margin-top: 76px;
  background: var(--white);
  color: var(--coal);
}

.fit-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}

.fit-stage-copy {
  max-width: 420px;
  margin: 0;
  color: #4d5255;
  font-size: 18px;
  line-height: 1.45;
}

.fit-stage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.62fr);
  min-height: 690px;
  border-top: 1px solid #c4c7c3;
  border-bottom: 1px solid #c4c7c3;
}

.fit-stage,
.proof-rail figure,
.scenario-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.fit-stage img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  transition: opacity 180ms ease, transform 300ms ease;
}

.fit-stage .proof-caption,
.scenario-visual .proof-caption,
.proof-rail .proof-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
}

.fit-controls {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  border-left: 1px solid #c4c7c3;
}

.fit-button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid #c4c7c3;
  border-radius: 0;
  background: transparent;
  color: var(--coal);
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease;
}

.fit-button:last-child {
  border-bottom: 0;
}

.fit-button strong {
  overflow-wrap: anywhere;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.15;
}

.fit-button:hover,
.fit-button.is-active {
  background: var(--coal);
  color: var(--white);
}

.fit-button.is-active span {
  color: var(--orange);
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 72px;
}

.proof-rail img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.proof-rail .proof-caption {
  font-size: 12px;
}

.scenario-selector {
  display: grid;
  grid-template-columns: minmax(430px, 0.8fr) minmax(0, 1.2fr);
  width: min(100%, var(--page-max));
  min-height: 780px;
  margin: 0 auto;
  background: #171a1c;
}

.scenario-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 70px 58px 70px 42px;
}

.scenario-copy-panel > p:not(.section-label) {
  max-width: 470px;
  min-height: 64px;
  margin: 30px 0 48px;
  color: #ced1ce;
  font-size: 19px;
  line-height: 1.45;
}

.scenario-controls {
  border-top: 1px solid var(--line);
}

.scenario-button {
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 15px 48px 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 650;
  transition: color 180ms ease, padding-left 180ms ease;
}

.scenario-button::after {
  float: right;
  content: "→";
  color: var(--orange);
}

.scenario-button:hover,
.scenario-button.is-active {
  padding-left: 12px;
  color: var(--white);
}

.scenario-visual img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
  transition: opacity 180ms ease, transform 300ms ease;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(320px, 1fr) minmax(320px, 1fr) auto;
  gap: 38px;
  align-items: center;
  width: min(100%, var(--page-max));
  min-height: 260px;
  margin: 0 auto;
  padding: 52px 42px;
  scroll-margin-top: 76px;
}

.service-band .section-label,
.service-band p {
  margin: 0;
}

.service-band > p:not(.section-label) {
  max-width: 430px;
  font-size: 18px;
}

.size-band {
  background: var(--white);
  color: var(--coal);
}

.dark-text-link {
  justify-self: end;
}

.purchase-band {
  background: var(--orange);
  color: var(--coal);
}

.cta-light {
  justify-self: end;
  border-color: var(--coal);
}

.cta-light:hover {
  background: var(--coal);
  color: var(--white);
}

@media (max-width: 1320px) {
  .nav-shell,
  .hero-content,
  .product-hero-content,
  .sticky-product-band,
  .fit-chapters,
  .film-strip,
  .site-footer,
  .service-band {
    padding-right: 30px;
    padding-left: 30px;
  }

  .chapter-selector {
    grid-template-columns: minmax(250px, 0.62fr) minmax(0, 2.38fr);
    padding-right: 30px;
    padding-left: 30px;
  }

  .commerce-copy {
    padding-right: 44px;
    padding-left: 44px;
  }

  .sticky-product-band {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .sticky-product-band li {
    padding-right: 12px;
    padding-left: 12px;
  }

  .band-actions {
    gap: 14px;
  }

  .scenario-copy-panel {
    padding-right: 44px;
    padding-left: 30px;
  }

  .service-band {
    grid-template-columns: 150px minmax(280px, 0.9fr) minmax(280px, 1fr) auto;
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
