/* FOGAWAY — ported design system (from Fogaway-Website-Source) */
:root { --font-geist-sans: 'Inter'; }
/* minimal preflight (replaces tailwind reset) */
h1,h2,h3,p,blockquote,figure,dl,dd { margin: 0; }
fieldset { margin: 0; padding: 0; border: 0; }
legend { padding: 0; }

:root {
  --ink: #050505;
  --muted: #606064;
  --line: rgba(8, 8, 8, 0.13);
  --pearl: #f5f5f3;
  --soft: #ececea;
  --page-width: 480px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: #e8e8e6;
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #e8e8e6;
  color: var(--ink);
  font-family: var(--font-geist-sans), -apple-system, BlinkMacSystemFont,
    "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  overscroll-behavior-x: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: #050505;
  color: white;
}

.page-frame {
  position: relative;
  width: min(100%, var(--page-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background: #fff;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.08);
  isolation: isolate;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  height: 68px;
  padding: 0 max(8px, env(safe-area-inset-left));
  border-bottom: 1px solid rgba(0, 0, 0, 0.055);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.icon-button,
.wordmark {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
}

.wordmark {
  position: relative;
  justify-self: center;
  padding: 8px;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.065em;
}

.wordmark::after {
  position: absolute;
  top: 5px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: -5px -3px 0 -0.4px var(--ink), -9px -1px 0 -0.8px var(--ink);
  content: "";
  opacity: 0.55;
}

.menu-glyph {
  position: relative;
  display: block;
  width: 27px;
  height: 22px;
}

.menu-glyph span {
  position: absolute;
  left: 0;
  width: 27px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.45s var(--ease),
    top 0.45s var(--ease),
    opacity 0.25s ease;
}

.menu-glyph span:nth-child(1) {
  top: 2px;
}

.menu-glyph span:nth-child(2) {
  top: 10px;
}

.menu-glyph span:nth-child(3) {
  top: 18px;
}

.menu-glyph.is-open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.menu-glyph.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-glyph.is-open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.bag-icon {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mobile-menu {
  position: fixed;
  z-index: 65;
  top: 68px;
  left: 50%;
  width: min(100%, var(--page-width));
  height: calc(100svh - 68px);
  padding: 24px;
  pointer-events: none;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-top: 24px;
}

.mobile-menu-inner > button:not(.black-button),
.mobile-menu-inner > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-decoration: none;
  font-size: clamp(28px, 8vw, 38px);
  font-weight: 550;
  letter-spacing: -0.055em;
  opacity: 0;
  transform: translateY(24px);
  transition:
    transform 0.6s var(--ease),
    opacity 0.4s ease;
}

.mobile-menu-inner > button:not(.black-button) span,
.mobile-menu-inner > a span {
  color: #969696;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.mobile-menu.is-open .mobile-menu-inner > button,
.mobile-menu.is-open .mobile-menu-inner > a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-inner > :nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.is-open .mobile-menu-inner > :nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.is-open .mobile-menu-inner > :nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.is-open .mobile-menu-inner > :nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu.is-open .mobile-menu-inner > :nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-menu.is-open .mobile-menu-inner > :nth-child(6) {
  transition-delay: 0.3s;
}

.mobile-menu.is-open .mobile-menu-inner > :nth-child(7) {
  transition-delay: 0.35s;
}

.menu-cta {
  margin-top: auto;
  margin-bottom: calc(18px + env(safe-area-inset-bottom));
}

.black-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 25px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #050505;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 570;
  letter-spacing: -0.015em;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.black-button:active {
  transform: scale(0.975);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.black-button svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  --hero-progress: 0;
  position: relative;
  min-height: max(780px, calc(100svh - 68px));
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(218, 218, 218, 0.36), transparent 38%),
    #fff;
}

.hero-word {
  position: absolute;
  z-index: 2;
  top: -0.02em;
  left: 50%;
  display: flex;
  width: 108%;
  justify-content: center;
  transform: translateX(-50%);
  color: #dedede;
  font-size: clamp(82px, 28vw, 136px);
  font-weight: 650;
  letter-spacing: -0.105em;
  line-height: 0.86;
  pointer-events: none;
  white-space: nowrap;
}

.hero-word span {
  display: inline-block;
  transform: translateY(calc(var(--hero-progress) * (22px + var(--letter) * 5px)))
    scale(calc(1 + var(--hero-progress) * 0.17));
  opacity: calc(1 - var(--hero-progress) * 0.82);
  filter: blur(calc(var(--hero-progress) * 4px));
  will-change: transform, opacity, filter;
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: 52px;
  right: -66px;
  width: 115%;
  height: 420px;
  transform: translate3d(
      calc(var(--hero-progress) * 24px),
      calc(var(--hero-progress) * -20px),
      0
    )
    scale(calc(1 + var(--hero-progress) * 0.08));
  transform-origin: 75% 42%;
  will-change: transform;
}

.hero-product {
  position: absolute;
  top: 0;
  right: 0;
  width: 108%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(0.4);
}

.hero-fog {
  position: absolute;
  z-index: 3;
  border-radius: 48%;
  background:
    radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.98) 0 30%, rgba(241, 241, 241, 0.84) 48%, transparent 73%);
  filter: blur(15px);
  opacity: 0.86;
  pointer-events: none;
  will-change: transform;
}

.hero-fog-one {
  top: 102px;
  left: -38px;
  width: 280px;
  height: 185px;
  animation: heroFogOne 8s ease-in-out infinite alternate;
}

.hero-fog-two {
  top: 170px;
  left: 45px;
  width: 300px;
  height: 195px;
  opacity: 0.62;
  animation: heroFogTwo 11s ease-in-out infinite alternate;
}

.hero-fog-three {
  top: 92px;
  left: 120px;
  width: 210px;
  height: 120px;
  opacity: 0.58;
  animation: heroFogThree 6.5s ease-in-out infinite alternate;
}

@keyframes heroFogOne {
  from {
    transform: translate3d(-18px, 16px, 0) scale(0.9);
  }
  to {
    transform: translate3d(32px, -9px, 0) scale(1.16);
  }
}

@keyframes heroFogTwo {
  from {
    transform: translate3d(28px, -8px, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(-42px, 18px, 0) rotate(3deg) scale(1.12);
  }
}

@keyframes heroFogThree {
  from {
    transform: translate3d(15px, 8px, 0) scale(0.86);
  }
  to {
    transform: translate3d(-30px, 1px, 0) scale(1.23);
  }
}

.hero-copy {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 108px;
  left: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #6c6c70;
  font-size: 11px;
  font-weight: 690;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.technology-section h2,
.peace-section h2,
.places-section h2,
.stories-section h2,
.closing-section h2,
.faq-section h2,
.protect-sheet h2 {
  margin: 0;
  font-size: clamp(39px, 11vw, 54px);
  font-weight: 560;
  letter-spacing: -0.072em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-description {
  max-width: 330px;
  margin: 18px 0 25px;
  color: #4e4e51;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: #4e4e51;
  font-size: clamp(10px, 2.7vw, 12px);
  white-space: nowrap;
}

.hero-trust i,
.closing-trust i {
  width: 3px;
  height: 3px;
  border-radius: 99px;
  background: #8c8c8c;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 72px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 18px;
  height: 28px;
  border: 1px solid #8a8a8a;
  border-radius: 99px;
}

.scroll-cue span::after {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: #555;
  content: "";
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.2;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
}

.section-intro {
  padding: 84px 22px 38px;
  background: #fff;
}

.section-intro h2 em {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.activation-stage {
  position: relative;
  height: min(830px, 108svh);
  min-height: 690px;
  overflow: hidden;
  background: #e7e7e5;
  isolation: isolate;
}

.room-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.52) contrast(0.95);
  transition:
    opacity 2.25s var(--ease),
    filter 2.25s var(--ease),
    transform 4s var(--ease);
}

.room-clear {
  z-index: 0;
}

.room-filled {
  z-index: 1;
  opacity: 0.25;
  -webkit-mask-image: linear-gradient(to bottom, transparent 5%, rgba(0, 0, 0, 0.25) 43%, #000 82%);
  mask-image: linear-gradient(to bottom, transparent 5%, rgba(0, 0, 0, 0.25) 43%, #000 82%);
}

.activation-stage.is-active .room-clear,
.activation-stage.is-complete .room-clear {
  filter: saturate(0.15) contrast(0.72) brightness(1.14);
  transform: scale(1.035);
}

.activation-stage.is-active .room-filled,
.activation-stage.is-complete .room-filled {
  opacity: 0.97;
  filter: saturate(0) brightness(1.05);
  transform: scale(1.055);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), #000 55%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), #000 55%);
}

.stage-tone {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent 45%, rgba(255, 255, 255, 0.58)),
    linear-gradient(to right, rgba(0, 0, 0, 0.08), transparent 36%);
  pointer-events: none;
}

.countdown-track {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0 56px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(84px, 26vw, 126px);
  font-weight: 240;
  letter-spacing: -0.08em;
  line-height: 1;
  transition: opacity 0.5s ease;
}

.activation-stage.is-active .countdown-track {
  opacity: 0.18;
}

.activation-stage.is-complete .countdown-track {
  opacity: 0;
}

.active-count {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(128px, 42vw, 198px);
  font-weight: 180;
  letter-spacing: -0.1em;
  opacity: 0;
  transform: translate(-50%, -62%) scale(1.12);
  transition:
    opacity 0.35s ease,
    transform 0.65s var(--ease);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.08);
}

.activation-stage.is-active .active-count {
  opacity: 1;
  transform: translate(-50%, -62%) scale(1);
}

.fog-particle {
  position: absolute;
  z-index: 4;
  width: 330px;
  height: 220px;
  border-radius: 46%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 25%, rgba(248, 248, 248, 0.72) 48%, transparent 74%);
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
}

.activation-stage.is-active .fog-particle,
.activation-stage.is-complete .fog-particle {
  opacity: 0.76;
}

.fog-particle-one {
  right: -190px;
  bottom: 40%;
}

.activation-stage.is-active .fog-particle-one {
  animation: deployFogOne 2.4s var(--ease) both;
}

.fog-particle-two {
  right: -140px;
  bottom: 16%;
}

.activation-stage.is-active .fog-particle-two {
  animation: deployFogTwo 2.8s var(--ease) 0.15s both;
}

.fog-particle-three {
  right: -170px;
  bottom: 60%;
}

.activation-stage.is-active .fog-particle-three {
  animation: deployFogThree 2.6s var(--ease) 0.3s both;
}

@keyframes deployFogOne {
  from {
    transform: translate3d(0, 20px, 0) scale(0.3);
  }
  to {
    transform: translate3d(-520px, -20px, 0) scale(2.1);
  }
}

@keyframes deployFogTwo {
  from {
    transform: translate3d(0, 0, 0) scale(0.4);
  }
  to {
    transform: translate3d(-460px, -120px, 0) scale(2.25);
  }
}

@keyframes deployFogThree {
  from {
    transform: translate3d(0, 0, 0) scale(0.4);
  }
  to {
    transform: translate3d(-400px, 160px, 0) scale(1.95);
  }
}

.activation-button {
  position: absolute;
  z-index: 8;
  top: 61%;
  left: 50%;
  width: calc(100% - 40px);
  min-height: 64px;
  transform: translate(-50%, -50%);
}

.activation-button:active {
  transform: translate(-50%, -50%) scale(0.975);
}

.activation-stage.is-active .activation-button {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.activation-stage.is-complete .activation-button {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  color: var(--ink);
}

.stage-caption {
  position: absolute;
  z-index: 8;
  right: 22px;
  bottom: 28px;
  left: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 540;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.34);
}

.technology-section {
  position: relative;
  padding: 92px 20px 88px;
  overflow: hidden;
  background: #fff;
}

.technology-heading {
  position: relative;
  z-index: 5;
}

.technology-section h2 {
  max-width: 430px;
}

.product-reveal {
  position: relative;
  width: calc(100% + 40px);
  height: 440px;
  margin: 28px -20px 0;
  overflow: hidden;
}

.technical-rings {
  position: absolute;
  top: 36px;
  left: -130px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(0, 0, 0, 0.025),
    0 0 0 96px rgba(0, 0, 0, 0.018),
    0 0 0 145px rgba(0, 0, 0, 0.013);
  animation: ringPulse 6s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.product-front {
  position: absolute;
  top: 0;
  right: -35%;
  width: 132%;
  max-width: none;
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(0);
  transform: translate3d(40px, 12px, 0) scale(0.9);
  transform-origin: 70% 46%;
  transition: transform 1.35s var(--ease);
}

.product-reveal.is-visible .product-front {
  transform: translate3d(0, 0, 0) scale(1);
}

.precision-label {
  position: absolute;
  bottom: 32px;
  left: 20px;
  color: #7b7b7e;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.16em;
}

.stat-list {
  border-top: 1px solid var(--line);
}

.stat-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
}

.stat-row strong {
  font-size: clamp(31px, 8.7vw, 42px);
  font-weight: 520;
  letter-spacing: -0.065em;
}

.stat-row > span {
  color: #58585b;
  font-size: 13px;
  line-height: 1.35;
}

.section-button {
  margin-top: 26px;
}

.peace-section {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: var(--pearl);
}

.peace-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.82) brightness(1.025);
  transform: scale(1.08);
  transition: transform 2.2s var(--ease);
}

