:root {
  --bg: #080705;
  --bg-soft: #100e0c;
  --panel: #141210;
  --panel-light: #1d1915;
  --ink: #f5eee4;
  --muted: #b7aa99;
  --muted-strong: #d2c5b5;
  --bronze: #b58a4c;
  --bronze-bright: #ddb36b;
  --wood: #643b25;
  --steel: #8f9493;
  --red: #a72d25;
  --red-bright: #cc4837;
  --line: rgba(217, 193, 158, 0.17);
  --line-strong: rgba(217, 193, 158, 0.38);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at 88% 4%, rgba(181, 138, 76, 0.12), transparent 28rem),
    linear-gradient(180deg, #080705, #0b0907 42%, #080705);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a:not(.button):not(.site-brand):not(.floating-purchase):focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--bronze-bright);
  outline-offset: 4px;
}

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.94;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.shell {
  width: min(calc(100% - clamp(36px, 8vw, 112px)), 1240px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 142px) 0;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(181, 138, 76, 0.04), transparent 44%),
    #0c0b09;
  border-block: 1px solid var(--line);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--bg);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-bright));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 46px);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 5, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 17px;
}

.site-brand img {
  width: 58px;
  height: 48px;
  object-fit: contain;
}

.site-brand span {
  display: grid;
  gap: 2px;
  padding-left: 17px;
  border-left: 1px solid var(--line-strong);
}

.site-brand small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-brand strong {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--bronze-bright);
  transition: transform 200ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(8, 7, 5, 0.35);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 1px;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 27px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

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

.button--compact {
  min-height: 44px;
  padding-inline: 20px;
  background: rgba(181, 138, 76, 0.11);
  border-color: var(--bronze);
}

