@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/syne-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/syne-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #050706;
  --ink-2: #0b0e0c;
  --ink-3: #131713;
  --paper: #eeefe8;
  --paper-2: #e4e6dc;
  --white: #f7f8f2;
  --muted: #9ca49b;
  --line: rgba(247, 248, 242, 0.16);
  --line-dark: rgba(17, 22, 17, 0.18);
  --accent: #c7ff19;
  --accent-rgb: 199, 255, 25;
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "Manrope", "Helvetica Neue", sans-serif;
  --mono: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --page: min(92vw, 1480px);
  --header: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

::selection {
  color: #050706;
  background: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: none;
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font: 400 0.68rem/1.2 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

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

.button--accent {
  color: var(--ink);
  background: var(--accent);
}

.button--line {
  border-color: var(--line);
  background: rgba(4, 6, 5, 0.2);
  backdrop-filter: blur(10px);
}

.button--line:hover {
  border-color: var(--accent);
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header);
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  padding-inline: 3vw;
  border-bottom: 1px solid transparent;
  transition: height 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-compact,
.site-header:focus-within {
  border-color: var(--line);
  background: rgba(5, 7, 6, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
}

.brand img {
  width: clamp(126px, 10vw, 172px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 1.8rem;
  height: var(--header);
}

.desktop-nav > a,
.nav-products > button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: rgba(247, 248, 242, 0.72);
  background: none;
  font: 600 0.73rem/1 var(--body);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 180ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-products > button:hover,
.nav-products > button[aria-expanded="true"] {
  color: var(--accent);
}

.nav-products {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-products > button {
  gap: 0.45rem;
}

.nav-products > button span {
  transition: transform 200ms ease;
}

.nav-products > button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.product-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(520px, 82vw);
  padding: 0.7rem;
  border: 1px solid var(--line);
  background: rgba(8, 11, 9, 0.97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 250ms var(--ease), visibility 0s linear 250ms;
}

.nav-products:hover .product-dropdown,
.nav-products:focus-within .product-dropdown,
.nav-products.is-open .product-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 180ms ease, transform 250ms var(--ease), visibility 0s;
}

.product-dropdown a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 49px;
  padding-inline: 0.8rem;
  border-bottom: 1px solid rgba(247, 248, 242, 0.09);
  color: rgba(247, 248, 242, 0.77);
  font-size: 0.82rem;
  transition: color 160ms ease, background 160ms ease;
}

.product-dropdown a:last-child {
  border-bottom: 0;
}

.product-dropdown a:hover,
.product-dropdown a[aria-current="page"] {
  color: var(--white);
  background: rgba(var(--accent-rgb), 0.09);
}

.product-dropdown small {
  color: var(--muted);
  font: 400 0.64rem/1 var(--mono);
}

.product-dropdown i {
  color: var(--accent);
  font-style: normal;
}

.header-inquiry {
  justify-self: end;
  min-height: 38px;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  color: var(--accent);
  background: rgba(5, 7, 6, 0.22);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.5);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: var(--header) 0 0;
  display: none;
  padding: clamp(1.5rem, 5vw, 3rem) 5vw 2rem;
  overflow-y: auto;
  background: rgba(5, 7, 6, 0.98);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 240ms var(--ease);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mobile-menu__home,
.mobile-menu__product {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 600;
}

.mobile-menu__home span,
.mobile-menu__product span {
  color: var(--muted);
  font: 400 0.64rem/1 var(--mono);
}

.mobile-menu__product[aria-current="page"] {
  color: var(--accent);
}

.mobile-menu__product i {
  color: var(--accent);
  font-style: normal;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 1.5rem;
}

.product-hero {
  position: relative;
  display: flex;
  min-height: min(900px, calc(100svh - 1px));
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #050706;
}

.product-hero__media,
.product-hero__shade,
.product-hero__grid {
  position: absolute;
  inset: 0;
}

.product-hero__media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.2s var(--ease) both;
}

.product-hero__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(4, 6, 5, 0.35) 0%, rgba(4, 6, 5, 0.04) 38%, rgba(4, 6, 5, 0.82) 100%),
    linear-gradient(90deg, rgba(3, 5, 4, 0.92) 0%, rgba(3, 5, 4, 0.68) 28%, transparent 62%);
}

