:root {
  --charcoal: #121416;
  --charcoal-2: #1b1e21;
  --graphite: #2b2f33;
  --ash: #eef0f1;
  --mist: #cfd5d8;
  --muted: #879098;
  --orange: #ff7a1a;
  --orange-2: #ff9d45;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ash);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

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

body.is-editing [data-edit-key] {
  outline: 1px dashed rgba(255, 157, 69, .74);
  outline-offset: 4px;
  border-radius: 4px;
  cursor: text;
}

body.is-editing [data-edit-image] {
  outline: 2px solid rgba(255, 157, 69, .78);
  outline-offset: 4px;
  cursor: pointer;
}

body.is-editing .screen-hotspot {
  cursor: grab;
}

body.is-editing .screen-hotspot:active {
  cursor: grabbing;
}

body.is-deleting-hotspots .screen-hotspot {
  background: rgba(220, 40, 40, .95);
  box-shadow:
    0 0 0 5px rgba(220, 40, 40, .2),
    0 0 20px rgba(220, 40, 40, .5);
  cursor: not-allowed;
}

body.is-editing [data-edit-key]:focus {
  outline-style: solid;
  background: rgba(0, 0, 0, .22);
}

.editor-toolbar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: min(420px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(12, 13, 14, .88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
}

.editor-toolbar.saved {
  border-color: rgba(255, 157, 69, .8);
}

.editor-toolbar button {
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: var(--ash);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
}

.editor-toolbar button:first-child {
  background: var(--orange);
  border-color: var(--orange);
  color: #15100d;
}

.editor-toolbar button.is-active {
  border-color: rgba(255, 122, 26, .9);
  background: rgba(255, 122, 26, .22);
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 3vw, 44px);
  background: rgba(18, 20, 22, .42);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background .28s ease, border-color .28s ease, padding .28s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(18, 20, 22, .88);
  border-bottom-color: rgba(255, 255, 255, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: clamp(136px, 17vw, 210px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .45));
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.nav a {
  padding: 8px 12px;
  color: #d9dddf;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 122, 26, .18);
}

.header-cta {
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #16110c;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(255, 122, 26, .28);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 106px clamp(18px, 5vw, 76px) 96px;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity .75s ease, transform .75s ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-slide.is-fading {
  opacity: 0;
  transform: scale(1.018);
}

.hero-media img,
.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 20, 22, .96) 0%, rgba(18, 20, 22, .72) 42%, rgba(18, 20, 22, .16) 100%),
    linear-gradient(0deg, rgba(18, 20, 22, .95) 0%, rgba(18, 20, 22, .18) 48%, rgba(18, 20, 22, .58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  justify-self: center;
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(64px, 12vw, 148px);
  line-height: .82;
  letter-spacing: 0;
}

.hero-logo-title {
  width: min(78vw, 920px);
  margin: 0 auto 18px;
  line-height: 1;
}

.hero-logo-title img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .62));
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #d5dade;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button.primary {
  background: var(--orange);
  color: #15100d;
  border-color: var(--orange);
  box-shadow: 0 18px 44px rgba(255, 122, 26, .3);
}

.button.ghost {
  background: rgba(255, 255, 255, .08);
}

.button.subtle {
  background: rgba(255, 255, 255, .06);
}

.button.full {
  width: 100%;
}

.hero-stats span {
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: #c9ced1;
}

.hero-stats strong {
  display: block;
  color: #fff;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 34px;
}

.products {
  padding-block: clamp(46px, 7vw, 82px);
  background:
    linear-gradient(180deg, rgba(255, 122, 26, .07), transparent 38%),
    #111315;
}

.product-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  box-shadow: var(--shadow);
}

.showcase-copy p,
.display-copy p,
.faq-list p,
.shop-panel p,
.footer p {
  color: var(--mist);
  line-height: 1.65;
}

