/* SuperKal product story — isolated from the scroll-film engine. */
.story-main,
.story-footer {
  --story-purple: #7c3aed;
  --story-purple-mid: #8b5cf6;
  --story-purple-deep: #5b21b6;
  --story-green: #10b981;
  --story-pink: #ec4899;
  --story-white: #fafafa;
  --story-ink: #1f2937;
  --story-muted: #6b7280;
  --story-lavender: #f5f0ff;
  --story-border: #e9d5ff;
  --story-shadow: 0 18px 60px rgba(91, 33, 182, 0.14);
  --story-shadow-strong: 0 26px 80px rgba(91, 33, 182, 0.2);
  --story-ease: cubic-bezier(.22, .61, .2, 1);
}

.story-main {
  position: relative;
  overflow: clip;
  color: var(--story-ink);
  background: var(--story-white);
}

.story-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--story-purple);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.story-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--story-purple), var(--story-pink));
}

.story-kicker--light {
  color: rgba(255, 255, 255, .82);
}

.story-kicker--light::before {
  background: rgba(255, 255, 255, .68);
}

.story-bridge {
  min-height: min(92vh, 860px);
  display: grid;
  place-items: center;
  padding: 120px 20px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, .18), transparent 43%),
    linear-gradient(180deg, #fafafa 0%, #fff 72%);
}

.story-bridge__inner {
  max-width: 970px;
}

.story-bridge h2,
.story-section-heading h2,
.story-chapter__copy h2,
.story-trust h2,
.story-final h2 {
  margin: 20px 0 0;
  font-size: clamp(2.45rem, 5.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 900;
}

.story-bridge h2 span,
.story-section-heading h2 span,
.story-chapter__copy h2 span,
.story-trust h2 span,
.story-final h2 span {
  color: transparent;
  background: linear-gradient(115deg, var(--story-purple-deep), var(--story-purple-mid), var(--story-green));
  background-clip: text;
  -webkit-background-clip: text;
}

.story-bridge p {
  max-width: 790px;
  margin: 28px auto 0;
  color: var(--story-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.8;
}

.story-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.story-pills span {
  padding: 9px 17px;
  border: 1px solid var(--story-border);
  border-radius: 999px;
  color: var(--story-purple-deep);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 8px 24px rgba(91, 33, 182, .08);
  font-size: .92rem;
  font-weight: 800;
}

.story-journey {
  position: relative;
}

.story-progress {
  position: sticky;
  top: calc(50vh - 116px);
  z-index: 20;
  width: 38px;
  height: 0;
  margin-left: 18px;
  margin-bottom: -1px;
  display: grid;
  gap: 10px;
  direction: ltr;
}

.story-progress a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, .18);
  border-radius: 50%;
  color: rgba(91, 33, 182, .48);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 6px 18px rgba(31, 41, 55, .08);
  backdrop-filter: blur(10px);
  font-size: .67rem;
  font-weight: 900;
  transition:
    color .25s ease,
    border-color .25s ease,
    background .25s ease,
    transform .25s var(--story-ease);
}

.story-progress a:hover,
.story-progress a:focus-visible {
  color: var(--story-purple);
  border-color: var(--story-purple);
}

.story-progress a.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--story-purple-mid), var(--story-purple-deep));
  transform: scale(1.14);
}

.story-on-dark.site-header {
  color: #fff !important;
}

.story-on-dark.site-header::before {
  opacity: 1 !important;
  background: linear-gradient(
    to bottom,
    rgba(15, 5, 35, .72),
    rgba(15, 5, 35, 0)
  );
}

.story-on-dark.site-header .brand-word {
  color: #fff;
  text-shadow: 0 1px 22px rgba(0, 0, 0, .55);
}

.story-chapter {
  min-height: min(95vh, 920px);
  display: grid;
  align-items: center;
  padding: 104px 0;
  background: #fff;
}

.story-chapter--lavender {
  background:
    radial-gradient(circle at 5% 15%, rgba(236, 72, 153, .06), transparent 28%),
    linear-gradient(135deg, #fafafa, #f7f2ff);
}

.story-chapter__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.35fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.story-chapter--reverse .story-chapter__grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .78fr);
}