.product-hero--right .product-hero__shade {
  background:
    linear-gradient(180deg, rgba(4, 6, 5, 0.28) 0%, rgba(4, 6, 5, 0.04) 42%, rgba(4, 6, 5, 0.82) 100%),
    linear-gradient(270deg, rgba(3, 5, 4, 0.84) 0%, rgba(3, 5, 4, 0.62) 29%, transparent 63%);
}

.product-hero__grid {
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(90deg, black, transparent 56%);
}

.product-hero--right .product-hero__grid {
  mask-image: linear-gradient(270deg, black, transparent 56%);
}

.product-hero__inner {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 6vw;
  margin: 0 auto;
  padding: calc(var(--header) + 3rem) 0 clamp(2.4rem, 7vh, 5.5rem);
}

.product-hero--right .product-hero__inner {
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 0.92fr);
}

.product-hero--right .product-hero__copy {
  grid-column: 2;
}

.product-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: clamp(1.2rem, 3vh, 2.2rem);
  color: rgba(247, 248, 242, 0.66);
  font: 400 0.65rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-hero__crumb:hover {
  color: var(--accent);
}

.product-hero__copy h1 {
  max-width: 920px;
  margin: 0.65rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.4vw, 8.4rem);
  font-weight: 800;
  line-height: 0.83;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.product-hero__copy h1 span {
  display: block;
  color: var(--accent);
  font-size: 0.22em;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-hero__lede {
  max-width: 620px;
  margin: 0 0 1.7rem;
  color: rgba(247, 248, 242, 0.78);
  font-size: clamp(0.92rem, 1.18vw, 1.13rem);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-hero__index {
  align-self: end;
  justify-self: end;
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
  color: rgba(247, 248, 242, 0.58);
  font: 400 0.64rem/1.5 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-hero__index strong {
  display: block;
  color: var(--white);
  font: 600 clamp(2.4rem, 4vw, 4.2rem)/0.9 var(--display);
  letter-spacing: -0.05em;
}

.facts-rail {
  color: #111510;
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}

.facts-rail__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact {
  min-height: 132px;
  padding: 1.5rem clamp(1rem, 2.3vw, 2.3rem);
  border-right: 1px solid var(--line-dark);
}

.fact:first-child {
  border-left: 1px solid var(--line-dark);
}

.fact span {
  display: block;
  margin-bottom: 0.55rem;
  color: #676e65;
  font: 400 0.62rem/1.2 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font: 600 clamp(1.15rem, 2vw, 1.75rem)/1.05 var(--display);
  letter-spacing: -0.035em;
}

.fact small {
  display: block;
  margin-top: 0.45rem;
  color: #737a71;
  font-size: 0.72rem;
}

.product-section {
  padding-block: clamp(4.2rem, 10vh, 8rem);
}

#details,
#options,
#trade {
  scroll-margin-top: var(--header);
}

.product-section--paper {
  color: #111510;
  background: var(--paper);
}

.product-section--dark {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 4vw;
  align-items: start;
  margin-bottom: clamp(2.2rem, 5vh, 4.2rem);
}

.section-head h2 {
  max-width: 1000px;
  margin: 0;
  font: 600 clamp(2.25rem, 5.3vw, 5.8rem)/0.93 var(--display);
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-head__copy {
  max-width: 520px;
  margin: 1.1rem 0 0;
  color: #687067;
  font-size: 0.96rem;
}

.product-section--dark .section-head__copy {
  color: var(--muted);
}

.breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: start;
}

.breakdown__visual {
  position: relative;
  min-height: 520px;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: #111;
}

.breakdown__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-callout {
  position: absolute;
  display: flex;
  max-width: min(210px, 30%);
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(4, 6, 5, 0.75);
  backdrop-filter: blur(10px);
  font: 400 clamp(0.55rem, 0.78vw, 0.7rem)/1.25 var(--mono);
  letter-spacing: 0.04em;
}

.visual-callout::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
  content: "";
}

.visual-callout:nth-of-type(1) {
  top: 7%;
  right: 4%;
}

.visual-callout:nth-of-type(2) {
  top: 34%;
  left: 3%;
}

.visual-callout:nth-of-type(3) {
  right: 4%;
  bottom: 22%;
}

.visual-callout:nth-of-type(4) {
  bottom: 5%;
  left: 5%;
}

.breakdown__content {
  border-top: 1px solid var(--line-dark);
}

.feature-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.feature-row__number {
  color: #737a71;
  font: 400 0.62rem/1.4 var(--mono);
}

.feature-row h3 {
  margin: 0 0 0.3rem;
  font: 600 1rem/1.2 var(--display);
  letter-spacing: -0.025em;
}

.feature-row p {
  margin: 0;
  color: #687067;
  font-size: 0.78rem;
}

.spec-table {
  margin-top: 1.4rem;
}

.spec-table h3 {
  margin: 0 0 0.75rem;
  font: 600 0.78rem/1.2 var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-table dl {
  margin: 0;
}

.spec-table dl div {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.72rem;
}

.spec-table dt {
  color: #737a71;
}

.spec-table dd {
  margin: 0;
  font-weight: 600;
}

.context-stage {
  position: relative;
  min-height: min(760px, 82svh);
  overflow: hidden;
  isolation: isolate;
}

.context-stage > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.context-stage::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 5, 4, 0.92), rgba(3, 5, 4, 0.45) 48%, rgba(3, 5, 4, 0.02));
  content: "";
}

