.product-hero,
.product-dialog {
  --cocoa-deep: #120806;
  --cocoa: #3b160d;
  --cocoa-soft: #6b2e18;
  --cream: #f1dfbd;
  --cream-muted: #cbb99a;
  --amber: #c67c15;
  --amber-bright: #eca62e;
  --white: #fffaf1;
  --line: rgba(255, 250, 241, .22);
  --edge-proximity: .08;
  --display: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Aptos Display", sans-serif;
  --body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--body);
}

.product-hero button,
.product-dialog button {
  color: inherit;
  font: inherit;
}

.product-hero button:focus-visible,
.product-hero a:focus-visible,
.product-dialog button:focus-visible,
.product-dialog a:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 4px;
}
.product-hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: var(--cocoa-deep);
  --slide-accent: #d9962a;
}

@keyframes hero-scene-arrive {
  from { opacity: .55; transform: scale(1.075); }
}

@keyframes hero-copy-arrive {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
}

@keyframes hero-utility-arrive {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
}

.motion-enabled.page-motion-ready .hero__background {
  animation: hero-scene-arrive 1.25s cubic-bezier(.16,.76,.22,1) backwards;
}

.motion-enabled.page-motion-ready .hero__eyebrow,
.motion-enabled.page-motion-ready .hero__title-line,
.motion-enabled.page-motion-ready .hero__lead,
.motion-enabled.page-motion-ready .hero__details-button {
  animation: hero-copy-arrive .72s cubic-bezier(.16,.76,.22,1) backwards;
}

.motion-enabled.page-motion-ready .hero__eyebrow { animation-delay: .12s; }
.motion-enabled.page-motion-ready .hero__title-line:nth-child(1) { animation-delay: .2s; }
.motion-enabled.page-motion-ready .hero__title-line:nth-child(2) { animation-delay: .28s; }
.motion-enabled.page-motion-ready .hero__title-line:nth-child(3) { animation-delay: .36s; }
.motion-enabled.page-motion-ready .hero__lead { animation-delay: .42s; }
.motion-enabled.page-motion-ready .hero__details-button { animation-delay: .5s; }
.motion-enabled.page-motion-ready .size-options,
.motion-enabled.page-motion-ready .slide-status,
.motion-enabled.page-motion-ready .hero__instruction,
.motion-enabled.page-motion-ready .product-rail {
  animation: hero-utility-arrive .65s cubic-bezier(.16,.76,.22,1) .62s backwards;
}

.hero__background,
.hero__atmosphere,
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__background {
  z-index: -5;
  inset: -2%;
  background-image: url("assets/Generative Fill.png");
  background-position: center;
  background-size: cover;
  filter: none;
  transform: scale(1.025);
  transition:
    opacity .32s ease,
    transform .85s cubic-bezier(.2, .7, .2, 1),
    filter .5s ease;
}

.product-hero.is-changing .hero__background {
  opacity: 1;
  filter: none;
  transform: scale(1.045);
}

.hero__atmosphere {
  display: none;
  z-index: -4;
  background:
    radial-gradient(circle at 68% 45%, color-mix(in srgb, var(--slide-accent) 24%, transparent), transparent 30%),
    linear-gradient(90deg, rgba(8, 4, 3, .98) 0%, rgba(15, 7, 4, .88) 29%, rgba(16, 7, 4, .28) 67%, rgba(9, 4, 3, .48) 100%),
    linear-gradient(0deg, rgba(8, 4, 3, .72), transparent 36%);
  transition: background .45s ease;
}

.hero__grain {
  z-index: 20;
  opacity: .08;
  mix-blend-mode: soft-light;
  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='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero__canvas {
  position: absolute;
  z-index: 5;
  inset: 84px 0 0;
}

.hero__content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: clamp(28px, 7.5vw, 154px);
  width: min(660px, 47vw);
  transform: translateY(-48%);
  transition:
    opacity .2s ease,
    transform .45s cubic-bezier(.2, .75, .2, 1);
}