.story-chapter--reverse .story-chapter__copy {
  order: 2;
}

.story-chapter--reverse .story-media {
  order: 1;
}

.story-chapter__copy {
  position: relative;
  z-index: 2;
}

.story-chapter__copy h2 {
  margin-top: 15px;
  font-size: clamp(2.2rem, 4.15vw, 4.25rem);
  line-height: 1.06;
}

.story-lede {
  margin-top: 23px;
  color: var(--story-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.78;
}

.story-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.story-proof-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--story-ink);
  font-weight: 800;
}

.story-proof-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--story-green);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, .42);
}

.story-media {
  overflow: hidden;
  border: 1px solid var(--story-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--story-shadow);
  transition:
    transform .5s var(--story-ease),
    box-shadow .5s var(--story-ease);
}

.story-media:hover {
  transform: translateY(-5px);
  box-shadow: var(--story-shadow-strong);
}

.story-media img {
  display: block;
  width: 100%;
  height: auto;
}

.story-media figcaption {
  position: relative;
  z-index: 2;
  padding: 14px 20px 16px;
  color: var(--story-muted);
  background: rgba(255, 255, 255, .94);
  text-align: center;
  font-size: .84rem;
  font-weight: 700;
}

.story-media--wide {
  transform: perspective(1200px) rotateY(1.5deg);
}

.story-media--ai {
  padding: clamp(18px, 3vw, 38px);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .9), transparent 52%),
    linear-gradient(135deg, rgba(124, 58, 237, .18), rgba(236, 72, 153, .09));
}

.story-media--ai img {
  border: 1px solid rgba(124, 58, 237, .18);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(31, 41, 55, .18);
}

.story-media--tall {
  max-height: 760px;
}

.story-media--tall img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  object-position: top;
}

.story-prompts {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}

.story-prompts span {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(124, 58, 237, .13);
  border-radius: 12px;
  color: var(--story-purple-deep);
  background: rgba(255, 255, 255, .8);
  font-size: .9rem;
  font-weight: 700;
}

.story-chapter--check {
  padding: 120px 0 130px;
  background:
    radial-gradient(circle at 50% 20%, rgba(124, 58, 237, .13), transparent 32%),
    #fff;
}

.story-chapter__copy--center {
  max-width: 830px;
  margin-inline: auto;
  text-align: center;
}

.story-chapter__copy--center h2 {
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.story-action-quote {
  display: inline-block;
  margin-top: 25px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--story-purple-mid), var(--story-purple-deep));
  box-shadow: 0 10px 28px rgba(124, 58, 237, .28);
  font-weight: 900;
}

.story-check-flow {
  display: grid;
  grid-template-columns: .68fr .68fr 1.5fr;
  gap: 18px;
  align-items: center;
  margin-top: 56px;
}

.story-check-flow figure {
  overflow: hidden;
  border: 1px solid var(--story-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--story-shadow);
}

.story-check-flow img {
  display: block;
  width: 100%;
  height: auto;
}

.story-check-flow figcaption {
  position: relative;
  z-index: 2;
  padding: 12px 15px;
  color: var(--story-muted);
  text-align: center;
  font-size: .8rem;
  font-weight: 800;
}

.story-check-flow__support:first-child {
  transform: rotate(1.2deg) translateY(30px);
}

.story-check-flow__support:nth-child(2) {
  transform: rotate(-1.2deg) translateY(-25px);
}

.story-check-flow__result {
  transform: scale(1.02);
  box-shadow: var(--story-shadow-strong) !important;
}

.story-honesty {
  width: fit-content;
  margin-top: 26px;
  padding: 11px 15px;
  border: 1px solid var(--story-border);
  border-radius: 12px;
  color: var(--story-muted);
  background: var(--story-lavender);
  font-size: .87rem;
  font-weight: 700;
}

.story-section-heading {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.story-section-heading h2 {
  margin-top: 16px;
  font-size: clamp(2.35rem, 4.7vw, 4.55rem);
}

.story-section-heading p {
  margin-top: 20px;
  color: var(--story-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.story-bento {
  padding: 130px 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(16, 185, 129, .08), transparent 25%),
    linear-gradient(180deg, #fafafa, #f8f3ff);
}

.story-bento__grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-areas:
    "lists account"
    "lists promos";
  gap: 24px;
}

.story-bento__card {
  overflow: hidden;
  border: 1px solid var(--story-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--story-shadow);
  transition:
    transform .4s var(--story-ease),
    box-shadow .4s var(--story-ease);
}

.story-bento__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--story-shadow-strong);
}