.peace-section:has(.peace-copy.is-visible) .peace-image {
  transform: scale(1);
}

.peace-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.99) 0 7%, rgba(255, 255, 255, 0.92) 23%, rgba(255, 255, 255, 0.34) 47%, transparent 65%),
    linear-gradient(to top, rgba(11, 11, 11, 0.34), transparent 34%);
}

.peace-fog-curtain {
  position: absolute;
  right: -60%;
  bottom: 28%;
  width: 120%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 28%, rgba(255, 255, 255, 0.38) 51%, transparent 74%);
  filter: blur(26px);
  animation: peaceFog 12s ease-in-out infinite alternate;
}

@keyframes peaceFog {
  from {
    transform: translate3d(6%, 5%, 0) scale(0.88);
    opacity: 0.68;
  }
  to {
    transform: translate3d(-14%, -5%, 0) scale(1.12);
    opacity: 0.42;
  }
}

.peace-copy {
  position: relative;
  z-index: 3;
  padding: 76px 22px 0;
}

.peace-copy h2 {
  max-width: 420px;
}

.peace-copy h2 em {
  display: inline-block;
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.068em;
}

.peace-copy > p:not(.eyebrow) {
  max-width: 340px;
  margin: 22px 0 0;
  color: #414145;
  font-size: 16px;
  line-height: 1.46;
}

.safety-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 10px 14px 10px 11px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #363638;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(9px);
}

.shield-icon {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.peace-note {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 22px;
  left: 20px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 19px;
  background: rgba(12, 12, 12, 0.54);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.28;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

/* ===== Stops section (cameras record it / Fogaway stops it) ===== */
.stops-section {
  padding: 56px 0 48px;
  background: #fff;
}

.stops-heading {
  padding: 0 22px;
}

.stops-heading h2 {
  max-width: 480px;
  font-size: clamp(32px, 9.6vw, 47px);
}

.stops-heading h2 em {
  display: block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.065em;
}

.stops-heading > p:not(.eyebrow) {
  max-width: 360px;
  margin: 20px 0 0;
  color: #555559;
  font-size: 16px;
  letter-spacing: -0.018em;
  line-height: 1.5;
}

.stops-compare {
  position: relative;
  aspect-ratio: 1185 / 616;
  margin: 34px 20px 0;
  border-radius: 22px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  isolation: isolate;
}

.stops-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stops-timecode {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.stops-rec {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.stops-rec i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e03d3d;
  animation: stopsRecPulse 1.6s ease-in-out infinite;
}

@keyframes stopsRecPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.stops-timeline {
  margin: 40px 22px 0;
}

.stops-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1px;
  background: rgba(0, 0, 0, 0.13);
}

.stops-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #050505;
}

.stops-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.stops-step {
  flex: 1;
  text-align: center;
}

.stops-step:first-child {
  text-align: left;
}

.stops-step:last-child {
  text-align: right;
}

.stops-step b {
  display: block;
  font-size: clamp(18px, 5vw, 23px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stops-step small {
  display: block;
  margin-top: 3px;
  color: #77777a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.places-section {
  padding: 58px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 7%, rgba(255, 255, 255, 0.95), transparent 28%),
    var(--pearl);
}

.places-heading {
  padding: 0 20px;
}

.places-heading h2,
.stories-heading h2 {
  max-width: 420px;
}

.places-heading > p:not(.eyebrow) {
  max-width: 360px;
  margin: 20px 0 0;
  color: #555559;
  font-size: 16px;
  letter-spacing: -0.018em;
  line-height: 1.5;
}

.places-rail {
  display: flex;
  gap: 13px;
  margin-top: 38px;
  padding: 0 20px 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 20px;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}
.places-rail .place-card {
  touch-action: pan-x pan-y;
}

.places-rail::-webkit-scrollbar,
.stories-rail::-webkit-scrollbar {
  display: none;
}

.place-card {
  position: relative;
  display: block;
  width: calc(100% - 54px);
  min-width: calc(100% - 54px);
  height: clamp(545px, 75svh, 625px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
  isolation: isolate;
}

.place-card img,
.place-card video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(0.95);
  transform: scale(1.045);
  transition:
    transform 1.4s var(--ease),
    filter 0.5s ease;
  pointer-events: none; /* background only — never a tappable video player */
}

.place-card.is-visible img {
  transform: scale(1);
}

.place-card:active img {
  transform: scale(1.025);
}

.place-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 36%),
    linear-gradient(to top, rgba(0, 0, 0, 0.92) 0 5%, rgba(0, 0, 0, 0.7) 29%, transparent 64%);
}

.place-index {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 670;
  letter-spacing: 0.1em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.place-copy {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.place-copy small {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-copy strong {
  max-width: 315px;
  font-size: clamp(29px, 8vw, 38px);
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.99;
  text-wrap: balance;
}

.place-copy > span {
  max-width: 305px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.place-copy i {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 12px;
  font-style: normal;
  font-weight: 610;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.place-copy i svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.rail-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 2px 20px 0;
  color: #77777a;
  font-size: 10px;
  font-weight: 640;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rail-hint span {
  color: #111;
  font-size: 16px;
  animation: swipeHint 1.8s ease-in-out infinite;
}

@keyframes swipeHint {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(7px);
  }
}

/* ===== Kit section (one complete kit / setup steps / activation methods) ===== */
.kit-section {
  position: relative;
  padding: 56px 0 46px;
  overflow: hidden;
  background: #fff;
}

.kit-heading {
  position: relative;
  z-index: 2;
  padding: 0 22px;
}

.kit-heading h2 {
  max-width: 380px;
  font-size: clamp(30px, 8.6vw, 40px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.kit-heading > p:not(.eyebrow) {
  max-width: 320px;
  margin: 14px 0 0;
  color: #55555a;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.kit-flatlay {
  display: block;
  width: 92%;
  margin: -6px -20px 0 auto;
}

.kit-steps {
  position: relative;
  display: flex;
  aspect-ratio: 800 / 620;
  margin: 30px 20px 0;
  border-radius: 20px;
  overflow: hidden;
  background: #e7e7e5;
  isolation: isolate;
}

.kit-step-pane {
  position: relative;
  flex: 1 1 33.333%;
  overflow: hidden;
}

.kit-step-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.kit-step-pane:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -15%;
  right: -1.5px;
  width: 3px;
  height: 130%;
  background: rgba(255, 255, 255, 0.85);
  transform: rotate(6deg);
  pointer-events: none;
}

.kit-step-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 14px 20px 12px;
  background: rgba(8, 8, 8, 0.9);
}

.kit-step-bar > div {
  display: flex;
  flex: 1;
  align-items: baseline;
  gap: 7px;
  color: #fff;
}

.kit-step-bar b {
  font-size: clamp(17px, 4.6vw, 21px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.kit-step-bar span {
  color: #eaeae8;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kit-note {
  margin: 13px 22px 0;
  color: #77777a;
  font-size: 13px;
  letter-spacing: -0.005em;
}

.kit-sub-heading {
  margin: 34px 22px 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.kit-activates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 16px 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}

.kit-activate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 5px 11px;
  background: #fafaf9;
  text-align: center;
}

.kit-activate-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.kit-activate-photo img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 9px;
}

.kit-activate span {
  color: #333;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kit-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 20px 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #55555a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kit-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.kit-trust i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c7c7c3;
}

.kit-trust-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stories-section {
  padding: 92px 0 88px;
  overflow: hidden;
  background: #fff;
}

.stories-heading {
  padding: 0 20px;
}

.story-stars {
  margin-bottom: 12px;
  color: #050505;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.stories-rail {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding: 0 20px 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 20px;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.story-card {
  position: relative;
  display: flex;
  width: calc(100% - 43px);
  min-width: calc(100% - 43px);
  min-height: 405px;
  flex-direction: column;
  padding: 31px 27px 27px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, #fff, transparent 42%),
    #f2f2f0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.055);
  scroll-snap-align: start;
}

.quote-mark {
  height: 66px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  line-height: 1;
}

.story-card blockquote {
  margin: 21px 0 34px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 7.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.story-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.story-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.72);
}

.story-person div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-person strong {
  font-size: 13px;
  font-weight: 660;
  letter-spacing: -0.015em;
}

.story-person span {
  color: #77777a;
  font-size: 11px;
}

.stories-button {
  width: calc(100% - 40px);
  margin: 12px 20px 0;
}

.closing-section {
  position: relative;
  padding: 58px 20px 36px;
  overflow: hidden;
  background: #fff;
}

.closing-copy {
  position: relative;
  z-index: 3;
}

.closing-copy > p:not(.eyebrow) {
  max-width: 315px;
  margin: 20px 0 0;
  color: #515154;
  font-size: 16px;
  line-height: 1.45;
}

.closing-product {
  position: relative;
  width: calc(100% + 40px);
  height: 475px;
  margin: 10px -20px -8px;
}

.closing-halo {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 365px;
  height: 365px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 32%, #ededed 58%, rgba(245, 245, 245, 0) 72%);
  transform: translateX(-50%);
}

.closing-product img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 125%;
  max-width: none;
  mix-blend-mode: multiply;
  filter: saturate(0) contrast(1.03);
  transform: translateX(-50%) scale(0.88);
  transition: transform 1.4s var(--ease);
}

.closing-product.is-visible img {
  transform: translateX(-50%) scale(1);
}

.closing-fog {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  width: 380px;
  height: 190px;
  border-radius: 48%;
  background: radial-gradient(circle, #fff 0 28%, rgba(247, 247, 247, 0.84) 48%, transparent 72%);
  filter: blur(14px);
  opacity: 0.84;
  animation: closingFog 9s ease-in-out infinite alternate;
}

.closing-fog-a {
  left: -120px;
}

.closing-fog-b {
  right: -150px;
  animation-delay: -4s;
}

@keyframes closingFog {
  from {
    transform: translate3d(-10px, 8px, 0) scale(0.9);
  }
  to {
    transform: translate3d(40px, -14px, 0) scale(1.18);
  }
}

.closing-trust {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #66666a;
  font-size: clamp(10px, 2.65vw, 12px);
  white-space: nowrap;
}

.choose-button {
  position: relative;
  z-index: 4;
}

.faq-section {
  padding: 52px 20px 36px;
  background: #fff;
}

.faq-section h2 {
  margin-bottom: 36px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 545;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: left;
}

.faq-item > button i {
  position: relative;
  width: 22px;
  height: 22px;
  transition: transform 0.45s var(--ease);
}

.faq-item > button i::before,
.faq-item > button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item > button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.25s ease;
}

.faq-item.is-open > button i {
  transform: rotate(180deg);
}

.faq-item.is-open > button i::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.55s var(--ease),
    opacity 0.3s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #5c5c60;
  font-size: 14px;
  line-height: 1.55;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
  opacity: 1;
}

.site-footer {
  padding: 58px 20px 132px;
  background: var(--pearl);
}

.footer-wordmark {
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.065em;
}

.site-footer > p:not(.copyright) {
  margin: 9px 0 28px;
  color: #5f5f63;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #4e4e50;
  font-size: 12px;
}

.copyright {
  margin: 22px 0 0;
  color: #88888b;
  font-size: 10px;
}

.sticky-protect {
  position: fixed;
  z-index: 60;
  bottom: 0;
  left: 50%;
  width: min(100%, var(--page-width));
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  transform: translate(-50%, 24px);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 60%, rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.55s var(--ease),
    opacity 0.35s ease,
    visibility 0.35s;
  visibility: hidden;
}

.sticky-protect.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

/* Registering the angle as a real animatable type lets the browser
   tween the conic-gradient's rotation smoothly (see igAngleSpin below);
   browsers without @property support just render a static rainbow
   border instead of a spinning one — a harmless degrade. */
@property --ig-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.sticky-protect .black-button {
  width: 100%;
  min-height: 60px;
  pointer-events: auto;
  position: relative;
  isolation: isolate;
  --ig-angle: 0deg;
  /* The button itself stays black — the solid fill + gloss highlights
     below all live in the padding-box. The Instagram-style rainbow
     lives strictly in the border-box ring created by the 3px
     transparent border, so it only ever shows as a loop around the
     outside and never touches the black surface in the middle. */
  border: 3px solid transparent;
  /* NOTE: background-color is only allowed in the *last* layer of a
     multi-layer background shorthand — using a plain solid color
     earlier in the list silently invalidates the whole declaration.
     linear-gradient(#000,#000) is a background-IMAGE, so it's valid
     in any layer position and paints identically to a flat fill. */
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 32%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.05) 100%) padding-box,
    radial-gradient(120% 140% at 28% -18%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 55%) padding-box,
    linear-gradient(#060608, #060608) padding-box,
    conic-gradient(from var(--ig-angle), #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75) border-box;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  animation: igAngleSpin 3s linear infinite;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    inset 0 0 18px rgba(255, 255, 255, 0.05);
}

/* a slow glossy reflection sweeping across the black glass surface —
   stays inside the padding-box (inset matches the border width) so it
   never touches the rainbow ring, and sits above the button's own
   background but below its text via paint order + blend mode. */
.sticky-protect .black-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.16) 45%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.16) 55%,
    transparent 70%);
  background-size: 260% 100%;
  background-position: 160% 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: igShineSweep 4.5s ease-in-out infinite;
}