.product-hero.is-changing .hero__content {
  opacity: 0;
  transform: translate3d(-24px, -48%, 0);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--slide-accent);
  font-size: clamp(.68rem, .72vw, .78rem);
  font-weight: 650;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero__title {
  max-width: 660px;
  margin: 0 0 22px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(3.25rem, 4.85vw, 4.6rem);
  font-stretch: condensed;
  font-weight: 600;
  letter-spacing: -.032em;
  line-height: .93;
  text-transform: uppercase;
  text-wrap: balance;
  scroll-margin-top: 100px;
}

.hero__title-line {
  display: block;
}

.hero__lead {
  max-width: 510px;
  margin: 0 0 26px;
  color: rgba(255, 250, 241, .82);
  font-size: clamp(.94rem, .94vw, 1.06rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.hero__details-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 24px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--slide-accent);
  color: var(--white);
  background: transparent;
  font-size: .82rem;
  font-weight: 650;
  cursor: pointer;
}

.hero__details-button span {
  color: var(--slide-accent);
  font-size: 1rem;
  transition: transform .22s ease;
}

.hero__details-button:hover span {
  transform: translate(3px, -3px);
}

.hero__product {
  display: none;
  position: absolute;
  z-index: 6;
  top: 7%;
  right: 13%;
  width: min(32vw, 520px);
  height: 78%;
  pointer-events: none;
  transition:
    opacity .22s ease,
    transform .58s cubic-bezier(.2, .75, .2, 1);
}

.product-hero.is-changing .hero__product {
  opacity: 0;
  transform: translate3d(48px, 0, 0) rotate(2deg) scale(.96);
}

.hero__product img {
  position: absolute;
  z-index: 2;
  inset: 3% 0 0;
  width: 100%;
  height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 35px 42px rgba(0, 0, 0, .66));
  transform: rotate(-1.5deg);
}

.hero__product-halo {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--slide-accent) 42%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px color-mix(in srgb, var(--slide-accent) 4%, transparent),
    inset 0 0 80px color-mix(in srgb, var(--slide-accent) 8%, transparent);
}

.hero__product-halo::before,
.hero__product-halo::after {
  position: absolute;
  inset: 9%;
  border: 1px solid color-mix(in srgb, var(--slide-accent) 24%, transparent);
  border-radius: inherit;
  content: "";
}

.hero__product-halo::after {
  inset: 20%;
}

.size-options {
  position: absolute;
  z-index: 18;
  bottom: 38px;
  left: clamp(28px, 7.5vw, 154px);
  display: flex;
  align-items: flex-end;
  gap: 34px;
  transition: opacity .2s ease, transform .35s ease;
}

.product-hero.is-changing .size-options {
  opacity: 0;
  transform: translateY(12px);
}

.size-option {
  position: relative;
  display: grid;
  width: 66px;
  min-height: 94px;
  place-items: end center;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.size-option img {
  display: block;
  width: auto;
  max-width: 54px;
  height: 72px;
  object-fit: contain;
  opacity: .72;
  transition: opacity .2s ease, transform .25s ease, filter .25s ease;
}

.size-option:hover img,
.size-option:focus-visible img,
.size-option.is-open img {
  opacity: 1;
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, .42));
  transform: translateY(-5px);
}

.size-option__tooltip {
  position: absolute;
  bottom: 0;
  left: calc(100% + 14px);
  width: 250px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  background: rgba(21, 10, 6, .94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .38);
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transform: translate(-10px, 0);
  transition: opacity .18s ease, transform .22s ease;
}

.size-option__tooltip::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  border-left: 1px solid rgba(255, 255, 255, .2);
  content: "";
  background: rgba(21, 10, 6, .94);
  transform: translate(-5px, -50%) rotate(45deg);
}

.size-option:hover .size-option__tooltip,
.size-option:focus-visible .size-option__tooltip,
.size-option.is-open .size-option__tooltip {
  opacity: 1;
  transform: translate(0, 0);
}

.size-option__tooltip strong,
.size-option__tooltip span {
  display: block;
}

