:root {
  --page-width: 440px;
  --text: #151515;
  --muted: rgba(21, 21, 21, 0.7);
  --surface: #f5f5f5;
  --white: #ffffff;
  --brick: #b7350e;
  --orange: #cb5608;
  --amber: #db771f;
  --ink: #1e1e1e;
  --blue-top: #245b9e;
  --blue-bottom: #86515f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: #0c0907;
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body.is-page-loading {
  overflow: hidden;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  background: #070605;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.42s ease,
    visibility 0s linear 0s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.42s ease,
    visibility 0s linear 0.42s;
}

.page-loader__animation {
  display: grid;
  place-items: center;
  width: clamp(96px, 24vw, 120px);
  min-width: 96px;
  aspect-ratio: 1;
}

.page-loader__animation::before {
  content: "";
  width: 70%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: page-loader-spin 0.85s linear infinite;
}

.page-loader__animation:has(svg)::before {
  display: none;
}

.page-loader__animation svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  transform: scale(1.58);
  transform-origin: center;
}

.page-loader__label {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.page {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  background: var(--surface);
  overflow-x: clip;
  overflow-y: visible;
}

.hero {
  background: #070605;
  color: var(--white);
}

.hero__top {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 24px 24px 20px;
}

.hero__logo {
  width: 216px;
  height: auto;
}

.hero__media {
  position: relative;
  z-index: 2;
  height: 672px;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  background: #17110d url("./assets/static-cover-optimized.jpg") center / cover no-repeat;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 4%, rgba(0, 0, 0, 0) 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3) 11%, rgba(0, 0, 0, 0) 35%);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 28px 72px;
}

.hero__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero h1,
.features h2,
.product h2,
.product-info h2,
.charge h2,
.waterproof h2,
.final-cta h2,
.faq-section h2 {
  margin: 0;
  font-family: "Arimo", sans-serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero h1 {
  max-width: 370px;
  color: var(--white);
}

.hero p {
  margin: 0;
  max-width: 308px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #eb5d00;
  color: var(--white);
  font-family: "Arimo", sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(235, 93, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(235, 93, 0, 0.28);
}

.benefits {
  position: relative;
  z-index: 2;
  padding-top: 0;
  visibility: hidden;
}

.benefits.is-stack-ready {
  visibility: visible;
}

.benefit {
  --benefit-drop: 0px;
  --benefit-scale: 0.985;
  --benefit-z: 1;
  position: relative;
  margin-top: -47px;
  padding: 24px 24px 56px;
  border-radius: 32px 32px 0 0;
  transform: translate3d(0, var(--benefit-drop), 0) scale(var(--benefit-scale));
  transform-origin: center top;
  transition: transform 0.2s linear;
  will-change: transform;
  z-index: var(--benefit-z);
}

.benefit:first-child {
  margin-top: -38px;
}

.benefit h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 700;
}

.benefit__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}
.benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
}

.benefit--brick {
  background: var(--brick);
  color: var(--white);
}

.benefit--orange {
  background: var(--orange);
  color: var(--white);
}

.benefit--amber {
  background: var(--amber);
  color: var(--white);
}

.benefit--dark {
  background: var(--ink);
  color: var(--white);
}

.benefit--light {
  background: var(--surface);
  color: var(--text);
  border-radius: 32px 32px 0 0;
}

.benefit--brick p,
.benefit--orange p,
.benefit--amber p,
.benefit--dark p {
  color: rgba(255, 255, 255, 0.74);
}

.benefit--light p {
  color: rgba(30, 30, 30, 0.82);
}

.box-showcase {
  position: relative;
  margin-top: 0;
  background: #f5f5f5;
  padding: 0 0 8px;
}

.box-showcase__title {
  position: absolute;
  top: 36px;
  left: 0;
  z-index: 3;
  width: 100%;
  margin: 0;
  font-family: "Arimo", sans-serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  pointer-events: none;
}

.box-showcase__stage {
  position: sticky;
  top: 0;
  min-height: min(calc(92vw * 1.5), 630px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  background: #f5f5f5;
}

.box-showcase__box {
  --ring-scale: 1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  transform: translateY(-80px) scale(var(--ring-scale));
  transform-origin: center top;
  will-change: transform;
  overflow: hidden;
}

.box-showcase__box svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lifestyle__ring svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lifestyle__ring canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.product__logo {
  display: block;
  width: 324px;
  max-width: 100%;
  margin: 0 auto 26px;
  height: auto;
}

.product-info {
  position: relative;
  z-index: 4;
  margin-top: -118px;
  padding: 42px 0 70px;
  text-align: center;
  background: #f5f5f5;
}

.product__content {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 0 27px;
}

.product__points {
  margin: 22px auto 0;
  max-width: 388px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  text-align: center;
}

.product-tags {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 0 0 4px;
}

.product-tags__row {
  overflow: hidden;
}

.product-tags__track {
  display: flex;
  align-items: center;
  min-width: max-content;
  will-change: transform;
  animation: productTagsTicker 38s linear infinite;
}

.product-tags__row--two .product-tags__track {
  animation: productTagsTickerReverse 46s linear infinite;
}
.product-tags__row--three .product-tags__track { animation-duration: 42s; }

.product-tags__group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  background: #ffd6c4;
  color: #eb5d00;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.product-tag img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.product-tag--icon {
  display: inline-flex;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  padding: 0;
  border-radius: 18px;
  background: #ffd6c4;
}