@keyframes igAngleSpin {
  to { --ig-angle: 360deg; }
}

@keyframes igShineSweep {
  0%, 55% { background-position: 160% 0; }
  100% { background-position: -60% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-protect .black-button,
  .sticky-protect .black-button::after {
    animation: none;
  }
}

.protect-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 0.45s ease;
}

.protect-overlay.is-open {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.36);
}

.protect-sheet {
  position: relative;
  width: min(100%, var(--page-width));
  min-height: 430px;
  padding: 34px 20px calc(28px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.16);
  transform: translateY(104%);
  transition: transform 0.65s var(--ease);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.protect-overlay.is-open .protect-sheet {
  transform: translateY(0);
}

.sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #efefed;
  cursor: pointer;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.protect-sheet h2 {
  max-width: 380px;
  padding-right: 36px;
}

.sheet-copy {
  max-width: 330px;
  margin: 16px 0 26px;
  color: #5c5c60;
  font-size: 14px;
  line-height: 1.5;
}

.space-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.space-picker label {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: #f7f7f5;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease);
}

.space-picker label:active {
  transform: scale(0.97);
}

.space-picker label.is-selected {
  background: #050505;
  color: #fff;
}

.space-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.sheet-button {
  width: 100%;
  margin-top: 16px;
}

.flow-complete {
  padding-top: 22px;
  text-align: center;
}

.complete-mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: #fff;
}

.complete-mark .shield-icon {
  width: 36px;
}

.flow-complete h2 {
  padding: 0;
}

.flow-complete > p:not(.eyebrow) {
  max-width: 350px;
  margin: 18px auto 0;
  color: #5c5c60;
  font-size: 14px;
  line-height: 1.55;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    transform 0.9s var(--ease),
    opacity 0.7s ease;
}

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

.stat-row:nth-child(2) {
  transition-delay: 0.08s;
}

.stat-row:nth-child(3) {
  transition-delay: 0.16s;
}

.faq-item:nth-child(2) {
  transition-delay: 0.05s;
}

.faq-item:nth-child(3) {
  transition-delay: 0.1s;
}

.faq-item:nth-child(4) {
  transition-delay: 0.15s;
}

.place-card:nth-child(2),
.story-card:nth-child(2) {
  transition-delay: 0.06s;
}

.place-card:nth-child(3),
.story-card:nth-child(3) {
  transition-delay: 0.12s;
}

@media (max-width: 360px) {
  .site-header {
    height: 64px;
  }

  .mobile-menu {
    top: 64px;
    height: calc(100svh - 64px);
  }

  .hero {
    min-height: max(730px, calc(100svh - 64px));
  }

  .hero-media {
    top: 42px;
    right: -70px;
    height: 370px;
  }

  .hero-copy {
    right: 16px;
    left: 16px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-trust {
    gap: 6px;
    font-size: 9.5px;
  }

  .activation-button {
    width: calc(100% - 32px);
  }

  .technology-section,
  .places-heading,
  .stories-heading,
  .closing-section,
  .faq-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .peace-section {
    min-height: 840px;
  }

  .peace-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .peace-note {
    right: 16px;
    left: 16px;
  }

  .places-rail,
  .stories-rail {
    padding-right: 16px;
    padding-left: 16px;
    scroll-padding-left: 16px;
  }

  .place-card {
    width: calc(100% - 42px);
    min-width: calc(100% - 42px);
  }

  .story-card {
    width: calc(100% - 34px);
    min-width: calc(100% - 34px);
    padding-right: 23px;
    padding-left: 23px;
  }

  .stories-button {
    width: calc(100% - 32px);
    margin-right: 16px;
    margin-left: 16px;
  }

  .stat-row {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 6px;
    min-height: 108px;
  }

  .closing-trust {
    gap: 6px;
    font-size: 9.5px;
  }
}

@media (min-width: 481px) {
  .page-frame {
    margin-top: 16px;
    margin-bottom: 16px;
    border-radius: 28px;
  }

  .site-header {
    top: 16px;
    border-radius: 28px 28px 0 0;
  }
}

@media (hover: hover) {
  .black-button:hover {
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.19),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }

  .activation-button:hover {
    transform: translate(-50%, calc(-50% - 2px));
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Product and checkout journey */

.commerce-frame {
  position: relative;
  width: min(100%, var(--page-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background: #fff;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.08);
  isolation: isolate;
}

.commerce-header {
  position: sticky;
  z-index: 70;
  top: 0;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  height: 68px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.commerce-icon-button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--ink);
}

.commerce-icon-button svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.commerce-wordmark {
  position: relative;
  justify-self: center;
  color: var(--ink);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.065em;
  text-decoration: none;
}

.commerce-wordmark::after {
  position: absolute;
  top: -2px;
  right: -6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    -5px -3px 0 -0.4px currentColor,
    -9px -1px 0 -0.8px currentColor;
  content: "";
  opacity: 0.55;
}

.commerce-secure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #656569;
  font-size: 9px;
  font-weight: 670;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.commerce-secure svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.commerce-header-spacer {
  display: block;
  width: 54px;
}

.commerce-eyebrow {
  margin: 0 0 11px;
  color: #77777a;
  font-size: 10px;
  font-weight: 690;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.commerce-black-button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #050505;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.018em;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease;
}

.commerce-black-button:active {
  transform: scale(0.975);
}

.commerce-black-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

[data-commerce-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    transform 0.9s var(--ease),
    opacity 0.65s ease;
}

[data-commerce-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-page {
  padding-bottom: 124px;
}

.product-gallery {
  overflow: hidden;
  background: #f5f5f3;
}

.product-gallery-stage {
  position: relative;
  height: 485px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 43%, #fff 0 26%, transparent 57%),
    #efefed;
  isolation: isolate;
}

.product-gallery-stage > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(0.15) contrast(1.02);
  opacity: 0;
  transform: scale(0.94) translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.85s var(--ease);
}

.product-gallery-stage > img.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.product-gallery-stage > video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(0.94) translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.85s var(--ease);
}

.product-gallery-stage > video.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.gallery-fog {
  position: absolute;
  z-index: 2;
  width: 300px;
  height: 180px;
  border-radius: 48%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.96) 0 28%,
    rgba(245, 245, 245, 0.72) 48%,
    transparent 73%
  );
  filter: blur(18px);
  pointer-events: none;
}

.gallery-fog-a {
  bottom: -58px;
  left: -120px;
  animation: commerceFog 9s ease-in-out infinite alternate;
}

.gallery-fog-b {
  right: -155px;
  bottom: 44px;
  opacity: 0.6;
  animation: commerceFog 11s ease-in-out -4s infinite alternate-reverse;
}

@keyframes commerceFog {
  from {
    transform: translate3d(-10px, 10px, 0) scale(0.9);
  }
  to {
    transform: translate3d(38px, -16px, 0) scale(1.16);
  }
}

.gallery-status {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #3f3f42;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46a96b;
  box-shadow: 0 0 0 5px rgba(70, 169, 107, 0.13);
  animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
  50% {
    box-shadow: 0 0 0 9px rgba(70, 169, 107, 0);
  }
}

.gallery-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px 12px 12px;
  background: #fff;
}

.gallery-picker button {
  position: relative;
  height: 84px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #f1f1ef;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

.gallery-picker button:active {
  transform: scale(0.97);
}

.gallery-picker button.is-selected {
  border-color: #050505;
  box-shadow: inset 0 0 0 1px #050505;
}

.gallery-picker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(0);
}

.gallery-picker span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #4c4c50;
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.product-intro {
  padding: 58px 20px 34px;
  background: #fff;
}

.product-intro h1,
.product-configurator h2,
.product-performance h2,
.included-section h2,
.product-life h2,
.product-details h2,
.checkout-heading h1,
.checkout-form-section h2,
.checkout-success h1 {
  margin: 0;
  font-size: clamp(39px, 10.7vw, 52px);
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.99;
  text-wrap: balance;
}

.product-lede {
  max-width: 390px;
  margin: 20px 0 0;
  color: #515155;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #626266;
  font-size: 11px;
}

.product-rating span:first-child {
  color: #050505;
  font-weight: 700;
}

.product-rating i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aaa;
}

.product-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.product-price div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-price small {
  color: #77777a;
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-price strong {
  font-size: 33px;
  font-weight: 580;
  letter-spacing: -0.055em;
}

.product-price > span {
  max-width: 120px;
  color: #6d6d71;
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.shipping-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f5f6f4;
  color: #4a4a4e;
}

.shipping-note svg {
  width: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.shipping-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #55555a;
}

.shipping-note p strong {
  color: #141412;
  font-weight: 650;
}

.product-configurator {
  padding: 78px 20px 84px;
  background: var(--pearl);
}

.config-heading,
.checkout-section-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
}

