/* stylelint-disable */
/* ===========================================================
   Migaku CRO — MOBILE-FIRST. Brand: gradient #FF9345→#FE4670, ink #323363.
   Display: Outfit · Body: Plus Jakarta Sans.
   =========================================================== */
:root {
  --b1: #ff9345;
  --b2: #fe4670;
  --highlight: #ff9839;
  --b-deep: #e23a64;
  --grad: linear-gradient(120deg, #ff9345, #fe4670);
  --purple-grad: linear-gradient(90deg, #7700e6 0.11%, #cf32ff 83.09%);
  --ink: #1f2138;
  --ink-2: #3a3d5c;
  --indigo: #323363;
  --muted: #6b6e88;
  --faint: #9a9cb3;
  --line: #eceaf3;
  --card: #fff;
  --bg: #fff;
  --bg-2: #faf8fd;
  --tint: #fff4ef;
  --maxw: 1140px;
  --article_width_sm: 800px;
  --article_width_md: 980px;
  --article_width_lg: 1180px;
  --article_inner_width: 752px;
  --radius: 16px;
  --radius-lg: 22px;
  --display: 'Outfit', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(31, 33, 56, 0.04),
    0 3px 8px rgba(31, 33, 56, 0.05);
  --shadow: 0 2px 6px rgba(31, 33, 56, 0.05),
    0 12px 28px -10px rgba(31, 33, 56, 0.16),
    0 30px 60px -28px rgba(31, 33, 56, 0.22);
  --shadow-c: 0 2px 8px rgba(254, 70, 112, 0.18),
    0 12px 28px -8px rgba(255, 107, 77, 0.42);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: 20px;
  --tap: 48px;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--purple-grad) !important;
  line-height: 1.78;
  font-size: 15.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
::selection {
  background: var(--highlight);
  color: #fff;
}
:focus-visible {
  outline: 2.5px solid var(--b2);
  outline-offset: 3px;
  border-radius: 6px;
}
:where(h1, h2, h3) {
  text-wrap: pretty;
}
p {
  text-wrap: pretty;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--b2);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
  * {
    animation: none !important;
  }
}

.demo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--indigo);
  color: #e9d7ff;
  font-size: 10.5px;
  line-height: 1.4;
  text-align: center;
  padding: 7px 14px;
  font-weight: 600;
}
.demo-banner__dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--b1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 147, 69, 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(255, 147, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 147, 69, 0);
  }
}

/* progress bar */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 90;
  pointer-events: none;
}
.progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad);
  box-shadow: 0 0 8px rgba(254, 70, 112, 0.5);
  transition: transform 0.08s linear;
}
@media (prefers-reduced-motion: reduce) {
  .progress__bar {
    transition: none;
  }
}

.cro-logo {
  padding-top: 10px;
}

/* buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  border-radius: 999px;
  min-height: var(--tap);
  padding: 13px 26px;
  text-decoration: none;
  border: 1.5px solid transparent;
  background-origin: border-box;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out),
    border-color 0.2s, color 0.2s;
  font-size: 16px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  overflow: hidden;
  isolation: isolate;
}
.btn__arr {
  transition: transform 0.25s var(--ease-out);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn--primary {
  border: 0;
  background-color: var(--b2);
  background-image: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-c);
}
/* .btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 48%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
} */
.btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--indigo);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.btn--lg {
  min-height: 56px;
  padding: 17px 32px;
  font-size: 16.5px;
}
.btn--sm {
  min-height: 40px;
  padding: 9px 20px;
  font-size: 14px;
}
.btn--badge {
  overflow: visible;
}
.btn__badge {
  position: absolute;
  top: -14px;
  right: 10px;
  z-index: 2;
  padding: 6px 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #1f2138;
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 33, 56, 0.22);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  white-space: nowrap;
}
@media (hover: hover) {
  .btn:hover .btn__arr {
    transform: translateX(4px);
  }
  .btn--primary:hover {
    transform: translateY(-2.5px);
    box-shadow: 0 4px 12px rgba(254, 70, 112, 0.3),
      0 18px 42px -8px rgba(255, 107, 77, 0.55);
  }
  .btn--primary:hover::after {
    transform: translateX(120%);
  }
  .btn--ghost:hover {
    border-color: var(--b1);
    color: var(--b-deep);
    transform: translateY(-2.5px);
    box-shadow: var(--shadow);
  }
}

