:root {
  color-scheme: dark;
  --black: #020304;
  --deep: #06080b;
  --text: #f7f8fa;
  --muted: #b4bac1;
  --dim: #747b84;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d7b46a;
  --max: 1320px;
  --wide: 1500px;
  --nav-height: 64px;
  --section-gap: clamp(110px, 14vw, 220px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  background: linear-gradient(180deg, #020304 0%, #07090d 46%, #020304 100%);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 160;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #090a0d;
  background: var(--gold);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease-out;
}

.skip-link:focus-visible {
  color: #090a0d;
  outline-color: #090a0d;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: 100%;
  min-height: 68px;
  padding: 0 5.8vw;
  color: #090a0d;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 32, 61, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 108px;
  min-width: 108px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 12.5px;
  font-weight: 760;
  text-transform: uppercase;
}

.primary-nav a,
.nav-trigger {
  position: relative;
  color: #10131a;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.primary-nav > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -4px;
  height: 1px;
  background: rgba(213, 173, 45, 0.72);
  border-radius: 999px;
  transition: left 160ms ease, right 160ms ease;
}

.primary-nav > a:hover::after,
.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  left: 24%;
  right: 24%;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 22px;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  font: inherit;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #8d95a1;
  border-bottom: 1.5px solid #8d95a1;
  transform: translateY(-3px) rotate(45deg);
}

.product-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: none;
  width: min(88vw, 940px);
  min-width: 760px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e4e6ea;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(10, 15, 24, 0.16);
  transform: translateX(-50%);
}

.product-menu.open,
.has-menu:focus-within .product-menu,
.has-menu:hover .product-menu {
  display: grid;
}

.mega-menu {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
}

.mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.product-menu a {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 106px;
  padding: 16px 38px 15px 18px;
  color: #1c2028;
  text-transform: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.product-menu a::after {
  content: "\2192";
  position: absolute;
  right: 16px;
  top: 17px;
  color: #9a7c20;
  font-size: 15px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-menu a:hover,
.product-menu a:focus-visible {
  background: #f8f9fa;
  border-left-color: rgba(213, 173, 45, 0.72);
  border-top-color: #e7e9ed;
  border-right-color: #e7e9ed;
  border-bottom-color: #e7e9ed;
  outline: none;
  transform: translateY(-1px);
}

.product-menu a:hover::after,
.product-menu a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.product-menu a.is-featured {
  background: linear-gradient(90deg, rgba(213, 173, 45, 0.1), rgba(213, 173, 45, 0.018) 68%, transparent);
  border-left-color: rgba(213, 173, 45, 0.86);
  border-top-color: rgba(213, 173, 45, 0.16);
  border-right-color: rgba(213, 173, 45, 0.08);
  border-bottom-color: rgba(213, 173, 45, 0.16);
}

.product-menu em {
  color: #8d6f13;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-menu strong {
  font-size: 15px;
  text-transform: uppercase;
}

.product-menu span {
  color: #6e747d;
  font-size: 12px;
  font-weight: 600;
}

.product-menu small {
  align-self: end;
  justify-self: start;
  margin-top: 6px;
  padding: 4px 9px;
  color: #2f333b;
  background: #f2f3f5;
  border: 1px solid #e3e5e9;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-menu a.is-featured small {
  color: #171a20;
  background: rgba(213, 173, 45, 0.18);
  border-color: rgba(213, 173, 45, 0.28);
}

.mega-feature {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 408px;
  padding: 18px 22px 24px;
  color: #fff;
  background: linear-gradient(145deg, rgba(9, 10, 13, 0.82), rgba(9, 10, 13, 0.96)), #15171b;
  border-radius: 8px;
  overflow: hidden;
}

.mega-feature::before {
  content: "";
  position: absolute;
  inset: 54px 32px auto auto;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(213, 173, 45, 0.16), rgba(213, 173, 45, 0.05) 28%, transparent 66%);
  pointer-events: none;
}

.mega-feature img {
  position: relative;
  width: 100%;
  height: 270px;
  object-fit: contain;
  transform: scale(1.28);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.54));
}

.mega-feature p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.mega-feature p strong,
.mega-feature p span {
  display: block;
}