.size-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.size-model {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  padding: clamp(12px, 2vw, 16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
}

.size-model-mini {
  align-self: center;
  justify-self: center;
  grid-template-rows: auto 1fr;
  width: 60%;
}

.board-measure {
  position: relative;
  justify-self: center;
  width: 100%;
  padding: 28px 34px 4px 4px;
}

.board-measure-mini {
  align-self: center;
  justify-self: center;
  width: 100%;
}

.board-visual {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 3 / 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #050607;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .5),
    0 18px 44px rgba(0, 0, 0, .28);
}

.board-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.measure-label {
  position: absolute;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.measure-width {
  left: 4px;
  right: 34px;
  top: 0;
  display: grid;
  place-items: center;
  height: 22px;
  border-bottom: 1px solid rgba(255, 122, 26, .54);
}

.measure-width::before,
.measure-width::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 1px;
  height: 8px;
  background: rgba(255, 122, 26, .72);
}

.measure-width::before {
  left: 0;
}

.measure-width::after {
  right: 0;
}

.measure-height {
  top: 28px;
  right: 0;
  bottom: 4px;
  display: grid;
  place-items: center;
  width: 24px;
  border-left: 1px solid rgba(255, 122, 26, .54);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.measure-height::before,
.measure-height::after {
  content: "";
  position: absolute;
  left: -4px;
  width: 8px;
  height: 1px;
  background: rgba(255, 122, 26, .72);
}

.measure-height::before {
  top: 0;
}

.measure-height::after {
  bottom: 0;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  padding-block: clamp(46px, 7vw, 82px);
  background:
    linear-gradient(180deg, rgba(255, 122, 26, .07), transparent 44%),
    var(--charcoal);
}

.showcase-copy {
  max-width: 1120px;
  margin-inline: auto;
}

.showcase h2 {
  max-width: 820px;
  font-size: clamp(30px, 4vw, 52px);
}

.showcase-copy > p:not(.eyebrow) {
  max-width: 760px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: clamp(18px, 3vw, 28px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: feature;
}

.feature-list li {
  position: relative;
  min-height: 0;
  padding: 13px 14px 13px 48px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, .11), rgba(255, 255, 255, .035) 46%),
    rgba(255, 255, 255, .04);
  color: #f4f5f6;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.36;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  transition: border-color .24s ease, background .24s ease, transform .24s ease;
}

.feature-list li:hover {
  border-color: rgba(255, 122, 26, .45);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, .17), rgba(255, 255, 255, .05) 52%),
    rgba(255, 255, 255, .055);
  transform: translateY(-3px);
}

.feature-list li::before {
  counter-increment: feature;
  content: counter(feature, decimal-leading-zero);
  position: absolute;
  left: 13px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 122, 26, .46);
  border-radius: 50%;
  background: rgba(255, 122, 26, .12);
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(255, 122, 26, .16);
}

.feature-toggle {
  display: none;
}

.use-image-fbo {
  object-position: center top;
  transform: translateY(8%) scale(1.08);
}

.use-controls {
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  bottom: 20px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-use-controls {
  z-index: 5;
}

.use-controls button {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--mist);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.use-controls button:hover,
.use-controls button.is-active {
  border-color: rgba(255, 122, 26, .74);
  background: rgba(255, 122, 26, .2);
  color: #fff;
}

.display-band {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, .18), transparent 38%),
    #111315;
}

.display-inner {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: center;
}

.screen-strip {
  display: grid;
  overflow: visible;
}

.screen-strip figure {
  grid-area: 1 / 1;
  position: relative;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #050607;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
  opacity: 0;
  transform: scale(.992);
  pointer-events: none;
  transition: opacity .52s ease, transform .52s ease;
}