.context-stage--right::after {
  background: linear-gradient(270deg, rgba(3, 5, 4, 0.88), rgba(3, 5, 4, 0.44) 48%, rgba(3, 5, 4, 0.02));
}

.context-stage__inner {
  display: grid;
  min-height: min(760px, 82svh);
  grid-template-columns: minmax(280px, 560px) 1fr;
  align-items: center;
  gap: 5vw;
  padding-block: clamp(3.5rem, 8vh, 6rem);
}

.context-stage--right .context-stage__inner {
  grid-template-columns: 1fr minmax(280px, 560px);
}

.context-stage--right .context-stage__copy {
  grid-column: 2;
}

.context-stage h2 {
  margin: 0.7rem 0 1.15rem;
  font: 600 clamp(2.6rem, 5.2vw, 5.8rem)/0.92 var(--display);
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.context-stage__copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(247, 248, 242, 0.76);
}

.context-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.context-points span {
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.35);
  font: 400 0.64rem/1.2 var(--mono);
  letter-spacing: 0.06em;
  backdrop-filter: blur(9px);
}

.options-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: stretch;
}

.option-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: 540px;
  background: var(--line);
}

.option-gallery:has(.option-card:only-child) {
  grid-template-columns: 1fr;
}

.option-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #f4f4ef;
}

.option-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.option-card:hover img {
  transform: scale(1.035);
}

.option-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 1.2rem 1.1rem;
  color: white;
  background: linear-gradient(transparent, rgba(4, 6, 5, 0.9));
}

.option-card__label strong {
  font: 600 1.1rem/1.1 var(--display);
}

.option-card__label small {
  color: rgba(255, 255, 255, 0.7);
  font: 400 0.58rem/1.3 var(--mono);
  text-align: right;
}

.palette-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.palette-panel h3 {
  margin: 0.75rem 0 0;
  font: 600 clamp(1.8rem, 3.2vw, 3.5rem)/0.98 var(--display);
  letter-spacing: -0.05em;
}

.palette-panel > p:not(.eyebrow) {
  margin: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.palette {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.palette__item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}

.palette__swatch {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--swatch);
}

.palette__item small {
  color: var(--muted);
  font: 400 0.58rem/1 var(--mono);
}

.trade-section {
  position: relative;
  padding-block: clamp(4rem, 9vh, 7rem);
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}