.config-heading > span,
.checkout-section-heading > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  color: #77777a;
  font-size: 9px;
  font-weight: 690;
  letter-spacing: 0.08em;
}

.product-configurator h2,
.checkout-form-section h2 {
  font-size: clamp(33px, 9vw, 43px);
}

.commerce-space-picker {
  display: grid;
  gap: 9px;
  margin-top: 30px;
}

.commerce-space-picker button {
  position: relative;
  display: flex;
  min-height: 84px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 58px 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  text-align: left;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.25s var(--ease);
}

.commerce-space-picker button:active {
  transform: scale(0.985);
}

.commerce-space-picker button.is-selected {
  border-color: #050505;
  background: #050505;
  color: #fff;
}

.commerce-space-picker button > span {
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.commerce-space-picker button small {
  margin-top: 4px;
  color: #747478;
  font-size: 11px;
}

.commerce-space-picker button.is-selected small {
  color: rgba(255, 255, 255, 0.65);
}

.commerce-space-picker button i {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.commerce-space-picker button.is-selected i {
  border-color: #fff;
  box-shadow: inset 0 0 0 5px #050505;
  background: #fff;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quantity-row > div:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.quantity-row strong {
  font-size: 14px;
  font-weight: 630;
}

.quantity-row span {
  color: #77777a;
  font-size: 10px;
}

.quantity-control {
  display: grid;
  min-width: 124px;
  grid-template-columns: 40px 42px 40px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
}

.quantity-control button {
  display: grid;
  height: 46px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 21px;
  font-weight: 350;
}

.quantity-control button:disabled {
  color: #c8c8c8;
}

.quantity-control output {
  font-size: 14px;
  font-weight: 660;
  text-align: center;
}

.configuration-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
}

.configuration-note svg {
  width: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.configuration-note p {
  margin: 2px 0 0;
  color: #656569;
  font-size: 11px;
  line-height: 1.45;
}

.product-demo {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #080808;
  isolation: isolate;
}

.product-demo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-performance {
  position: relative;
  min-height: 730px;
  padding: 82px 20px 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 42%, #303030, transparent 42%),
    #080808;
  color: #fff;
}

.product-performance .commerce-eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.product-performance h2 {
  position: relative;
  z-index: 3;
  max-width: 420px;
}

.product-performance > img {
  width: calc(100% + 80px);
  max-width: none;
  height: 375px;
  margin: 8px -40px -15px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  filter: grayscale(1) invert(0.88) brightness(1.2) contrast(0.8);
  opacity: 0.73;
  transform: scale(0.94);
  transition: transform 1.4s var(--ease);
}

.product-performance.is-visible > img {
  transform: scale(1.02);
}

.performance-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.performance-grid div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  padding: 18px 10px 4px 0;
}

.performance-grid div + div {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.performance-grid strong {
  font-size: clamp(16px, 4.3vw, 21px);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.performance-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  line-height: 1.3;
}

.included-section {
  padding: 86px 20px;
  background: #fff;
}

.included-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.included-list article {
  display: grid;
  min-height: 100px;
  grid-template-columns: 40px 1fr;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.included-list article > span {
  color: #929295;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.included-list article div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.included-list strong {
  font-size: 16px;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.included-list p {
  margin: 0;
  color: #747478;
  font-size: 11px;
}

.product-life {
  position: relative;
  min-height: 775px;
  overflow: hidden;
  background: #ddd;
}

.product-life > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) brightness(0.98);
  transform: scale(1.06);
  transition: transform 1.8s var(--ease);
}

.product-life.is-visible > img {
  transform: scale(1);
}

.product-life-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 48%),
    linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 36%);
}

.product-life-copy {
  position: relative;
  z-index: 2;
  padding: 68px 20px;
  color: #fff;
}

.product-life-copy .commerce-eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.product-life-copy p:last-child {
  max-width: 330px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.product-details {
  padding: 84px 20px 46px;
  background: #fff;
}

.product-detail-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.product-detail-list article {
  border-bottom: 1px solid var(--line);
}

.product-detail-list article > button {
  display: grid;
  width: 100%;
  min-height: 74px;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 580;
  letter-spacing: -0.02em;
  text-align: left;
}

.product-detail-list article > button i {
  position: relative;
  width: 22px;
  height: 22px;
}

.product-detail-list article > button i::before,
.product-detail-list article > button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  border-radius: 2px;
  background: #050505;
  content: "";
  transform: translate(-50%, -50%);
}

.product-detail-list article > button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.25s ease;
}

.product-detail-list article.is-open > button i::after {
  opacity: 0;
}

.product-detail-list article > div {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.5s var(--ease),
    opacity 0.25s ease;
}

.product-detail-list article > div p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #68686c;
  font-size: 13px;
  line-height: 1.55;
}

.product-detail-list article.is-open > div {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
  opacity: 1;
}

.product-buy-bar,
.checkout-pay-bar {
  position: fixed;
  z-index: 80;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(100%, var(--page-width));
  grid-template-columns: minmax(88px, auto) minmax(210px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.06);
  transform: translateX(-50%);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.product-buy-bar > div,
.checkout-pay-bar > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.product-buy-bar small,
.checkout-pay-bar small {
  overflow: hidden;
  color: #77777a;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-buy-bar strong,
.checkout-pay-bar strong {
  font-size: 21px;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.product-buy-bar .commerce-black-button,
.checkout-pay-bar .commerce-black-button {
  width: 100%;
}

/* product buy bar: total + compact button on top, trust line beneath */
.product-buy-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 11px;
}

.product-buy-bar > .pbb-main {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pbb-main > .pbb-total {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.product-buy-bar .commerce-black-button {
  width: auto;
  min-width: 0;
  flex: 1;
  min-height: 52px;
  padding: 0 12px; /* 8px slimmer overall — leaves more room for the payment icons */
}

.pbb-main > .pbb-pay-icons {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.pbb-pay-icons svg {
  display: block;
  height: 20px;
  width: auto;
  border-radius: 4px;
}

.product-buy-bar > .pbb-trust {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #55555a;
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.pbb-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.pbb-trust svg {
  width: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pbb-trust i {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #c7c7c3;
}

/* Checkout */

.checkout-page {
  padding-bottom: 112px;
}

.checkout-main {
  background: var(--pearl);
}

.checkout-heading {
  padding: 60px 20px 34px;
  background: #fff;
}

.checkout-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
}

/* checkout titles run ~3px smaller than the shared commerce headings */
.checkout-heading h1 {
  font-size: clamp(36px, 9.9vw, 49px);
}

.checkout-form-section h2 {
  font-size: clamp(30px, 8.2vw, 40px);
}

.checkout-progress span {
  color: #a1a1a4;
  font-size: 9px;
  font-weight: 670;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-progress span.is-active {
  color: #050505;
}

.checkout-progress i {
  height: 1px;
  background: #d7d7d7;
}

.checkout-progress i:first-of-type {
  background: #050505;
}

.checkout-summary {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.checkout-summary > button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 66px;
  grid-template-columns: 1fr auto 20px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.checkout-summary > button span {
  font-size: 13px;
  font-weight: 610;
}

.checkout-summary > button strong {
  font-size: 14px;
  font-weight: 670;
}

.checkout-summary > button i {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #050505;
  border-bottom: 1.5px solid #050505;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.35s var(--ease);
}

.checkout-summary > button[aria-expanded="true"] i {
  transform: translateY(2px) rotate(225deg);
}

.checkout-summary > div {
  display: grid;
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.65s var(--ease),
    opacity 0.3s ease,
    padding 0.45s var(--ease);
}

.checkout-summary > div.is-open {
  max-height: 410px;
  padding-top: 7px;
  padding-bottom: 22px;
  opacity: 1;
}

.checkout-product-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 12px;
}

.checkout-product-row > img {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(0);
  background: var(--pearl);
}

.checkout-product-row > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.checkout-product-row > div strong {
  font-size: 13px;
  font-weight: 650;
}

.checkout-product-row > div span,
.checkout-product-row > div small {
  color: #77777a;
  font-size: 9.5px;
  line-height: 1.3;
}

.checkout-product-row > strong {
  align-self: start;
  margin-top: 6px;
  font-size: 12px;
}

.checkout-totals {
  display: grid;
  gap: 10px;
  margin: 19px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.checkout-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #6d6d71;
  font-size: 10.5px;
}

.checkout-totals dt,
.checkout-totals dd {
  margin: 0;
}

.checkout-totals div:last-child {
  margin-top: 3px;
  color: #050505;
  font-size: 13px;
  font-weight: 680;
}

.checkout-form-section {
  margin-top: 10px;
  padding: 64px 20px 34px;
  background: #fff;
}

.checkout-form-section + .checkout-form-section {
  margin-top: 10px;
}

.checkout-field-grid {
  display: grid;
  gap: 10px;
  margin-top: 29px;
}

.checkout-field {
  position: relative;
  display: block;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  min-height: 61px;
  padding: 21px 15px 7px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  outline: none;
  background: #fafaf9;
  color: #050505;
  font: inherit;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.checkout-field textarea {
  min-height: 92px;
  resize: vertical;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: #050505;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.055);
}

.checkout-field > span {
  position: absolute;
  top: 21px;
  left: 15px;
  color: #77777a;
  font-size: 13px;
  pointer-events: none;
  transform-origin: left top;
  transition:
    transform 0.22s var(--ease),
    color 0.22s ease;
}

.checkout-field input:focus + span,
.checkout-field input:not(:placeholder-shown) + span,
.checkout-field textarea:focus + span,
.checkout-field textarea:not(:placeholder-shown) + span {
  color: #656569;
  transform: translateY(-11px) scale(0.77);
}

.checkout-field-pair {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9px;
}

.installation-picker {
  display: grid;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}

.installation-picker legend {
  margin-bottom: 11px;
  font-size: 12px;
  font-weight: 650;
}

.installation-picker label {
  position: relative;
  display: grid;
  min-height: 78px;
  grid-template-columns: 1fr 21px;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: #fafaf9;
  cursor: pointer;
}

.installation-picker label.is-selected {
  border-color: #050505;
  background: #fff;
  box-shadow: inset 0 0 0 1px #050505;
}

.installation-picker input,
.payment-methods input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.installation-picker label > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.installation-picker strong {
  font-size: 13px;
  font-weight: 640;
}

.installation-picker small {
  color: #77777a;
  font-size: 10px;
  line-height: 1.35;
}

.installation-picker label > i {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
}

.installation-picker label.is-selected > i {
  border-color: #050505;
  box-shadow: inset 0 0 0 5px #fff;
  background: #050505;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 28px;
}

.payment-methods label {
  position: relative;
  display: grid;
  min-height: 60px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 17px;
  background: #fafaf9;
  cursor: pointer;
  font-size: 14px;
  font-weight: 660;
}

.payment-methods label.is-selected {
  border-color: #050505;
  background: #050505;
  color: #fff;
}

.apple-pay-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 13px;
  padding: 16px;
  border-radius: 16px;
  background: var(--pearl);
}

.apple-pay-note svg,
.checkout-trust svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.apple-pay-note p,
.checkout-trust p {
  margin: 0;
  color: #656569;
  font-size: 10.5px;
  line-height: 1.45;
}

.checkout-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  cursor: pointer;
}

.checkout-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkout-consent > i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  background: #fff;
}

.checkout-consent > i svg {
  width: 15px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0;
}

.checkout-consent input:checked + i {
  border-color: #050505;
  background: #050505;
}

.checkout-consent input:checked + i svg {
  opacity: 1;
}

.checkout-consent > span {
  color: #5f5f63;
  font-size: 10.5px;
  line-height: 1.5;
}

.checkout-payment-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  padding: 15px 14px;
  border-radius: 16px;
  background: var(--pearl);
}

.checkout-payment-badges .cpb-eyebrow {
  color: #77777a;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-payment-badges .cpb-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.checkout-payment-badges .cpb-icons svg {
  display: block;
  height: 23px;
  width: auto;
  border-radius: 5px;
}

/* Embedded Stripe payment — Express Checkout (wallets) + Payment Element */
#expressWrap {
  margin-top: 22px;
}

#expressCheckout {
  min-height: 50px;
}

.express-terms {
  margin: 10px 2px 0;
  color: #9a9a9e;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

#paymentElement {
  margin-top: 18px;
}

#paymentElement:empty {
  margin-top: 0;
}

.checkout-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px 16px;
  margin: 0 20px;
  padding: 22px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #55555a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.checkout-trust-badges i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c7c7c3;
  flex: 0 0 auto;
}