.mega-feature p strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-feature p span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 540;
}

.mega-link {
  display: inline-flex !important;
  justify-self: start;
  align-items: center;
  gap: 8px;
  color: #d5ad2d !important;
  min-height: 0 !important;
  padding: 10px 0 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(213, 173, 45, 0.34) !important;
  border-radius: 0 !important;
  font-weight: 900 !important;
}

.mega-link::after {
  display: none;
}

.mega-link span,
.header-cta span {
  color: #d5ad2d;
  font-size: 0;
}

.mega-link span::before,
.header-cta span::before {
  content: "\2192";
  font-size: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-link {
  color: #6c737e;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.header-link:hover {
  color: #252a33;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: #fff;
  background: #090a0d;
  border: 1px solid rgba(9, 10, 13, 0.88);
  border-radius: 8px;
  box-shadow: none;
  font-weight: 900;
  font-size: 12.5px;
  text-transform: uppercase;
}

.header-cta:hover {
  border-color: #d5ad2d;
  box-shadow: inset 0 2px 0 #d5ad2d, 0 10px 24px rgba(213, 173, 45, 0.14);
}

.menu-button,
.mobile-nav-actions {
  display: none;
}

.product-subnav {
  position: fixed;
  z-index: 90;
  top: 68px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  min-height: 44px;
  padding: 12px 5vw 10px;
  color: rgba(247, 248, 250, 0.68);
  background: rgba(2, 3, 4, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.product-subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.product-subnav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.product-subnav a:hover,
.product-subnav a[aria-current="location"] {
  color: #fff;
}

.product-subnav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.product-subnav a:focus-visible {
  color: #fff;
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.button,
.eyebrow,
.spec-grid dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-shell {
  overflow: visible;
}

.hero {
  position: relative;
  min-height: clamp(720px, 94svh, 980px);
  display: grid;
  align-items: center;
  justify-items: start;
  padding: calc(var(--nav-height) + 96px) clamp(24px, 9vw, 170px) clamp(58px, 7vw, 96px);
  text-align: left;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.48), rgba(2, 3, 4, 0.04) 48%, rgba(2, 3, 4, 0.12)),
    linear-gradient(180deg, rgba(2, 3, 4, 0.18) 0%, rgba(2, 3, 4, 0) 58%, #020304 100%);
}

.hero-copy {
  width: min(620px, 47vw);
  transform: translateY(3vh);
}

#features,
#colors,
#rba,
#pods,
#specs,
#wholesale {
  scroll-margin-top: calc(var(--nav-height) + 56px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero h1,
.hero h2,
.launch-intro h2,
.section-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-weight: 760;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(42px, 6.2vw, 94px);
  line-height: 0.96;
}

.hero h2 {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(247, 248, 250, 0.86);
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 560;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero p:not(.eyebrow),
.launch-intro > p,
.section-copy p:not(.eyebrow),
.final-cta p {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 20px 0 0;
  color: rgba(247, 248, 250, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}

.button--primary {
  background: #f7f8fa;
  color: #020304;
}

.button--primary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
}

.button:focus-visible,
.body-tab:focus-visible,
.finish-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.launch-intro,
.power-system,
.structure-section,
.color-system,
.rba-section,
.coil-section,
.lifestyle-strip,
.spec-section,
.wholesale-section,
.final-cta {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto var(--section-gap);
}

.launch-intro {
  width: min(calc(100% - 48px), 1080px);
  padding-top: clamp(52px, 6vw, 80px);
  text-align: center;
}

.launch-intro h2 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-copy h2,
.final-cta h2 {
  max-width: 980px;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
}

.launch-intro h2,
.launch-intro > p,
.section-copy--center h2,
.section-copy--center p,
.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.launch-intro > p {
  max-width: 720px;
  margin-top: 28px;
}

.spec-grid dt {
  margin-bottom: 11px;
  color: var(--dim);
}

.feature-list {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 5vw, 72px);
  margin: clamp(38px, 4vw, 48px) auto 0;
  padding: clamp(14px, 2vw, 22px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.feature-list span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  border: 1px solid rgba(215, 180, 106, 0.42);
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.055);
}

.feature-list h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 1.65vw, 26px);
  line-height: 1.15;
}

.feature-list p {
  margin: 8px 0 0;
  color: rgba(247, 248, 250, 0.76);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.35;
}

.power-system {
  width: min(calc(100% - 48px), var(--wide));
  min-height: clamp(700px, 58vw, 860px);
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  padding: clamp(58px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(83, 125, 174, 0.16), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0));
}