.story-bento__card--lists {
  grid-area: lists;
}

.story-bento__card--account {
  grid-area: account;
}

.story-bento__card--promos {
  grid-area: promos;
  display: grid;
  grid-template-columns: 1fr .88fr;
  align-items: center;
}

.story-bento__copy {
  padding: 30px;
}

.story-bento__copy h3 {
  margin-top: 13px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.story-bento__copy p {
  margin-top: 12px;
  color: var(--story-muted);
  line-height: 1.65;
}

.story-bento__card > img {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  border: 1px solid rgba(124, 58, 237, .11);
  border-radius: 14px;
}

.story-card-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--story-purple-deep);
  background: #f0e8ff;
  font-size: .72rem;
  font-weight: 900;
}

.story-card-tag--green {
  color: #047857;
  background: #d1fae5;
}

.story-card-tag--pink {
  color: #be185d;
  background: #fce7f3;
}

.story-bento__promo-window {
  height: 100%;
  min-height: 230px;
  overflow: hidden;
  border-right: 1px solid var(--story-border);
  background: #fff;
}

.story-bento__promo-window img {
  width: 185%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.story-trust {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(139, 92, 246, .35), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(16, 185, 129, .19), transparent 25%),
    #190a35;
}

.story-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.story-trust__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-trust .story-kicker {
  color: #c4b5fd;
}

.story-trust h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
}

.story-trust h2 span {
  background: linear-gradient(115deg, #ddd6fe, #a7f3d0);
  background-clip: text;
  -webkit-background-clip: text;
}

.story-trust__copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.story-trust__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  list-style: none;
}

.story-trust__facts li {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}

.story-trust__facts span {
  color: #a7f3d0;
  font-size: .75rem;
  font-weight: 900;
}

.story-trust__facts strong {
  font-size: 1rem;
  line-height: 1.5;
}

.story-faq {
  padding: 130px 0;
  background: #fff;
}

.story-faq__shell {
  max-width: 930px;
}

.story-faq__list {
  border-top: 1px solid var(--story-border);
}

.story-faq__item {
  border-bottom: 1px solid var(--story-border);
}

.story-faq__item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 0 24px 52px;
  color: var(--story-ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.story-faq__item summary::-webkit-details-marker {
  display: none;
}

.story-faq__item summary::after {
  content: "+";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--story-purple);
  background: var(--story-lavender);
  transform: translateY(-50%);
  transition: transform .25s var(--story-ease);
}

.story-faq__item[open] summary {
  color: var(--story-purple);
}

.story-faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.story-faq__item p {
  max-width: 760px;
  padding: 0 0 25px;
  color: var(--story-muted);
  line-height: 1.75;
}

.story-final {
  min-height: min(92vh, 860px);
  display: grid;
  place-items: center;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, .16), transparent 25%),
    radial-gradient(circle at 88% 80%, rgba(16, 185, 129, .22), transparent 26%),
    linear-gradient(135deg, var(--story-purple-mid), var(--story-purple) 50%, var(--story-purple-deep));
}

.story-final__inner {
  max-width: 900px;
}

.story-final h2 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.story-final h2 span {
  background: linear-gradient(115deg, #fff, #ddd6fe 55%, #a7f3d0);
  background-clip: text;
  -webkit-background-clip: text;
}

.story-final p {
  max-width: 690px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.15rem;
  line-height: 1.7;
}

.story-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 34px;
  padding: 15px 38px;
  border-radius: 999px;
  color: var(--story-purple-deep);
  background: #fff;
  box-shadow: 0 17px 50px rgba(22, 8, 51, .35);
  font-size: 1.08rem;
  font-weight: 900;
  transition:
    transform .25s var(--story-ease),
    box-shadow .25s ease;
}

.story-cta::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .16), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.story-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 62px rgba(22, 8, 51, .45);
}

.story-cta:hover::after {
  left: 125%;
}