.button--primary {
  border-color: var(--bronze-bright);
  background: linear-gradient(130deg, var(--bronze-bright), var(--bronze) 47%, #725135);
  color: #110d09;
}

.button--primary:hover {
  background: linear-gradient(130deg, #ecc784, var(--bronze-bright) 46%, var(--bronze));
}

.button--ghost {
  background: rgba(245, 238, 228, 0.03);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--bronze-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 21px;
  font-size: clamp(3.2rem, 6.8vw, 5.7rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 570px;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.section-heading--center {
  max-width: 850px;
  margin: 0 auto clamp(42px, 6vw, 68px);
  text-align: center;
}

.section-heading--center p:not(.eyebrow) {
  margin-inline: auto;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: end;
  padding: clamp(120px, 15vw, 164px) 0 clamp(34px, 5vw, 50px);
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
  filter: grayscale(0.34);
}

.hero__veil {
  z-index: 2;
}

.hero__veil {
  background:
    radial-gradient(circle at 76% 34%, rgba(181, 138, 76, 0.15), transparent 28rem),
    linear-gradient(90deg, rgba(8, 7, 5, 0.99) 0%, rgba(8, 7, 5, 0.88) 43%, rgba(8, 7, 5, 0.62)),
    linear-gradient(0deg, #080705 0%, transparent 40%, rgba(8, 7, 5, 0.42));
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(370px, 0.9fr);
  align-items: end;
  gap: clamp(36px, 7vw, 104px);
}

.signature {
  margin-bottom: clamp(28px, 5vh, 50px);
  color: var(--ink);
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.signature span {
  padding-inline: 16px;
  color: var(--bronze-bright);
}

.hero h1 {
  margin-bottom: clamp(22px, 4vh, 34px);
  font-size: clamp(5.3rem, 12vw, 10.8rem);
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: block;
  color: transparent;
  font-size: 0.52em;
  letter-spacing: 0.015em;
  -webkit-text-stroke: 1px rgba(245, 238, 228, 0.72);
}

.hero__lead {
  max-width: 570px;
  margin-bottom: clamp(28px, 4vw, 40px);
  color: var(--muted-strong);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal-stage {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 1 / 1.03;
  justify-self: end;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(181, 138, 76, 0.1), transparent 54%);
}

.reveal-stage__video,
.reveal-stage__still {
  position: absolute;
  inset: clamp(20px, 4vw, 34px);
  width: 100%;
  height: 100%;
  max-width: calc(100% - clamp(40px, 8vw, 68px));
  max-height: calc(100% - clamp(40px, 8vw, 68px));
  margin: auto;
  object-fit: contain;
}

.reveal-stage__video {
  opacity: 1;
  transition: opacity 560ms ease;
}

.reveal-stage__hint {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--bronze-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: opacity 300ms ease;
}

.reveal-stage__hint i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze-bright);
  animation: pulse 1.8s infinite;
}

.reveal-stage__still {
  z-index: 2;
  padding: 0;
  opacity: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  pointer-events: none;
  transition: opacity 620ms ease 120ms;
}

.reveal-stage__still img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reveal-stage__still span {
  position: absolute;
  right: clamp(8px, 3vw, 22px);
  bottom: clamp(10px, 3vw, 22px);
  display: grid;
  gap: 5px;
  padding: 13px 17px;
  background: rgba(8, 7, 5, 0.7);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.reveal-stage__still small {
  color: var(--bronze-bright);
  font-size: 0.62rem;
}

.reveal-stage__replay {
  position: absolute;
  bottom: 2px;
  left: 50%;
  z-index: 4;
  padding: 7px 13px;
  transform: translate(-50%, 12px);
  opacity: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 300ms ease, transform 300ms ease;
}

.reveal-stage.is-complete .reveal-stage__video,
.reveal-stage.is-complete .reveal-stage__hint {
  opacity: 0;
  pointer-events: none;
}

.reveal-stage.is-complete .reveal-stage__still {
  opacity: 1;
  pointer-events: auto;
}

.reveal-stage.is-complete .reveal-stage__replay {
  transform: translate(-50%, 0);
  opacity: 1;
}

@keyframes pulse {
  60% {
    box-shadow: 0 0 0 11px rgba(221, 179, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(221, 179, 107, 0);
  }
}

.fact-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(54px, 7vw, 82px);
  border: 1px solid var(--line);
  background: rgba(10, 9, 7, 0.7);
  backdrop-filter: blur(10px);
}

.fact-strip div {
  padding: clamp(17px, 2.2vw, 26px) clamp(16px, 2.6vw, 31px);
  border-right: 1px solid var(--line);
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip small {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fact-strip strong {
  font-size: clamp(0.82rem, 1.25vw, 0.96rem);
}

.manifest__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(36px, 8vw, 112px);
}

.manifest__text {
  padding-top: clamp(0px, 2vw, 54px);
}

.manifest__text .large {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  line-height: 1.22;
}

.manifest__text a {
  color: var(--bronze-bright);
  border-bottom: 1px solid var(--line-strong);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(220px, 26vw, 330px);
  gap: clamp(12px, 1.6vw, 20px);
}

.craft-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.craft-card--tall {
  grid-row: span 2;
  grid-column: span 2;
}

.craft-card--wide {
  grid-column: span 2;
}

.craft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.craft-card:hover img {
  transform: scale(1.045);
}

.craft-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 5px;
  padding: 50px 22px 20px;
  background: linear-gradient(transparent, rgba(8, 7, 5, 0.9));
}

.craft-card strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.3vw, 1.72rem);
  font-weight: 600;
}

.craft-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.purchase-band {
  padding: clamp(42px, 6vw, 64px) 0;
  border-block: 1px solid rgba(221, 179, 107, 0.28);
  background:
    radial-gradient(circle at 8% 50%, rgba(181, 138, 76, 0.18), transparent 22rem),
    #12100d;
}

.purchase-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.purchase-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
}

.internals__heading {
  display: grid;
  grid-template-columns: 0.86fr 0.8fr;
  column-gap: clamp(36px, 8vw, 100px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 78px);
}

.internals__heading .eyebrow {
  grid-column: 1 / -1;
}

.internals__heading h2 {
  margin: 0;
}

.internals__heading p:not(.eyebrow) {
  margin: 0;
}

.system-feature {
  display: block;
  margin-bottom: clamp(26px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.system-feature__copy {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  align-items: end;
  gap: 22px;
  padding: clamp(25px, 4vw, 38px) clamp(25px, 5vw, 48px);
}

.system-feature__copy .eyebrow {
  grid-column: 1 / -1;
}

.system-feature h3 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.system-feature__copy p:last-child {
  max-width: 320px;
  margin-bottom: 0;
}

.system-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.components {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
}

.component {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 18%, rgba(181, 138, 76, 0.08), transparent 44%),
    var(--panel);
}

.component img {
  width: 100%;
  height: 182px;
  padding: 18px;
  object-fit: contain;
}

.component div {
  padding: 0 21px 25px;
}

.component small {
  display: block;
  margin-bottom: 12px;
  color: var(--bronze-bright);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.component h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.2vw, 1.86rem);
}

.component p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.66;
}

.component--speedmaster img {
  height: 205px;
  padding: 6px;
}

.electronics {
  display: grid;
  grid-template-columns: 0.82fr minmax(250px, 0.7fr) minmax(190px, 0.46fr);
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 8vw, 90px);
  margin-top: clamp(28px, 5vw, 54px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(221, 179, 107, 0.4);
  background:
    radial-gradient(circle at 92% 0, rgba(167, 45, 37, 0.24), transparent 22rem),
    var(--panel-light);
}

.electronics h3 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.electronics p:last-child {
  margin-bottom: 0;
}

.electronics__media {
  width: 100%;
  height: clamp(230px, 25vw, 310px);
  object-fit: contain;
}

.electronics__readout {
  display: grid;
  gap: 10px;
}

.electronics__readout span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.tests__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
  gap: clamp(38px, 8vw, 96px);
  align-items: start;
}

