/* Homepage only; secondary pages keep their existing styles. */
body {
  isolation: isolate;
}
.demo-shell .demo-orbit {
  inset: -25px;
  transform: none;
}
@media (max-width: 620px) {
  .demo-shell .demo-orbit {
    display: none;
  }
}
:root {
  color-scheme: dark;
  --bg: #09090f;
  --text: #f7f5fc;
  --muted: #aaa8bb;
  --line: #ffffff1a;
  --purple: #b29aff;
  --cyan: #2bccf4;
  --font: "DM Sans", sans-serif;
  --display: "Space Grotesk", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
}
h3 {
  font-size: 25px;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}
::selection {
  background: #b29aff;
  color: #11101a;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1216px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 104px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.starfield {
  position: absolute;
  inset: 0 0 auto;
  height: 980px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 80% 23%, #4a28792e, transparent 53%),
    radial-gradient(ellipse at 18% 46%, #14244a1d, transparent 55%);
}
.starfield:before,
.starfield:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 7% 11%, #d3c2ffbb 95%, transparent),
    radial-gradient(1.5px 1.5px at 38% 13%, #fff8 95%, transparent),
    radial-gradient(1px 1px at 65% 19%, #9bb7ffa8 95%, transparent),
    radial-gradient(1px 1px at 91% 8%, #fff9 95%, transparent),
    radial-gradient(1.5px 1.5px at 92% 62%, #bbccff8a 95%, transparent),
    radial-gradient(1px 1px at 4% 74%, #fff9 95%, transparent),
    radial-gradient(1px 1px at 45% 80%, #fff7 95%, transparent),
    radial-gradient(1px 1px at 23% 61%, #c9b7ff7a 95%, transparent),
    radial-gradient(1px 1px at 62% 93%, #fff9 95%, transparent);
  background-size: 690px 610px;
}
.starfield:after {
  transform: translate(83px, 57px);
  opacity: 0.35;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.brand img {
  border-radius: 9px;
}
.brand-dot {
  color: var(--purple);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.site-header nav > a:not(.button) {
  color: #ccc9d9;
  transition: color 0.18s;
}
.site-header nav > a:hover {
  color: white;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  min-height: 54px;
  padding: 14px 23px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: none;
}
.button-primary {
  background: #baabf9;
  color: #151021;
  box-shadow: 0 0 30px #8c68ff15;
}
.button-primary:hover {
  background: #c8baff;
  box-shadow: 0 4px 35px #8c68ff30;
}
.button-light {
  color: #17121f;
  background: #efebfa;
}
.button-light:hover {
  background: white;
}
.button-small {
  font-size: 14px;
  padding: 11px 19px;
  min-height: 42px;
}
.button-cyan {
  background: var(--cyan);
  color: #05161d;
  width: 100%;
  font-size: 14px;
  min-height: 46px;
}
.button-cyan:hover {
  background: #67ddf9;
}
.button:disabled {
  cursor: wait;
  transform: none;
  background: #243742;
  color: #bfe9f5;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid #b29aff70;
  padding-block: 5px;
}
.text-link:hover {
  color: var(--purple);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
}
.menu-toggle span {
  height: 1px;
  background: var(--text);
  display: block;
  margin: 5px 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  align-items: center;
  gap: 56px;
  padding-block: 74px 64px;
  min-height: 694px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 9px;
}
.signal {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--purple);
  box-shadow: 0 0 12px #ad8aff;
}
.hero h1 {
  font-size: clamp(50px, 6vw, 80px);
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin: 26px 0;
}
.hero h1 > span {
  color: var(--purple);
}
.hero-description {
  max-width: 430px;
  color: #bdb9cd;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}
.install-note {
  display: block;
  color: #a39cb3;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 440px;
}
.hero-footnote {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #bcb6cb;
  margin-top: 36px;
}
.tiny-check {
  color: var(--purple);
}
.demo-shell {
  position: relative;
  min-width: 0;
  scroll-margin-top: 35px;
}
.demo-orbit {
  position: absolute;
  inset: -6% -8%;
  border: 1px solid #a08aca16;
  pointer-events: none;
  border-radius: 50%;
  transform: rotate(-28deg);
  z-index: -1;
}
.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  padding-inline: 3px;
}
.demo-topline .eyebrow {
  font-size: 12px;
  color: #ada3c5;
  letter-spacing: 0.1em;
}
.demo-live-label {
  font-size: 12px;
  color: #aaa0be;
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-live-label:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #a2d3bf;
  border-radius: 50%;
}
.demo-tabs {
  display: flex;
  width: 100%;
  padding: 4px;
  border: 1px solid #aaa0db28;
  background: #111019;
  border-radius: 10px;
  margin-bottom: 14px;
  gap: 4px;
}
.demo-tab {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  border-radius: 6px;
  padding: 10px 7px;
  color: #b3aac6;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.demo-tab[aria-selected="true"],
.demo-tab[aria-pressed="true"] {
  background: #292235;
  color: #efe6ff;
  box-shadow: 0 1px 3px #0005;
}
.demo-window {
  border: 1px solid #c3b1e835;
  border-radius: 13px;
  background: linear-gradient(140deg, #201b2b, #12111b 55%);
  box-shadow:
    0 28px 100px #0005,
    0 0 85px #8360bf0c;
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #ffffff0c;
  padding: 12px 16px;
  font-size: 12px;
  color: #aea5be;
  background: #ffffff03;
}
.browser-bar > span:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 7px;
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots i {
  width: 5px;
  height: 5px;
  background: #82788e;
  border-radius: 50%;
}
.demo-panel {
  min-height: 464px;
  padding: 23px;
}
.sample-product {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  padding-inline: 5px;
}
.product-photo {
  flex: 0 0 140px;
  height: 135px;
  overflow: hidden;
  background: white;
  border-radius: 8px;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.sample-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b3a6c7;
}
.sample-product-info h2 {
  font-size: 23px;
  letter-spacing: -0.025em;
  margin-block: 6px 9px;
}
.sample-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}
.sample-product-detail {
  font-size: 12px;
  color: #afa6be;
  display: block;
  margin-top: 3px;
}
.comparison-card {
  border: 1px solid #afa0cb40;
  border-radius: 11px;
  background: #0d0c13;
  box-shadow: 0 8px 30px #0002;
  padding: 14px 15px 3px;
}
.comparison-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 9px;
}
.comparison-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}
.comparison-brand img {
  border-radius: 6px;
}
.match-label {
  color: #91d9c4;
  font-size: 12px;
}
.offer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #ffffff0d;
}
.offer > div:first-child {
  min-width: 0;
  flex: 1;
}
.offer-merchant {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.offer-caption {
  display: block;
  font-size: 12px;
  color: #a49bad;
  margin-top: 2px;
}
.offer-price {
  text-align: right;
  white-space: nowrap;
}
.offer-price strong {
  display: block;
  font-size: 18px;
  font-family: var(--display);
  font-weight: 500;
  color: #dddae7;
}
.offer-price span {
  display: block;
  font-size: 12px;
  color: #aaa1b4;
}
.best-offer strong,
.best-offer .offer-price span {
  color: var(--cyan);
}
.offer-arrow {
  font-size: 16px;
  color: #a798bb;
}
.demo-disclaimer {
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: #a098ad;
  max-width: 390px;
  margin: 13px auto 0;
}
.checkout-heading h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-top: 8px;
  max-width: 300px;
}
.receipt {
  padding: 20px 0 15px;
  font-size: 14px;
}
.receipt > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: #c7c0d3;
}
.receipt .receipt-discount {
  color: #8dd9ba;
}
.receipt .receipt-total {
  font-size: 18px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  color: white;
}
.receipt > p {
  font-size: 12px;
  color: #a49bb7;
  text-align: right;
}
.coupon-demo-card {
  background: #0b0b11;
  border: 1px solid #b29aff40;
  border-radius: 10px;
  padding: 15px;
}
.coupon-demo-card h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-top: 12px;
}
.coupon-demo-card #coupon-status {
  font-size: 14px;
  line-height: 1.5;
  color: #b5acc4;
  margin-block: 8px;
  min-height: 42px;
}
.coupon-progress {
  height: 3px;
  background: #ffffff0c;
  border-radius: 3px;
  overflow: hidden;
  margin: 12px 0;
}
.coupon-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cyan);
  transition: width 0.25s;
}
.coupon-safety {
  font-size: 12px;
  line-height: 1.5;
  color: #a79db8;
  margin-top: 10px;
}
.coupon-demo-card.is-complete {
  border-color: #2bccf480;
}
.coupon-demo-card.is-complete h3 {
  color: var(--cyan);
}
.benefit-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-block: 1px solid var(--line);
  padding: 24px 8px;
  color: #b8b2c7;
  font-size: 14px;
}
.benefit-strip > span {
  display: flex;
  align-items: center;
  gap: 11px;
}
.benefit-strip > span > span {
  color: #a48abc;
}
.section-intro {
  max-width: 670px;
}
.section-intro h2 {
  margin: 20px 0;
}
.section-intro > p:last-child {
  color: var(--muted);
  font-size: 18px;
  max-width: 555px;
}
.feature-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 64px;
  margin-top: 50px;
}
.feature-primary {
  position: relative;
  border: 1px solid #a289c332;
  border-radius: 14px;
  padding: 40px;
  background:
    radial-gradient(ellipse at 100% 0, #53367c40, transparent 65%), #15111d;
  overflow: hidden;
}
.feature-symbol {
  position: absolute;
  right: 26px;
  top: 18px;
  font-family: var(--display);
  font-size: 65px;
  line-height: 1;
  color: #b098d056;
  font-weight: 400;
}
.feature-primary .eyebrow {
  color: #af93d1;
}
.feature-primary h3 {
  font-size: 36px;
  margin: 38px 0 18px;
  letter-spacing: -0.04em;
}
.feature-primary > p:not(.eyebrow) {
  font-size: 16px;
  color: #b8aec7;
  max-width: 390px;
}
.feature-bottom {
  display: flex;
  gap: 9px;
  align-items: baseline;
  font-size: 12px;
  color: #b4a7c8;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid #ffffff14;
}
.feature-secondary article {
  padding: 15px 0 30px;
}
.feature-secondary article + article {
  border-top: 1px solid var(--line);
  padding-top: 31px;
  padding-bottom: 0;
}
.feature-number {
  font-size: 12px;
  letter-spacing: 0.09em;
  color: #a18eb7;
}
.feature-secondary h3 {
  margin: 12px 0 14px;
  font-size: 29px;
}
.feature-secondary p {
  color: var(--muted);
  max-width: 425px;
  font-size: 16px;
}
.how-section {
  background: linear-gradient(120deg, #ffffff02, #8d64bf07 65%, #ffffff02);
  border-block: 1px solid var(--line);
}
.how-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
}
.how-heading h2 {
  margin-top: 20px;
}
.how-heading > p {
  color: var(--muted);
  max-width: 315px;
  font-size: 16px;
  margin-bottom: 3px;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  padding: 0;
  margin: 58px 0 0;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 38px;
  color: #a98dd0;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ffffff1c;
}
.step-number > span {
  font-size: 23px;
  color: #a190af;
}
.steps h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.steps p {
  color: var(--muted);
  font-size: 16px;
}
.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-bottom: 1px solid var(--line);
}
.trust-section h2 {
  font-size: 39px;
  margin-top: 20px;
}
.trust-copy > p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 490px;
}
.trust-copy strong {
  font-weight: 500;
  color: #e3dced;
}
.trust-copy .text-link {
  margin-top: 4px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-intro h2 {
  margin: 20px 0 22px;
}
.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
}
.faq-intro a {
  display: inline-block;
  color: var(--purple);
  margin-top: 8px;
}
.faq-intro a:hover {
  text-decoration: underline;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 23px;
  font-weight: 400;
  color: #a995c0;
  line-height: 1;
  transition: transform 0.15s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  padding: 0 32px 24px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.faq-list details a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta {
  position: relative;
  isolation: isolate;
  text-align: center;
  border: 1px solid #bba0e32b;
  border-radius: 16px;
  padding: 65px 24px 58px;
  margin-bottom: 80px;
  overflow: hidden;
  background: #121019;
}
.cta-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 130%, #7253a753, transparent 70%);
}
.final-cta:before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 380px;
  bottom: -290px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid #b29aff45;
  box-shadow: 0 -12px 70px #785fb320;
}
.final-cta .eyebrow {
  justify-content: center;
  font-size: 12px;
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 21px 0;
  letter-spacing: -0.055em;
}
.final-cta h2 span {
  color: var(--purple);
}
.final-cta > p:not(.eyebrow) {
  font-size: 16px;
  color: #bcb0ce;
}
.final-cta .button {
  margin-top: 25px;
}
.final-cta .install-note {
  margin-inline: auto;
}
.site-footer {
  padding-bottom: 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-top .brand {
  font-size: 23px;
}
.footer-top > p {
  font-size: 14px;
  color: #a99eba;
}
.footer-top nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  color: #c0b6cd;
}
.footer-top nav a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: #a99eba;
  font-size: 12px;
}
@media (min-width: 1450px) {
  .hero {
    gap: 82px;
    padding-block: 90px 80px;
    min-height: 780px;
  }
  .hero h1 {
    font-size: 86px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 30px;
  }
  .hero h1 {
    font-size: 63px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding-inline: 18px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .sample-product {
    gap: 15px;
  }
  .product-photo {
    flex-basis: 115px;
    height: 125px;
  }
  .sample-product-info h2 {
    font-size: 21px;
  }
  .demo-panel {
    padding: 18px;
  }
  .feature-layout {
    gap: 40px;
  }
  .feature-primary {
    padding: 30px;
  }
  .feature-primary h3 {
    font-size: 32px;
  }
  .trust-section {
    gap: 40px;
  }
  .faq-section {
    gap: 45px;
  }
  .steps {
    gap: 35px;
  }
  .site-header nav {
    gap: 24px;
  }
}
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    max-width: 640px;
    text-align: center;
    padding-block: 56px;
    min-height: auto;
  }
  .hero-copy > .eyebrow,
  .hero-footnote,
  .hero-actions {
    justify-content: center;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-description,
  .hero .install-note {
    margin-inline: auto;
  }
  .hero-description {
    max-width: 470px;
  }
  .hero-footnote {
    margin-top: 25px;
  }
  .demo-shell {
    width: 100%;
    max-width: 460px;
    margin: auto;
    text-align: left;
  }
  .demo-disclaimer {
    text-align: center;
  }
  .product-photo {
    flex-basis: 140px;
    height: 135px;
  }
  .sample-product {
    gap: 22px;
  }
  .demo-panel {
    padding: 23px;
  }
  .sample-product-info h2 {
    font-size: 23px;
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header .brand {
    font-size: 23px;
  }
  .section-space {
    padding-block: 75px;
  }
  .benefit-strip {
    font-size: 12px;
    gap: 12px;
  }
  .feature-layout {
    gap: 28px;
  }
  .feature-primary {
    padding: 25px;
  }
  .feature-primary h3 {
    font-size: 29px;
  }
  .feature-secondary h3 {
    font-size: 25px;
  }
  .how-heading {
    gap: 30px;
    align-items: start;
  }
  .how-heading > p {
    max-width: 250px;
    margin-top: 35px;
  }
  .how-heading h2 {
    font-size: 34px;
  }
  .steps {
    gap: 24px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .trust-section {
    gap: 30px;
  }
  .trust-section h2 {
    font-size: 33px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-intro > p:last-child br {
    display: none;
  }
  .faq-intro a {
    margin-left: 7px;
  }
  .final-cta {
    margin-bottom: 55px;
  }
}
@media (min-width: 621px) and (max-width: 740px) {
  .site-header {
    flex-wrap: wrap;
    padding-block: 18px;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  .site-header nav {
    width: 100%;
    justify-content: space-between;
    padding-top: 12px;
  }
  .js-enabled .site-header nav:not(.is-open) {
    display: none;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 78px;
    flex-wrap: wrap;
    gap: 0;
    padding-block: 18px;
    position: relative;
  }
  .site-header .brand {
    font-size: 24px;
  }
  .site-header .brand img {
    width: 32px;
    height: 32px;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  .site-header nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 18px;
  }
  .site-header nav > a:not(.button) {
    font-size: 15px;
    padding: 11px 0;
  }
  .site-header nav .button {
    margin-top: 10px;
  }
  .js-enabled .site-header nav:not(.is-open) {
    display: none;
  }
  .hero {
    padding: 45px 0 44px;
    gap: 43px;
  }
  .hero h1 {
    font-size: clamp(48px, 11.7vw, 68px);
    margin: 22px 0;
  }
  .hero-description {
    font-size: 16px;
    max-width: 345px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 27px;
  }
  .hero-actions .button {
    font-size: 15px;
    padding: 16px 24px;
    min-height: 54px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .hero-footnote {
    font-size: 12px;
    gap: 7px;
    margin-top: 24px;
  }
  .demo-topline .eyebrow {
    letter-spacing: 0.05em;
  }
  .demo-tab {
    font-size: 13px;
  }
  .demo-shell {
    max-width: 430px;
  }
  .demo-panel {
    padding: 18px;
    min-height: 460px;
  }
  .sample-product {
    gap: 18px;
    margin-bottom: 19px;
    padding: 0;
  }
  .product-photo {
    flex-basis: 125px;
    height: 125px;
  }
  .sample-product-info h2 {
    font-size: 22px;
  }
  .sample-price {
    font-size: 21px;
  }
  .comparison-card {
    padding: 12px 12px 3px;
  }
  .comparison-heading {
    gap: 5px;
    flex-wrap: wrap;
  }
  .offer {
    gap: 9px;
    padding-block: 11px;
  }
  .offer-merchant {
    font-size: 13px;
  }
  .offer-price strong {
    font-size: 17px;
  }
  .offer-arrow {
    font-size: 14px;
  }
  .demo-disclaimer {
    max-width: 320px;
  }
  .demo-orbit {
    inset: 0 -2%;
  }
  .benefit-strip {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    font-size: 14px;
  }
  .benefit-strip > span {
    gap: 9px;
  }
  .section-space {
    padding-block: 62px;
  }
  .section-intro h2 {
    font-size: 34px;
    margin: 17px 0;
  }
  .section-intro > p:last-child {
    font-size: 16px;
  }
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .feature-primary {
    padding: 28px;
  }
  .feature-primary h3 {
    font-size: 33px;
    margin-top: 30px;
  }
  .feature-bottom {
    margin-top: 30px;
  }
  .feature-secondary article {
    padding: 20px 4px 28px;
  }
  .feature-secondary h3 {
    font-size: 28px;
  }
  .feature-secondary article + article {
    padding-top: 26px;
  }
  .how-heading {
    display: block;
  }
  .how-heading > p {
    max-width: 100%;
    margin-top: 20px;
  }
  .how-heading h2 {
    font-size: 34px;
    margin-top: 17px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 35px;
  }
  .step-number {
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 17px;
  }
  .step-number > span {
    font-size: 20px;
  }
  .steps h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .steps p {
    max-width: 400px;
  }
  .trust-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-section h2 {
    font-size: 34px;
    margin-top: 17px;
  }
  .faq-intro h2 {
    font-size: 35px;
    margin: 17px 0;
  }
  .faq-intro > p:last-child br {
    display: block;
  }
  .faq-intro a {
    margin-left: 0;
  }
  .faq-list summary {
    font-size: 16px;
    padding: 21px 0;
    gap: 16px;
  }
  .faq-list details > p {
    padding-right: 20px;
  }
  .final-cta {
    padding: 45px 20px;
    border-radius: 12px;
    margin-bottom: 42px;
  }
  .final-cta h2 {
    font-size: 36px;
  }
  .final-cta .eyebrow {
    letter-spacing: 0.06em;
  }
  .final-cta .button {
    font-size: 15px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 26px;
  }
  .footer-top > p {
    margin-left: auto;
    font-size: 12px;
  }
  .footer-top nav {
    width: 100%;
    margin: 8px 0 0;
    font-size: 14px;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .footer-top .brand {
    font-size: 22px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .hero h1 {
    font-size: 46px;
  }
  .demo-panel {
    padding: 14px;
  }
  .product-photo {
    flex-basis: 105px;
    height: 118px;
  }
  .sample-product {
    gap: 14px;
  }
  .sample-product-info h2 {
    font-size: 20px;
  }
  .comparison-brand {
    font-size: 13px;
  }
  .offer-price strong {
    font-size: 16px;
  }
  .final-cta h2 {
    font-size: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}