.screen-strip figure.is-active {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.screen-strip figure.is-fading {
  opacity: 0;
  transform: scale(.992);
}

.screen-media-frame {
  position: relative;
  overflow: visible;
  background: #050607;
}

.screen-strip img,
.screen-strip video {
  display: block;
  width: 100%;
  min-height: 160px;
  object-fit: contain;
  padding: 12px;
  background: #050607;
}

.screen-hotspot {
  position: absolute;
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: rgba(255, 122, 26, .25);
  box-shadow:
    0 0 0 10px rgba(255, 122, 26, .11),
    0 0 34px rgba(255, 122, 26, .52),
    inset 0 0 18px rgba(255, 255, 255, .12);
  transform: translate(-50%, -50%);
  transition: transform .26s ease, background .26s ease, border-color .26s ease, box-shadow .26s ease;
  animation: hotspot-pulse 2.6s ease-in-out infinite;
  cursor: pointer;
}

.screen-hotspot:hover,
.screen-hotspot:focus {
  z-index: 80;
  border-color: rgba(255, 255, 255, .95);
  background: rgba(255, 122, 26, .34);
  box-shadow:
    0 0 0 15px rgba(255, 122, 26, .14),
    0 0 46px rgba(255, 122, 26, .76),
    inset 0 0 22px rgba(255, 255, 255, .15);
  transform: translate(-50%, -50%) scale(1.12);
  animation-play-state: paused;
}

.screen-hotspot::after {
  content: none;
}

.screen-callout {
  position: absolute;
  left: var(--callout-left, 50%);
  top: var(--callout-top, 50%);
  z-index: 90;
  width: min(430px, calc(100% - 72px));
  min-height: 96px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 122, 26, .38);
  border-radius: var(--radius);
  background: rgba(10, 12, 14, .96);
  color: var(--orange-2);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 850;
  line-height: 1.4;
  text-transform: none;
  text-align: center;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, .52),
    0 0 34px rgba(255, 122, 26, .18);
  opacity: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  transform: translate(-50%, -42%) scale(.82);
  transform-origin: center;
  transition: opacity .28s ease, transform .38s cubic-bezier(.16, 1, .3, 1);
}

.screen-hotspot:hover::before,
.screen-hotspot:focus::before {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}

.screen-strip figure.is-hotspot-open .screen-callout {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: hotspot-callout-pop .42s cubic-bezier(.16, 1, .3, 1);
}

.screen-hotspot:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@keyframes hotspot-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(255, 122, 26, .09),
      0 0 26px rgba(255, 122, 26, .42),
      inset 0 0 18px rgba(255, 255, 255, .12);
  }

  50% {
    box-shadow:
      0 0 0 18px rgba(255, 122, 26, .02),
      0 0 48px rgba(255, 122, 26, .72),
      inset 0 0 22px rgba(255, 255, 255, .15);
  }
}

@keyframes hotspot-callout-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -42%) scale(.72);
  }

  68% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.screen-strip figcaption {
  padding: 10px 12px 12px;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.display-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.display-controls button {
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--mist);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.display-controls button:hover,
.display-controls button.is-active {
  border-color: rgba(255, 122, 26, .74);
  background: rgba(255, 122, 26, .17);
  color: #fff;
}

.portal {
  display: grid;
  grid-template-columns: minmax(280px, .66fr) minmax(0, 1.34fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #1c1f22;
}

.portal-copy p {
  color: var(--mist);
  line-height: 1.65;
}

.portal-shots {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: center;
}

.portal-shots figure {
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 42%),
    #0c0e10;
  box-shadow: var(--shadow);
  padding: 12px;
}

.portal-shots img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  background: #050607;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.portal-shots img {
  cursor: zoom-in;
}

.portal-phone-shot {
  align-self: center;
}

.portal-phone-shot img {
  max-height: 620px;
}

.portal-tablet-shot img {
  max-height: none;
}

.portal-shots figcaption {
  padding: 14px 4px 2px;
  color: var(--mist);
  font-weight: 760;
  line-height: 1.45;
}