.power-system__intro h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.power-system__intro > p:not(.eyebrow) {
  max-width: 50ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.62;
  text-wrap: pretty;
}

.power-system__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(36px, 4vw, 54px) 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.power-system__metrics div {
  min-height: 132px;
  padding: 18px 14px;
}

.power-system__metrics div + div {
  border-left: 1px solid var(--line);
}

.power-system__metrics dt,
.power-system__metrics dd,
.power-system__metrics p {
  margin: 0;
}

.power-system__metrics dt,
.power-system__media figcaption {
  color: var(--gold);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.power-system__metrics dd {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(20px, 2.05vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.power-system__metrics p {
  margin-top: 9px;
  color: rgba(247, 248, 250, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.power-system__media {
  min-height: clamp(490px, 46vw, 660px);
  display: grid;
  grid-template-columns: 1fr;
}

.power-system__media figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #020304;
}

.power-system__media figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 3, 4, 0.88));
}

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

.power-system__screen {
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.14), transparent 35%), #020304;
}

.power-system__screen img {
  object-position: center;
  filter: saturate(0.86) contrast(1.1) brightness(0.9);
}

.power-system__media figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: rgba(247, 248, 250, 0.88);
  letter-spacing: 0.08em;
}

.rba-section {
  width: min(calc(100% - 48px), var(--wide));
  min-height: clamp(560px, 58vw, 680px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(440px, 0.5fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(48px, 5vw, 72px);
  overflow: hidden;
}

.section-copy {
  position: relative;
  z-index: 2;
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
}

.structure-section {
  width: min(calc(100% - 48px), var(--wide));
  text-align: center;
  margin-bottom: calc(var(--section-gap) * 0.78);
}

.structure-copy {
  max-width: 760px;
  margin: 0 auto;
}

.structure-copy h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  text-wrap: balance;
}

.structure-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.structure-stage {
  position: relative;
  min-height: 0;
  margin-top: clamp(16px, 2vw, 28px);
}

.structure-stage img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.04) brightness(0.9);
}

.structure-part-index {
  display: none;
}

.color-system {
  width: min(calc(100% - 48px), var(--wide));
  text-align: left;
  margin-top: calc(var(--section-gap) * -0.1);
}

.section-copy--center {
  margin: 0 auto clamp(50px, 7vw, 96px);
  text-align: center;
}

.section-copy--center p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 26px;
}

.color-intro {
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

.color-intro h2 {
  max-width: 780px;
  font-size: clamp(42px, 4.8vw, 68px);
  text-wrap: balance;
}

.color-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
  text-wrap: pretty;
}

.finish-workbench {
  width: min(100%, 1340px);
  min-width: 0;
  margin: 0 auto clamp(64px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(460px, 0.48fr);
  align-items: stretch;
  gap: clamp(32px, 4vw, 64px);
  padding: 0 0 clamp(20px, 3vw, 40px);
}

.finish-controls {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.5vw, 28px);
}