.btnnew {
  position: relative;
}
.btnnew .UiButton {
  padding: 10px 26px;
}
.btnnew--small .UiButton {
  padding: 8px 20px;
  min-height: unset;
}
.btnnew--small .UiTypo {
  font-size: 1rem;
}
.btnnew__badge {
  overflow: visible;
  position: absolute;
  top: -20px;
  right: 10px;
  z-index: 2;
  padding: 5px 8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #1f2138;
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 33, 56, 0.22);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  white-space: nowrap;
}
.btnnew__arr {
  transition: transform 0.25s var(--ease-out);
}

/* header */
.site-head {
  backdrop-filter: blur(24px);
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--purple-grad) !important;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.site-head.is-stuck {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 24px -16px rgba(31, 33, 56, 0.4);
  background: var(--purple-grad) !important;
}
.site-head__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand svg {
  height: 24px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-nav a:not(.btn) {
  display: none;
}
.site-nav .site-nav__sep {
  display: none;
}
.site-nav__cta--desktop {
  display: none;
}

.offer-ribbon {
  display: none;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: #1f2138;
  color: #fff;
}
.offer-ribbon__in {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.offer-ribbon__in strong {
  flex: none;
  color: #fff;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.offer-ribbon__promo {
  flex: none;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--b1);
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}
.offer-ribbon__countdown {
  color: #ffe27a;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.offer-ribbon__suffix {
  flex: none;
  color: #fff;
  font-weight: 800;
}

/* HERO */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 22px;
}
/* .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    140% 100% at 50% 0%,
    transparent 62%,
    rgba(31, 33, 56, 0.03)
  );
} */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.blob--1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 147, 69, 0.5), transparent 70%);
  top: -120px;
  right: -90px;
}
.blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(254, 70, 112, 0.34),
    transparent 70%
  );
  top: 40px;
  left: -120px;
}
/* .grid-fade {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(
    120% 70% at 70% 0%,
    #000 25%,
    transparent 70%
  );
  mask-image: radial-gradient(120% 70% at 70% 0%, #000 25%, transparent 70%);
} */
.hero__in {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 30px;
}
/* mobile order: pill → title → image → summary → CTAs → micro → store */
.hero__copy {
  display: contents;
}
.pill {
  order: 1;
}
.hero__h {
  order: 2;
}
.hero__art {
  order: 3;
}
.hero__sub {
  order: 4;
}
.hero__cta {
  order: 5;
}
.store-row {
  order: 6;
}
.hero__micro {
  order: 7;
}
.hero .store-btns-light {
  order: 8;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  background: transparent;
  border: 1.51px solid rgba(217, 217, 217, 1);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pill__dot {
  display: none;
}
.hero__h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 6.5vw, 26px);
  line-height: 1.1;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 16px;
}
.hero__sub {
  font-size: 13.5px;
  color: #fff;
  opacity: 0.92;
  line-height: 1.5;
  max-width: 58ch;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 30px;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}
.hero__cta .btnnew {
  width: 100%;
}

.hero__cta .btnnew {
  width: 100%;
}

@media (min-width: 955px) {
  .hero__cta .btnnew {
    width: unset;
  }
}

.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
@media (hover: hover) {
  .hero .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
  }
}
.hero__micro {
  font-size: 13px;
  color: rgba(255, 255, 255, 80%);
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  text-align: left;
}
.hero__micro-stars {
  font-size: 16px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  padding-bottom: 2px;
}

.store-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 140px;
  min-height: 48px;
  justify-content: center;
  background: var(--indigo);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  padding: 9px 14px;
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.18s;
  box-shadow: var(--shadow-sm);
}
.store-btn svg {
  flex: none;
  color: #fff;
}
.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.store-btn small {
  font-size: 9.5px;
  font-weight: 500;
  color: #fff;
  opacity: 0.85;
}
@media (hover: hover) {
  .store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
}

/* hero tablet mock */
.hero__art {
  position: relative;
  margin: 6px auto 24px;
  width: 100%;
  max-width: 360px;
}
.hero__tablet {
  position: relative;
  border-radius: 18px;
  background: #1a1a2e;
  padding: 10px;
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.hero__tablet img {
  border-radius: 10px;
  width: 100%;
  display: block;
}
/* trust strip */
.logos {
  position: relative;
}
.logos__in {
  padding: 38px var(--pad);
  text-align: center;
}
.logos__cap {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 6px;
  letter-spacing: 0;
}
.logos__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 36px !important;
  row-gap: 0 !important;
}
.logos__logo {
  height: 22px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s;
}