@keyframes productTagsTicker {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes productTagsTickerReverse {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes productTagsTickerDesktop {
  to { transform: translate3d(-33.333333%, 0, 0); }
}

@keyframes productTagsTickerDesktopReverse {
  from { transform: translate3d(-33.333333%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .product-tags__track { animation-play-state: paused; }

  .page-loader,
  .hero__video {
    transition: none;
  }
}

.product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 28px auto 0;
  padding: 0 34px;
  border-radius: 999px;
  background: #eb5d00;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(235, 93, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.product__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(235, 93, 0, 0.28);
}

.sleepai {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(1, 8, 52, 0.78) 0%, rgba(1, 8, 52, 0) 42%),
    linear-gradient(180deg, #0c134d 0%, #040a39 38%, #040833 100%);
  color: var(--white);
  isolation: isolate;
}

.sleepai::before {
  content: "";
  position: absolute;
  inset: -12% -10% -8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 170, 112, 0.34) 0%, rgba(255, 170, 112, 0.18) 18%, rgba(255, 170, 112, 0) 42%),
    radial-gradient(circle at 80% 14%, rgba(101, 108, 255, 0.34) 0%, rgba(101, 108, 255, 0.2) 20%, rgba(101, 108, 255, 0) 46%),
    radial-gradient(circle at 50% 56%, rgba(25, 32, 108, 0.38) 0%, rgba(25, 32, 108, 0.14) 26%, rgba(25, 32, 108, 0) 52%),
    linear-gradient(180deg, #12195d 0%, #070e42 38%, #040833 100%);
  filter: blur(24px);
  transform-origin: center center;
  animation: sleepaiBackdropFloat 1.55s linear infinite alternate;
}

.sleepai__inner {
  position: relative;
  z-index: 2;
  padding: 32px 24px 28px;
  text-align: center;
}

.sleepai__intro,
.sleepai__conversation {
  display: contents;
}

.sleepai__glow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: blur(56px);
  opacity: 0.88;
  will-change: transform, opacity;
}

.sleepai__glow--warm {
  top: 2px;
  left: -26px;
  width: 272px;
  height: 272px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 171, 105, 0.9) 0%, rgba(255, 171, 105, 0.48) 34%, rgba(255, 171, 105, 0) 76%);
  animation: sleepaiWarmFloat 1.725s cubic-bezier(0.55, 0, 0.2, 1) infinite alternate;
}

.sleepai__glow--cool {
  top: -6px;
  right: -52px;
  width: 286px;
  height: 286px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 98, 255, 0.88) 0%, rgba(100, 98, 255, 0.46) 30%, rgba(100, 98, 255, 0) 76%);
  animation: sleepaiCoolFloat 1.875s cubic-bezier(0.55, 0, 0.2, 1) infinite alternate;
}

.sleepai__logo {
  width: 252px;
  margin: 0 auto;
  height: auto;
}

.sleepai h2 {
  margin: 42px auto 0;
  max-width: 278px;
  font-family: "Arimo", sans-serif;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--white);
}