.checkout-trust {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px 20px 40px;
}

.checkout-pay-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pay-bar-total {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 2px;
  padding-right: 2px;
}

#walletButton {
  min-width: 0;
  flex: 1;
}

.pay-card-btn {
  display: flex;
  width: 62px;
  height: 54px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1.5px solid #050505;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

.pay-card-btn:active {
  transform: scale(0.95);
}

.pay-card-btn svg {
  width: 21px;
  fill: none;
  stroke: #050505;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pay-card-btn span {
  color: #050505;
  font-size: 8.5px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pay-sheet-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
}

.pay-sheet-brands svg {
  display: block;
  height: 19px;
  width: auto;
  border-radius: 4px;
}

.pay-sheet-brands span {
  margin-left: 4px;
  color: #9a9a9e;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.checkout-agree {
  margin: 18px 20px 0;
  color: #9a9a9e;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.checkout-agree a {
  color: inherit;
  text-decoration: underline;
}

.wallet-hint {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--pearl);
}

.wallet-hint svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.wallet-hint p {
  margin: 0;
  color: #656569;
  font-size: 11px;
  line-height: 1.5;
}

/* ---- card payment sheet (bottom sheet on mobile, modal on desktop) ---- */
.pay-sheet-backdrop {
  position: fixed;
  z-index: 120;
  inset: 0;
  background: rgba(8, 8, 8, 0.44);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.pay-sheet-backdrop.is-open {
  opacity: 1;
}

.pay-sheet {
  position: fixed;
  z-index: 121;
  bottom: 0;
  left: 50%;
  width: min(100%, 480px);
  padding: 10px 20px calc(26px + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  background: #fff;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, 104%);
  transition: transform 0.42s var(--ease);
}

.pay-sheet.is-open {
  transform: translate(-50%, 0);
}

.pay-sheet-handle {
  width: 40px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 2px;
  background: #d9d9d6;
}

.pay-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pay-sheet-head strong {
  font-size: 16px;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.pay-sheet-close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fafaf9;
  cursor: pointer;
}

.pay-sheet-close svg {
  width: 15px;
  fill: none;
  stroke: #050505;
  stroke-linecap: round;
  stroke-width: 2;
}

.pay-sheet-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 14px;
  padding: 12px 15px;
  border-radius: 14px;
  background: var(--pearl);
}

.pay-sheet-summary span {
  color: #77777a;
  font-size: 10.5px;
}

.pay-sheet-summary strong {
  font-size: 18px;
  font-weight: 660;
  letter-spacing: -0.03em;
}

.pay-sheet #paymentElement {
  min-height: 90px;
  margin-top: 16px;
}

.pay-sheet-pay {
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
}

/* buy-now sheet (product page) — same shell, scrollable, with trust chips */
.buy-sheet {
  max-height: min(88dvh, 740px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.buy-sheet .sheet-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: #55555a;
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.sheet-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.sheet-trust svg {
  width: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sheet-trust i {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #c7c7c3;
}

.buy-sheet #sheetExpress {
  margin-top: 16px;
}

.buy-sheet #sheetForm .checkout-field-grid {
  margin-top: 14px;
}

.buy-sheet #addressElement {
  margin-top: 10px;
}

.buy-sheet #paymentElement {
  min-height: 90px;
  margin-top: 10px;
}

.pay-sheet-alt {
  margin: 14px 2px 0;
  font-size: 10.5px;
  text-align: center;
}

.pay-sheet-alt a {
  color: #77777a;
  text-decoration: underline;
}

.pay-sheet-micro {
  margin: 12px 2px 0;
  color: #9a9a9e;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

#sheetNotice p {
  margin: 10px 0 0;
  color: #b03030;
  font-size: 11px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .pay-sheet {
    bottom: auto;
    top: 50%;
    border-radius: 26px;
    padding-bottom: 26px;
    transform: translate(-50%, -46%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s var(--ease);
  }

  .pay-sheet.is-open {
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: auto;
  }

  .pay-sheet-handle {
    display: none;
  }
}

.checkout-pay-bar .commerce-black-button {
  min-height: 54px;
  flex: 1;
  width: auto;
  min-width: 0;
  padding: 0 17px;
  font-size: 13px;
}

.checkout-pay-bar .pay-bar-total small {
  font-size: 9px;
}

.checkout-pay-bar .pay-bar-total strong {
  font-size: 18px;
}

.checkout-success-page {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 50% 24%, #fff 0 15%, transparent 43%),
    var(--pearl);
}

.checkout-success {
  min-height: calc(100svh - 68px);
  padding: 64px 20px 78px;
  text-align: center;
}

.success-orbit {
  position: relative;
  width: 126px;
  height: 126px;
  margin: 0 auto 35px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 50%;
}

.success-orbit::before,
.success-orbit::after {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  content: "";
}

.success-orbit::before {
  inset: -12px;
}

.success-orbit::after {
  inset: 12px;
}

.success-orbit > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  color: #fff;
  transform: translate(-50%, -50%);
}

.success-orbit > div svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  animation: successCheck 0.7s var(--ease) both;
}

.success-orbit > span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #050505;
  animation: orbitDot 2.4s ease-in-out infinite;
}

.success-orbit > span:nth-child(1) {
  top: 8px;
  left: 29px;
}

.success-orbit > span:nth-child(2) {
  top: 55px;
  right: -4px;
  animation-delay: -0.8s;
}

.success-orbit > span:nth-child(3) {
  bottom: 4px;
  left: 35px;
  animation-delay: -1.6s;
}

@keyframes orbitDot {
  50% {
    opacity: 0.28;
    transform: scale(0.65);
  }
}

@keyframes successCheck {
  from {
    opacity: 0;
    transform: scale(0.45);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.checkout-success > .commerce-eyebrow {
  text-align: center;
}

.checkout-success h1 {
  max-width: 430px;
  margin: 0 auto;
}

.success-copy {
  max-width: 365px;
  margin: 20px auto 0;
  color: #5e5e62;
  font-size: 14px;
  line-height: 1.55;
}

.success-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 35px;
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.05);
  text-align: left;
  backdrop-filter: blur(14px);
}

.success-order > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.success-order img {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  object-fit: cover;
  mix-blend-mode: multiply;
  background: var(--pearl);
}

.success-order > div > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.success-order strong {
  font-size: 12px;
  font-weight: 680;
}

.success-order span {
  color: #77777a;
  font-size: 9.5px;
}