/* disney (107×80 viewBox — tall) */
.logos__logo:nth-child(2) {
  height: 68px;
}
/* netflix (74×14 viewBox — flat wordmark) */
.logos__logo:nth-child(3) {
  height: 23px;
  margin: 20px 0;
}
/* youtube, reddit, x — bottom row */
.logos__logo:nth-child(4),
.logos__logo:nth-child(5) {
  margin: 20px 0;
}
/* x (27×28 — near square icon) */
.logos__logo:nth-child(6) {
  height: 26px;
  margin: 20px 0;
}

@media (max-width: 480px) {
  .logos__cap {
    font-size: 13px;
  }

  .logos__in {
    padding-top: 10px;
    padding-bottom: 24px;
  }
  .logos__logo {
    height: 16px;
  }
  .logos__logo:nth-child(2) {
    height: 50px;
  }
  .logos__logo:nth-child(3) {
    height: 17px;
    margin: 12px 0;
  }
  .logos__logo:nth-child(4),
  .logos__logo:nth-child(5) {
    margin: 12px 0;
  }
  .logos__logo:nth-child(6) {
    height: 19px;
    margin: 12px 0;
  }
}

/* ARTICLE */
.article {
  width: 100%;
  max-width: var(--article_width_lg);
  margin: 0 auto;
  padding: 30px var(--pad) 84px;
  background: white;
  border-radius: 26px;
}

@media (max-width: 1230px) {
  .article {
    max-width: var(--article_width_md);
  }
}

@media (max-width: 996px) {
  .article {
    max-width: var(--article_width_sm);
  }
}

@media (max-width: 815px) {
  .article {
    border-radius: 0;
  }
}

.article__inner {
  margin: 0 auto;
  max-width: var(--article_inner_width);
}
.crumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--faint);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.crumb a {
  text-decoration: none;
  color: var(--faint);
}
.crumb__sep {
  opacity: 0.5;
}
.crumb span:not(.crumb__sep) {
  color: var(--ink-2);
  font-weight: 500;
}
.date {
  font-size: 12px;
  color: var(--faint);
  margin: 0 0 10px;
}
.title {
  font-family: var(--display);
  font-size: clamp(25px, 6vw, 36px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  text-align: center;
}
.legal-prose {
  font-size: 16.5px;
}
.legal-prose > div {
  display: contents;
}
body .legal-prose p {
  font-size: 16.5px;
  line-height: 1.78;
  margin: 0 0 20px;
  color: var(--ink-2);
}
.legal-prose h2 {
  font-family: var(--display);
  font-size: clamp(21px, 5vw, 27px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 46px 0 18px;
  padding-top: 18px;
  position: relative;
  scroll-margin-top: 72px;
  text-align: center;
}
.legal-prose h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
}
.legal-prose h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  margin: 34px 0 14px;
  text-align: center;
}
.legal-prose ul,
.legal-prose ol {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}
body .legal-prose ul > li {
  font-size: 16.5px;
  line-height: 1.78;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--ink-2);
}
.legal-prose ul > li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--grad);
}
.legal-prose ol {
  counter-reset: n;
  padding-left: 0;
}
body .legal-prose ol > li {
  font-size: 16.5px;
  line-height: 1.78;
  counter-increment: n;
  margin-bottom: 12px;
  padding-left: 38px;
  position: relative;
  color: var(--ink-2);
}
.legal-prose ol > li::before {
  content: counter(n);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--tint);
  color: var(--b-deep);
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-prose li ul,
.legal-prose li ol {
  margin: 10px 0 0;
}
.legal-prose strong {
  font-weight: 700;
  color: var(--ink);
}
.legal-prose em {
  color: inherit;
}
.legal-prose a:not(.btn) {
  color: var(--b-deep);
  text-decoration: underline;
  text-decoration-color: rgba(254, 70, 112, 0.35);
  text-underline-offset: 3px;
}
@media (hover: hover) {
  .legal-prose a:not(.btn):hover {
    text-decoration-color: var(--b2);
  }
}
.legal-prose blockquote {
  margin: 26px 0;
  padding: 22px 24px;
  background: #fbf9ff;
  border-left: 4px solid;
  border-color: #ff7b45;
  border-radius: 0 14px 14px 0;
  color: var(--ink);
}
.legal-prose blockquote p {
  margin: 0;
}
.post-fig {
  margin: 24px 0;
}
.post-fig img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.cro-table-scroll {
  width: 100%;
  margin: 6px 0 24px;
  overflow-x: auto;
}
.cro-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
}
.cro-table th {
  background: var(--indigo);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  padding: 14px 13px;
  text-align: left;
  vertical-align: top;
}
.cro-table th p {
  margin: 0;
  color: #fff;
}
.cro-table td {
  border: 1px solid var(--line);
  padding: 14px 13px;
  vertical-align: top;
}
.cro-table td p,
.cro-table td div {
  margin: 0;
}
.cro-table tbody tr:nth-child(even) td {
  background: var(--bg-2);
}