.tests__visual {
  position: sticky;
  top: 116px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.tests__visual img {
  width: 100%;
  aspect-ratio: 0.83;
  object-fit: cover;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: clamp(35px, 6vw, 54px) 0 0;
}

.quality-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  padding: 17px 15px;
  border: 1px solid var(--line);
  background: rgba(245, 238, 228, 0.018);
}

.quality-card svg {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--bronze-bright);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-card strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.quality-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.quote {
  text-align: center;
}

.quote .shell {
  max-width: 950px;
}

.quote blockquote {
  margin-bottom: clamp(28px, 4vw, 40px);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 1.07;
}

.quote p {
  margin-bottom: 42px;
  color: var(--bronze-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(220px, 23vw, 298px);
  gap: clamp(11px, 1.4vw, 18px);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--panel);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 280ms ease, transform 550ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.collab__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1fr;
  gap: clamp(38px, 8vw, 100px);
}

.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(13px, 2vw, 20px);
}

.partner {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(27px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 200ms ease, transform 200ms ease;
}

.partner:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.partner__wordmark {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.partner img {
  width: min(215px, 86%);
  height: 110px;
  object-fit: contain;
  object-position: left center;
}

.partner .partner__photo {
  width: calc(100% + clamp(54px, 8vw, 76px));
  max-width: none;
  height: clamp(154px, 18vw, 205px);
  margin: calc(clamp(27px, 4vw, 38px) * -1) calc(clamp(27px, 4vw, 38px) * -1) 25px;
  object-fit: cover;
  object-position: center 27%;
}

.partner .partner__photo--luis {
  object-position: center 36%;
}

.partner p {
  margin: auto 0 25px;
  padding-top: 32px;
  font-size: 0.9rem;
}

.partner strong {
  color: var(--bronze-bright);
  font-size: 0.7rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.brand-reel {
  position: relative;
  margin-top: clamp(22px, 4vw, 45px);
  overflow: hidden;
}

.brand-reel video {
  width: 100%;
  max-height: clamp(260px, 43vw, 490px);
  object-fit: cover;
  filter: brightness(0.7);
}

.brand-reel span {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 36px);
  color: var(--ink);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: clamp(570px, 68vw, 730px);
  place-items: center;
  overflow: hidden;
}

.final-cta__image,
.final-cta__veil {
  position: absolute;
  inset: 0;
}

.final-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__veil {
  background:
    radial-gradient(circle, rgba(8, 7, 5, 0.46), rgba(8, 7, 5, 0.88)),
    linear-gradient(90deg, #080705, transparent 50%, #080705);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 auto 38px;
  color: var(--muted-strong);
}

.final-cta .actions {
  justify-content: center;
}

.site-footer {
  padding: clamp(34px, 5vw, 50px) 0;
  border-top: 1px solid var(--line);
  background: #070604;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
}

.site-footer img {
  width: 80px;
  height: 70px;
  object-fit: contain;
}

.site-footer p {
  margin-bottom: 5px;
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.site-footer .legal {
  color: var(--muted);
  font-size: 0.74rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 21px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--bronze-bright);
}

.floating-purchase {
  position: fixed;
  right: clamp(15px, 3vw, 32px);
  bottom: clamp(15px, 3vw, 30px);
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 13px 14px 13px 20px;
  transform: translateY(120px);
  opacity: 0;
  border: 1px solid var(--line-strong);
  background: rgba(15, 13, 10, 0.94);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.38);
  transition: transform 260ms ease, opacity 260ms ease;
  backdrop-filter: blur(12px);
}

.floating-purchase.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-purchase span {
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-purchase strong {
  padding: 12px 17px;
  background: var(--bronze-bright);
  color: #110d09;
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox {
  width: min(1120px, calc(100vw - 42px));
  max-width: none;
  height: min(90svh, 900px);
  padding: 0;
  overflow: visible;
  border: 1px solid var(--line-strong);
  background: #0b0907;
  color: var(--ink);
}

.lightbox::backdrop {
  background: rgba(2, 2, 1, 0.87);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr auto;
  margin: 0;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 16px 20px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__close,
.lightbox__previous,
.lightbox__next {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(10, 8, 6, 0.88);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
}

.lightbox__close {
  top: -1px;
  right: -1px;
}

.lightbox__previous,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__previous {
  left: 15px;
}

.lightbox__next {
  right: 15px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__layout {
    grid-template-columns: minmax(330px, 0.9fr) minmax(320px, 0.8fr);
    gap: 34px;
  }

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

  .component {
    min-height: 390px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .site-brand img {
    width: 47px;
    height: 42px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 17px;
    border: 1px solid var(--line);
    background: rgba(10, 9, 7, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 18px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    justify-content: start;
    padding-top: 104px;
  }

  .hero__layout,
  .manifest__grid,
  .tests__layout,
  .collab__layout {
    grid-template-columns: 1fr;
  }

  .reveal-stage {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 1 / 0.96;
    margin: 34px auto 0;
    justify-self: center;
  }

  .fact-strip {
    display: flex;
    overflow-x: auto;
    margin-top: 37px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .fact-strip::-webkit-scrollbar,
  .components::-webkit-scrollbar {
    display: none;
  }

  .fact-strip div {
    flex: 0 0 clamp(180px, 44vw, 245px);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .internals__heading {
    display: block;
  }

  .internals__heading h2 {
    margin-bottom: 24px;
  }

  .system-feature img {
    aspect-ratio: 16 / 9;
  }

  .system-feature__copy {
    display: block;
  }

  .system-feature__copy p:last-child {
    margin-top: 15px;
  }

  .components {
    display: flex;
    gap: 12px;
    padding: 0 max(calc((100vw - min(calc(100% - clamp(36px, 8vw, 112px)), 1240px)) / 2), 0px) 10px;
    margin-inline: calc(clamp(36px, 8vw, 112px) / -2);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .component {
    flex: 0 0 min(73vw, 292px);
    min-height: 355px;
    scroll-snap-align: center;
  }

  .electronics {
    display: block;
  }

  .electronics__media {
    margin: 26px auto 0;
  }

  .electronics__readout {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
  }

  .electronics__readout span {
    padding-inline: 9px;
    text-align: center;
    font-size: 0.61rem;
  }

  .tests__visual {
    position: relative;
    top: auto;
  }

  .tests__visual img {
    aspect-ratio: 16 / 9;
  }

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

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

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 620px) {
  .site-brand span {
    display: none;
  }

  .section {
    padding-block: 58px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 27vw, 6.6rem);
  }

  .hero__veil {
    background:
      linear-gradient(0deg, #080705 3%, rgba(8, 7, 5, 0.8) 55%, rgba(8, 7, 5, 0.7)),
      rgba(8, 7, 5, 0.48);
  }

  .signature {
    margin-bottom: 28px;
  }

  .hero__lead {
    margin-bottom: 24px;
  }

  .reveal-stage {
    aspect-ratio: 1 / 1.22;
    margin-top: 38px;
    margin-bottom: 12px;
  }

  .reveal-stage__video,
  .reveal-stage__still {
    inset: 34px 0 42px;
    max-width: 100%;
    max-height: calc(100% - 76px);
  }

  .reveal-stage__still span {
    right: 4px;
    bottom: 28px;
    padding: 10px 12px;
  }

  .fact-strip {
    margin-top: 16px;
  }

  .manifest__text .large {
    margin-bottom: 0;
    font-size: 1.7rem;
  }

  .manifest__text p:not(.large) {
    display: none;
  }

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

  .craft-grid,
  .gallery-grid {
    display: block;
  }

  .craft-card,
  .gallery-item {
    display: block;
    width: 100%;
    height: 285px;
    margin-bottom: 12px;
  }

  .craft-card--tall {
    height: 390px;
  }

  .purchase-band__inner {
    display: block;
  }

  .purchase-band .button {
    width: 100%;
    margin-top: 30px;
  }

  .component {
    min-height: 342px;
  }

  .quality-grid {
    gap: 8px;
  }

  .quality-card {
    grid-template-columns: 34px 1fr;
    column-gap: 10px;
    padding: 13px 10px;
  }

  .quality-card svg {
    width: 31px;
    height: 31px;
  }

  .quality-card strong {
    font-size: 0.78rem;
  }

  .quality-card span {
    font-size: 0.7rem;
  }

  .brand-reel {
    margin-top: 18px;
  }

  .brand-reel video {
    height: 250px;
  }

  .brand-reel span {
    right: 15px;
    bottom: 15px;
    font-size: 0.62rem;
  }

  .floating-purchase {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
  }

  .lightbox__previous {
    left: 6px;
  }

  .lightbox__next {
    right: 6px;
  }
}

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

  .reveal-stage__video {
    display: none;
  }
}