.size-option__tooltip strong {
  margin-bottom: 6px;
  color: var(--slide-accent);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.size-option__tooltip span {
  color: rgba(255, 250, 241, .76);
  font-size: .72rem;
  line-height: 1.5;
}

.slide-status {
  position: absolute;
  z-index: 15;
  right: clamp(36px, 4vw, 80px);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .58);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.slide-status i {
  display: block;
  width: 78px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}

.slide-status b {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--slide-accent);
  transition: width .35s ease;
}

.hero__instruction {
  position: absolute;
  z-index: 14;
  right: clamp(42px, 4vw, 84px);
  top: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: rgba(255, 255, 255, calc(.38 - (var(--edge-proximity) * .28)));
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg) translateY(5px);
  transform-origin: right center;
  transition: color .2s ease, opacity .2s ease;
}

.product-rail {
  position: absolute;
  z-index: 40;
  top: 50%;
  right: 0;
  display: grid;
  width: 278px;
  gap: 10px;
  transform: translateY(-50%);
}

.product-tab {
  --item-proximity: .15;
  display: grid;
  grid-template-columns: 28px 76px 1fr;
  width: 262px;
  min-height: 106px;
  align-items: center;
  gap: 9px;
  padding: 8px 18px 8px 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-right: 0;
  color: var(--white);
  background: rgba(4, 31, 44, .78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  text-align: left;
  cursor: pointer;
  opacity: calc(.54 + (var(--edge-proximity) * .36) + (var(--item-proximity) * .1));
  transform:
    translateX(calc((1 - var(--edge-proximity)) * 214px + (1 - var(--item-proximity)) * 12px))
    scale(calc(.97 + (var(--item-proximity) * .03)));
  transition:
    transform .18s ease-out,
    opacity .18s ease,
    border-color .2s ease,
    background .2s ease;
}

.product-tab:hover,
.product-tab:focus-visible,
.product-tab.is-active {
  border-color: color-mix(in srgb, var(--slide-accent) 72%, white 8%);
  background: rgba(4, 39, 56, .94);
}

.product-tab.is-active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--slide-accent);
}

.product-tab__number {
  color: rgba(255, 255, 255, .46);
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .12em;
  transform: rotate(-90deg);
}

.product-tab__image {
  display: grid;
  height: 88px;
  place-items: center;
}

.product-tab__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, .45));
  transition: transform .24s ease;
}

.product-tab:hover .product-tab__image img,
.product-tab.is-active .product-tab__image img {
  transform: translateY(-3px) rotate(1.5deg);
}

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

.product-tab__copy small,
.product-tab__copy strong {
  display: block;
}

.product-tab__copy small {
  margin-bottom: 6px;
  color: var(--slide-accent);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-tab__copy strong {
  font-size: .82rem;
  line-height: 1.25;
}

.detail-cursor {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  display: grid;
  width: 102px;
  height: 102px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 8, 5, .74);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(8px);
  transform: translate3d(-50%, -50%, 0) scale(.76);
  transition: opacity .14s ease, transform .18s ease;
}

.detail-cursor.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.detail-cursor span,
.detail-cursor strong {
  display: block;
}

.detail-cursor span {
  margin-bottom: 5px;
  color: var(--slide-accent);
  font-size: 1rem;
  line-height: 1;
}

.detail-cursor strong {
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-controls {
  display: none;
}

.product-dialog {
  width: min(980px, calc(100vw - 48px));
  max-height: min(760px, calc(100svh - 48px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #27120b;
  background: #f5ead6;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .65);
  overscroll-behavior: contain;
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr);
}

.product-dialog::backdrop {
  background: rgba(7, 3, 2, .78);
  backdrop-filter: blur(8px);
}

.product-dialog__close {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(39, 18, 11, .2);
  border-radius: 50%;
  color: #27120b;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.product-dialog__close:hover {
  color: #fff;
  background: #27120b;
}

.product-dialog__close span {
  font-size: 1.45rem;
  line-height: 1;
}

.product-dialog__visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 50% 45%, rgba(214, 143, 37, .38), transparent 38%),
    linear-gradient(145deg, #4d2114, #160b07 72%);
}

.product-dialog__visual::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  content: "";
}

