body.test-page {
  overflow-x: hidden;
}

.test-page .header-cta {
  color: #f8fbff;
  border-color: transparent;
  background: linear-gradient(135deg, #0f1722 0%, #17334d 65%, #1b9fff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 34px rgba(16, 34, 56, 0.18);
}

.test-page .header-cta:hover,
.test-page .header-cta:focus-visible {
  background: linear-gradient(135deg, #101a28 0%, #183955 65%, #22a4ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 40px rgba(16, 34, 56, 0.24);
}

:root[data-theme="dark"] .test-page .header-cta {
  color: #0f61b8;
  border-color: rgba(27, 159, 255, 0.34);
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98) 0%, rgba(233, 242, 255, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(27, 159, 255, 0.12);
}

:root[data-theme="dark"] .test-page .header-cta:hover,
:root[data-theme="dark"] .test-page .header-cta:focus-visible {
  color: #0a6acb;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 246, 255, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 22px 42px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(27, 159, 255, 0.18);
}

.test-hero {
  padding-top: 5.2rem;
  text-align: center;
}

.test-hero-copy {
  max-width: 62rem;
  margin: 0 auto;
}

.test-hero .trust-pill {
  justify-content: center;
}

.test-hero h1 {
  margin: 1.45rem auto 0;
  max-width: none;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.8rem, 6.2vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.test-hero .lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.test-hero .hero-actions {
  justify-content: center;
  align-items: center;
}

.test-stage {
  --test-stage-band-top: clamp(6.5rem, 11vw, 10.25rem);
  --test-stage-band-height: clamp(28rem, 48vw, 39rem);
  --test-stage-photo-top: 0.1rem;
  --test-stage-photo-width: min(34rem, 50vw);
  position: relative;
  min-height: clamp(34rem, 68vw, 56rem);
  margin-top: 3.25rem;
  isolation: isolate;
}

.test-stage-band {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--test-stage-band-top);
  height: var(--test-stage-band-height);
  border-radius: 2.2rem;
  overflow: hidden;
  background: var(--test-stage-band-bg);
  box-shadow: var(--test-stage-band-shadow);
}

.test-stage-shadow {
  display: none;
}

.test-stage-photo-wrap {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: var(--test-stage-photo-top);
  bottom: calc(100% - (var(--test-stage-band-top) + var(--test-stage-band-height)));
  width: var(--test-stage-photo-width);
  margin: 0;
  transform: translateX(-50%);
  overflow: hidden;
}

.test-stage-hand-photo {
  display: block;
  width: 100%;
  height: auto;
}

.test-stage-wrist-gradient {
  position: absolute;
  left: 55.5%;
  top: calc(var(--test-stage-photo-top) + (var(--test-stage-photo-width) * 0.98));
  bottom: calc(100% - (var(--test-stage-band-top) + var(--test-stage-band-height)));
  width: min(32rem, 50vw);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  background: var(--test-stage-wrist-fade);
}

.test-stage-screen-wrap {
  position: absolute;
  left: 25.05%;
  top: 5.6%;
  width: 53.1%;
  height: 69.45%;
  border-radius: 3.2rem;
  background: #020202;
  box-shadow: inset 0 0 0 0.16rem #020202;
  overflow: hidden;
}

.test-stage-screen-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.035);
  transform-origin: center top;
}

.test-image-card {
  text-align: center;
}

.test-benefits,
.test-showcase,
.test-details {
  margin-top: 7rem;
}

.test-section-heading {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.test-section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.test-showcase-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.test-image-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  box-shadow: var(--card-shadow);
  padding: 1.35rem;
}

.test-image-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--label-bg);
  color: var(--label-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.test-inline-phone {
  position: relative;
  width: calc(22rem * 1170 / 2532);
  height: 22rem;
  margin: 1.4rem auto 0;
  box-shadow:
    0 0 0 0.08rem rgba(214, 218, 224, 0.84),
    0 0 0 0.16rem rgba(38, 42, 48, 0.92),
    0 1.3rem 2.8rem rgba(17, 24, 39, 0.18);
}

.test-inline-phone .screen-image {
  object-fit: cover;
}

.test-showcase-copy .section-intro {
  max-width: none;
  margin-top: 1.35rem;
}

.test-pillar-grid {
  margin-top: 1.6rem;
}

.test-details {
  padding-bottom: 5rem;
}

@media (max-width: 1120px) {
  .test-hero {
    padding-top: 4.5rem;
  }

  .test-stage {
    --test-stage-band-top: 8rem;
    --test-stage-band-height: 26rem;
    --test-stage-photo-top: 1rem;
    --test-stage-photo-width: min(20.5rem, 40vw);
    min-height: 37rem;
  }

  .test-stage-band {
  }

  .test-showcase-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .test-hero {
    padding-top: 3rem;
  }

  .test-hero h1 {
    font-size: clamp(1.55rem, 5.9vw, 2.45rem);
    line-height: 1;
    white-space: nowrap;
  }

  .test-stage {
    --test-stage-band-top: 5.3rem;
    --test-stage-band-height: 18rem;
    --test-stage-photo-top: 0.3rem;
    --test-stage-photo-width: min(18.6rem, 74vw);
    min-height: 30rem;
    margin-top: 2.2rem;
  }

  .test-stage-band {
    border-radius: 1.35rem;
  }

  .test-stage-shadow {
    width: 72vw;
    bottom: 1.3rem;
  }

  .test-stage-screen-wrap {
    border-radius: 2.25rem;
  }

  .test-benefits,
  .test-showcase,
  .test-details {
    margin-top: 3rem;
  }

  .test-image-card {
    border-radius: 1.25rem;
    padding: 1rem;
  }

  .test-inline-phone {
    width: calc(15rem * 1170 / 2532);
    height: 15rem;
    margin-top: 1rem;
  }

  .test-details {
    padding-bottom: 3.5rem;
  }
}