.story-cta:focus-visible,
.story-progress a:focus-visible,
.story-faq__item summary:focus-visible,
.story-footer__link:focus-visible {
  outline: 3px solid #a7f3d0;
  outline-offset: 4px;
}

.story-final__support {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  font-weight: 700;
}

.story-footer {
  padding: 52px 20px 38px;
  text-align: center;
  color: var(--story-ink);
  background: var(--story-white);
  border-top: 1px solid var(--story-border);
}

.story-footer .story-shell {
  max-width: 820px;
}

.story-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.story-footer__brand img {
  border-radius: 8px;
}

.story-footer__tagline {
  margin-top: 10px;
  color: var(--story-muted);
  font-weight: 600;
}

.story-footer__link {
  display: inline-block;
  margin-top: 19px;
  color: var(--story-purple);
  font-weight: 900;
}

.story-footer__legal {
  margin: 26px auto 0;
  color: var(--story-muted);
  font-size: .78rem;
  line-height: 1.7;
}

.story-footer small {
  display: block;
  margin-top: 24px;
  color: var(--story-muted);
}

html.story-ready .story-enter {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .85s var(--story-ease),
    transform .85s var(--story-ease);
}

html.story-ready .story-enter.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .story-progress {
    display: none;
  }

  .story-chapter__grid,
  .story-chapter--reverse .story-chapter__grid,
  .story-trust__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .story-chapter--reverse .story-chapter__copy,
  .story-chapter--reverse .story-media {
    order: initial;
  }

  .story-chapter--reverse .story-chapter__copy {
    order: 1;
  }

  .story-chapter--reverse .story-media {
    order: 2;
  }

  .story-check-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-check-flow__result {
    grid-column: 1 / -1;
    transform: none;
  }

  .story-bento__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lists"
      "account"
      "promos";
  }

  .story-trust__grid {
    gap: 54px;
  }
}

@media (max-width: 768px) {
  .story-shell {
    width: min(100% - 28px, 620px);
  }

  .story-bridge {
    min-height: auto;
    padding: 94px 14px 86px;
  }

  .story-bridge h2,
  .story-section-heading h2,
  .story-chapter__copy h2,
  .story-trust h2,
  .story-final h2 {
    letter-spacing: -.035em;
  }

  .story-bridge h2 {
    font-size: clamp(2.2rem, 11.2vw, 3.65rem);
  }

  .story-chapter {
    min-height: auto;
    padding: 88px 0;
  }

  .story-chapter__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .story-chapter__copy,
  .story-chapter--reverse .story-chapter__copy {
    order: 1;
  }

  .story-media,
  .story-chapter--reverse .story-media {
    order: 2;
  }

  .story-chapter__copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .story-media,
  .story-check-flow figure,
  .story-bento__card {
    border-radius: 18px;
  }

  .story-media--wide {
    transform: none;
  }

  .story-media--tall {
    max-height: none;
  }

  .story-media--tall img {
    max-height: none;
    object-fit: contain;
  }

  .story-prompts span {
    width: 100%;
  }

  .story-chapter--check {
    padding: 92px 0 98px;
  }

  .story-check-flow {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 42px;
  }

  .story-check-flow__support:first-child,
  .story-check-flow__support:nth-child(2),
  .story-check-flow__result {
    grid-column: auto;
    transform: none;
  }

  .story-check-flow__support {
    display: none;
  }

  .story-bento,
  .story-trust,
  .story-faq {
    padding: 94px 0;
  }

  .story-bento__card--promos {
    grid-template-columns: 1fr;
  }

  .story-bento__promo-window {
    min-height: 210px;
    border-top: 1px solid var(--story-border);
    border-right: 0;
  }

  .story-trust__facts {
    grid-template-columns: 1fr;
  }

  .story-trust__facts li {
    min-height: 118px;
  }

  .story-faq__item summary {
    padding-left: 46px;
    font-size: 1rem;
  }

  .story-final {
    min-height: auto;
    padding: 110px 16px;
  }

  .story-final h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .story-cta {
    width: 100%;
    max-width: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.story-ready .story-enter {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .story-media,
  .story-bento__card,
  .story-cta,
  .story-progress a {
    transition: none;
  }
}