.selector-label {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.body-tab {
  min-height: 142px;
  display: grid;
  grid-template-rows: 84px auto auto;
  justify-items: center;
  gap: 8px;
  padding: 14px 12px 13px;
  color: rgba(247, 248, 250, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.body-tab:hover,
.body-tab.is-active {
  color: #fff;
  border-color: rgba(215, 180, 106, 0.78);
  background: rgba(215, 180, 106, 0.08);
}

.body-tab img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  transform: scale(1.18);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.body-tab span,
.finish-card span {
  font-size: 14px;
  font-weight: 720;
}

.body-tab small,
.finish-card small,
.finish-collection-title small,
.finish-preview-copy span,
.finish-preview-copy p {
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finish-options-label {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: rgba(247, 248, 250, 0.92);
  font-size: 15px;
  font-weight: 760;
}

#finishOptionsCount {
  color: var(--gold);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finish-groups {
  display: grid;
  gap: 28px;
}

.finish-collection {
  display: grid;
  gap: 14px;
}

.finish-collection-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px;
}

.finish-collection-title span {
  color: rgba(247, 248, 250, 0.9);
  font-size: 15px;
  font-weight: 760;
}

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

.finish-card {
  min-height: 214px;
  display: grid;
  grid-template-rows: 138px auto auto;
  justify-items: center;
  gap: 8px;
  padding: 18px 14px 16px;
  color: rgba(247, 248, 250, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.014);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.finish-card:hover,
.finish-card.is-active {
  border-color: rgba(215, 180, 106, 0.78);
  background: rgba(215, 180, 106, 0.07);
}

.finish-card img {
  width: 100%;
  height: 138px;
  object-fit: contain;
  transform: scale(1.05);
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.finish-card small {
  color: rgba(180, 186, 193, 0.62);
  text-align: center;
}

.finish-preview-panel {
  min-width: 0;
  position: sticky;
  top: calc(var(--nav-height) + 46px);
  min-height: clamp(480px, 40vw, 600px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(10px, 1.4vw, 16px);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 3vw, 34px) clamp(22px, 3vw, 36px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(73, 128, 176, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.finish-preview-panel::before {
  content: "";
  position: absolute;
  inset: auto 18% 17% 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0.72;
}

.finish-preview-panel > * {
  position: relative;
  z-index: 1;
}

.finish-preview-panel .eyebrow {
  justify-self: start;
}

.finish-preview-panel img {
  width: 100%;
  min-height: clamp(330px, 30vw, 460px);
  align-self: end;
  object-fit: contain;
  transform: scale(1.04);
  filter: drop-shadow(0 42px 38px rgba(0, 0, 0, 0.58));
}

.product-resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 28px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-resource-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  border-bottom: 1px solid rgba(215, 180, 106, 0.5);
}

.product-resource-links .product-resource-link--primary {
  color: #fff;
  border-bottom-color: var(--gold);
}

.product-resource-links a:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}

.mobile-purchase-bar {
  display: none;
}

.finish-preview-copy {
  display: grid;
  gap: 6px;
  text-align: left;
}

.finish-preview-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1;
  text-wrap: balance;
}

.finish-preview-meta {
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(247, 248, 250, 0.74) !important;
  font-size: 12px !important;
  font-weight: 720 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.4;
  text-transform: uppercase;
}

.finish-preview-meta span {
  color: inherit !important;
}

.rba-visual {
  width: 100%;
  min-height: clamp(430px, 40vw, 560px);
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  isolation: isolate;
  background:
    radial-gradient(circle at 44% 45%, rgba(255, 255, 255, 0.06), transparent 42%),
    #020304;
}

.rba-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.8) contrast(1.08) brightness(0.86);
}

.rba-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #020304 0%, rgba(2, 3, 4, 0) 16%, rgba(2, 3, 4, 0) 82%, #020304 100%),
    linear-gradient(180deg, #020304 0%, rgba(2, 3, 4, 0) 18%, rgba(2, 3, 4, 0) 76%, #020304 100%);
}

.rba-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rba-copy h2 {
  max-width: 640px;
  font-size: clamp(46px, 4.4vw, 68px);
  text-wrap: balance;
}

.technical-list {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 3vw, 36px);
}

.technical-list article {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.technical-list article:last-child {
  grid-column: auto;
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.technical-list h3,
.coil-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
}

.technical-list p,
.coil-card p,
.spec-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.coil-section {
  width: min(calc(100% - 48px), 1180px);
}

.pods-intro {
  margin-bottom: clamp(26px, 3vw, 42px);
}

.pods-intro h2 {
  max-width: 700px;
  font-size: clamp(42px, 5vw, 68px);
  text-wrap: balance;
}

.pods-intro p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
  text-wrap: pretty;
}

.coil-system {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 46px);
  align-items: start;
}

.coil-card {
  min-height: 420px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.coil-card__choice {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.coil-profile {
  margin: 0 !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.coil-card img {
  width: min(100%, 420px);
  height: clamp(230px, 19vw, 288px);
  margin: clamp(22px, 2.8vw, 32px) auto 0;
  object-fit: contain;
  transform: scale(1.04);
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.62));
}

.coil-card h3 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 0.95;
}

.coil-style {
  color: rgba(247, 248, 250, 0.82) !important;
  font-size: clamp(15px, 1.25vw, 17px) !important;
  line-height: 1.35 !important;
}

.coil-wattage {
  margin-top: 5px !important;
  color: var(--gold) !important;
  font-size: 13px !important;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.lifestyle-strip {
  width: min(calc(100% - 48px), var(--wide));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.lifestyle-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.lifestyle-strip figure::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 3, 4, 0.78));
}