.cro-toc {
  margin: 28px 0 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  box-shadow: var(--shadow-sm);
}
.cro-toc strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 15px;
}
.legal-prose .cro-toc ul {
  columns: 1;
  margin: 0;
}
body .legal-prose .cro-toc li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.cro-warning {
  margin: 34px 0;
}
.cro-warning strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.35;
}
.cro-warning p {
  margin-bottom: 18px;
}
.cro-typo ruby {
  ruby-position: over;
}
.cro-typo rt {
  color: var(--b-deep);
  font-size: 10px;
  font-weight: 700;
}
.cro-audio-wrap {
  display: inline-flex;
  margin-left: 4px;
  vertical-align: middle;
}
.cro-audio {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgb(254 70 112 / 35%);
  border-radius: 999px;
  background: var(--tint);
  color: var(--b-deep);
  cursor: pointer;
  padding: 0;
}
.cro-audio__icon {
  width: 16px;
  height: 16px;
  flex: none;
}
.cro-prose-button {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.cro-iframe {
  aspect-ratio: 16 / 9;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.cro-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* in-content CTA */
.cro-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff, var(--tint));
  border: 1px solid rgba(255, 147, 69, 0.3);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 34px 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cro-cta__glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 147, 69, 0.26),
    transparent 70%
  );
  pointer-events: none;
}
.cro-cta__txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.cro-cta__txt strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}
.cro-cta__txt span {
  font-size: 13px;
  color: var(--muted);
}
.cro-cta .btn {
  position: relative;
  width: 100%;
}
.cro-cta--alt {
  background: linear-gradient(135deg, var(--bg-2), #fff);
  border-color: var(--line);
}
.cro-cta--alt .cro-cta__glow {
  background: radial-gradient(
    circle,
    rgba(254, 70, 112, 0.18),
    transparent 70%
  );
}

/* big double CTA */
.big-double-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 44px 0;
  padding: 34px 22px;
  border: 1px solid rgba(61, 65, 102, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #fff6f0);
  box-shadow: var(--shadow-sm);
}
.big-double-cta::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 147, 69, 0.3), transparent 70%);
  pointer-events: none;
}
.big-double-cta > * {
  position: relative;
}
.big-double-cta__hook {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(254, 70, 112, 0.08);
  color: var(--b-deep);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}
.big-double-cta__title {
  margin: 0 auto 12px;
  max-width: 620px;
  border: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}