.sleepai__card {
  margin: 60px 0 0;
  padding: 34px 26px 32px;
  border-radius: 22px;
  background: #020b2e;
  box-shadow:
    inset 0 0 54px #001f99,
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sleepai__eyebrow {
  display: block;
  margin-bottom: 20px;
  text-align: left;
  color: rgba(214, 220, 244, 0.42);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.sleepai__card p {
  margin: 0;
  color: rgba(214, 220, 244, 0.72);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
  text-shadow: none;
}

.sleepai__input {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  margin: 18px 0 0;
  padding: 8px 8px 8px 18px;
  border-radius: 28px;
  background: #020b2e;
  box-shadow:
    inset 0 0 54px #001f99,
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sleepai__input-text {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  min-height: 100%;
  flex: 1;
  color: rgba(214, 220, 244, 0.4);
  font-size: 18px;
  line-height: 1.75;
  text-align: left;
}

.sleepai__caret {
  width: 2px;
  height: 24px;
  flex: 0 0 2px;
  margin-right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  animation: sleepaiCaretBlink 1s steps(1, end) infinite;
}

.sleepai__input-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: rgba(122, 144, 255, 0.2);
  color: var(--white);
}

.sleepai__input-button svg {
  width: 22px;
  height: 22px;
}

@keyframes sleepaiCaretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes sleepaiWarmFloat {
  0% {
    transform: translate3d(-8px, -4px, 0) scale(0.98);
    opacity: 0.74;
  }

  100% {
    transform: translate3d(182px, 78px, 0) scale(1.62);
    opacity: 0.96;
  }
}

@keyframes sleepaiCoolFloat {
  0% {
    transform: translate3d(6px, -6px, 0) scale(0.98);
    opacity: 0.74;
  }

  100% {
    transform: translate3d(-196px, 72px, 0) scale(1.64);
    opacity: 0.96;
  }
}

@keyframes sleepaiCoolFloatDesktop {
  0% {
    transform: translate3d(6px, -6px, 0) scale(0.98);
    opacity: 0.9;
  }

  100% {
    transform: translate3d(-196px, 72px, 0) scale(1.64);
    opacity: 0.98;
  }
}

@keyframes sleepaiBackdropFloat {
  0% {
    transform: translate3d(-10%, -7%, 0) scale(0.98);
    filter: blur(24px);
  }

  50% {
    transform: translate3d(10%, 6%, 0) scale(1.2);
    filter: blur(44px);
  }

  100% {
    transform: translate3d(18%, -8%, 0) scale(1.32);
    filter: blur(36px);
  }
}

.features {
  background: var(--surface);
  text-align: center;
  position: relative;
  z-index: 20;
  padding: 56px 0 48px;
}

.lifestyle {
  --lifestyle-bg-progress: 0;
  position: relative;
  z-index: 1;
  min-height: 100svh;
  margin-top: -220px;
  padding: 0;
  overflow: visible;
}

.lifestyle::before {
  content: "";
  position: absolute;
  inset: 220px 0 0;
  background: color-mix(
    in srgb,
    #020b2e calc((1 - var(--lifestyle-bg-progress)) * 100%),
    #f5f5f5 calc(var(--lifestyle-bg-progress) * 100%)
  );
  z-index: 0;
}

.lifestyle__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background: transparent;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

.lifestyle__ring {
  --ring-scale: 0.2;
  position: relative;
  width: min(125vw, 550px);
  aspect-ratio: 1;
  margin: 0 auto;
  transform: scale(var(--ring-scale));
  transform-origin: center center;
  will-change: transform;
  z-index: 4;
}

.lifestyle__card {
  --card-scale: 0.05;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--card-scale));
  transform-origin: center center;
  z-index: 5;
  width: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
  pointer-events: none;
  will-change: transform;
}

.lifestyle__card h2 {
  margin: 0;
  color: var(--text);
}

.lifestyle__chip-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.lifestyle__card p {
  margin: 10px auto 0;
  max-width: 234px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.lifestyle__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: #eb5d00;
  color: var(--white);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(235, 93, 0, 0.24);
}

  .lifestyle__cta-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 28px 20px 52px;
  background: transparent;
  text-align: center;
}

.lifestyle__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 24px;
  max-width: 360px;
  margin: 0 auto 42px;
  padding: 0;
  list-style: none;
}

.lifestyle__metrics li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 700;
}

.lifestyle__metrics img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.features__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.features h2 {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0 auto 8.5px;
  white-space: nowrap;
}

.feature-rail {
  position: relative;
  width: 100%;
  height: 570px;
  overflow: hidden;
  perspective: 1400px;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.feature-rail.is-dragging {
  cursor: grabbing;
}

.feature-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.feature-card {
  --card-offset-x: 0px;
  --card-curve-y: 0px;
  --card-curve-scale: 1;
  --card-curve-rotate: 0deg;
  --card-curve-tilt: 0deg;
  position: absolute;
  left: 50%;
  top: 24px;
  width: 339px;
  height: 420px;
  max-width: 100%;
  padding: 25px 25px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 40px;
  transform:
    translateX(calc(-50% + var(--card-offset-x)))
    translateY(var(--card-curve-y))
    scale(var(--card-curve-scale))
    rotate(var(--card-curve-rotate))
    rotateY(var(--card-curve-tilt));
  transform-origin: center center;
  will-change: transform;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.08),
    inset 0 0 10px rgba(255, 255, 255, 0.8),
    inset 0 0 74px rgba(255, 255, 255, 0.95);
}

.feature-rail.is-dragging .feature-card,
.feature-rail.is-resetting .feature-card {
  transition: none;
}

.feature-card__visual {
  position: relative;
  flex: 0 0 242px;
  height: 242px;
  border-radius: 40px;
  overflow: hidden;
}

.feature-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-card__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.16;
}

.feature-card p {
  margin: 0 auto;
  max-width: 252px;
  font-size: 14px;
  line-height: 1.43;
  color: rgba(0, 0, 0, 0.7);
}

.mechanics {
  padding: 26px 24px 40px;
  background: var(--surface);
}