.faq {
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(34px, 5vw, 62px);
  background:
    linear-gradient(180deg, rgba(255, 122, 26, .06), transparent 30%),
    #141719;
}

.faq .section-heading {
  max-width: 940px;
  margin-inline: auto;
  margin-bottom: 22px;
  text-align: left;
}

.faq .section-heading h2 {
  margin-bottom: 0;
}

.faq-panel {
  max-width: 940px;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.review-carousel {
  max-width: 940px;
  margin: 0 auto 16px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, .13), transparent 52%),
    rgba(255, 255, 255, .04);
}

.review-track {
  display: flex;
  gap: 10px;
  transition: transform .72s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 20px) / 3);
  min-height: 188px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(5, 6, 7, .36);
  transition: border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.review-card.is-active {
  border-color: rgba(255, 122, 26, .38);
  background: rgba(5, 6, 7, .48);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.review-quote {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 850;
  line-height: 1.28;
}

.review-author {
  margin: 0;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.review-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.review-controls button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 122, 26, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.review-controls button:first-child {
  justify-self: start;
}

.review-controls button:last-child {
  justify-self: end;
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 58px;
}

.review-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
}

.review-dots span.is-active {
  background: var(--orange-2);
}

.faq-list {
  counter-reset: faq;
  display: grid;
  gap: 6px;
}

.faq-list details {
  counter-increment: faq;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  background: rgba(255, 255, 255, .065);
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease;
}

.faq-extra {
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .52s ease, opacity .32s ease;
}

.faq-list:not(.is-collapsed) .faq-extra {
  max-height: 900px;
  opacity: 1;
}

.faq-list details[open] {
  border-color: rgba(255, 122, 26, .34);
  background: rgba(255, 255, 255, .065);
}

.faq-list summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .95);
  font-weight: 900;
  line-height: 1.18;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::before {
  content: counter(faq, decimal-leading-zero);
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 122, 26, .32);
  border-radius: 50%;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1;
  transition: transform .28s ease, background .2s ease;
}

.faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .42s ease, opacity .28s ease;
}

.faq-list details[open] .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  max-width: 760px;
  padding: 0 48px 14px 52px;
}

.faq-toggle {
  display: block;
  width: fit-content;
  min-height: 38px;
  margin: 12px auto 0;
  padding: 9px 14px;
  border: 1px solid rgba(255, 122, 26, .45);
  border-radius: 999px;
  background: rgba(255, 122, 26, .12);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.faq-toggle:hover {
  border-color: rgba(255, 122, 26, .72);
  background: rgba(255, 122, 26, .2);
}

.shop {
  background: #181b1e;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 58px 18px 22px;
  background: rgba(5, 6, 7, .9);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  width: auto;
  max-width: min(1080px, 96vw);
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #050607;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .62);
  object-fit: contain;
}

.image-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.shop-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, .15), transparent 45%),
    rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
}

.shop-panel > div:first-child {
  max-width: 760px;
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #111315;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: contain;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 122, 26, .16), transparent 42%),
    #0b0c0d;
}

.product-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.product-copy h3,
.product-copy p {
  margin: 0;
}

.product-name {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
}

.product-subtitle {
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-price {
  color: #fff;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 900;
}

.product-copy .button {
  margin-top: 4px;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .62;
}

.shopify-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 22px;
  color: var(--mist);
  font-family: var(--mono);
  font-size: 13px;
}