.success-timeline {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.success-timeline article {
  display: grid;
  min-height: 90px;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
}

.success-timeline article > span {
  color: #939397;
  font-size: 9px;
  font-weight: 680;
}

.success-timeline article div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.success-timeline strong {
  font-size: 13px;
  font-weight: 650;
}

.success-timeline p {
  margin: 0;
  color: #77777a;
  font-size: 10.5px;
}

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

@media (max-width: 360px) {
  .commerce-header {
    height: 64px;
    grid-template-columns: 66px 1fr 66px;
  }

  .product-gallery-stage {
    height: 430px;
  }

  .product-intro,
  .product-configurator,
  .included-section,
  .product-details,
  .checkout-heading,
  .checkout-form-section,
  .checkout-success {
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-price > span {
    max-width: none;
    text-align: left;
  }

  .product-performance {
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-buy-bar,
  .checkout-pay-bar {
    grid-template-columns: 84px 1fr;
    gap: 8px;
    padding-right: 8px;
    padding-left: 10px;
  }

  .checkout-pay-bar .commerce-black-button {
    font-size: 12px;
  }

  .checkout-summary > button,
  .checkout-summary > div,
  .checkout-trust {
    padding-right: 16px;
    padding-left: 16px;
  }

  .checkout-trust-badges {
    margin-right: 16px;
    margin-left: 16px;
  }
}

@media (min-width: 481px) {
  .commerce-frame {
    margin-top: 16px;
    margin-bottom: 16px;
    border-radius: 28px;
  }

  .commerce-header {
    top: 16px;
    border-radius: 28px 28px 0 0;
  }
}

@media (hover: hover) {
  .commerce-black-button:hover {
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-commerce-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   UNSEEN — premium letter motion
   (entrance blur-in → endless gentle float + light sheen,
   composed with the existing scroll-driven parallax)
   ============================================================ */
@property --floaty {
  syntax: "<length>";
  initial-value: 0px;
  inherits: false;
}

.hero-word span {
  transform: translateY(
      calc(var(--floaty, 0px) + var(--hero-progress, 0) * (22px + var(--letter) * 5px))
    )
    scale(calc(1 + var(--hero-progress, 0) * 0.17));
  background: linear-gradient(
    112deg,
    #d9d9d9 32%,
    #fbfbfb 46%,
    #ffffff 50%,
    #fbfbfb 54%,
    #d9d9d9 68%
  );
  background-size: 320% 100%;
  background-position: calc(120% + var(--letter) * 4%) 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    heroLetterIn 0.9s var(--ease) calc(0.12s + var(--letter) * 0.07s) backwards,
    heroFloat 5.8s ease-in-out calc(var(--letter) * -0.72s) infinite,
    heroSheen 7.5s var(--ease) calc(1.4s + var(--letter) * 0.05s) infinite;
}

@keyframes heroLetterIn {
  from {
    opacity: 0;
    filter: blur(14px);
    letter-spacing: 0.04em;
  }
  to {
    opacity: 1;
    filter: blur(0);
    letter-spacing: inherit;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    --floaty: 0px;
  }
  50% {
    --floaty: -7px;
  }
}

@keyframes heroSheen {
  0%,
  55% {
    background-position: calc(120% + var(--letter) * 4%) 0;
  }
  85%,
  100% {
    background-position: calc(-40% + var(--letter) * 4%) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-word span {
    animation: none;
    background: none;
    color: #dedede;
  }
}

/* ============================================================
   iOS fix — inputs under 16px trigger a sticky auto-zoom on
   focus in mobile Safari. 16px prevents the zoom entirely.
   ============================================================ */
.checkout-field input,
.checkout-field textarea {
  font-size: 16px;
}
.checkout-field > span {
  font-size: 14px;
}

/* ============================================================
   Hero refinements:
   1) UNSEEN — slow endless side-drift, layered BEHIND the device
   2) Slightly smaller, higher hero copy
   ============================================================ */
.hero-word {
  z-index: 1;                    /* behind the product image */
  left: 0;
  width: 100%;
  justify-content: flex-start;
  transform: none;
  overflow: visible;
  opacity: calc(1 - var(--hero-progress, 0) * 0.85);
  filter: blur(calc(var(--hero-progress, 0) * 3px));
}

.hero-media {
  z-index: 2;                    /* device floats above the word */
}

.word-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: wordDrift 44s linear infinite;
}

/* reset every effect from the previous letter treatment */
.hero-word span {
  display: inline-block;
  padding-right: 0.38em;
  transform: none;
  opacity: 1;
  filter: none;
  background: none;
  color: inherit;
  animation: none;
}

@keyframes wordDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* content is duplicated → seamless loop */
}

@media (prefers-reduced-motion: reduce) {
  .word-track { animation: none; }
}

/* smaller + higher hero copy */
.hero h1 {
  font-size: clamp(31px, 8.4vw, 42px);
}
.hero-description {
  margin: 14px 0 22px;
  font-size: 15px;
}
.hero-copy {
  bottom: 132px;
}

/* ============================================================
   Round 2 refinements
   ============================================================ */

/* scroll cue visible on the first screen */
.hero {
  min-height: max(640px, calc(100svh - 68px));
}
.scroll-cue {
  bottom: 18px;
}
.hero-copy {
  bottom: 118px;
}

/* footer: links styled exactly like the buttons, allow wrapping */
.footer-links {
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #4e4e50;
  font: inherit;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}
.footer-links a:hover,
.footer-links button:hover {
  color: #050505;
}

/* Google express-fill on checkout */
#gAuthRow {
  margin: 26px 0 0;
}
#gAuthRow + .checkout-field-grid {
  margin-top: 18px;
}
.google-signin {
  display: flex;
  width: 100%;
  align-items: center;
  text-align: left;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 8, 8, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.google-signin:hover {
  border-color: #050505;
  box-shadow: 0 12px 28px rgba(8, 8, 8, 0.09);
}
.google-signin:active {
  transform: scale(0.985);
}
.gs-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #f6f6f5;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.gs-text {
  flex: 1;
  display: grid;
  gap: 2px;
  min-width: 0;
}
.gs-text strong {
  font-size: 14px;
  font-weight: 620;
  letter-spacing: -0.01em;
  color: #050505;
}
.gs-text small {
  color: #77777a;
  font-size: 12px;
}
.gs-arr {
  flex: 0 0 auto;
  color: #a9a9ad;
  font-size: 16px;
  transition: transform 0.2s var(--ease), color 0.2s ease;
}
.google-signin:hover .gs-arr {
  transform: translateX(3px);
  color: #050505;
}
.express-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 2px 0;
  color: #9a9a9e;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 560;
  white-space: nowrap;
}
.express-divider i {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.09);
}
.signed-in-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 16px;
  background: #f0f7f1;
  border: 1px solid rgba(47, 158, 99, 0.25);
}
.signed-in-note .sin-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f9e63;
  box-shadow: 0 0 0 4px rgba(47, 158, 99, 0.14);
}
.signed-in-note div {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.signed-in-note strong {
  color: #1d5c3b;
  font-size: 13px;
  font-weight: 620;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.signed-in-note small {
  color: #4b7a5f;
  font-size: 12px;
}

/* country dropdown — native select styled like the other fields */
.checkout-select select {
  width: 100%;
  min-height: 61px;
  padding: 21px 44px 7px 15px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  outline: none;
  background: #fafaf9;
  color: #050505;
  font: inherit;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.checkout-select select:focus {
  border-color: #050505;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.055);
}
.checkout-select > span {
  /* a select always has a value — keep the label floated */
  color: #656569;
  transform: translateY(-11px) scale(0.77);
}
.select-chevron {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #77777a;
  pointer-events: none;
}
.select-chevron svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* phone prefix + number */
.phone-pair {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 9px;
}
.phone-code .pc-box {
  display: block;
  min-height: 61px;
  padding: 27px 26px 7px 15px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  background: #fafaf9;
  color: #050505;
  font-size: 16px;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.phone-code select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0;
  font-size: 16px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.phone-code > span {
  color: #656569;
  transform: translateY(-11px) scale(0.77);
}
.phone-code:focus-within .pc-box {
  border-color: #050505;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.055);
}
.phone-code .select-chevron {
  width: 15px;
  height: 15px;
  right: 11px;
}

/* legal pages */
.legal-main {
  padding: 34px 20px 80px;
}
.legal-main h1 {
  margin: 6px 0 6px;
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.legal-updated {
  color: #77777a;
  font-size: 12px;
  margin-bottom: 26px;
}
.legal-main h2 {
  margin: 30px 0 8px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.legal-main p,
.legal-main li {
  color: #4e4e51;
  font-size: 14px;
  line-height: 1.75;
}
.legal-main ul {
  margin: 8px 0;
  padding-left: 20px;
}

/* ============================================================
   NEW HERO — "the break-in that goes nowhere"
   A cinematic auto-playing sequence:
   room + intruder → fog floods the frame → message lands.
   ============================================================ */
.hero.nh {
  display: block;
  background: #0c0c0d;
}

.nh-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.nh-room,
.nh-fogimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nh-room {
  animation: nhPush 7s var(--ease) both;
}

@keyframes nhPush {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

.nh-fogimg {
  opacity: 0;
  animation: nhFogIn 2.4s ease 1.7s forwards;
}

@keyframes nhFogIn {
  to { opacity: 1; }
}

/* rolling fog banks */
.nh-bank {
  position: absolute;
  inset: -20% -40%;
  background: url("../assets/fog-texture.jpeg") center/cover;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
}
.nh-bank-a {
  animation:
    nhBankIn 2s ease 1.5s forwards,
    nhDriftA 26s ease-in-out 1.5s infinite alternate;
}
.nh-bank-b {
  animation:
    nhBankIn 2.6s ease 2s forwards,
    nhDriftB 32s ease-in-out 2s infinite alternate;
}
@keyframes nhBankIn { to { opacity: 0.55; } }
@keyframes nhDriftA { from { transform: translateX(-6%) scale(1); } to { transform: translateX(6%) scale(1.12); } }
@keyframes nhDriftB { from { transform: translateX(5%) scale(1.1); } to { transform: translateX(-5%) scale(1); } }

/* white wash that makes the copy land */
.nh-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.55) 44%,
    rgba(255, 255, 255, 0.94) 78%,
    #ffffff 100%
  );
  opacity: 0;
  animation: nhFogIn 2s ease 2.3s forwards;
}

.nh-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 30%);
  animation: nhVanish 1.4s ease 2.6s forwards;
}
@keyframes nhVanish { to { opacity: 0; } }

/* status pills */
.nh-status {
  position: absolute;
  z-index: 6;
  top: 16px;
  left: 16px;
}
.nh-pill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nh-pill i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: currentColor;
}
.nh-alert {
  background: rgba(12, 12, 13, 0.82);
  color: #ff5a49;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: nhAlertOut 0.5s ease 3.1s forwards;
}
.nh-alert i { animation: nhBlink 0.9s step-end infinite; }
@keyframes nhBlink { 50% { opacity: 0.2; } }
@keyframes nhAlertOut { to { opacity: 0; visibility: hidden; } }
.nh-safe {
  background: rgba(255, 255, 255, 0.92);
  color: #1d7a48;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  animation: nhRise 0.6s var(--ease) 3.3s forwards;
}

/* copy */
.nh-copy {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 112px;
  left: 20px;
}
.nh-eyebrow {
  opacity: 0;
  animation: nhRise 0.7s var(--ease) 0.35s forwards;
}
.nh-h1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(30px, 8.2vw, 41px);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 1.04;
}
.nh-h1 span {
  opacity: 0;
  transform: translateY(14px);
}
.nh-l1 { animation: nhRise 0.8s var(--ease) 0.55s forwards; }
.nh-l2 { animation: nhRise 0.8s var(--ease) 2.35s forwards; color: #6f6f73; }
.nh-l3 { animation: nhRise 0.8s var(--ease) 3.25s forwards; }
.nh-sub {
  max-width: 340px;
  margin: 14px 0 20px;
  color: #4e4e51;
  font-size: 15px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(12px);
  animation: nhRise 0.7s var(--ease) 3.8s forwards;
}
.nh-cta {
  opacity: 0;
  transform: translateY(12px);
  animation: nhRise 0.7s var(--ease) 4s forwards;
}
.nh-trust {
  opacity: 0;
  animation: nhRise 0.7s var(--ease) 4.2s forwards;
}
.nh-cue {
  opacity: 0;
  animation: nhRise 0.8s var(--ease) 4.5s forwards;
}

@keyframes nhRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.nh *,
  .hero.nh {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
  }
}

/* ============================================================
   BLACK HERO — Apple-style monolith
   Pure black stage · levitating product in a spotlight ·
   giant type with a metallic shimmer · living fog.
   ============================================================ */
.hero.bh {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: max(660px, calc(100svh - 68px));
  padding: 34px 20px 0;
  background: #000;
  color: #f5f5f7;
  text-align: center;
}