.trade-section::after {
  position: absolute;
  right: -8vw;
  bottom: -45%;
  width: min(50vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(5, 7, 6, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 80px rgba(5, 7, 6, 0.03), inset 0 0 0 160px rgba(5, 7, 6, 0.03);
  content: "";
}

.trade-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 7vw;
  align-items: end;
}

.trade-copy h2 {
  max-width: 920px;
  margin: 0.75rem 0 1rem;
  font: 800 clamp(2.8rem, 6.5vw, 7.2rem)/0.84 var(--display);
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.trade-copy .eyebrow {
  color: rgba(5, 7, 6, 0.65);
}

.trade-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
}

.trade-panel {
  padding: clamp(1.3rem, 2.4vw, 2.4rem);
  color: var(--white);
  background: var(--ink);
}

.trade-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1.3rem;
  background: var(--line);
}

.trade-term {
  padding: 1rem;
  background: var(--ink);
}

.trade-term span {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--muted);
  font: 400 0.58rem/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-term strong {
  font: 600 1rem/1.25 var(--display);
}

.trade-panel .button {
  width: 100%;
}

.trade-panel > small {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.63rem;
}

.next-product {
  position: relative;
  min-height: min(620px, 72svh);
  overflow: hidden;
  isolation: isolate;
}

.next-product img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.next-product::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 5, 4, 0.58);
  content: "";
  transition: background 300ms ease;
}

.next-product:hover img {
  transform: scale(1.035);
}

.next-product:hover::after {
  background: rgba(3, 5, 4, 0.42);
}

