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

.site-nav {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), 1120px);
  min-height: var(--nav-height);
  padding: 8px 10px 8px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(2, 3, 4, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  justify-self: start;
}

.brand-mark span {
  font-size: 17px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

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

.brand-mark small {
  color: var(--dim);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(247, 248, 250, 0.66);
  letter-spacing: 0;
  text-transform: none;
}

.nav-links a,
.nav-cta,
.button {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.16);
}

.page-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(760px, 100vh, 1080px);
  display: grid;
  align-items: center;
  justify-items: start;
  padding: calc(var(--nav-height) + 78px) clamp(24px, 9vw, 170px) clamp(70px, 8vw, 120px);
  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;
  filter: saturate(0.92) contrast(1.05) brightness(0.88);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.3), rgba(2, 3, 4, 0) 44%, 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(6vh);
}

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

.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 {
  margin-top: 24px;
  color: rgba(247, 248, 250, 0.92);
  font-size: clamp(28px, 3.7vw, 58px);
  line-height: 1.04;
  font-weight: 520;
}

.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) {
  margin: 24px auto 0;
  color: rgba(247, 248, 250, 0.78);
}

.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);
}

.launch-intro,
.story-panel,
.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(70px, 8vw, 120px);
  text-align: center;
}

.launch-intro h2,
.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(54px, 6vw, 82px) auto 0;
  padding: clamp(18px, 3vw, 30px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 24px 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: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  color: rgba(247, 248, 250, 0.72);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}

.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: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.35;
}

.story-panel {
  width: min(calc(100% - 48px), var(--wide));
  min-height: clamp(760px, 76vw, 980px);
  display: grid;
  grid-template-columns: 0.43fr 0.57fr;
  align-items: center;
  gap: clamp(46px, 7vw, 120px);
  padding: clamp(58px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 50%, rgba(255, 255, 255, 0.07), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
}

.story-panel--power {
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.52fr);
  background:
    radial-gradient(circle at 73% 45%, rgba(118, 151, 177, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0));
}

.story-panel--battery {
  position: relative;
  min-height: clamp(680px, 62vw, 920px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(58px, 8vw, 118px);
  background:
    radial-gradient(circle at 62% 42%, rgba(69, 106, 150, 0.18), transparent 34rem),
    #020304;
}

.story-panel--battery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.97) 0%, rgba(2, 3, 4, 0.8) 34%, rgba(2, 3, 4, 0.2) 66%, rgba(2, 3, 4, 0.04) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.08), rgba(2, 3, 4, 0.46));
  pointer-events: none;
}

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

.story-copy--battery {
  width: min(560px, 42vw);
}

.story-copy h2 {
  margin: 0;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(44px, 6.2vw, 96px);
  line-height: 0.98;
}

.story-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
}

.power-range {
  position: relative;
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(36px, 4vw, 58px);
  padding-top: 18px;
}

.power-range::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 180, 106, 0.85), rgba(255, 255, 255, 0.28), rgba(215, 180, 106, 0.85));
}

.power-range span {
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 780;
  line-height: 1;
}

.power-range span:nth-child(2) {
  text-align: center;
}

.power-range span:nth-child(3) {
  text-align: right;
}

.power-points {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.power-points span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: rgba(247, 248, 250, 0.72);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.battery-specs {
  width: min(100%, 520px);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(32px, 4vw, 52px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.battery-specs span {
  padding: 17px 22px;
  color: rgba(247, 248, 250, 0.82);
  font-size: 13px;
  font-weight: 740;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.battery-specs span:first-child {
  padding-left: 0;
  color: #fff;
}

.battery-specs span + span {
  border-left: 1px solid var(--line);
}

.story-panel figure {
  margin: 0;
  min-height: clamp(520px, 55vw, 780px);
  overflow: hidden;
}

.story-panel--power figure {
  position: relative;
  min-height: clamp(620px, 56vw, 820px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12), transparent 34%),
    #020304;
}

.story-panel--power figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #020304 0%, rgba(2, 3, 4, 0) 18%, rgba(2, 3, 4, 0) 82%, #020304 100%),
    linear-gradient(180deg, #020304 0%, rgba(2, 3, 4, 0) 18%, rgba(2, 3, 4, 0) 80%, #020304 100%);
  pointer-events: none;
}

.story-panel--battery figure {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.story-panel figure img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.82);
}

.story-panel--power figure img {
  object-fit: contain;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.86) contrast(1.12) brightness(0.88);
}

.story-panel--battery figure img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(0.94);
  filter: saturate(0.9) contrast(1.06) brightness(0.9);
}

.rba-section {
  width: min(calc(100% - 48px), var(--wide));
  min-height: clamp(760px, 76vw, 980px);
  position: relative;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(70px, 8vw, 120px);
  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: 860px;
  margin: 0 auto;
}

.structure-copy h2 {
  font-size: clamp(42px, 5.4vw, 78px);
}

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

.structure-stage {
  position: relative;
  min-height: 0;
  margin-top: clamp(20px, 3vw, 42px);
}

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

.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(28px, 4vw, 54px);
}

.color-intro h2 {
  max-width: 920px;
  font-size: clamp(42px, 5.6vw, 82px);
}

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

.finish-workbench {
  width: min(100%, 1340px);
  margin: 0 auto clamp(70px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(460px, 0.48fr);
  align-items: stretch;
  gap: clamp(38px, 5vw, 84px);
  padding: clamp(16px, 3vw, 34px) 0 clamp(20px, 4vw, 54px);
}

.finish-controls {
  display: grid;
  align-content: start;
  gap: clamp(22px, 3vw, 38px);
}

.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(247, 248, 250, 0.28);
  background: rgba(255, 255, 255, 0.042);
}