.mechanics__inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.mechanics h2 {
  margin: 0;
  text-align: center;
  font-family: "Arimo", sans-serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mechanics__grid {
  display: grid;
  gap: 56px;
}

.mechanics-card {
  position: relative;
  overflow: visible;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  text-align: center;
}

.mechanics-card--wide {
  padding-bottom: 0;
}

.mechanics-card__copy {
  position: relative;
  z-index: 2;
  margin-top: 22px;
}

.mechanics-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mechanics-card p {
  margin: 14px auto 0;
  max-width: 300px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.mechanics-card__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.mechanics-card__image--challenges {
  width: calc(100% - 20px);
}

.mechanics-card__image--tournament {
  width: calc(100% - 48px);
  border-radius: 28px;
  overflow: hidden;
}

.mechanics-card__image--presents {
  width: calc(100% + 28px);
  max-width: none;
  margin: 0 -14px;
}

.gestures {
  position: relative;
  z-index: 1;
  background: #050505;
  color: var(--white);
  overflow: hidden;
}

.gestures__inner {
  padding: 48px 0 0;
  text-align: center;
}

.gestures__copy {
  display: contents;
}

.gestures h2 {
  margin: 0;
  font-family: "Arimo", sans-serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gestures__ticker {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  padding: 0 20px;
}

.gestures__hint {
  display: none;
}

.gestures__ticker::before,
.gestures__ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.gestures__ticker::before {
  left: 0;
  background: linear-gradient(90deg, #050505 14%, rgba(5, 5, 5, 0) 100%);
}

.gestures__ticker::after {
  right: 0;
  background: linear-gradient(270deg, #050505 14%, rgba(5, 5, 5, 0) 100%);
}

.gestures__ticker-track {
  --gestures-shift: 0px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  transform: translate3d(var(--gestures-shift), 0, 0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gestures__ticker-track.is-resetting {
  transition: none;
}

.gestures__item,
.gestures__dot {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.35s ease;
  white-space: nowrap;
}

.gestures__item.is-active {
  color: rgba(255, 255, 255, 0.96);
}

.gestures__media {
  margin-top: 34px;
}

.gestures__video {
  display: block;
  width: 100%;
  height: auto;
}

.charge {
  background: #f5f5f5;
  padding: 0;
  transition: background-color 0.45s ease;
}

.charge__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: 100svh;
  padding: 96px 20px 164px;
}

.charge__desktop-copy {
  display: none;
}

.charge h2 {
  margin: 0;
  font-family: "Arimo", sans-serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.45s ease;
}

.charge p {
  margin: 14px auto 0;
  max-width: 270px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.45s ease;
}

.charge__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.charge__visual {
  position: relative;
  width: min(100%, 620px);
  margin: 44px auto 0;
}

.charge__animation {
  position: relative;
  left: 50%;
  display: block;
  width: min(131.835%, 550px);
  aspect-ratio: 1440 / 2000;
  margin: 0;
  transform: translateX(-50%);
}

.charge__details {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100% - 40px, 300px);
  margin-top: 0;
  opacity: 0;
  transform: translateX(-50%) translateY(28px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
  z-index: 2;
  pointer-events: auto;
}

.charge.is-details-visible .charge__details {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.charge__details h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text);
}

.charge__details p {
  margin: 10px auto 0;
  max-width: 220px;
  font-size: 15px;
  line-height: 1.5;
}

.charge__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 18px auto 0;
  padding: 0 28px;
  border-radius: 999px;
  background: #eb5d00;
  color: var(--white);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(235, 93, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.charge__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(235, 93, 0, 0.28);
}

.charge__animation svg {
  display: block;
  width: 100%;
  height: 100%;
}

.charge.is-active {
  background: #0d233e;
}

.charge.is-active h2 {
  color: var(--white);
}

.charge.is-active p {
  color: rgba(255, 255, 255, 0.78);
}

.charge.is-active .charge__details h3 {
  color: var(--white);
}

.app-showcase {
  padding: 0 0 28px;
  background: #f5f5f5;
  transition: background-color 0.45s ease;
}

.app-showcase__inner {
  position: relative;
  border-radius: 36px 36px 0 0;
  background: #f5f5f5;
  color: var(--white);
  overflow: hidden;
  transition:
    background 0.45s ease,
    color 0.45s ease;
}

.app-showcase h2 {
  margin: 0;
  padding: 44px 24px 24px;
  color: var(--text);
  text-align: center;
  font-family: "Arimo", sans-serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.45s ease;
}

.app-showcase__visual {
  position: relative;
  padding: 0 24px 28px;
}

.app-showcase__phone {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.app-showcase__stores {
  padding: 0 24px 40px;
  text-align: center;
}

.app-showcase__stores p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.app-showcase__store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 390px;
  margin: 0 auto;
}

.app-showcase__store-links img {
  width: 100%;
  height: auto;
}

.app-showcase__store-links a {
  display: block;
}

.app-showcase__bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.98);
  color: #1b1b1b;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 18px 40px rgba(13, 18, 35, 0.16);
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.94);
  transition:
    opacity 0.5s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-showcase.is-bubbles-visible .app-showcase__bubble {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.app-showcase__bubble--steps {
  top: 54px;
  left: 2px;
  min-width: 132px;
  min-height: 64px;
  padding: 12px 24px 12px 26px;
  border-radius: 28px 28px 10px 28px;
  transition-delay: 0.02s;
}

.app-showcase__bubble--score {
  top: 292px;
  right: 2px;
  min-width: 216px;
  min-height: 66px;
  padding: 12px 28px;
  border-radius: 28px 28px 28px 10px;
  transition-delay: 0.12s;
}

.app-showcase__bubble--ai {
  left: 2px;
  top: 624px;
  min-width: 168px;
  min-height: 64px;
  padding: 12px 24px;
  border-radius: 28px 28px 10px 28px;
  transition-delay: 0.2s;
}

.app-showcase__bubble--mode {
  right: 2px;
  top: 942px;
  min-width: 196px;
  min-height: 64px;
  padding: 12px 24px;
  border-radius: 28px 28px 28px 10px;
  transition-delay: 0.28s;
}

.app-showcase__bubble--games {
  left: 50%;
  bottom: 18px;
  min-height: 64px;
  min-width: 188px;
  padding: 12px 22px;
  border-radius: 28px 28px 10px 28px;
  transform: translate3d(-50%, 18px, 0) scale(0.94);
  transition-delay: 0.36s;
}

.app-showcase.is-bubbles-visible .app-showcase__bubble--games {
  transform: translate3d(-50%, 0, 0) scale(1);
}

.app-showcase.is-active {
  background: #0d233e;
}

.app-showcase.is-active .app-showcase__inner {
  background: #0d233e;
}

.app-showcase.is-active h2 {
  color: var(--white);
}

.waterproof {
  position: relative;
  background: #020811;
  padding: 0;
}

.waterproof__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waterproof.is-scroll-released .waterproof__stage {
  position: absolute;
  top: var(--sticky-release-offset);
  right: 0;
  left: 0;
}

.waterproof.is-scroll-released .waterproof__inner {
  overflow: visible;
}

.waterproof__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.waterproof__copy {
  position: absolute;
  top: 72px;
  left: 20px;
  right: 20px;
  z-index: 2;
  text-align: center;
}

.waterproof h2 {
  margin: 0;
  color: var(--white);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.waterproof p {
  margin: 14px auto 0;
  max-width: 292px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.6;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.waterproof__animation {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 780 / 1660;
}

.waterproof__animation svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 899px) {
  .waterproof__animation {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: min(218.182vw, 960px);
    aspect-ratio: auto;
    transform: translateX(-50%);
  }
}

.final-cta {
  position: relative;
  z-index: 2;
  margin-top: calc(min(212.82vw, 936px) - 100svh - 600px);
  background: #020811;
  padding: 72px 20px 22px;
}

.final-cta__waterproof-note {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  max-width: 300px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(calc(-50% - 88px));
}

.final-cta__inner {
  border-radius: 32px;
  padding: 28px 22px 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 161, 101, 0.28) 0%, rgba(255, 161, 101, 0) 34%),
    linear-gradient(180deg, rgba(19, 31, 57, 0.96) 0%, rgba(8, 13, 26, 0.98) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.final-cta__rings {
  width: min(78%, 280px);
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

@media (max-width: 440px) {
  .final-cta__rings {
    margin: -35px auto -20px;
  }
}

.final-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ff7b31;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-top: 18px;
  color: var(--white);
}

.final-cta p {
  margin: 16px auto 0;
  max-width: 312px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 26px;
  padding: 0 28px;
  border-radius: 18px;
  background: #ffffff;
  color: #020811;
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.faq-section {
  background: #020811;
  padding: 42px 20px 72px;
}

.faq-section__inner {
  text-align: center;
}

.faq-section__eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-section h2 {
  margin-top: 0;
  color: var(--white);
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 20px 52px 20px 20px;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--white);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 26px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.56);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.6;
}

/* Tablet layout: isolated from mobile (up to 440px) and desktop (from 900px). */
@media (min-width: 441px) and (max-width: 899px) {
  .page {
    width: 100%;
    max-width: none;
  }

  .hero__media {
    height: clamp(672px, 88svh, 760px);
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(30px, 5vw, 40px);
  }

  .hero p {
    max-width: 430px;
  }

  .benefit {
    padding-inline: clamp(32px, 7vw, 64px);
  }

  .box-showcase__box {
    max-width: 440px;
  }

  .product__content,
  .sleepai__inner,
  .charge__inner,
  .faq-section__inner {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .product__content,
  .sleepai__inner {
    padding-inline: 40px;
  }

  .product__points {
    max-width: 560px;
    font-size: 16px;
  }

  .sleepai__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .sleepai h2 {
    max-width: 420px;
  }

  .sleepai__card,
  .sleepai__input {
    max-width: 620px;
    margin-inline: auto;
  }

  .lifestyle__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
  }

  .feature-card {
    width: min(420px, calc(100vw - 96px));
  }

  .gestures h2 {
    font-size: 34px;
  }

  .gestures__media {
    width: min(100%, 700px);
    margin: 34px auto 0;
  }

  .charge__inner {
    padding-inline: 40px;
  }

  .app-showcase__inner {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .app-showcase__phone {
    max-width: 440px;
  }

  .final-cta__inner {
    max-width: 720px;
    margin-inline: auto;
  }

  .faq-section {
    padding-inline: 40px;
  }
}

@media (max-width: 380px) {
  .hero__media {
    height: 610px;
  }

  .hero h1,
  .lifestyle h2,
  .gestures h2,
  .mechanics h2,
  .charge h2,
  .app-showcase h2,
  .waterproof h2,
  .features h2,
  .sleepai h2,
  .final-cta h2,
  .faq-section h2,
  .product h2,
  .product-info h2 {
    font-size: 24px;
  }

  .benefit h2,
  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card {
    width: 310px;
  }

  .box-showcase__box {
    width: 100%;
    max-width: 340px;
  }

  .sleepai__inner {
    padding: 26px 18px 20px;
  }

  .sleepai__card {
    margin-left: 10px;
    margin-right: 10px;
    padding: 28px 18px 26px;
  }

  .lifestyle__card {
    width: 248px;
    padding-top: 30px;
  }

  .faq-item summary {
    padding-right: 46px;
    font-size: 16px;
  }
}

/* Desktop layout is isolated from the finished mobile version. */
@media (min-width: 900px) {
  body {
    background: #080706;
  }

  .page {
    width: 100%;
    box-shadow: none;
  }

  .intro {
    background: #070605;
  }

  .intro .hero,
  .intro .benefits {
    width: min(100%, 1440px);
    margin-inline: auto;
  }

  .hero__top {
    padding: 30px 48px 26px;
  }

  .hero__logo {
    width: 270px;
  }

  .hero__media {
    width: calc(100% - 64px);
    height: min(820px, calc(100svh - 96px));
    min-height: 680px;
    margin: 0 auto;
    border-radius: 48px;
  }

  .hero__video {
    object-position: center 52%;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0) 72%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.42) 4%, rgba(0, 0, 0, 0) 42%);
  }

  .hero__content {
    align-items: flex-start;
    padding: 64px clamp(48px, 6vw, 88px) 72px;
    text-align: left;
  }

  .hero h1,
  .features h2,
  .product-info h2,
  .charge h2,
  .waterproof h2,
  .final-cta h2,
  .faq-section h2 {
    font-size: clamp(44px, 4vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
  }

  .hero p {
    max-width: 520px;
    font-size: 20px;
    line-height: 1.5;
  }

  .hero__button,
  .product__cta,
  .lifestyle__cta,
  .charge__button {
    min-height: 62px;
    padding-inline: 38px;
    font-size: 18px;
  }

  .benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 32px 96px;
    background: #070605;
    visibility: visible;
  }

  .benefit,
  .benefit:first-child {
    min-height: 220px !important;
    margin-top: 0;
    padding: 30px 26px;
    border-radius: 30px;
    transform: none;
  }

  .benefit h2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 14px;
    font-size: clamp(20px, 1.8vw, 27px);
  }

  .benefit__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .benefit p {
    max-width: 220px;
    font-size: 15px;
    line-height: 1.5;
  }

  .box-showcase {
    min-height: 920px;
    padding-bottom: 40px;
  }

  .box-showcase__title {
    top: 80px;
    left: 0;
    width: 100%;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    text-align: center;
  }

  .box-showcase__stage {
    width: 100%;
    min-height: min(920px, 100svh);
    margin: 0;
    padding: 100px 64px 0;
  }

  .box-showcase__box {
    max-width: 560px;
    transform: translateY(-220px) scale(var(--ring-scale));
  }

  .product-info {
    margin-top: -300px;
    padding: 28px 0 112px;
  }

  .product__content {
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 48px;
  }

  .product__logo {
    width: 410px;
    margin-bottom: 38px;
  }

  .product__points {
    max-width: 740px;
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.6;
  }

  .product-tags {
    margin-top: 46px;
    gap: 12px;
  }

  .product-tags__track {
    animation-name: productTagsTickerDesktop;
  }

  .product-tags__row--two .product-tags__track {
    animation-name: productTagsTickerDesktopReverse;
  }

  .product-tags__group {
    gap: 12px;
    padding-right: 12px;
  }

  .product-tag {
    min-height: 66px;
    padding-inline: 30px;
    border-radius: 22px;
    font-size: 20px;
  }

  .product-tag--icon {
    width: 66px;
    height: 66px;
    min-width: 66px;
    min-height: 66px;
    padding: 0;
    border-radius: 22px;
  }

  .product-tag img {
    width: 56px;
    height: 56px;
  }

  .product__cta {
    margin-top: 42px;
  }

  .sleepai__inner {
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(480px, 1.2fr);
    column-gap: clamp(64px, 8vw, 132px);
    max-width: 1220px;
    min-height: 780px;
    margin: 0 auto;
    padding: 52px 64px 92px;
    text-align: left;
    align-items: center;
  }

  .sleepai__intro,
  .sleepai__conversation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sleepai__conversation {
    align-items: stretch;
    gap: 18px;
  }

  .sleepai__logo {
    width: min(100%, 370px);
    margin: 0;
  }

  .sleepai h2 {
    max-width: 460px;
    margin: 42px 0 0;
    font-size: clamp(21px, 2vw, 30px);
    line-height: 1.04;
    text-align: center;
    transform: translateY(-40px);
  }

  .sleepai__card {
    margin: 0;
    padding: 40px 48px;
    border-radius: 32px;
  }

  .sleepai__eyebrow {
    margin-bottom: 34px;
    font-size: 15px;
  }

  .sleepai__card p {
    font-size: 25px;
    line-height: 1.55;
  }

  .sleepai__input {
    min-height: 72px;
    margin: 0;
    border-radius: 34px;
    transform: translateY(10px);
  }

  .sleepai__input-text {
    font-size: 19px;
  }

  .sleepai__glow--warm {
    top: -300px;
    left: 92px;
    width: 320px;
    height: 320px;
    filter: blur(36px);
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-duration: 1.725s;
  }

  .sleepai__glow--cool {
    top: -320px;
    right: 72px;
    width: 360px;
    height: 360px;
    filter: blur(36px);
    animation-name: sleepaiCoolFloatDesktop;
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-duration: 1.875s;
  }

  .sleepai::before {
    inset: -18% -8% 10%;
    opacity: 0.76;
    background:
      radial-gradient(circle at 22% 12%, rgba(255, 170, 112, 0.3) 0%, rgba(255, 170, 112, 0.14) 14%, rgba(255, 170, 112, 0) 34%),
      radial-gradient(circle at 80% 10%, rgba(101, 108, 255, 0.3) 0%, rgba(101, 108, 255, 0.14) 16%, rgba(101, 108, 255, 0) 38%),
      radial-gradient(circle at 50% 38%, rgba(25, 32, 108, 0.22) 0%, rgba(25, 32, 108, 0.08) 18%, rgba(25, 32, 108, 0) 38%),
      linear-gradient(180deg, #12195d 0%, #070e42 42%, #020b2e 100%);
    filter: blur(16px);
  }

  .lifestyle {
    margin-top: -260px;
  }

  .lifestyle__ring {
    width: min(52vw, 720px);
  }

  .lifestyle__card {
    width: 390px;
  }

  .lifestyle__card h2 {
    font-size: 44px;
    line-height: 1.02;
  }

  .lifestyle__chip-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .lifestyle__card p {
    max-width: 340px;
    margin-top: 16px;
    font-size: 20px;
  }

  .lifestyle__cta-section {
    margin-top: 0;
    padding: 72px 48px 104px;
    background: #f5f5f5;
  }

  .lifestyle__metrics {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin-bottom: 56px;
  }

  .lifestyle__metrics li {
    gap: 18px;
    font-size: 19px;
  }

  .lifestyle__metrics img {
    width: 76px;
    height: 76px;
  }

  .features {
    padding: 104px 48px 120px;
  }

  .features h2 {
    margin-bottom: 52px;
  }

  .feature-rail {
    height: auto;
    overflow: visible;
    perspective: none;
    touch-action: auto;
    cursor: default;
  }

  .feature-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
    max-width: 1220px;
    height: auto;
    margin: 0 auto;
  }

  .feature-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding: 32px 32px 44px;
    border-radius: 34px;
    transform: none !important;
    transition: box-shadow 0.25s ease, translate 0.25s ease;
  }

  .feature-card:hover {
    translate: 0 -6px;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.12);
  }

  .feature-card__visual {
    flex-basis: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 578 / 484;
    border-radius: 30px;
  }

  .feature-card__content {
    padding-top: 32px;
  }

  .feature-card h3 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .feature-card p {
    max-width: 310px;
    font-size: 16px;
    line-height: 1.5;
  }

  .gestures__inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
    grid-template-rows: 1fr;
    align-items: center;
    column-gap: clamp(52px, 7vw, 110px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 104px 64px 0;
    text-align: left;
  }

  .gestures__copy {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 100%;
    gap: 24px;
  }

  .gestures h2 {
    margin: 0;
    font-size: clamp(44px, 4vw, 60px);
    line-height: 1.04;
    text-align: center;
  }

  .gestures__ticker {
    width: 100%;
    margin: 0;
    padding-inline: 0;
  }

  .gestures__hint {
    display: block;
    width: min(100%, 500px);
    margin-top: 10px;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
  }

  .gestures__hint strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
  }

  .gestures__hint p {
    margin: 0;
  }

  .gestures__ticker::before,
  .gestures__ticker::after {
    width: 56px;
  }

  .gestures__ticker::before {
    left: -1px;
  }

  .gestures__ticker::after {
    right: -1px;
  }

  .gestures__item,
  .gestures__dot {
    font-size: 19px;
  }

  .gestures__media {
    grid-column: 2;
    grid-row: 1;
    height: min(784px, calc(100svh - 76px));
    min-height: 650px;
    margin: 0;
    overflow: hidden;
    border-radius: 40px;
  }

  .gestures__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .charge__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
    max-width: 1280px;
    min-height: 100svh;
    margin: 0 auto;
    padding: 56px 64px 84px;
    text-align: left;
  }

  .charge__desktop-copy {
    display: flex;
    grid-column: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 100%;
    text-align: center;
    transform: translateY(-90px);
  }

  .charge__inner > h2 {
    display: none;
  }

  .charge__desktop-copy h2 {
    margin: 0;
    font-family: "Arimo", sans-serif;
    font-size: clamp(44px, 4vw, 62px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-align: center;
    white-space: nowrap;
  }

  .charge__desktop-details {
    margin-top: 30px;
    text-align: center;
  }

  .charge__desktop-details h3 {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
  }

  .charge__desktop-details p {
    margin: 10px auto 0;
    max-width: 280px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
  }

  .charge.is-active .charge__desktop-details h3 {
    color: var(--white);
  }

  .charge__desktop-details .charge__button {
    margin-top: 22px;
  }

  .charge__visual {
    grid-column: 2;
    align-self: center;
    width: min(100%, 660px);
    margin: 0 auto;
    transform: translateY(126px);
  }

  .charge__animation {
    width: min(100%, 620px);
  }

  .charge__details {
    display: none;
  }

  .app-showcase {
    padding-bottom: 0;
  }

  .app-showcase__inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
    grid-template-rows: 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1240px;
    min-height: 860px;
    margin: 0 auto;
    padding: 20px 72px 0;
    border-radius: 52px 52px 0 0;
  }

  .app-showcase h2 {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    max-width: 460px;
    padding: 0;
    font-size: clamp(44px, 4vw, 60px);
    line-height: 1.04;
    text-align: center;
    transform: translateY(-118px);
  }

  .app-showcase__visual {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding: 0;
  }

  .app-showcase__phone {
    width: min(100%, 480px);
  }

  .app-showcase__stores {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: min(100%, 420px);
    padding: 0;
    text-align: center;
    transform: translateY(126px);
  }

  .app-showcase__stores p {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .app-showcase__store-links {
    max-width: 420px;
    margin: 0 auto;
  }

  .waterproof__animation {
    top: 0;
    left: 50%;
    right: auto;
    width: min(100vw, 1784px);
    aspect-ratio: 1784 / 1160;
    transform: translateX(-50%);
  }

  .waterproof__stage,
  .waterproof__inner {
    background: #020811;
  }

  .waterproof__inner {
    overflow: visible;
  }

  .waterproof__copy {
    top: 154px;
  }

  .waterproof p {
    max-width: 520px;
    font-size: 18px;
  }

  .final-cta {
    margin-top: calc(min(65.022vw, 1160px) - 100svh - 400px);
    padding: 32px 64px 72px;
    box-shadow: 0 -220px 0 #020811;
  }

  .final-cta__waterproof-note {
    max-width: 520px;
    font-size: 18px;
    transform: translateY(calc(-50% - 320px));
  }

  .final-cta__inner {
    max-width: 1120px;
    margin: 0 auto;
    margin-bottom: -180px;
    padding: 58px 72px 62px;
    border-radius: 42px;
    transform: translateY(-180px);
  }

  .final-cta__rings {
    width: min(52%, 520px);
    margin: -105px auto -58px;
  }

  .final-cta__badge {
    min-height: 38px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .final-cta h2 {
    max-width: 760px;
    margin: 28px auto 0;
  }

  .final-cta p {
    max-width: 620px;
    margin-top: 24px;
    font-size: 18px;
  }

  .final-cta__button {
    min-height: 64px;
    margin-top: 34px;
    padding-inline: 40px;
    font-size: 18px;
    border-radius: 22px;
  }

  .faq-section {
    padding: 56px 64px 120px;
  }

  .faq-section__inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .faq-section__eyebrow {
    font-size: 13px;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
    margin-top: 52px;
  }

  .faq-item {
    border-radius: 24px;
  }

  .faq-item summary {
    min-height: 78px;
    padding: 24px 64px 24px 26px;
    font-size: 18px;
  }

  .faq-item__answer {
    padding: 0 26px 26px;
    font-size: 16px;
  }
}