.shopify-status.is-error {
  color: #ffb36f;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  background: #0b0c0d;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer p {
  margin: 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    display: none;
  }

  .showcase,
  .display-inner,
  .portal,
  .shop-panel,
  .size-stage,
  .size-model,
  .size-model-mini {
    grid-template-columns: 1fr;
  }

  .size-model-mini {
    width: 66%;
  }

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

}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    gap: 10px;
    padding: 10px 12px;
    background: rgba(18, 20, 22, .86);
    border-bottom-color: rgba(255, 255, 255, .1);
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    min-height: 36px;
    padding: 9px 10px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: none;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 84px 16px 94px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(18, 20, 22, .98) 0%, rgba(18, 20, 22, .82) 42%, rgba(18, 20, 22, .38) 100%);
  }

  .hero-logo-title {
    width: min(86vw, 430px);
    margin-bottom: 12px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
    letter-spacing: .09em;
  }

  h2,
  .showcase h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.02;
  }

  h3 {
    font-size: 19px;
  }

  .hero-copy,
  .showcase-copy p,
  .display-copy p,
  .portal-copy p,
  .faq-list p,
  .shop-panel p,
  .footer p {
    font-size: 15px;
    line-height: 1.48;
  }

  .section,
  .display-band {
    padding: 48px 16px;
  }

  .products,
  .showcase {
    padding-block: 44px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .faq {
    padding-bottom: 36px;
  }

  .faq-list {
    gap: 6px;
  }

  .faq-panel {
    padding: 8px;
  }

  .review-carousel {
    margin-bottom: 12px;
    padding: 8px;
  }

  .review-track {
    gap: 8px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 132px;
    gap: 10px;
    padding: 18px;
  }

  .review-quote {
    font-size: 17px;
    line-height: 1.24;
  }

  .review-author {
    font-size: 10px;
    line-height: 1.25;
  }

  .review-controls {
    gap: 8px;
  }

  .review-controls button {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 42px;
    padding: 10px;
    font-size: 13px;
  }

  .faq-list summary::before {
    content: none;
  }

  .faq-list summary::after {
    width: 23px;
    height: 23px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 10px 12px;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .faq-toggle {
    min-height: 36px;
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .use-controls {
    left: 12px;
    right: 12px;
    bottom: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .use-controls::-webkit-scrollbar,
  .display-controls::-webkit-scrollbar {
    display: none;
  }

  .use-controls button,
  .display-controls button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-stats span {
    width: 100%;
  }

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

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

  .product-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.25;
    max-height: none;
    padding: 8px;
  }

  .product-copy {
    gap: 7px;
    padding: 10px;
  }

  .product-name {
    font-size: 18px;
  }

  .product-subtitle {
    display: none;
  }

  .product-subtitle,
  .product-price,
  .shopify-status {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .product-copy p:not(.product-subtitle):not(.product-price):not(.shopify-status) {
    font-size: 10.5px;
    line-height: 1.28;
  }

  .button {
    min-height: 36px;
    padding: 9px 8px;
    font-size: 12px;
  }

  .size-stage,
  .portal-shots,
  .shop-products {
    gap: 12px;
  }

  .size-model,
  .shop-panel,
  .portal-shots figure {
    padding: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  }

  .board-measure {
    padding: 24px 30px 2px 2px;
  }

  .board-measure-mini {
    width: 100%;
  }

  .board-visual {
    padding: 7px;
  }

  .size-model h3 {
    margin-bottom: 2px;
    font-size: 18px;
  }

  .measure-label {
    font-size: 11px;
  }

  .measure-width {
    right: 30px;
    height: 19px;
  }

  .measure-height {
    top: 24px;
    width: 21px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 16px;
    overflow: hidden;
    transition: max-height 1.44s cubic-bezier(.16, 1, .3, 1);
  }

  .feature-list li {
    padding: 9px 10px 9px 38px;
    font-size: 12px;
    line-height: 1.28;
    background: rgba(255, 255, 255, .045);
    box-shadow: none;
  }

  .feature-list li:hover {
    transform: none;
  }

  .feature-list li::before {
    left: 10px;
    top: 9px;
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .feature-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    margin-top: 10px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 122, 26, .46);
    border-radius: var(--radius);
    background: rgba(255, 122, 26, .14);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
  }

  .display-inner,
  .portal {
    gap: 20px;
  }

  .display-carousel {
    width: 100%;
    min-width: 0;
  }

  .screen-strip {
    width: 100%;
    overflow: visible;
  }

  .screen-strip img,
  .screen-strip video {
    width: 100%;
    min-height: 112px;
    padding: 7px;
    object-fit: contain;
  }

  .screen-hotspot {
    width: 24px;
    height: 24px;
    border-width: 1px;
    box-shadow:
      0 0 0 4px rgba(255, 122, 26, .1),
      0 0 16px rgba(255, 122, 26, .44),
      inset 0 0 10px rgba(255, 255, 255, .1);
  }

  .screen-hotspot:hover,
  .screen-hotspot:focus {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow:
      0 0 0 6px rgba(255, 122, 26, .13),
      0 0 22px rgba(255, 122, 26, .65),
      inset 0 0 14px rgba(255, 255, 255, .14);
  }

  .screen-callout {
    left: 50% !important;
    top: auto !important;
    bottom: 36px;
    width: calc(100% - 20px);
    min-height: 0;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.28;
    transform: translate(-50%, 10px) scale(.96);
  }

  .screen-strip figure.is-hotspot-open .screen-callout {
    transform: translate(-50%, 0) scale(1);
    animation: none;
  }

  .screen-strip figcaption {
    padding: 8px 10px 10px;
    font-size: 11px;
  }

  .display-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    margin-top: 10px;
    gap: 6px;
  }

  .display-controls button {
    width: 100%;
    min-width: 0;
    min-height: 32px;
    padding: 7px 6px;
    font-size: 11px;
    line-height: 1.1;
    white-space: normal;
  }

  .portal-shots img {
    max-height: 430px;
  }

  .portal-shots figcaption {
    padding-top: 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .portal-shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }

  .portal-shots figure {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    padding: 9px;
  }

  .portal-shots img,
  .portal-phone-shot img,
  .portal-tablet-shot img {
    width: 100%;
    height: 170px;
    max-height: none;
    object-fit: cover;
    object-position: top center;
    padding: 0;
  }

  .portal-shots figcaption {
    padding: 0;
    font-size: 12px;
    line-height: 1.28;
  }

  .footer {
    display: grid;
    justify-items: start;
    padding: 22px 16px;
  }

  .footer p {
    text-align: left;
  }

  .footer-brand img {
    width: 118px;
  }
}

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

  .brand img {
    width: 106px;
  }

  .header-cta {
    font-size: 11px;
  }

  .hero {
    min-height: 100svh;
    padding: 78px 14px 88px;
  }

  .hero-copy {
    font-size: 14px;
  }

  h2,
  .showcase h2 {
    font-size: 27px;
  }

  .section,
  .display-band {
    padding-inline: 14px;
  }

  .feature-list li {
    padding-right: 9px;
    font-size: 11.5px;
  }

  .board-measure {
    padding: 22px 28px 2px 2px;
  }

  .board-measure-mini {
    width: 100%;
  }

  .measure-label {
    font-size: 10px;
  }

  .measure-width {
    right: 28px;
  }

  .measure-height {
    top: 22px;
    width: 20px;
  }

  .screen-strip img,
  .screen-strip video {
    padding: 7px;
  }

  .screen-hotspot {
    width: 20px;
    height: 20px;
    box-shadow:
      0 0 0 3px rgba(255, 122, 26, .1),
      0 0 13px rgba(255, 122, 26, .42),
      inset 0 0 8px rgba(255, 255, 255, .1);
  }

  .screen-callout {
    bottom: 32px;
    width: calc(100% - 16px);
    padding: 8px 9px;
    font-size: 11.5px;
  }

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

  .display-controls button {
    min-height: 30px;
    padding: 6px 4px;
    font-size: 10px;
  }

  .portal-phone-shot img,
  .portal-tablet-shot img {
    height: 142px;
  }

  .editor-toolbar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    max-width: none;
  }

  .editor-toolbar button {
    min-height: 32px;
    padding: 7px 8px;
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