.lifestyle-strip img {
  width: 100%;
  height: clamp(380px, 32vw, 500px);
  object-fit: cover;
}

/* Lower, independent sections do not need to render before they approach view. */
.rba-section,
.coil-section,
.lifestyle-strip,
.spec-section,
.wholesale-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.lifestyle-strip figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.spec-section {
  width: min(calc(100% - 48px), 1240px);
}

.specs-intro {
  margin-bottom: clamp(28px, 3.5vw, 46px);
  text-align: left;
}

.specs-intro h2 {
  max-width: 720px;
  font-size: clamp(44px, 4.8vw, 64px);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 42px);
  row-gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-grid div {
  min-height: 116px;
  padding: clamp(22px, 2.6vw, 30px) 0;
}

.spec-grid .spec-feature {
  min-height: 152px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-grid dd {
  color: #f7f8fa;
  font-weight: 640;
}

.spec-grid .spec-feature dd {
  margin-top: 14px;
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.spec-grid .spec-detail {
  display: grid;
  align-content: start;
}

.spec-grid dt {
  color: rgba(247, 248, 250, 0.62);
}

.spec-grid .spec-detail dd {
  color: rgba(247, 248, 250, 0.88);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.45;
}

.wholesale-section {
  width: min(calc(100% - 48px), 1240px);
  position: relative;
  padding: clamp(54px, 6.5vw, 86px);
  border-top: 1px solid rgba(215, 180, 106, 0.7);
  background:
    radial-gradient(circle at 82% 22%, rgba(215, 180, 106, 0.09), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.wholesale-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(56px, 8vw, 124px);
  align-items: start;
}

.wholesale-intro {
  margin: 0;
}

.wholesale-intro h2 {
  max-width: 570px;
  font-size: clamp(46px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.wholesale-intro h2 span {
  display: block;
  white-space: nowrap;
}

.wholesale-intro p:not(.eyebrow) {
  max-width: 500px;
  margin: 20px 0 0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  text-wrap: pretty;
}

.wholesale-conversion {
  display: grid;
  gap: 26px;
}

.wholesale-proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wholesale-proof-list li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wholesale-proof-list strong {
  color: #fff;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.25;
}

.wholesale-proof-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.wholesale-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.wholesale-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.wholesale-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  color: rgba(247, 248, 250, 0.72);
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(215, 180, 106, 0.55);
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.wholesale-links a:hover,
.wholesale-links a:focus-visible {
  color: var(--gold);
  text-decoration-color: rgba(215, 180, 106, 0.95);
}

.wholesale-actions .button--secondary:hover,
.wholesale-actions .button--secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(215, 180, 106, 0.1);
}

.final-cta {
  width: min(calc(100% - 48px), 1180px);
  margin-bottom: clamp(70px, 8vw, 120px);
  padding: clamp(82px, 10vw, 148px) clamp(28px, 6vw, 86px);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.final-cta p:not(.eyebrow) {
  margin-top: 22px;
}

.contact-direct {
  margin: 12px auto 0 !important;
  color: rgba(247, 248, 250, 0.62) !important;
  font-size: clamp(14px, 1.2vw, 17px) !important;
}

.contact-direct a {
  color: #fff;
  text-decoration-color: rgba(215, 180, 106, 0.7);
  text-underline-offset: 4px;
}

.partner-points {
  width: min(100%, 680px);
  margin: clamp(34px, 4vw, 54px) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.partner-points span {
  padding: 11px 16px;
  color: rgba(247, 248, 250, 0.76);
  font-size: 13px;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.partner-points span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.inquiry-form {
  width: min(100%, 820px);
  margin: clamp(38px, 5vw, 68px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.inquiry-form label {
  display: grid;
  gap: 9px;
}

.inquiry-form span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(2, 3, 4, 0.38);
  color: #fff;
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.form-message,
.form-actions {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 0 5vw;
  }

  .menu-button {
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    color: #090a0d;
    border: 1px solid #e4e6ea;
    border-radius: 8px;
    background: #fff;
    font: inherit;
    font-size: 12.5px;
    font-weight: 760;
    text-transform: uppercase;
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px 5vw 26px;
    background: #fff;
    border-bottom: 1px solid #e4e6ea;
    box-shadow: 0 18px 34px rgba(12, 17, 27, 0.08);
  }

  .primary-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .product-menu {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .product-menu a {
    min-height: 0;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .mega-list {
    grid-template-columns: 1fr;
  }

  .mega-feature {
    display: none;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 6px;
  }

  .primary-nav .mobile-nav-link,
  .primary-nav .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .primary-nav .mobile-nav-link {
    color: #20242c;
    border: 1px solid #d9dde4;
    background: #fff;
  }

  .primary-nav .mobile-nav-cta {
    gap: 8px;
    color: #fff;
    background: #090a0d;
    box-shadow: inset 0 2px 0 #d5ad2d;
  }

  .primary-nav .mobile-nav-cta span::before {
    content: "\2192";
    color: #d5ad2d;
    font-size: 15px;
  }

  .header-actions {
    display: none;
  }

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

  .wholesale-offer {
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
    gap: clamp(38px, 5vw, 64px);
  }

  .wholesale-intro h2 {
    font-size: clamp(48px, 5vw, 60px);
  }

  .power-system {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: clamp(32px, 4vw, 52px);
  }

  .finish-workbench {
    grid-template-columns: 1fr;
  }

  .finish-preview-panel {
    position: relative;
    top: auto;
    order: -1;
    min-height: 540px;
  }
}

@media (max-width: 960px) {
  .wholesale-offer {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .power-system {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .power-system__intro h2 {
    max-width: 13ch;
  }

  .power-system__media {
    min-height: clamp(450px, 56vw, 600px);
  }
}

@media (max-width: 780px) {
  :root {
    --section-gap: 82px;
  }

  .site-header {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    width: 88px;
    min-width: 88px;
  }

  .primary-nav {
    top: 64px;
  }

  .header-actions {
    display: none;
  }

  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }

  .product-subnav {
    top: 64px;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding: 0 5vw;
    scrollbar-width: none;
  }

  .product-subnav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    white-space: nowrap;
  }

  .hero {
    min-height: 720px;
    padding: 126px 18px 54px;
    align-items: end;
    text-align: center;
  }

  .hero-media img {
    object-position: 70% center;
    transform: scale(1.22);
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.28), rgba(2, 3, 4, 0.1) 42%, #020304 100%),
      linear-gradient(90deg, rgba(2, 3, 4, 0.62), rgba(2, 3, 4, 0.1));
  }

  .hero-copy {
    width: min(100%, 560px);
    transform: none;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .hero h2 {
    font-size: clamp(25px, 7.2vw, 38px);
  }

  .hero-actions {
    justify-content: center;
  }

  .launch-intro,
  .power-system,
  .structure-section,
  .color-system,
  .rba-section,
  .coil-section,
  .lifestyle-strip,
  .spec-section,
  .wholesale-section,
  .final-cta {
    width: min(calc(100% - 28px), var(--max));
  }

  .launch-intro h2,
  .section-copy h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .launch-intro h2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .color-intro {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .color-intro h2 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .color-intro p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .pods-intro {
    margin-bottom: 28px;
  }

  .pods-intro h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .specs-intro {
    margin-bottom: 30px;
  }

  .specs-intro h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .wholesale-section {
    padding: 44px 28px;
  }

  .wholesale-intro h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .coil-system,
  .spec-grid,
  .lifestyle-strip {
    grid-template-columns: 1fr;
  }

  .wholesale-offer {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .wholesale-intro h2 span {
    white-space: normal;
  }

  .wholesale-proof-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 0;
  }

  .wholesale-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wholesale-actions .button {
    width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding: 8px 0;
  }

  .feature-list article {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    min-height: auto;
    padding: 20px 0;
  }

  .feature-list article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-list article:last-child {
    border-bottom: 0;
  }

  .feature-list span {
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .power-system,
  .rba-section,
  .final-cta {
    min-height: auto;
    padding: 38px 22px;
  }

  .power-system__intro h2 {
    max-width: 12ch;
  }

  .power-system__metrics div {
    min-height: 118px;
    padding: 16px 12px;
  }

  .power-system__media {
    min-height: clamp(400px, 70vw, 540px);
  }

  .body-tabs,
  .finish-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finish-workbench {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .finish-controls {
    display: contents;
  }

  .selector-label {
    order: 1;
  }

  .body-tabs {
    order: 2;
  }

  .finish-options-label {
    order: 3;
  }

  .finish-groups {
    order: 4;
    width: 100%;
  }

  .finish-preview-panel {
    order: 5;
  }

  .body-tab {
    min-height: 136px;
  }

  .finish-card {
    min-height: 178px;
  }

  .finish-preview-panel {
    min-height: 380px;
  }

  .finish-preview-panel img {
    min-height: 260px;
    max-height: 300px;
    transform: scale(1.05);
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-purchase-bar {
    position: fixed;
    z-index: 95;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 8px 8px 8px 16px;
    color: #10131a;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity 180ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-purchase-bar span {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.04em;
  }

  .mobile-purchase-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: #fff;
    background: #090a0d;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 850;
  }

  .purchase-bar-visible .mobile-purchase-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .rba-visual {
    min-height: 380px;
  }

  .rba-copy {
    display: block;
  }

  .technical-list {
    grid-template-columns: 1fr;
  }

  .technical-list article:last-child {
    grid-column: auto;
  }

  .coil-card {
    min-height: auto;
  }

  .coil-card img {
    height: 230px;
    margin-top: 24px;
    transform: scale(1);
  }

  .lifestyle-strip img {
    height: 300px;
  }

  .wholesale-links {
    display: grid;
    gap: 12px;
  }

  .partner-points {
    display: grid;
  }

  .partner-points span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .structure-part-index {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .structure-part-index li {
    padding: 12px 0;
    color: rgba(247, 248, 250, 0.78);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
  }

  .structure-part-index li:nth-child(odd) {
    padding-right: 16px;
  }

  .structure-part-index li:nth-child(even) {
    padding-left: 16px;
  }
}

@media (max-width: 620px) {
  .power-system {
    padding: 36px 20px;
  }

  .power-system__intro h2 {
    max-width: 11ch;
    font-size: clamp(40px, 12vw, 54px);
  }

  .power-system__metrics {
    grid-template-columns: 1fr;
  }

  .power-system__metrics div {
    min-height: 0;
    padding: 15px 0;
  }

  .power-system__metrics div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .power-system__media {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .power-system__screen {
    min-height: 380px;
  }

  .technical-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
}

@media (max-width: 460px) {
  .power-system__screen {
    min-height: 340px;
  }

  .power-system__media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 10px;
  }

  .rba-visual {
    min-height: 320px;
  }

  .structure-part-index {
    grid-template-columns: 1fr;
  }

  .structure-part-index li:nth-child(n) {
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media img {
    transform: scale(1.12);
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .body-tabs {
    gap: 10px;
  }

  .finish-card-grid {
    grid-template-columns: 1fr;
  }

  .finish-card {
    min-height: 192px;
  }

  .finish-preview-panel {
    min-height: 340px;
    padding: 24px;
  }

  .finish-preview-panel img {
    min-height: 220px;
    max-height: 250px;
  }

  .structure-stage {
    margin-left: -14px;
    margin-right: -14px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .nav-cta {
    max-width: 148px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .mobile-purchase-bar {
    transition: none;
  }
}