.big-double-cta__title::before {
  display: none;
}
.big-double-cta__text {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.8;
}
.big-double-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 360px;
  margin: 0 auto 14px;
}
.big-double-cta__actions .btn {
  width: 100%;
}
.big-double-cta__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* why card */
.why {
  position: relative;
  background: radial-gradient(120% 130% at 80% -10%, #3a2d4e, #26283f);
  color: #fff;
  border-radius: 24px;
  padding: 36px 22px;
  margin: 48px 0 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.why::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 77, 0.4), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.why > * {
  position: relative;
}
.why__badge {
  display: inline-block;
  background: #ff6a4c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  font-family: var(--display);
}
.why__h {
  font-family: var(--display);
  font-size: clamp(22px, 5.2vw, 30px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.28;
  color: #fff;
  border: 0;
  padding: 0;
  letter-spacing: -0.015em;
}
.why__h::before {
  display: none;
}
.why .why__lead {
  color: #cdc6e0;
  font-size: 15px;
  margin: 0 auto 28px;
  line-height: 1.8;
  max-width: 100%;
}
.why__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.why__facts li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 18px;
}
.why__facts li::before {
  display: none;
}
.why__num {
  font-family: var(--display);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.why__facts b {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}
.why__facts small {
  font-weight: 400;
  color: #a9a2c2;
  font-size: 11.5px;
  line-height: 1.5;
}
.why__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin: 0 auto 16px;
  width: 100%;
  max-width: 340px;
}
.why__cta .btn {
  width: 100%;
}
.why .store-row {
  margin-inline: auto;
}
.why .btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
@media (hover: hover) {
  .why .btn--ghost:hover {
    border-color: var(--b1);
    color: var(--b1);
    background: rgba(255, 147, 69, 0.08);
  }
}
.why__note {
  font-size: 13.5px;
  color: #a9a2c2;
  margin: 14px 0 0;
  text-align: center;
}
.why .store-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* FAQ */
.faq {
  margin-top: 46px;
}
.faq__h {
  font-family: var(--display);
  font-size: clamp(21px, 5vw, 27px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-align: center;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 11px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item[open] {
  border-color: rgba(255, 147, 69, 0.45);
  box-shadow: var(--shadow);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__chev {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq__chev::before,
.faq__chev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--b-deep);
  transform: translate(-50%, -50%);
}
.faq__chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s var(--ease-out);
}
.faq__item[open] .faq__chev::after {
  transform: translate(-50%, -50%) rotate(0);
}
.faq__a {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.faq__a a {
  color: var(--b-deep);
}

/* closing band */
.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  margin-top: 50px;
  padding: 44px 24px;
  border-radius: 24px;
  background: radial-gradient(120% 130% at 50% -20%, #3a2d4e, #26283f);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.closing__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    60% 80% at 50% 0%,
    rgba(255, 107, 77, 0.4),
    transparent 70%
  );
  filter: blur(10px);
}
.closing__eyebrow {
  color: var(--b1);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  font-family: var(--display);
}
.closing__h {
  font-family: var(--display);
  font-size: clamp(24px, 5.5vw, 34px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}
.closing__sub {
  color: #cdc6e0;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 auto 26px;
  max-width: 48ch;
}
.closing__cta {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  margin-bottom: 18px;
}
.closing__cta .btn {
  width: 100%;
  max-width: 300px;
}
.closing .btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
@media (hover: hover) {
  .closing .btn--ghost:hover {
    border-color: var(--b1);
    color: var(--b1);
  }
}
.closing__note {
  font-size: 11px;
  color: #a9a2c2;
  margin: 14px 0 0;
}

/* byline */
.byline {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 36px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.byline__logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-2);
}
.byline__logo img {
  width: 32px;
  height: auto;
  display: block;
}
.legal-prose .byline,
.legal-prose .byline:hover {
  text-decoration: none;
}
.byline strong,
.byline span {
  text-decoration: none;
}
@media (hover: hover) {
  .byline:hover {
    border-color: rgb(254 70 112 / 32%);
    box-shadow: 0 18px 44px -28px rgb(31 33 56 / 42%);
    transform: translateY(-2px);
  }
}
.byline strong {
  font-size: 14.5px;
  font-family: var(--display);
  font-weight: 700;
  display: block;
}
.byline span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* sticky desktop cta */
.desktop-sticky-cta {
  display: none;
}
@media (min-width: 640px) {
  .desktop-sticky-cta {
    display: block;
    position: fixed;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 32px));
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
    width: calc(100% - 48px);
    max-width: 900px;
    z-index: 70;
    border-radius: 22px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: linear-gradient(
      90deg,
      rgba(119, 0, 230, 1) 0%,
      rgba(207, 50, 255, 1) 100%
    );
    box-shadow: 0 0 36px 0 rgba(255, 128, 238, 0.5),
      0 0 16px 0 rgba(255, 128, 238, 0.35), 0 6px 24px 0 rgba(119, 0, 230, 0.4);
    padding: 14px 18px;
    padding-bottom: 15px;
  }
  .desktop-sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  .desktop-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .desktop-sticky-cta__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .desktop-sticky-cta__heading {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 900;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .desktop-sticky-cta__sub {
    margin: 0;
    font-size: 13.5px;
    color: #fff;
    line-height: 1.5;
    opacity: 0.92;
  }
  .desktop-sticky-cta__sep {
    padding: 0 6px;
  }
  .desktop-sticky-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex: none;
  }
  .desktop-sticky-cta__btn {
    width: 100%;
  }
  .desktop-sticky-cta__btn .btn {
    height: 72px;
    border-radius: 90px;
    padding: 18px 25px;
    gap: 13px;
  }
  .store-btns-light img {
    height: 30px;
  }
}

/* sticky mobile cta */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 34px -12px rgba(31, 33, 56, 0.3);
  padding: 10px var(--pad);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}