.product-dialog__visual img {
  position: relative;
  z-index: 2;
  width: 70%;
  max-height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, .55));
}

.product-dialog__visual > p {
  position: absolute;
  right: 5%;
  bottom: -7%;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: 13rem;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}

.product-dialog__visual > p small {
  font-size: .28em;
}

.product-dialog__content {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 64px 58px 42px;
}

.product-dialog__eyebrow {
  margin: 0 0 14px;
  color: #9a5b13;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-dialog h2 {
  max-width: 470px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.4vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: .98;
  text-transform: uppercase;
}

.product-dialog__intro {
  max-width: 500px;
  margin: 0 0 26px;
  color: rgba(39, 18, 11, .72);
  font-size: .92rem;
  line-height: 1.55;
}

.product-dialog__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 24px;
  border-top: 1px solid rgba(39, 18, 11, .15);
  border-left: 1px solid rgba(39, 18, 11, .15);
}

.product-dialog__facts div {
  padding: 13px 12px;
  border-right: 1px solid rgba(39, 18, 11, .15);
  border-bottom: 1px solid rgba(39, 18, 11, .15);
}

.product-dialog__facts dt {
  margin-bottom: 4px;
  color: rgba(39, 18, 11, .55);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-dialog__facts dd {
  margin: 0;
  font-size: .75rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.product-dialog__applications {
  margin-bottom: 20px;
}

.product-dialog__applications > span {
  display: block;
  margin-bottom: 9px;
  color: rgba(39, 18, 11, .55);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-dialog__applications ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-dialog__applications li {
  padding: 6px 10px;
  border: 1px solid rgba(39, 18, 11, .18);
  border-radius: 999px;
  color: rgba(39, 18, 11, .72);
  font-size: .67rem;
  font-weight: 650;
}

.product-dialog__note {
  margin: 0 0 22px;
  color: rgba(39, 18, 11, .48);
  font-size: .62rem;
  line-height: 1.45;
}

.product-dialog__actions {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  margin-top: auto;
}

.product-dialog__actions a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 15px;
  border: 1px solid rgba(39, 18, 11, .18);
  color: #27120b;
  font-size: .7rem;
  font-weight: 750;
  text-decoration: none;
}

.product-dialog__actions a:first-child {
  border-color: #27120b;
  color: #fff;
  background: #27120b;
}

.product-dialog__actions a:hover {
  border-color: #9a5b13;
}

@media (pointer: fine) {
  .hero__canvas {
    cursor: none;
  }

  .hero__canvas button,
  .hero__canvas a,
  .size-option,
  .product-rail,
  .product-rail * {
    cursor: pointer;
  }
}

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

  .desktop-nav {
    gap: 30px;
  }

  .hero__content {
    left: 56px;
    width: 54vw;
  }

  .hero__product {
    right: 11%;
    width: 35vw;
  }

  .size-options {
    left: 56px;
  }
}

@media (max-width: 900px) {
  .product-hero {
    min-height: 720px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 0 24px;
  }

  .brand {
    width: 112px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    height: 36px;
    padding: 0 14px 0 12px;
    font-size: .78rem;
  }

  .hero__canvas {
    inset: 76px 0 0;
  }

  .hero__background {
    filter: saturate(.9) brightness(.66);
  }

  .product-hero.is-changing .hero__background {
    opacity: .3;
    filter: saturate(.65) brightness(.4);
    transform: scale(1.065);
  }

  .hero__atmosphere {
    display: block;
  }

  .hero__content {
    top: 8%;
    left: 28px;
    width: min(620px, calc(100vw - 56px));
    transform: none;
  }

  .product-hero.is-changing .hero__content {
    transform: translateX(-18px);
  }

  .hero__title {
    max-width: 610px;
    font-size: clamp(2.85rem, 7vw, 4.3rem);
  }

  .hero__lead {
    max-width: 500px;
  }

  .hero__product {
    display: block;
    top: auto;
    right: 5%;
    bottom: 9%;
    width: min(47vw, 380px);
    height: 48%;
  }

  .size-options {
    bottom: 76px;
    left: 28px;
  }

  .slide-status,
  .hero__instruction {
    display: none;
  }

  .product-rail {
    right: 0;
    bottom: 14px;
    left: 0;
    top: auto;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 0 clamp(54px, 12vw, 96px);
    pointer-events: none;
    transform: none;
  }

  .product-tab {
    display: block;
    width: min(52px, calc((100vw - 132px) / 6));
    min-height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, .24);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .product-tab.is-active {
    background: var(--slide-accent);
  }

  .product-tab.is-active::before,
  .product-tab__number,
  .product-tab__image,
  .product-tab__copy {
    display: none;
  }

  .mobile-controls {
    position: absolute;
    z-index: 46;
    right: 18px;
    bottom: 0;
    left: 18px;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .mobile-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: rgba(17, 8, 5, .7);
    pointer-events: auto;
  }

  .mobile-dots {
    display: none;
  }

  .detail-cursor {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-hero {
    min-height: 760px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    width: 104px;
  }

  .header-cta {
    height: 34px;
    padding: 0 12px 0 10px;
    font-size: .75rem;
    gap: 6px;
  }

  .hero__background {
    background-position: 64% center;
    filter: saturate(.88) brightness(.5);
  }

  .hero__atmosphere {
    background:
      radial-gradient(circle at 68% 68%, color-mix(in srgb, var(--slide-accent) 20%, transparent), transparent 30%),
      linear-gradient(180deg, rgba(8, 4, 3, .94) 0%, rgba(11, 5, 3, .76) 49%, rgba(10, 4, 2, .42) 75%, rgba(8, 4, 3, .85) 100%);
  }

  .hero__content {
    top: 5%;
    left: 20px;
    width: calc(100vw - 40px);
  }

  .hero__eyebrow {
    gap: 9px;
    margin-bottom: 14px;
    font-size: .62rem;
    letter-spacing: .17em;
  }

  .hero__eyebrow::before {
    width: 26px;
  }

  .hero__title {
    margin-bottom: 17px;
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    letter-spacing: -.026em;
    line-height: .95;
  }

  .hero__lead {
    max-width: 94%;
    margin-bottom: 19px;
    font-size: .9rem;
    line-height: 1.52;
  }

  .hero__details-button {
    min-height: 42px;
    gap: 18px;
    font-size: .76rem;
  }

  .hero__product {
    right: -4%;
    bottom: 12%;
    width: 58vw;
    height: 39%;
  }

  .hero__product-halo {
    top: 20%;
  }

  .size-options {
    bottom: 68px;
    left: 20px;
    gap: 12px;
  }

  .size-option {
    width: 48px;
    min-height: 70px;
  }

  .size-option img {
    max-width: 38px;
    height: 56px;
  }

  .size-option__tooltip {
    bottom: calc(100% + 14px);
    left: 0;
    width: min(250px, calc(100vw - 40px));
    transform: translate(0, 10px);
  }

  .size-option__tooltip::after {
    top: 100%;
    left: 24px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
    transform: translate(-50%, -5px) rotate(45deg);
  }

  .size-option:hover .size-option__tooltip,
  .size-option:focus-visible .size-option__tooltip,
  .size-option.is-open .size-option__tooltip {
    transform: translate(0, 0);
  }

  .product-rail {
    gap: 4px;
    padding: 0 58px;
  }

  .product-tab {
    width: 34px;
  }

  .product-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    overflow-y: auto;
  }

  .product-dialog[open] {
    display: block;
  }

  .product-dialog__close {
    position: fixed;
    top: 24px;
    right: 24px;
  }

  .product-dialog__visual {
    min-height: 300px;
  }

  .product-dialog__visual img {
    width: 46%;
    max-height: 250px;
  }

  .product-dialog__visual > p {
    right: 3%;
    bottom: -10%;
    font-size: 8rem;
  }

  .product-dialog__content {
    min-height: 0;
    padding: 34px 22px 26px;
  }

  .product-dialog h2 {
    padding-right: 24px;
    font-size: clamp(2rem, 9.65vw, 2.35rem);
  }

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

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .detail-cursor {
    display: none;
  }
}