.bh-spot {
  position: absolute;
  inset: -10% -30% auto;
  height: 68%;
  background: radial-gradient(52% 46% at 50% 30%, rgba(255, 255, 255, 0.17), transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: bhIn 1.6s ease 0.15s forwards;
}

.bh-eyebrow {
  margin: 0 0 14px;
  color: #86868b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  animation: bhRise 0.8s var(--ease) 0.2s forwards;
}

.bh-h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: clamp(36px, 10vw, 50px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.bh-line {
  opacity: 0;
  transform: translateY(22px);
}
.bh-line1 {
  animation: bhRise 0.9s var(--ease) 0.4s forwards;
}
.bh-line2 {
  background: linear-gradient(
    100deg,
    #7d7d82 20%,
    #f5f5f7 38%,
    #ffffff 50%,
    #f5f5f7 62%,
    #7d7d82 80%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    bhRise 0.9s var(--ease) 0.62s forwards,
    bhShimmer 5.5s var(--ease) 2s infinite;
}

@keyframes bhShimmer {
  0%, 42% { background-position: 120% 0; }
  70%, 100% { background-position: -60% 0; }
}

/* stage */
.bh-stage {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 300px;
  max-height: 44vh;
  margin-top: 8px;
  transform: translateY(calc(var(--hero-progress, 0) * -46px));
}

.bh-device {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 430px);
  transform: translate(-50%, -50%);
  filter: brightness(1.07) contrast(1.02)
    drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 46px rgba(255, 255, 255, 0.16));
  opacity: 0;
  animation:
    bhDeviceIn 1.3s var(--ease) 0.55s forwards,
    bhLevitate 5.5s ease-in-out 1.85s infinite alternate;
}

@keyframes bhDeviceIn {
  from {
    opacity: 0;
    transform: translate(-50%, -38%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes bhLevitate {
  from { transform: translate(-50%, -50%); }
  to   { transform: translate(-50%, calc(-50% - 14px)); }
}

.bh-glow {
  position: absolute;
  top: 58%;
  left: 50%;
  width: 78%;
  height: 44%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(214, 226, 240, 0.3), transparent 70%);
  filter: blur(10px);
  opacity: 0;
  animation:
    bhIn 1.6s ease 0.8s forwards,
    bhBreath 5.5s ease-in-out 2s infinite alternate;
}

@keyframes bhBreath {
  from { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.bh-fog {
  position: absolute;
  inset: 10% -30%;
  background: url("../assets/fog-texture.jpeg") center/cover;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(58% 52% at 50% 55%, #000 22%, transparent 72%);
  mask-image: radial-gradient(58% 52% at 50% 55%, #000 22%, transparent 72%);
}
.bh-fog-a {
  animation:
    bhFogIn 2s ease 1s forwards,
    nhDriftA 30s ease-in-out 1s infinite alternate;
}
.bh-fog-b {
  inset: 30% -40% 0;
  animation:
    bhFogInB 2.4s ease 1.3s forwards,
    nhDriftB 36s ease-in-out 1.3s infinite alternate;
}
@keyframes bhFogIn { to { opacity: 0.2; } }
@keyframes bhFogInB { to { opacity: 0.13; } }

/* copy under the stage */
.bh-sub {
  margin: 6px 0 18px;
  color: #a1a1a6;
  font-size: 15px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: bhRise 0.8s var(--ease) 1s forwards;
}

.bh-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border: 0;
  border-radius: 99px;
  background: #fff;
  color: #050505;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 10px 44px rgba(255, 255, 255, 0.22);
  opacity: 0;
  animation: bhRise 0.8s var(--ease) 1.15s forwards;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.bh-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 54px rgba(255, 255, 255, 0.3);
}
.bh-cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bh-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 54px;
  color: #86868b;
  font-size: 12px;
  opacity: 0;
  animation: bhRise 0.8s var(--ease) 1.3s forwards;
}
.bh-trust i {
  width: 3px;
  height: 3px;
  border-radius: 99px;
  background: #48484c;
}

/* "As seen on" press bar — small, monochrome white wordmarks, no logo art */
.bh-press {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bh-press-label {
  color: #7b7b81;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bh-press-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bh-press-logo {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.9;
}
.bh-press-techradar {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.bh-press-wired {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 12px;
}
.bh-press-medium {
  font-family: Georgia, "Playfair Display", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: 13.5px;
}

.bh-cue {
  color: #86868b;
  opacity: 0;
  transform: translateX(-50%) translateY(22px);
  animation: bhCueRise 0.9s var(--ease) 1.6s forwards;
}
@keyframes bhCueRise {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.bh-cue span {
  border-color: #55555a;
}
.bh-cue span::after {
  background: #a1a1a6;
}

@keyframes bhIn { to { opacity: 1; } }
@keyframes bhRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.bh * {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
  }
}

/* hero video — framed like a screen, floating in the spotlight */
.bh-videoframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(94%, 440px);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation:
    bhDeviceIn 1.3s var(--ease) 0.55s forwards,
    bhLevitate 5.5s ease-in-out 1.85s infinite alternate;
}
.bh-videoframe video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* longer headline — scale down a step so it lands in two clean lines */
.bh-h1 {
  font-size: clamp(27px, 7.4vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

/* ============================================================
   ACTIVATION DEMO — live security monitor
   ============================================================ */
.av-monitor {
  margin: 26px 20px 0;
  border-radius: 26px;
  overflow: hidden;
  background: #0b0b0c;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

.av-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  color: #9a9a9e;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.av-rec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff5a49;
}
.av-rec i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: currentColor;
  animation: nhBlink 1.1s step-end infinite;
}
.av-clock { color: #6a6a6e; font-variant-numeric: tabular-nums; }

.av-feed {
  position: relative;
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
}
.av-room,
.av-fogged {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-fogged {
  opacity: 0;
  transition: opacity 2.3s ease;
}
.is-active .av-fogged,
.is-complete .av-fogged {
  opacity: 1;
}
.av-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.055) 0 2px,
    transparent 2px 5px
  );
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* giant countdown over the feed */
.av-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  color: rgba(10, 10, 12, 0.85);
  font-size: 128px;
  font-weight: 700;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s var(--ease), color 0.4s;
  pointer-events: none;
}
.is-active .av-count {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
}
.is-complete .av-count {
  opacity: 0;
}

/* status chips */
.av-chip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}
.av-chip i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: currentColor;
}
.av-chip-alert {
  background: rgba(12, 12, 13, 0.8);
  color: #ff5a49;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.av-chip-safe {
  background: rgba(255, 255, 255, 0.94);
  color: #1d7a48;
  opacity: 0;
  transform: translateY(8px);
}
.is-complete .av-chip-alert { opacity: 0; }
.is-complete .av-chip-safe {
  opacity: 1;
  transform: translateY(0);
}

/* controls */
.av-controls {
  padding: 16px 16px 20px;
  text-align: center;
}
.av-btn {
  width: 100%;
  padding: 17px;
  border: 0;
  border-radius: 99px;
  background: #fff;
  color: #050505;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s, color 0.3s;
}
.av-btn:active { transform: scale(0.98); }
.is-active .av-btn {
  background: rgba(255, 255, 255, 0.14);
  color: #f5f5f7;
}
.is-complete .av-btn {
  background: #1d7a48;
  color: #fff;
}
.av-caption {
  margin: 12px 0 0;
  color: #86868b;
  font-size: 12px;
  letter-spacing: 0.01em;
}

/* header bag is a link now — keep it ink black, not link blue */
.site-header a.icon-button {
  color: var(--ink);
  text-decoration: none;
}

/* header: account + bag icons on the right */
.site-header {
  grid-template-columns: 104px 1fr 104px;
}
.header-icons {
  display: flex;
  justify-content: flex-end;
}
.header-icons-left {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.chat-hint {
  position: absolute;
  z-index: 10;
  top: 60px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 214px;
  padding: 11px 8px 11px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    0 2px 9px rgba(0, 0, 0, 0.07);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.94);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
  cursor: pointer;
}

.chat-hint.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: chatHintFloat 3.4s ease-in-out 0.7s infinite;
}

.chat-hint-tail {
  position: absolute;
  top: -5px;
  left: 42px;
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.97);
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
}

.chat-hint-text {
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 610;
  letter-spacing: -0.005em;
  line-height: 1.35;
  color: #17171a;
}

.chat-hint-x {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.045);
  color: #97968f;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.chat-hint-x:active {
  background: rgba(0, 0, 0, 0.09);
  color: #4a4a46;
}

.chat-hint-x svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
}

@keyframes chatHintFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1); }
}
.user-icon {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chat-icon {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#chatBtn {
  position: relative;
}

.chat-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 2px #fff;
  display: none;
}

.site-header.over-hero:not(.is-solid) .chat-badge {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.55);
}

.chat-badge.is-visible {
  display: block;
  animation: chatBadgePulse 1.6s ease-in-out infinite;
}

@keyframes chatBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* ---------- Tawk.to chat window: force a bottom-sheet layout on mobile ----------
   Tawk assigns a random element id per session but always tags the expanded
   chat frame with the class "open" — that class name is stable across sessions. */
@media (max-width: 640px) {
  iframe.open {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 82vh !important;
    max-height: 700px !important;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: 0 -14px 44px rgba(0, 0, 0, 0.3) !important;
  }
}

/* ============================================================
   LOGIN — one beautiful Google button
   ============================================================ */
.login-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100svh - 68px - 300px);
  padding: 64px 24px 90px;
  text-align: center;
}
.login-shield {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 24px;
  background: #0b0b0c;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}
.login-shield svg {
  width: 34px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.login-main h1 {
  margin: 10px 0 10px;
  font-size: clamp(30px, 8.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.login-copy {
  max-width: 300px;
  margin: 0 0 34px;
  color: #6c6c70;
  font-size: 14.5px;
  line-height: 1.65;
}
.login-google {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  padding: 10px 22px 10px 10px;
  border: 0;
  border-radius: 99px;
  background: #0b0b0c;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.login-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}
.login-google:active { transform: scale(0.98); }
.login-google .g-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: #fff;
  flex: 0 0 44px;
}
.login-google > span:last-child {
  flex: 1;
  text-align: center;
  padding-right: 30px;
}
.login-fine {
  margin-top: 26px;
  color: #9a9a9e;
  font-size: 11.5px;
}
.login-fine a {
  color: #4e4e50;
  text-decoration: underline;
}
#loginMsg { width: 100%; max-width: 340px; margin-top: 18px; }

/* ============================================================
   MANUAL DOWNLOAD CARD
   ============================================================ */
.manual-section { padding: 8px 20px 0; }
.manual-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s;
}
.manual-card:hover {
  transform: translateY(-2px);
  border-color: #050505;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}
.manual-card .m-ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: #0b0b0c;
}
.manual-card .m-ic svg {
  width: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.manual-card .m-tx { flex: 1; display: grid; gap: 2px; }
.manual-card .m-tx strong { font-size: 14px; letter-spacing: -0.01em; }
.manual-card .m-tx small { color: #77777a; font-size: 11.5px; }
.manual-card .m-arr {
  font-size: 18px;
  color: #050505;
  transition: transform 0.3s var(--ease);
}
.manual-card:hover .m-arr { transform: translateY(3px); }

/* ============================================================
   DESKTOP LAYER — applies only at ≥1100px.
   Mobile (<1100px) is untouched by everything below.
   ============================================================ */
@media (min-width: 1100px) {
  /* ---------- frames go full-width ---------- */
  .page-frame,
  .commerce-frame {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .site-header,
  .commerce-header {
    top: 0;
    height: 76px;
    border-radius: 0;
    padding-left: clamp(28px, 4vw, 64px);
    padding-right: clamp(28px, 4vw, 64px);
  }
  .mobile-menu {
    top: 76px;
    width: 100%;
    height: calc(100svh - 76px);
  }
  .mobile-menu-inner {
    max-width: 620px;
    margin: 0 auto;
  }

  /* ---------- HOME: hero ---------- */
  .hero.bh {
    min-height: max(740px, calc(100svh - 76px));
    padding-top: 52px;
  }
  .bh-h1 {
    font-size: clamp(42px, 4.4vw, 64px);
    letter-spacing: -0.05em;
    line-height: 1.05;
  }
  .bh-sub {
    margin-top: 12px;
    font-size: 18px;
  }
  .bh-cta {
    padding: 19px 40px;
    font-size: 16px;
  }
  .bh-stage {
    min-height: 400px;
    max-height: 54vh;
  }
  .bh-videoframe {
    width: min(90%, 760px);
    border-radius: 32px;
  }

  /* ---------- HOME: activation demo ---------- */
  .activation-section {
    padding-left: clamp(28px, 4vw, 64px);
    padding-right: clamp(28px, 4vw, 64px);
  }
  .av-monitor {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- HOME: technology ---------- */
  .technology-section {
    padding-left: clamp(28px, 4vw, 64px);
    padding-right: clamp(28px, 4vw, 64px);
  }
  .technology-heading {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-reveal {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .stat-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 44px auto 0;
    border-top: 0;
  }
  .stat-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    min-height: 0;
    padding: 38px 24px;
    border: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 26px;
    background: #fafaf9;
    text-align: center;
  }
  .section-button {
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- HOME: peace ---------- */
  .peace-section {
    min-height: 700px;
  }
  .peace-copy {
    max-width: 1080px;
    margin: 0 auto;
    padding: 96px 64px 0;
  }
  .peace-copy h2 {
    max-width: 560px;
  }

  /* ---------- HOME: places + stories rails → grids ---------- */
  .places-heading,
  .stories-heading,
  .closing-copy {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
  .places-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(28px, 4vw, 64px) 20px;
    overflow: visible;
  }
  .place-card {
    width: auto;
    min-width: 0;
    height: 560px;
  }
  .rail-hint {
    display: none;
  }
  .stories-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(28px, 4vw, 64px) 20px;
    overflow: visible;
  }
  .story-card {
    width: auto;
    min-width: 0;
  }
  .stories-button {
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- HOME: closing + faq + footer ---------- */
  .closing-section,
  .faq-section {
    padding-left: clamp(28px, 4vw, 64px);
    padding-right: clamp(28px, 4vw, 64px);
  }
  .faq-section > .eyebrow,
  .faq-section > h2 {
    text-align: center;
  }
  .faq-list {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer {
    padding: 66px 24px 90px;
    text-align: center;
  }
  .sticky-protect {
    width: auto;
    padding: 0 0 26px;
    background: none;
  }
  .sticky-protect .black-button {
    width: auto;
    padding: 18px 40px;
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(0, 0, 0, 0.3),
      inset 0 0 22px rgba(255, 255, 255, 0.06);
  }

  /* ---------- PRODUCT: two-column layout ---------- */
  .product-page main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: 64px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px clamp(28px, 4vw, 64px) 72px;
  }
  .product-page main > section {
    grid-column: 2;
    min-width: 0;
  }
  .product-page .product-gallery {
    position: sticky;
    top: 100px;
    grid-column: 1;
    grid-row: 1 / span 30;
  }
  .product-gallery-stage {
    height: 620px;
    border-radius: 30px;
  }
  .product-page .product-life {
    border-radius: 28px;
    overflow: hidden;
  }

  /* ---------- bottom bars ---------- */
  .product-buy-bar,
  .checkout-pay-bar {
    width: 100%;
    grid-template-columns: 1fr auto;
    padding: 12px clamp(28px, 4vw, 64px) 16px;
  }
  .product-buy-bar .commerce-black-button,
  .checkout-pay-bar .commerce-black-button {
    width: auto;
    min-width: 320px;
  }

  /* ---------- CHECKOUT: form left, sticky summary right ---------- */
  .checkout-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    column-gap: 56px;
    align-items: start;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 clamp(28px, 4vw, 56px) 48px;
  }
  .checkout-heading {
    grid-column: 1 / -1;
    padding: 64px 0 34px;
    background: transparent;
  }
  .checkout-summary {
    position: sticky;
    top: 96px;
    grid-column: 2;
    grid-row: 2;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 26px;
    overflow: hidden;
  }
  #checkout-form {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }
  .checkout-form-section {
    padding: 48px 40px 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 26px;
  }

  /* ---------- commerce misc pages ---------- */
  .legal-main {
    max-width: 800px;
    margin: 0 auto;
  }
  .login-main {
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ============================================================
   HERO — "Watch it" button + video modal
   ============================================================ */
.bh-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.bh-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.07);
  color: #f5f5f7;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  opacity: 0;
  animation: bhRise 0.8s var(--ease) 1.25s forwards;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease);
}
.bh-watch:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.bw-play {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #050505;
}
.bw-play svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-left: 1px;
}
@media (max-width: 480px) {
  .bh-cta-row {
    gap: 10px;
  }
  .bh-cta-row .bh-cta {
    padding: 14px 20px;
    font-size: 14px;
  }
  .bh-watch {
    padding: 11px 18px 11px 11px;
    font-size: 14px;
  }
  .bw-play {
    width: 28px;
    height: 28px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.vm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.vm-frame {
  position: relative;
  width: min(94vw, 960px);
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  box-shadow:
    0 60px 140px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(255, 255, 255, 0.08);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.4s var(--ease);
}
.video-modal.is-open .vm-frame {
  transform: none;
}
.vm-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}
.vm-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}
.vm-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.vm-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
body.vm-lock {
  overflow: hidden;
}

/* video modal — gallery rail */
.vm-rail {
  display: flex;
  gap: 10px;
  padding: 12px 14px 14px;
  background: #050505;
  overflow-x: auto;
  scrollbar-width: none;
}
.vm-rail::-webkit-scrollbar {
  display: none;
}
.vm-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 128px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  opacity: 0.5;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: opacity 0.25s ease, outline-color 0.25s ease, transform 0.25s var(--ease);
}
.vm-thumb:hover {
  opacity: 0.85;
}
.vm-thumb.is-selected {
  opacity: 1;
  outline-color: #fff;
}
.vm-thumb img {
  display: block;
  width: 100%;
  height: 66px;
  object-fit: cover;
}
.vm-thumb i {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
  pointer-events: none;
}
.vm-thumb span {
  position: absolute;
  left: 8px;
  right: 6px;
  bottom: 6px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 620;
  letter-spacing: 0.01em;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

/* ============================================================
   CINEMATIC HERO — fullscreen video background
   ============================================================ */
.hero.bh.cine {
  position: relative;
  justify-content: flex-end;
  min-height: 100svh;
  margin-top: -68px;
  padding: 0;
  overflow: hidden;
}
.bh-bgvid {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bh-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 70% at 50% 88%, rgba(0, 0, 0, 0.55) 0%, transparent 60%),
    linear-gradient(to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.55) 26%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.10) 70%,
      rgba(0, 0, 0, 0.48) 100%);
}
.hero.cine .bh-spot { display: none; }
.bh-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 112px;
  text-align: center;
}
.hero.cine .bh-sub {
  color: #d9d9de;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.hero.cine .bh-h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}
.hero.cine .bh-cta {
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.55), 0 6px 30px rgba(255, 255, 255, 0.14);
}
.hero.cine .bh-watch {
  background: rgba(20, 20, 22, 0.42);
}
.hero.cine .scroll-cue {
  z-index: 3;
}
@media (min-width: 1100px) {
  .hero.bh.cine {
    margin-top: -76px;
    min-height: 100svh;
    padding-top: 0;
  }
  .bh-content { padding-bottom: 128px; }
  .bh-bgvid { object-position: center 24%; }
}

/* header floats transparently over the cinematic hero */
.site-header {
  transition: background 0.45s ease, border-color 0.45s ease;
}
.site-header.over-hero:not(.is-solid) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.over-hero:not(.is-solid) .wordmark,
.site-header.over-hero:not(.is-solid) .icon-button,
.site-header.over-hero:not(.is-solid) a.icon-button {
  color: #fff;
}
.site-header.over-hero:not(.is-solid) .menu-glyph span {
  background: #fff;
}

/* ============================================================
   CINE HERO v2 — gentle headline at the top, CTAs lower
   ============================================================ */
.hero.bh.cine {
  justify-content: space-between;
}
.bh-top {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: calc(68px + 30px) 22px 0;
  text-align: center;
}
.hero.cine .bh-h1 {
  font-size: clamp(23px, 6vw, 30px);
  font-weight: 300;
  letter-spacing: 0.002em;
  line-height: 1.34;
  color: #f4f4f6;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.6);
}
.hero.cine .bh-line2 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #c9c9d1;
  animation: bhRise 0.9s var(--ease) 0.62s forwards;
}
.hero.cine .bh-sub {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #9a9aa1;
}
.hero.cine .bh-content {
  padding-bottom: 74px;
}
.hero.cine .scroll-cue {
  bottom: 16px;
}
@media (min-width: 1100px) {
  .bh-top {
    padding-top: calc(76px + 44px);
  }
  .hero.cine .bh-h1 {
    font-size: clamp(30px, 2.5vw, 38px);
    line-height: 1.32;
  }
  .hero.cine .bh-sub {
    font-size: 15px;
  }
  .hero.cine .bh-content {
    padding-bottom: 86px;
  }
}

