/* Dark reference direction, scoped to the first screen and its header. */
body:has(.hero-centered) .site-header {
  background: transparent;
  color: #f3f3f3;
  border-bottom-color: #202020;
}
body:has(.hero-centered) .header-inner { min-height: 80px; }
body:has(.hero-centered) .header-inner nav a { color: #a7a7ad; }
body:has(.hero-centered) .header-inner nav a:hover { color: #fff; }
body:has(.hero-centered) .wordmark svg { stroke: #ededed; }
body:has(.hero-centered) .header-cta {
  background: #eee;
  border-color: #eee;
  color: #171717;
  border-radius: 7px;
}
body:has(.hero-centered) .header-cta:hover { background: #fff; border-color: #fff; }
body:has(.hero-centered) .menu-toggle { color: #eee; border-color: #444; }
.hero-centered {
  --hero-ink: #f5f5f7;
  --hero-muted: #9da0aa;
  --hero-rule: #292a2e;
  background: transparent;
  color: var(--hero-ink);
  text-align: center;
  overflow: clip;
  padding: 36px 24px 0;
}
.hero-centered p { color: var(--hero-muted); }
.hero-centered .hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b8bcc5;
  background: #101317;
  border: 1px solid #323b49;
  border-radius: 50px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 29px;
}
.hero-overline span { color: #f0f1f3; }
.hero-centered h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 500;
  margin: 0 auto;
  max-width: 1040px;
}
.hero-centered h1 span {
  display: block;
  margin-top: 5px;
  color: #b1b1b6;
}
.hero-centered .hero-description {
  font-size: 17px;
  line-height: 1.65;
  max-width: 570px;
  margin: 26px auto 0;
  text-wrap: pretty;
}
.hero-centered .hero-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  margin: 31px auto 0;
  position: relative;
  z-index: 2;
}
.hero-centered .hero-order .button {
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 55%, #c3c2c1 100%);
  color: #111;
  border: 1px solid #eee;
  border-bottom-color: #999;
  border-radius: 7px;
  min-height: 51px;
  padding-inline: 25px;
  box-shadow: 0 1px 0 rgb(255 255 255 / 20%) inset;
  font-weight: 550;
}
.hero-centered .hero-order .button:hover { background: #fff; }
.hero-centered .hero-order-price {
  font-size: 14px;
  color: #b8b8bd;
  white-space: nowrap;
}
.hero-product-stage {
  position: relative;
  width: min(1030px, 88vw);
  margin: 59px auto 0;
  perspective: 1400px;
  isolation: isolate;
}
.hero-product-stage::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -7%;
  right: -7%;
  top: -90px;
  height: 360px;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 70%, rgb(184 107 44 / 30%), rgb(137 70 25 / 13%) 37%, transparent 68%);
  filter: blur(24px);
}
.hero-product-tilt {
  transform: translate3d(var(--product-x, 0px), var(--product-y, 0px), 0) rotateX(var(--product-rx, 0deg)) rotateY(var(--product-ry, 0deg));
  transition: transform 650ms cubic-bezier(.22, 1, .36, 1);
}
.hero-product-stage picture { display: block; }
.hero-product-stage img { display: block; width: 100%; height: auto; object-fit: contain; }
.hero-facts {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 920px;
  margin: 20px auto 0;
  padding: 25px 0 32px;
  border-top: 1px solid var(--hero-rule);
  list-style: none;
}
.hero-facts li { padding: 0 32px; font-size: 12px; color: var(--hero-muted); }
.hero-facts li + li { border-left: 1px solid var(--hero-rule); }
.hero-facts strong { font-weight: 500; color: #ddd; }
.hero-centered :focus-visible, body:has(.hero-centered) .site-header :focus-visible { outline-color: #e6b17d; }
@media (prefers-reduced-motion: no-preference) {
  .hero-centered .hero-overline { animation: hero-arrive 700ms both; }
  .hero-centered h1 { animation: hero-arrive 850ms 70ms both; }
  .hero-description { animation: hero-arrive 850ms 150ms both; }
  .hero-centered .hero-order { animation: hero-arrive 850ms 230ms both; }
  .hero-product-stage picture { animation: product-arrive 1200ms 220ms both; }
}
@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(13px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes product-arrive {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
  .hero-centered h1 { font-size: clamp(43px, 6.2vw, 58px); }
  .hero-product-stage { width: min(880px, 100%); }
  .hero-facts li { padding-inline: 20px; }
}
@media (max-width: 600px) {
  .hero-centered { padding: 29px 20px 0; }
  .hero-centered .hero-overline { font-size: 10px; padding: 6px 12px; margin-bottom: 25px; gap: 8px; }
  .hero-centered h1 { font-size: clamp(33px, 9vw, 49px); line-height: 1.12; letter-spacing: -.052em; }
  .hero-centered h1 span { margin-top: 2px; }
  .hero-centered .hero-description { font-size: 14px; margin-top: 21px; max-width: 390px; }
  .hero-centered .hero-order { flex-direction: column; gap: 13px; margin-top: 25px; }
  .hero-centered .hero-order .button { min-height: 49px; font-size: 13px; }
  .hero-centered .hero-order-price { font-size: 12px; }
  .hero-product-stage { width: calc(100% + 28px); margin: 38px -14px 0; }
  .hero-product-stage::before { top: -70px; height: 220px; filter: blur(18px); }
  .hero-facts { padding: 20px 0 23px; margin-top: 19px; }
  .hero-facts li { font-size: 10px; line-height: 1.6; flex: 1; padding: 0 8px; }
  .hero-facts li:first-child { padding-left: 0; }
  .hero-facts li:last-child { padding-right: 0; }
  .hero-facts strong { display: block; font-size: 13px; margin-bottom: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-product-tilt { transform: none !important; transition: none; }
}