.sticky-cta__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad);
  position: relative;
  box-shadow: var(--shadow-c);
}
.sticky-cta__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 21px;
  height: 21px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 3H4v7l9.59 9.59a2 2 0 0 0 2.82 0l4.18-4.18a2 2 0 0 0 0-2.82Z'/%3E%3Ccircle cx='7.5' cy='7.5' r='.5' fill='%23fff'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 3H4v7l9.59 9.59a2 2 0 0 0 2.82 0l4.18-4.18a2 2 0 0 0 0-2.82Z'/%3E%3Ccircle cx='7.5' cy='7.5' r='.5' fill='%23fff'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.sticky-cta__txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.28;
  min-width: 0;
  flex: 1 1 auto;
}
.sticky-cta__txt strong {
  font-size: 14px;
  font-weight: 800;
  font-family: var(--display);
  white-space: nowrap;
}
.sticky-cta__txt span {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.sticky-cta .btn {
  flex: none;
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}
body {
  padding-bottom: 175px;
}

/* footer */
.site-foot {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 30px 0;
  margin-top: 42px;
}
.site-foot__logo {
  display: inline-flex;
  margin-bottom: 12px;
  opacity: 0.7;
}
.site-foot__logo svg {
  height: 20px;
  width: auto;
}
.site-foot p {
  font-size: 11.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  max-width: 70ch;
}

/* ===== ≥640px ===== */
@media (min-width: 640px) {
  :root {
    --pad: 24px;
  }
  body {
    font-size: 16px;
    /* padding-bottom: 0; */
  }
  .site-nav a:not(.btn) {
    display: inline;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--display);
  }
  .site-nav a:not(.btn):hover {
    color: rgba(255, 255, 255, 0.75);
  }
  .site-nav .site-nav__sep {
    display: inline;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 10px;
    user-select: none;
  }
  .site-nav__cta--mobile {
    display: none;
  }
  .site-nav__cta--desktop {
    display: inline-flex;
  }
  .offer-ribbon {
    display: block;
  }
  .sticky-cta {
    display: none;
  }
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__cta .btn {
    width: auto;
    flex: 0 0 auto;
  }
  .store-btn {
    flex: 0 0 auto;
  }
  .faq__h {
    text-align: left;
  }
  .logos__row {
    gap: 52px;
  }
  .cro-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 18px;
    padding: 22px 26px;
  }
  .cro-cta .btn {
    width: auto;
  }
  .legal-prose .cro-toc ul {
    columns: 2;
  }
  .why__cta {
    flex-direction: row;
    max-width: none;
  }
  .why__cta .btn {
    width: auto;
  }
}

/* ===== ≥900px desktop hero ===== */
@media (min-width: 900px) {
  .hero {
    padding-top: 54px;
  }
  .hero__in {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    padding-top: 18px;
    padding-bottom: 46px;
  }
  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .pill,
  .hero__h,
  .hero__art,
  .hero__sub,
  .hero__cta,
  .store-row,
  .hero__micro {
    order: 0;
  }
  .pill {
    align-self: flex-start;
  }
  .title,
  .legal-prose h2,
  .legal-prose h3 {
    text-align: left;
  }
  .legal-prose h2::before {
    left: 0;
    transform: none;
  }
  .hero__sub {
    max-width: none;
    font-size: 15px;
  }
  .hero__cta {
    max-width: none;
    margin-inline: 0;
  }
  .hero__h {
    font-size: clamp(32px, 5vw, 38px);
    line-height: 1.05;
  }
  .hero__art {
    margin: 0;
    max-width: none;
  }
  @keyframes float1 {
    to {
      transform: translate(-40px, 40px) scale(1.08);
    }
  }
  @keyframes float2 {
    to {
      transform: translate(40px, -30px) scale(1.05);
    }
  }
  .why {
    padding: 46px 38px;
    text-align: left;
  }
  .why .why__lead {
    margin-inline: 0;
  }
  .why__cta {
    align-items: center;
    justify-content: center;
    margin-inline: auto;
  }
  .why .store-row {
    margin-inline: auto;
  }
  .why__facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .why__facts li {
    align-items: flex-start;
    text-align: left;
  }
  @media (hover: hover) {
    .why__facts li {
      transition: transform 0.25s var(--ease), border-color 0.25s;
    }
    .why__facts li:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 107, 77, 0.5);
    }
  }
}