/* sub-line moved under the trust row */
.hero.cine .bh-content .bh-sub {
  margin: 10px 0 0;
  font-size: 12px;
  color: #86868d;
  letter-spacing: 0.03em;
}

/* ============================================================
   FOGAWAY™ — premium wordmark
   ============================================================ */
.wordmark,
.commerce-wordmark,
.footer-wordmark {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-indent: 0.34em;
}
.footer-wordmark {
  font-size: 17px;
}
.wordmark::after,
.commerce-wordmark::after {
  content: "™";
  position: static;
  width: auto;
  height: auto;
  margin-left: 1px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: 7px;
  opacity: 0.65;
}
.footer-wordmark::after {
  content: "™";
  margin-left: 1px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: 7px;
  opacity: 0.65;
}

/* ============ live demo → cinematic film section ============ */
.film-frame {
  width: 100%;
  margin: 0;
  background: #0b0b0c;
}
.film-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.activation-section.av {
  padding: 0;
}

/* ============================================================
   HOMEPAGE REDESIGN — turbine media, impact band, dark closing
   ============================================================ */

/* --- technology: cinematic turbine card --- */
.tk-media {
  position: relative;
  width: min(calc(100% - 40px), 560px);
  margin: 36px auto 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  background: #0b0b0c;
}
.tk-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease);
}
.tk-media.is-visible img {
  transform: scale(1);
}
.tk-tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.45);
  color: #eaeaea;
  font-size: 9.5px;
  font-weight: 620;
  letter-spacing: 0.16em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* --- impact band: full-bleed fog still --- */
.impact {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 72svh;
  overflow: hidden;
  background: #0a0a0b;
}
.impact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.impact-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.32) 42%,
    rgba(0, 0, 0, 0.08) 70%);
}
.impact-copy {
  position: relative;
  z-index: 2;
  padding: 0 24px 58px;
  color: #f5f5f7;
}
.impact-copy .eyebrow {
  color: #b9b9bf;
}
.impact-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(31px, 8.4vw, 44px);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.impact-copy p {
  max-width: 430px;
  color: #cfcfd4;
  font-size: 14.5px;
  line-height: 1.65;
}

/* --- closing: dark cinematic price band --- */
.closing-section.cc-dark {
  position: relative;
  overflow: hidden;
  background: #0a0a0b;
  color: #f5f5f7;
}
.cc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.cc-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.94) 12%, rgba(5, 5, 6, 0.55) 60%, rgba(5, 5, 6, 0.8) 100%);
}
.cc-dark .closing-copy,
.cc-dark .closing-trust {
  position: relative;
  z-index: 2;
}
.cc-dark .closing-copy .eyebrow {
  color: #b9b9bf;
}
.cc-dark .closing-copy h2 {
  color: #fff;
}
.cc-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 4px;
}
.cc-price strong {
  font-size: clamp(44px, 11vw, 58px);
  font-weight: 650;
  letter-spacing: -0.05em;
  color: #fff;
}
.cc-price span {
  color: #b6b6bc;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.cc-dark .closing-trust {
  color: #a9a9af;
}
.cc-dark .closing-trust i {
  background: #55555a;
}
.cc-button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(calc(100% - 40px), 380px);
  margin: 22px auto 0;
  padding: 18px 30px;
  border: 0;
  border-radius: 99px;
  background: #fff;
  color: #050505;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 16px 50px rgba(255, 255, 255, 0.16);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.cc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.24);
}
.cc-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 1100px) {
  .tk-media {
    width: min(100%, 640px);
  }
  .impact {
    min-height: 78svh;
  }
  .impact-copy {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    padding: 0 32px 84px;
  }
  .impact-copy h2 {
    font-size: clamp(44px, 4vw, 58px);
  }
  .impact-copy p {
    font-size: 16px;
  }
}

/* taller full-bleed demo film */
.film-frame video {
  aspect-ratio: auto;
  height: 68svh;
  min-height: 430px;
}
@media (min-width: 1100px) {
  .film-frame video {
    height: 84svh;
  }
}

/* ============================================================
   ENGINEERED TO PROTECT — feature grid section
   ============================================================ */
.technology-section.engd {
  padding: 54px 18px 46px;
  background: #fff;
}
.eg-head {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.eg-title {
  margin: 12px 0 0;
  font-size: clamp(30px, 8.2vw, 46px);
  font-weight: 460;
  letter-spacing: -0.045em;
  line-height: 1.12;
}
.eg-title strong {
  font-weight: 720;
}
.eg-sub {
  margin: 16px auto 0;
  max-width: 430px;
  color: #77777a;
  font-size: 14.5px;
  line-height: 1.65;
}
.eg-product {
  max-width: 560px;
  margin: 10px auto 6px;
}
.eg-product img {
  display: block;
  width: 100%;
}
.eg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 14px auto 0;
}
.eg-card {
  padding: 18px 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: #fafaf9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.eg-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eg-ic {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f0ee;
}
.eg-ic svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #232326;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eg-card h3 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.eg-card p {
  margin: 12px 0 0;
  color: #77777a;
  font-size: 12.5px;
  line-height: 1.62;
}
.eg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 22px auto 0;
  padding: 26px 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  background: #fafaf9;
}
.eg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.eg-stat + .eg-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.eg-stat svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #232326;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eg-stat b {
  font-size: clamp(23px, 6.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.045em;
}
.eg-stat > span {
  color: #77777a;
  font-size: 10.5px;
  letter-spacing: 0.01em;
}
.eg-stat b span {
  font-size: inherit;
  color: inherit;
}
@media (min-width: 1100px) {
  .technology-section.engd {
    padding: 110px 32px 96px;
  }
  .eg-grid {
    gap: 16px;
  }
  .eg-card {
    padding: 24px 22px 24px;
  }
  .eg-card h3 { font-size: 16px; }
  .eg-card p { font-size: 13.5px; }
  .eg-stat > span { font-size: 12px; }
}