.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-groups {
  display: grid;
  gap: 34px;
}

.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(247, 248, 250, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.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 {
  position: sticky;
  top: calc(var(--nav-height) + 46px);
  min-height: clamp(620px, 52vw, 780px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: clamp(26px, 4vw, 50px) clamp(16px, 3vw, 34px) clamp(34px, 4vw, 58px);
  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(390px, 37vw, 590px);
  object-fit: contain;
  transform: scale(1.08);
  filter: drop-shadow(0 42px 38px rgba(0, 0, 0, 0.58));
}

.finish-preview-copy {
  display: grid;
  gap: 10px;
  text-align: center;
}

.finish-preview-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.98;
}

.finish-preview-copy p {
  margin: 2px 0 0;
  color: rgba(247, 248, 250, 0.78);
}

.rba-section {
  grid-template-columns: minmax(0, 0.5fr) minmax(440px, 0.5fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
  min-height: clamp(720px, 70vw, 900px);
}

.rba-visual {
  width: 100%;
  min-height: clamp(560px, 48vw, 740px);
  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: 680px;
}

.technical-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 4vw, 54px);
}

.technical-list article {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016));
}

.technical-list article:last-child {
  grid-column: 1 / -1;
  min-height: 118px;
}

.technical-list h3,
.coil-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 25px);
  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(30px, 4vw, 54px);
}

.pods-intro h2 {
  max-width: 880px;
  font-size: clamp(42px, 5.6vw, 82px);
}

.pods-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
}

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

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

.coil-card img {
  width: min(100%, 420px);
  height: clamp(250px, 22vw, 320px);
  margin: 0 auto clamp(24px, 3vw, 38px);
  object-fit: contain;
  transform: scale(1.08);
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.62));
}

.coil-card h3 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
}

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

.coil-wattage {
  margin-top: 12px !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(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.lifestyle-strip img {
  width: 100%;
  height: clamp(420px, 40vw, 620px);
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.74) contrast(1.08) brightness(0.78);
}

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

.specs-intro {
  margin-bottom: clamp(30px, 4vw, 56px);
}

.specs-intro h2 {
  max-width: 820px;
  font-size: clamp(42px, 5.5vw, 80px);
}

.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.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.spec-grid div {
  min-height: 112px;
  padding: clamp(22px, 3vw, 34px) 0;
}

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

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

.spec-grid .spec-feature dd {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

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

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

.wholesale-intro {
  margin-bottom: clamp(34px, 4.5vw, 62px);
}

.wholesale-intro h2 {
  max-width: 960px;
  font-size: clamp(42px, 5.8vw, 84px);
}

.wholesale-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.55;
}

.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.wholesale-grid article {
  min-height: 248px;
  padding: clamp(30px, 4vw, 54px) 0 0;
}

.wholesale-grid span {
  display: block;
  margin-bottom: clamp(34px, 4vw, 52px);
  color: var(--dim);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.wholesale-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
}

.wholesale-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.document-strip {
  width: min(100%, 780px);
  margin: clamp(34px, 5vw, 60px) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.document-strip 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;
}

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

.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-nav {
    grid-template-columns: auto 1fr auto;
  }

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

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

  .story-panel,
  .rba-section {
    grid-template-columns: 1fr;
  }

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

  .story-panel--power figure {
    order: -1;
    min-height: clamp(460px, 70vw, 620px);
  }

  .story-panel--battery {
    min-height: auto;
    padding: 0;
    gap: 0;
  }

  .story-panel--battery::after {
    display: none;
  }

  .story-panel--battery figure {
    position: relative;
    min-height: auto;
    width: 100%;
  }

  .story-panel--battery figure img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .story-copy--battery {
    width: auto;
    padding: clamp(34px, 6vw, 68px);
  }

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

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

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

  .site-nav {
    top: 10px;
    grid-template-columns: 1fr auto;
    border-radius: 22px;
    padding: 10px 10px 10px 15px;
  }

  .brand-mark small {
    display: none;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
    gap: 18px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
    padding: 142px 18px 64px;
    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,
  .story-panel,
  .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);
  }

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

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

  .color-intro p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .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-intro {
    margin-bottom: 30px;
  }

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

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

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

  .feature-list article {
    grid-template-columns: 48px 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;
  }

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

  .story-panel figure {
    min-height: 380px;
  }

  .story-panel--power figure {
    min-height: 430px;
  }

  .story-panel--power figure img {
    transform: scale(0.98);
  }

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

  .power-points span {
    min-height: 54px;
    padding: 14px 0;
  }

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

  .battery-specs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .battery-specs span {
    padding: 15px 0;
  }

  .battery-specs span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .story-panel--battery figure {
    min-height: auto;
  }

  .story-panel--battery figure img {
    min-height: 0;
  }

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

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

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

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

  .finish-preview-panel img {
    transform: scale(1.05);
  }

  .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: 250px;
    transform: scale(1);
  }

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

  .wholesale-grid article {
    min-height: auto;
  }

  .wholesale-grid span {
    margin-bottom: 36px;
  }

  .document-strip {
    display: grid;
  }

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

  .partner-points {
    display: grid;
  }

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

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

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

  .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: 430px;
    padding: 24px;
  }

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

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