.next-product__inner {
  display: flex;
  min-height: min(620px, 72svh);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.next-product h2 {
  margin: 0.7rem 0 0;
  font: 800 clamp(3.2rem, 8vw, 9rem)/0.85 var(--display);
  letter-spacing: -0.08em;
}

.next-product__arrow {
  display: grid;
  width: clamp(70px, 9vw, 132px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 4rem);
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.site-footer img {
  width: 128px;
}

.site-footer nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.site-footer small {
  justify-self: end;
  color: #767d75;
  font-size: 0.63rem;
  text-align: right;
}

.legal-note {
  padding: 0.8rem 4vw;
  border-top: 1px solid var(--line);
  color: #747b73;
  background: var(--ink);
  font-size: 0.58rem;
  text-align: center;
}

.age-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(3, 5, 4, 0.94);
  backdrop-filter: blur(18px);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.age-gate[hidden] {
  display: none;
}

.age-gate.is-leaving {
  visibility: hidden;
  opacity: 0;
}

.age-gate__panel {
  width: min(560px, 100%);
  padding: clamp(1.5rem, 5vw, 3.3rem);
  border: 1px solid var(--line);
  background: var(--ink-2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.age-gate__panel img {
  width: 158px;
  height: auto;
  aspect-ratio: 360 / 79;
  object-fit: contain;
  margin-bottom: 2rem;
}

.age-gate__panel h1 {
  margin: 0.6rem 0 0.8rem;
  font: 600 clamp(2.4rem, 7vw, 4.5rem)/0.9 var(--display);
  letter-spacing: -0.06em;
}

.age-gate__panel > p:not(.eyebrow) {
  color: var(--muted);
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.age-gate__panel > small {
  display: block;
  margin-top: 1rem;
  color: #737a72;
  font-size: 0.63rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from {
    opacity: 0.45;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  :root {
    --header: 64px;
  }

  .product-hero__inner {
    padding-bottom: clamp(1.7rem, 4vh, 2.8rem);
  }

  .product-hero__copy h1 {
    font-size: clamp(3.4rem, 6.5vw, 6.4rem);
  }

  .product-hero__crumb {
    margin-bottom: 1rem;
  }

  .product-hero__lede {
    margin-bottom: 1.15rem;
  }

  .button {
    min-height: 44px;
  }

  .fact {
    min-height: 106px;
    padding-block: 1.05rem;
  }

  .product-section {
    padding-block: 3.2rem;
  }

  .section-head {
    margin-bottom: 1.6rem;
  }

  .section-head h2 {
    font-size: clamp(2.4rem, 4.5vw, 4.3rem);
  }

  .section-head__copy {
    margin-top: 0.65rem;
    font-size: 0.82rem;
  }

  .breakdown__visual {
    min-height: 420px;
    aspect-ratio: 1.48 / 1;
  }

  .feature-row {
    padding-block: 0.82rem;
  }

  .feature-row p {
    font-size: 0.72rem;
  }

  .spec-table {
    margin-top: 1rem;
  }

  .spec-table dl div {
    padding-block: 0.52rem;
  }

  .option-gallery {
    min-height: 460px;
  }

  .option-card {
    min-height: 420px;
  }

  .context-stage,
  .context-stage__inner {
    min-height: 610px;
  }

  .next-product,
  .next-product__inner {
    min-height: 480px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 150px auto 150px;
  }

  .desktop-nav {
    gap: 1rem;
  }

  .header-inquiry {
    font-size: 0.64rem;
  }

  .breakdown {
    grid-template-columns: 1fr;
  }

  .breakdown__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .spec-table {
    margin-top: 0;
  }

  .options-layout {
    grid-template-columns: 1fr;
  }

  .palette-panel {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 2rem;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 64px;
    --page: min(90vw, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 5vw;
  }

  .desktop-nav,
  .header-inquiry {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    flex-direction: column;
  }

  .product-hero {
    min-height: min(820px, 100svh);
  }

  .product-hero__media {
    object-position: 66% center;
  }

  .product-hero--right .product-hero__media {
    object-position: 30% center;
  }

  .product-hero__shade,
  .product-hero--right .product-hero__shade {
    background: linear-gradient(180deg, rgba(3, 5, 4, 0.16) 0%, rgba(3, 5, 4, 0.2) 34%, rgba(3, 5, 4, 0.94) 74%, #050706 100%);
  }

  .product-hero__inner,
  .product-hero--right .product-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-bottom: 2.2rem;
  }

  .product-hero--right .product-hero__copy {
    grid-column: 1;
  }

  .product-hero__copy h1 {
    font-size: clamp(3.4rem, 14vw, 6.5rem);
  }

  .product-hero__index {
    display: none;
  }

  .facts-rail__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-head__copy {
    margin-top: 0;
  }

  .context-stage,
  .context-stage__inner {
    min-height: 680px;
  }

  .context-stage__inner,
  .context-stage--right .context-stage__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
  }

  .context-stage--right .context-stage__copy {
    grid-column: 1;
  }

  .context-stage::after,
  .context-stage--right::after {
    background: linear-gradient(180deg, rgba(3, 5, 4, 0.05), rgba(3, 5, 4, 0.86) 70%, #050706);
  }

  .trade-layout {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .product-hero {
    min-height: 720px;
  }

  .product-hero__inner {
    padding-top: calc(var(--header) + 2rem);
  }

  .product-hero__copy h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .product-hero__lede {
    font-size: 0.86rem;
  }

  .product-hero__actions {
    display: grid;
  }

  .product-hero__actions .button {
    width: 100%;
  }

  .facts-rail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact {
    min-height: 112px;
    padding: 1rem 0.85rem;
  }

  .fact strong {
    font-size: 1.05rem;
  }

  .fact small {
    font-size: 0.62rem;
  }

  .product-section {
    padding-block: 4.2rem;
  }

  .section-head h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .breakdown__visual {
    min-height: 0;
    aspect-ratio: 0.86 / 1;
  }

  .breakdown__content {
    display: block;
  }

  .spec-table {
    margin-top: 2rem;
  }

  .visual-callout {
    max-width: 42%;
    padding: 0.4rem 0.48rem;
    font-size: 0.49rem;
  }

  .context-stage,
  .context-stage__inner {
    min-height: 650px;
  }

  .context-stage h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .option-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .option-card {
    min-height: 420px;
  }

  .palette-panel {
    display: block;
  }

  .palette-panel h3 {
    font-size: 2.2rem;
  }

  .trade-copy h2 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  .trade-terms {
    grid-template-columns: 1fr;
  }

  .next-product,
  .next-product__inner {
    min-height: 500px;
  }

  .next-product__inner {
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .next-product__arrow {
    width: 58px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer small {
    justify-self: start;
    text-align: left;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
