/* Luseri marketing composition. Design rules: docs/design-system.md */
.page--landing {
  margin: 0;
  max-width: none;
  overflow: hidden;
  padding: 0;
}


/* Outcome proof: published catalog books, in the existing horizontal reader. */
.demo-library {
  background:
    radial-gradient(circle at 8% 10%, rgb(141 83 247 / 0.09), transparent 28%),
    radial-gradient(circle at 92% 82%, rgb(234 180 88 / 0.11), transparent 25%),
    linear-gradient(180deg, #fbf9fd 0%, #f4eff9 100%);
  overflow: hidden;
}

.demo-library__glow {
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.13;
  pointer-events: none;
  position: absolute;
}

.demo-library__glow--violet {
  background: #8f54f8;
  height: 430px;
  left: -220px;
  top: 18%;
  width: 430px;
}

.demo-library__glow--gold {
  background: #efb24d;
  bottom: 6%;
  height: 360px;
  right: -180px;
  width: 360px;
}

.demo-library__heading {
  align-items: end;
  margin-bottom: 42px;
}

.demo-library__heading h2 {
  font-size: clamp(33px, 4.25vw, 53px);
  max-width: 790px;
}

.demo-library__shelf {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(var(--showcase-book-count, 4), minmax(0, 1fr));
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.demo-library__book-tab {
  align-items: center;
  appearance: none;
  background: rgb(255 255 255 / 0.68);
  border: 1px solid rgb(94 66 130 / 0.13);
  border-radius: 20px;
  color: #2d2040;
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 12px;
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 96px;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  width: 100%;
}

.demo-library__book-tab:hover {
  background: #fff;
  border-color: rgb(125 74 235 / 0.28);
  transform: translateY(-3px);
}

.demo-library__book-tab:focus-visible,
.demo-book-stage__control:focus-visible,
.demo-book-panel__step:focus-visible {
  outline: 3px solid rgb(52 207 196 / 0.68);
  outline-offset: 3px;
}

.demo-library__book-tab.is-active {
  background: #fff;
  border-color: rgb(126 76 232 / 0.38);
  box-shadow: 0 16px 40px rgb(57 30 94 / 0.11);
  transform: translateY(-3px);
}

.demo-library__book-cover {
  aspect-ratio: 1;
  background: #1a0c32;
  border-radius: 10px 13px 13px 10px;
  box-shadow: 0 8px 18px rgb(38 20 60 / 0.22);
  display: block;
  overflow: hidden;
  position: relative;
}

.demo-library__book-cover::after {
  background: linear-gradient(90deg, rgb(7 3 17 / 0.48), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.demo-library__book-cover img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.demo-library__book-cover i {
  background: rgb(255 255 255 / 0.34);
  bottom: 5px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 1px;
  z-index: 1;
}

.demo-library__book-tab-copy {
  min-width: 0;
}

.demo-library__book-tab-copy small,
.demo-library__book-tab-copy span {
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-library__book-tab-copy small {
  color: #8752e8;
  margin-bottom: 7px;
}

.demo-library__book-tab-copy strong {
  display: -webkit-box;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: -0.035em;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.demo-library__book-tab-copy span {
  color: #8d8398;
  margin-top: 8px;
}

.demo-library__viewer {
  position: relative;
  z-index: 1;
}

.demo-book-panel[hidden],
.demo-book__page[hidden],
.demo-book-stage__control[hidden],
.demo-book-panel__steps[hidden] {
  display: none;
}

.demo-book-panel {
  background:
    radial-gradient(circle at 7% 0%, rgb(148 82 255 / 0.2), transparent 30%),
    radial-gradient(circle at 100% 100%, rgb(52 211 198 / 0.1), transparent 31%),
    linear-gradient(145deg, #170b31, #0d0923 72%);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 38px;
  box-shadow: 0 38px 90px rgb(34 17 61 / 0.22);
  color: #fff;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.demo-book-panel::before {
  background-image: radial-gradient(circle, rgb(255 255 255 / 0.34) 0 1px, transparent 1.4px);
  background-size: 38px 38px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(110deg, #000, transparent 42%);
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.demo-book-panel__header {
  display: grid;
  gap: 12px;
  min-height: 84px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.demo-book-panel__personalization {
  color: #f4edff;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.demo-book-panel__eyebrow {
  color: #54d6cc;
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.demo-book-panel__header h3 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(20px, 2.6vw, 31px);
  letter-spacing: -0.045em;
  line-height: 1.18;
  margin: 0;
}

.demo-book-panel__header ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.demo-book-panel__header li {
  align-items: center;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.11);
  border-radius: 999px;
  color: rgb(255 255 255 / 0.76);
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 7px;
  padding: 8px 11px;
}

.demo-book-panel__header li span {
  color: #efbc68;
  font-size: 12px;
}

.demo-book-stage {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  position: relative;
  z-index: 1;
}

.demo-book-stage__control {
  align-items: center;
  appearance: none;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font: inherit;
  height: 46px;
  justify-content: center;
  padding: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  width: 46px;
}

.demo-book-stage__control:hover {
  background: #8151ec;
  border-color: #a87eff;
  transform: scale(1.06);
}

.demo-book-stage__control span {
  font-size: 17px;
  line-height: 1;
}

.demo-book {
  grid-column: 2;
  background: #d9cfdf;
  border-radius: 22px;
  box-shadow:
    0 24px 55px rgb(2 1 8 / 0.38),
    inset 0 0 0 1px rgb(255 255 255 / 0.55);
  overflow: hidden;
  padding: 8px;
  position: relative;
  touch-action: pan-y pinch-zoom;
}

.demo-book::after {
  border: 1px solid rgb(66 42 88 / 0.2);
  border-radius: 17px;
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.demo-book__spine {
  background:
    linear-gradient(90deg, rgb(27 13 44 / 0.1), rgb(255 255 255 / 0.48) 48%, rgb(27 13 44 / 0.16));
  bottom: 8px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 20px;
  z-index: 4;
}

.demo-book__page {
  animation: demo-book-page-in 320ms ease both;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  aspect-ratio: 2 / 1;
  min-height: 0;
  min-width: 0;
}

.demo-book__illustration {
  background: #160b2d;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.demo-book__illustration::after {
  background: linear-gradient(to right, transparent 94%, rgb(6 3 15 / 0.12));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.demo-book__illustration img {
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  width: 100%;
}

.demo-book__illustration figcaption {
  bottom: 23px;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  left: 24px;
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.demo-book__story-page {
  align-content: stretch;
  background:
    linear-gradient(rgb(255 255 255 / 0.84), rgb(255 255 255 / 0.84)),
    repeating-linear-gradient(0deg, #f5edf4 0 1px, transparent 1px 7px),
    #fffaf3;
  color: #2c2037;
  display: grid;
  justify-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 40px clamp(28px, 3vw, 48px);
  position: relative;
  text-align: center;
}

.demo-book__reading {
  align-self: center;
  max-height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-x: contain;
  scrollbar-color: #c9b2dc transparent;
  scrollbar-width: thin;
  width: 100%;
}

.demo-book__reading:focus-visible {
  outline: 2px solid #9763cb;
  outline-offset: 5px;
}

.demo-book__story-page::before,
.demo-book__story-page::after {
  border-color: rgb(128 79 181 / 0.16);
  border-style: solid;
  content: "";
  height: 45px;
  position: absolute;
  width: 45px;
}

.demo-book__story-page::before {
  border-width: 1px 0 0 1px;
  left: 24px;
  top: 24px;
}

.demo-book__story-page::after {
  border-width: 0 1px 1px 0;
  bottom: 24px;
  right: 24px;
}

.demo-book__page-stars {
  color: #b07aee;
  font-size: 13px;
  letter-spacing: 0.26em;
  margin-bottom: 22px;
  display: block;
}

.demo-book__kicker {
  color: #8650d7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 13px;
  text-transform: uppercase;
}

.demo-book__text {
  color: #6c6076;
  font-size: 13px;
  line-height: 1.78;
  margin: 21px 0 0;
  max-width: 430px;
}

.demo-book__text--pitch {
  color: #392646;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.6;
}

.demo-book__folio {
  bottom: 20px;
  color: #a89bab;
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  position: absolute;
  right: 27px;
}

.demo-book-panel__footer {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(130px, 0.5fr) auto minmax(130px, 0.5fr);
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.demo-book-panel__footer > p {
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.demo-book-panel__footer > p small {
  color: rgb(255 255 255 / 0.43);
  display: block;
  font-size: 8px;
  margin-top: 5px;
}

.demo-book-panel__steps {
  align-items: center;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-book-panel__step {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: rgb(255 255 255 / 0.42);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font: inherit;
  gap: 5px;
  padding: 8px 4px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.demo-book-panel__step span {
  font-family: "Unbounded", sans-serif;
  font-size: 7px;
}

.demo-book-panel__step i {
  background: rgb(255 255 255 / 0.23);
  border-radius: 999px;
  display: block;
  height: 3px;
  transition:
    background 180ms ease,
    width 180ms ease;
  width: 24px;
}

.demo-book-panel__step.is-active {
  color: #fff;
}

.demo-book-panel__step.is-active i {
  background: linear-gradient(90deg, #a36df5, #47d4ca);
  width: 32px;
}

.demo-book-panel__hint {
  color: rgb(255 255 255 / 0.42);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.demo-library__action {
  align-items: center;
  background: rgb(255 255 255 / 0.76);
  border: 1px solid rgb(109 72 151 / 0.13);
  border-radius: 28px;
  box-shadow: 0 22px 55px rgb(50 26 82 / 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  margin-top: 20px;
  min-height: 142px;
  overflow: hidden;
  padding: 18px 22px;
  position: relative;
  z-index: 1;
}

.demo-library__physical {
  height: 104px;
  margin-left: 8px;
  position: relative;
  width: 112px;
}

.demo-library__physical-back,
.demo-library__physical-cover {
  border-radius: 7px 10px 10px 7px;
  display: block;
  height: 86px;
  position: absolute;
  width: 86px;
}

.demo-library__physical-back {
  background: #e8dff0;
  border: 1px solid #c9b8d7;
  box-shadow: 9px 8px 0 #fff, 10px 8px 0 #d7cadf;
  left: 31px;
  top: 9px;
  transform: rotate(9deg);
}

.demo-library__physical-cover {
  background: #160b2d;
  box-shadow: 0 12px 24px rgb(36 17 58 / 0.25);
  left: 15px;
  overflow: hidden;
  top: 8px;
  transform: rotate(-7deg);
}

.demo-library__physical-cover::after {
  background: linear-gradient(90deg, rgb(5 2 13 / 0.43), transparent 23%);
  content: "";
  inset: 0;
  position: absolute;
}

.demo-library__physical-cover img {
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
  width: 100%;
}

.demo-library__action-copy > span {
  color: #8951e3;
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.demo-library__action-copy strong {
  color: #2b1e3c;
  display: block;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.demo-library__action-copy p {
  color: #786c84;
  font-size: 11px;
  line-height: 1.6;
  margin: 8px 0 0;
}

.demo-library__action .button-hero {
  justify-content: center;
  max-width: 320px;
  text-align: center;
}

.demo-library__start {
  margin-bottom: 28px;
  position: relative;
}

.demo-library__start h3 {
  color: var(--text);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  margin: 0 0 12px;
}

.demo-library__destinations {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-library__destination {
  background: rgb(255 255 255 / 0.65);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  display: grid;
  gap: 6px;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 18px 22px;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.demo-library__destination--primary {
  background: #eee5fc;
  border-color: #cfb5f3;
}

.demo-library__destination strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.demo-library__destination > span {
  color: #655571;
  font-size: 14px;
  line-height: 1.6;
}

.demo-library__destination .demo-library__destination-cta {
  align-items: center;
  color: #6534a2;
  display: flex;
  flex-wrap: wrap;
  font-weight: 800;
  gap: 8px;
  margin-top: 4px;
}

.demo-library__destination-cta i {
  font-style: normal;
}

.demo-library__destination:hover {
  background: #e8dcfa;
  border-color: #a77cdb;
}

.demo-library__destination:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 650px) {
  .demo-library__destinations {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .demo-library__destination {
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-library__destination {
    transition: none;
  }
}

.demo-library__noscript {
  color: #6c6076;
  font-size: 13px;
}

@keyframes demo-book-page-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .demo-library__shelf {
    display: flex;
    overflow-x: auto;
    padding: 4px 0 16px;
    scroll-snap-type: x mandatory;
  }

  .demo-library__book-tab {
    flex: 0 0 246px;
    scroll-snap-align: start;
  }

  .demo-book-panel {
    padding: 26px 22px;
  }

  .demo-book__page,
  .demo-book__illustration {
    min-height: 0;
  }

  .demo-book__story-page {
    padding: 30px;
  }

  .demo-library__action {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .demo-library__action .button-hero {
    grid-column: 2;
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .demo-library__heading {
    margin-bottom: 34px;
  }

  .demo-book-panel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-book-stage {
    display: block;
  }

  .demo-book-stage__control {
    background: rgb(19 9 39 / 0.8);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
  }

  .demo-book-stage__control:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .demo-book-stage__control--previous {
    left: 14px;
  }

  .demo-book-stage__control--next {
    right: 14px;
  }

  .demo-book-panel__footer {
    grid-template-columns: minmax(110px, 1fr) auto;
  }

  .demo-book-panel__hint {
    display: none;
  }
}

@media (max-width: 650px) {
  .demo-library__heading h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .demo-library__shelf {
    display: flex;
    gap: 10px;
    margin-left: -20px;
    margin-right: -20px;
    overflow-x: auto;
    padding: 3px 20px 17px;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .demo-library__shelf::-webkit-scrollbar {
    display: none;
  }

  .demo-library__book-tab {
    flex: 0 0 246px;
    min-height: 92px;
    scroll-snap-align: start;
  }

  .demo-book-panel {
    border-radius: 28px;
    margin-left: -8px;
    margin-right: -8px;
    padding: 20px 12px 18px;
  }

  .demo-book-panel__header {
    gap: 17px;
    margin-bottom: 18px;
    padding: 0 7px;
  }

  .demo-book-panel__header h3 {
    font-size: 19px;
  }

  .demo-book-panel__header ul {
    gap: 6px;
  }

  .demo-book-panel__header li {
    font-size: 8px;
    padding: 7px 9px;
  }

  .demo-book {
    border-radius: 18px;
    padding: 6px;
  }

  .demo-book::after {
    border-radius: 13px;
    inset: 6px;
  }

  .demo-book__spine {
    display: none;
  }

  .demo-book__page {
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 248px;
    min-height: 0;
  }

  .demo-book__illustration {
    aspect-ratio: 1;
    min-height: 0;
  }

  .demo-book__story-page {
    min-height: 0;
    padding: 30px 28px;
  }

  .demo-book__story-page::before,
  .demo-book__story-page::after {
    height: 34px;
    width: 34px;
  }

  .demo-book__story-page::before {
    left: 18px;
    top: 18px;
  }

  .demo-book__story-page::after {
    bottom: 18px;
    right: 18px;
  }

  .demo-book__page-stars {
    margin-bottom: 15px;
  }

  .demo-book__text {
    font-size: 12px;
    line-height: 1.72;
    margin-top: 16px;
  }

  .demo-book__text--pitch {
    font-size: 16px;
  }

  .demo-book-stage__control {
    height: 44px;
    top: calc((100vw - 64px) / 2);
    width: 44px;
  }

  .demo-book-stage__control--previous {
    left: 10px;
  }

  .demo-book-stage__control--next {
    right: 10px;
  }

  .demo-book-panel__footer {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 17px;
    padding: 0 7px;
  }

  .demo-book-panel__footer > p {
    text-align: center;
  }

  .demo-book-panel__steps {
    flex-wrap: nowrap;
    order: -1;
  }

  .demo-book-panel__step {
    flex: 1 1 0;
    max-width: 44px;
    min-width: 0;
    padding-inline: 2px;
  }

  .demo-library__action {
    gap: 14px 18px;
    grid-template-columns: 88px minmax(0, 1fr);
    margin-left: -8px;
    margin-right: -8px;
    padding: 18px;
  }

  .demo-library__physical {
    height: 90px;
    margin-left: -4px;
    transform: scale(0.82);
    transform-origin: left center;
    width: 92px;
  }

  .demo-library__action-copy strong {
    font-size: 13px;
  }

  .demo-library__action .button-hero {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-book__page {
    animation: none;
  }

  .demo-library__book-tab,
  .demo-library__physical-cover img {
    transition: none;
  }
}

/* Reserve the hero's quiet top area for the global resume strip on return. */
.landing-body.has-resume-story .landing-hero {
  padding-top: 220px;
}

@media (min-width: 1101px) and (min-height: 700px) {
  .landing-body.has-resume-story .landing-hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 205px;
  }
}

@media (max-width: 700px) {
  .landing-body.has-resume-story .landing-hero {
    padding-top: 270px;
  }
}

.landing-container {
  margin: 0 auto;
  max-width: 1232px;
  padding-left: 26px;
  padding-right: 26px;
  position: relative;
  width: 100%;
}

.landing-section {
  padding: 112px 0;
  position: relative;
}

.section-kicker {
  color: #8a4af7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading h2,
.safety-copy h2,
.preview-panel h2,
.faq-section__heading h2,
.final-cta h2 {
  color: #211438;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 0;
}

.section-heading > p:not(.section-kicker),
.section-heading--split > p,
.safety-copy > p,
.preview-panel__copy > p,
.faq-section__heading > p {
  color: #746b82;
  font-size: 15px;
  line-height: 1.8;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 790px;
  text-align: center;
}

.section-heading--center > p:last-child {
  margin: 22px auto 0;
  max-width: 650px;
}

.section-heading--split {
  align-items: end;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
}

.section-heading--split > p {
  margin: 0;
}

.landing-hero {
  background:
    radial-gradient(circle at 50% -10%, rgb(114 54 224 / 0.28), transparent 35%),
    linear-gradient(145deg, #100725 0%, #160a34 48%, #0b0824 100%);
  color: #fff;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 154px 0 76px;
  position: relative;
}

.landing-hero::after {
  background: linear-gradient(to bottom, transparent, rgb(7 4 20 / 0.32));
  bottom: 0;
  content: "";
  height: 180px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(105px);
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
}

.hero-orb--pink {
  background: #ef3f9b;
  height: 470px;
  left: -210px;
  top: 310px;
  width: 470px;
}

.hero-orb--cyan {
  background: #31d8d4;
  height: 400px;
  right: -170px;
  top: 180px;
  width: 400px;
}

.hero-stars i {
  animation: twinkle 3.8s ease-in-out infinite alternate;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 16px #fff;
  height: 3px;
  opacity: 0.7;
  position: absolute;
  width: 3px;
}

.hero-stars i:nth-child(1) {
  left: 8%;
  top: 23%;
}

.hero-stars i:nth-child(2) {
  animation-delay: 0.6s;
  left: 47%;
  top: 13%;
}

.hero-stars i:nth-child(3) {
  animation-delay: 1.2s;
  right: 12%;
  top: 30%;
}

.hero-stars i:nth-child(4) {
  animation-delay: 1.8s;
  bottom: 28%;
  left: 36%;
}

.hero-stars i:nth-child(5) {
  animation-delay: 2.4s;
  bottom: 36%;
  right: 5%;
}

.hero-stars i:nth-child(6) {
  animation-delay: 3s;
  bottom: 16%;
  left: 12%;
}

.landing-hero__grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  min-height: 635px;
  z-index: 1;
}

.landing-hero__content {
  padding: 26px 0 54px;
  position: relative;
  z-index: 3;
}

.magic-pill {
  align-items: center;
  background: rgb(255 255 255 / 0.065);
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 999px;
  color: #d9cdec;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.055em;
  padding: 9px 14px;
  text-transform: uppercase;
}

.magic-pill span {
  color: #ffcc71;
  filter: drop-shadow(0 0 8px rgb(255 204 113 / 0.75));
}

.landing-hero h1 {
  color: #fff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(43px, 5.15vw, 72px);
  letter-spacing: -0.07em;
  line-height: 1.04;
  margin: 28px 0 26px;
  max-width: 700px;
}

.landing-hero h1 span {
  background: linear-gradient(100deg, #d4adff 5%, #f67ebc 55%, #ffd597 100%);
  background-clip: text;
  color: transparent;
  display: inline-block;
  -webkit-background-clip: text;
}

.landing-hero__lead {
  color: #b9aec9;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.button-hero {
  background: linear-gradient(105deg, #7541f5 0%, #bb45e7 48%, #ef4f9b 100%);
  border-color: rgb(255 255 255 / 0.2);
  box-shadow:
    0 15px 40px rgb(158 59 225 / 0.34),
    inset 0 1px 0 rgb(255 255 255 / 0.25);
  min-height: 56px;
  padding: 15px 25px;
}

.button-hero > span {
  font-size: 18px;
  transition: transform 200ms ease;
}

.button-hero:hover > span {
  transform: translateX(4px);
}

.text-link {
  align-items: center;
  color: #d7cbe7;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 11px;
  text-decoration: none;
}

.text-link__play {
  align-items: center;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 50%;
  display: inline-flex;
  font-size: 8px;
  height: 34px;
  justify-content: center;
  padding-left: 2px;
  transition:
    background 180ms ease,
    transform 180ms ease;
  width: 34px;
}

.text-link:hover .text-link__play {
  background: rgb(239 79 155 / 0.24);
  transform: scale(1.08);
}

.hero-price-anchor {
  align-items: center;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(110deg, rgb(125 66 244 / 0.2), rgb(239 79 155 / 0.12)),
    rgb(255 255 255 / 0.07);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgb(8 3 25 / 0.2);
  color: #ded3e9;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  margin-top: 15px;
  padding: 9px 14px;
}

.hero-price-anchor > strong,
.hero-price-anchor__offer {
  font-size: 10px;
  line-height: 1.3;
}

.hero-price-anchor > strong {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  gap: 6px;
}

.hero-price-anchor > strong i {
  color: #ffd98a;
  font-style: normal;
}

.hero-price-anchor__offer {
  align-items: baseline;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.hero-price-anchor__dot {
  background: rgb(255 255 255 / 0.2);
  border-radius: 50%;
  height: 3px;
  width: 3px;
}

.hero-visual {
  min-height: 610px;
  perspective: 1200px;
  position: relative;
}

.hero-visual__halo {
  background: linear-gradient(135deg, #8346f8, #e9489b);
  border-radius: 50%;
  filter: blur(75px);
  height: 390px;
  opacity: 0.28;
  position: absolute;
  right: 8%;
  top: 14%;
  width: 390px;
}

.hero-book-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 31px;
  box-shadow:
    0 40px 90px rgb(3 1 12 / 0.48),
    inset 0 1px 0 rgb(255 255 255 / 0.12);
  left: 3%;
  overflow: hidden;
  padding: 10px;
  position: absolute;
  top: 38px;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(2.2deg);
  transition: transform 180ms ease-out;
  width: 94%;
  z-index: 2;
}

.hero-book-card::before {
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.15), transparent);
  content: "";
  height: 1px;
  left: 15%;
  position: absolute;
  top: 10px;
  width: 70%;
}

.hero-book-card__top {
  align-items: center;
  color: #b9accb;
  display: flex;
  font-size: 8px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.06em;
  min-height: 36px;
  padding: 0 12px;
  text-transform: uppercase;
}

.hero-book-card__top span:first-child {
  align-items: center;
  display: flex;
  gap: 7px;
}

.hero-book-card__top i {
  background: #68e1cd;
  border-radius: 50%;
  box-shadow: 0 0 10px #68e1cd;
  height: 5px;
  width: 5px;
}

.hero-book-card__image {
  aspect-ratio: 1.32;
  border-radius: 23px;
  overflow: hidden;
  position: relative;
}

.hero-book-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-book-card__shade {
  background: linear-gradient(to top, rgb(10 5 29 / 0.9), transparent 52%);
  inset: 0;
  position: absolute;
}

.hero-book-card__caption {
  bottom: 22px;
  left: 24px;
  position: absolute;
}

.hero-book-card__caption small {
  color: #edcaff;
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-book-card__caption strong {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.floating-card {
  align-items: center;
  backdrop-filter: blur(17px);
  background: rgb(27 13 58 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgb(4 1 14 / 0.36);
  display: flex;
  gap: 10px;
  padding: 11px 14px;
  position: absolute;
  z-index: 4;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #9788aa;
  font-size: 7px;
  margin-bottom: 3px;
}

.floating-card strong {
  color: #fff;
  font-size: 10px;
}

.floating-card__avatar {
  align-items: center;
  background: linear-gradient(145deg, #f8b1d3, #aa72fa);
  border: 2px solid rgb(255 255 255 / 0.7);
  border-radius: 50%;
  display: flex;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.floating-card--profile {
  animation: float-card 5.5s ease-in-out infinite;
  bottom: 190px;
  left: -1%;
}

.floating-card--style {
  animation: float-card 6s ease-in-out 0.8s infinite reverse;
  right: -2%;
  top: 105px;
}

.floating-card--style > span:first-child {
  align-items: center;
  background: rgb(255 210 121 / 0.12);
  border: 1px solid rgb(255 210 121 / 0.24);
  border-radius: 10px;
  color: #ffd279;
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.floating-spark {
  animation: float-card 4.8s ease-in-out infinite;
  color: #f7c36c;
  filter: drop-shadow(0 0 10px rgb(247 195 108 / 0.7));
  font-size: 22px;
  position: absolute;
}

.floating-spark--one {
  left: 2%;
  top: 78px;
}

.floating-spark--two {
  bottom: 92px;
  right: 7%;
}

.hero-metrics {
  backdrop-filter: blur(18px);
  background: rgb(255 255 255 / 0.055);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-metrics > div {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-content: center;
  min-height: 98px;
  padding: 18px;
}

.hero-metrics > div + div {
  border-left: 1px solid rgb(255 255 255 / 0.09);
}

.hero-metrics strong {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
}

.hero-metrics span {
  color: #9588a9;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.landing-section--paper {
  background:
    radial-gradient(circle at 12% 15%, rgb(235 210 255 / 0.45), transparent 30%),
    radial-gradient(circle at 90% 95%, rgb(255 220 233 / 0.55), transparent 35%),
    #faf8fd;
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: #fff;
  border: 1px solid #ebe3f2;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgb(53 28 91 / 0.07);
  min-height: 390px;
  overflow: hidden;
  padding: 29px;
  position: relative;
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.feature-card::after {
  border-radius: 50%;
  content: "";
  filter: blur(15px);
  height: 130px;
  opacity: 0.22;
  position: absolute;
  right: -50px;
  top: -50px;
  width: 130px;
}

.feature-card--violet::after {
  background: #8551f6;
}

.feature-card--pink::after {
  background: #ef4f9b;
}

.feature-card--cyan::after {
  background: #35d5c7;
}

.feature-card:hover {
  box-shadow: 0 28px 75px rgb(59 28 107 / 0.13);
  transform: translateY(-7px);
}

.feature-card__number {
  color: #b9afc4;
  font-family: "Unbounded", sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  position: absolute;
  right: 26px;
  top: 25px;
}

.feature-card__icon {
  align-items: center;
  border-radius: 18px;
  color: #fff;
  display: flex;
  font-size: 27px;
  height: 68px;
  justify-content: center;
  margin-bottom: 34px;
  width: 68px;
}

.feature-card--violet .feature-card__icon {
  background: linear-gradient(145deg, #9d67ff, #6735e9);
  box-shadow: 0 15px 28px rgb(119 65 234 / 0.25);
}

.feature-card--pink .feature-card__icon {
  background: linear-gradient(145deg, #ff83bb, #e94390);
  box-shadow: 0 15px 28px rgb(231 66 144 / 0.24);
}

.feature-card--cyan .feature-card__icon {
  background: linear-gradient(145deg, #71e7d7, #27bdb6);
  box-shadow: 0 15px 28px rgb(39 189 182 / 0.23);
}

.feature-card h3 {
  color: #25183a;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin: 0 0 17px;
}

.feature-card p {
  color: #796e86;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.feature-card__tag {
  bottom: 28px;
  color: #8f829e;
  font-size: 8px;
  font-weight: 800;
  left: 29px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
}

.transformation {
  background: #fff;
  overflow: hidden;
}

.transformation__orb {
  background: #8f54f8;
  border-radius: 50%;
  filter: blur(100px);
  height: 480px;
  opacity: 0.11;
  position: absolute;
  right: -170px;
  top: 12%;
  width: 480px;
}

.safety-copy h2 {
  font-size: clamp(31px, 4vw, 49px);
}

/* Interactive proof: one portrait becomes a recognizable hero and a book. */
.transformation__heading {
  align-items: end;
  margin-bottom: 48px;
}

.transformation__heading h2 {
  font-size: clamp(33px, 4.25vw, 53px);
  max-width: 760px;
}

.transformation__heading > p {
  max-width: 430px;
}

.transformation-demo {
  align-items: center;
  background:
    radial-gradient(circle at 16% 15%, rgb(220 195 255 / 0.72), transparent 31%),
    radial-gradient(circle at 93% 88%, rgb(255 203 228 / 0.55), transparent 28%),
    linear-gradient(145deg, #f8f2ff, #fffafd);
  border: 1px solid #e8ddf2;
  border-radius: 38px;
  box-shadow: 0 30px 85px rgb(59 30 102 / 0.1);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.08fr) 74px minmax(340px, 0.82fr);
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.story-compare {
  background: #130a2e;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 29px;
  box-shadow: 0 25px 65px rgb(31 12 63 / 0.26);
  margin: 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.story-compare__media {
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  user-select: none;
}

.story-compare__photo,
.story-compare__hero,
.story-compare__hero img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.story-compare__photo,
.story-compare__hero img {
  object-fit: cover;
}

.story-compare__hero {
  clip-path: inset(0 0 0 var(--compare-position));
  z-index: 1;
}

.story-compare__media::after {
  background: linear-gradient(to bottom, rgb(10 5 29 / 0.35), transparent 24%, transparent 76%, rgb(10 5 29 / 0.22));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.story-compare__label {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgb(18 8 43 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
  top: 15px;
  z-index: 3;
}

.story-compare__label--photo {
  left: 15px;
}

.story-compare__label--hero {
  right: 15px;
}

.story-compare__divider {
  background: rgb(255 255 255 / 0.92);
  bottom: 0;
  box-shadow: 0 0 24px rgb(255 255 255 / 0.62);
  left: var(--compare-position);
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-1px);
  width: 2px;
  z-index: 4;
}

.story-compare__divider i {
  align-items: center;
  background: linear-gradient(145deg, #8b4ff6, #e84f9c);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 11px 28px rgb(20 7 48 / 0.32);
  color: #fff;
  display: flex;
  font-style: normal;
  height: 52px;
  justify-content: center;
  left: 50%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
}

.story-compare__divider i span {
  font-size: 17px;
  font-weight: 800;
}

.story-compare__range {
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  touch-action: pan-y;
  width: 100%;
  z-index: 5;
}

.story-compare__range::-webkit-slider-thumb {
  appearance: none;
  height: 100vh;
  width: 56px;
}

.story-compare__range::-moz-range-thumb {
  background: transparent;
  border: 0;
  height: 56px;
  width: 56px;
}

.story-compare__range:focus-visible {
  opacity: 1;
  outline: 3px solid #63e6d4;
  outline-offset: -5px;
}

.story-compare figcaption {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  padding: 15px 10px 8px;
}

.story-compare figcaption span {
  align-items: center;
  color: #b9adc9;
  display: flex;
  font-size: 8px;
  gap: 8px;
  line-height: 1.5;
}

.story-compare figcaption i,
.story-book-proof__copy > span i {
  color: #ffd98a;
  font-family: "Unbounded", sans-serif;
  font-size: 7px;
  font-style: normal;
}

.transformation-link {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  position: relative;
}

.transformation-link span {
  color: #8b7c9a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 13px;
  text-align: center;
  text-transform: uppercase;
}

.transformation-link i {
  background: linear-gradient(90deg, #b894f2, #8150ed);
  height: 1px;
  position: relative;
  width: 100%;
}

.transformation-link i::after {
  border-right: 1px solid #8150ed;
  border-top: 1px solid #8150ed;
  content: "";
  height: 7px;
  position: absolute;
  right: 0;
  top: -3px;
  transform: rotate(45deg);
  width: 7px;
}

.transformation-link b {
  align-items: center;
  background: #fff;
  border: 1px solid #dfd2eb;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgb(83 43 139 / 0.2);
  color: #8b4ff6;
  display: flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  margin-top: -17px;
  position: relative;
  width: 34px;
}

.story-book-proof {
  background: #140a31;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 29px;
  box-shadow: 0 25px 65px rgb(31 12 63 / 0.24);
  overflow: hidden;
}

.story-book-proof__stage {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 23% 18%, rgb(255 217 138 / 0.22), transparent 29%),
    radial-gradient(circle at 83% 78%, rgb(125 66 244 / 0.28), transparent 35%),
    linear-gradient(145deg, #241047, #100727);
  overflow: hidden;
  position: relative;
}

.story-book-proof__stage::after {
  background: linear-gradient(to top, rgb(9 4 25 / 0.32), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.story-book-proof__cover,
.story-book-proof__spread {
  background: #170b31;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 13px;
  box-shadow: 0 20px 45px rgb(5 2 18 / 0.48);
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.story-book-proof__cover {
  left: 6%;
  top: 6%;
  transform: rotate(-3deg);
  width: 69%;
  z-index: 2;
}

.story-book-proof__spread {
  bottom: 6%;
  right: 4%;
  transform: rotate(4deg);
  width: 56%;
  z-index: 2;
}

.story-book-proof__cover img,
.story-book-proof__spread img {
  aspect-ratio: 1;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-book-proof__format {
  backdrop-filter: blur(10px);
  background: rgb(18 8 43 / 0.74);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 999px;
  color: #f5eefe;
  font-size: 7px;
  font-weight: 800;
  padding: 7px 9px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  top: 14px;
  z-index: 4;
}

.story-book-proof__copy {
  padding: 22px 23px 24px;
}

.story-book-proof__copy > span {
  align-items: center;
  color: #aa9cba;
  display: flex;
  font-size: 8px;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-book-proof__copy h3 {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(17px, 1.8vw, 23px);
  letter-spacing: -0.045em;
  line-height: 1.25;
  margin: 11px 0 9px;
}

.story-book-proof__copy p {
  color: #aa9cba;
  font-size: 10px;
  line-height: 1.65;
  margin: 0;
}

.story-book-proof__copy a {
  align-items: center;
  color: #ffd98a;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  gap: 7px;
  margin-top: 14px;
  text-decoration: none;
}

.story-book-proof__copy a span {
  transition: transform 180ms ease;
}

.story-book-proof__copy a:hover span {
  transform: translateX(4px);
}

.story-book-proof__copy a:focus-visible {
  border-radius: 5px;
  outline: 2px solid #63e6d4;
  outline-offset: 5px;
}

.transformation-action {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 30px;
}

.transformation-action p {
  align-items: center;
  color: #655872;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  margin: 0;
}

.transformation-action p span {
  align-items: center;
  background: #e8faf6;
  border: 1px solid #c9eee6;
  border-radius: 50%;
  color: #23a88f;
  display: inline-flex;
  font-size: 8px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.story-formats {
  background:
    radial-gradient(circle at 8% 12%, rgb(119 59 236 / 0.24), transparent 31%),
    radial-gradient(circle at 92% 84%, rgb(239 79 155 / 0.15), transparent 27%),
    linear-gradient(145deg, #100725 0%, #160a34 52%, #0b0824 100%);
  color: #fff;
  overflow: hidden;
}

.story-formats__glow {
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  position: absolute;
}

.story-formats__glow--violet {
  background: #8b4ff6;
  height: 360px;
  left: -180px;
  opacity: 0.18;
  top: 18%;
  width: 360px;
}

.story-formats__glow--gold {
  background: #ffd98a;
  bottom: -170px;
  height: 330px;
  opacity: 0.1;
  right: -130px;
  width: 330px;
}

.story-formats .section-heading {
  align-items: end;
}

.story-formats .section-heading h2 {
  max-width: 760px;
}

.story-formats__proofs {
  background: rgb(255 255 255 / 0.055);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
  padding: 7px;
}

.story-formats__proofs > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 15px;
  position: relative;
}

.story-formats__proofs > div + div::before {
  background: rgb(255 255 255 / 0.09);
  bottom: 12px;
  content: "";
  left: 0;
  position: absolute;
  top: 12px;
  width: 1px;
}

.story-formats__proofs span {
  color: #63e6d4;
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.story-formats__proofs strong {
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}

.story-formats__proofs small {
  color: #aa9fba;
  font-size: 8px;
  line-height: 1.45;
}

.story-formats__grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-format-card {
  background: linear-gradient(145deg, rgb(255 255 255 / 0.09), rgb(255 255 255 / 0.035));
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 27px;
  box-shadow: 0 25px 70px rgb(4 1 17 / 0.2);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.story-format-card--print {
  background:
    linear-gradient(145deg, rgb(125 66 244 / 0.2), rgb(255 255 255 / 0.045));
  border-color: rgb(153 111 245 / 0.52);
  box-shadow:
    0 28px 76px rgb(4 1 17 / 0.28),
    0 0 0 1px rgb(125 66 244 / 0.08);
}

.story-format-card--premium {
  background:
    linear-gradient(145deg, rgb(255 217 138 / 0.12), rgb(255 255 255 / 0.035));
  border-color: rgb(255 217 138 / 0.28);
}

.story-format-card__badge {
  backdrop-filter: blur(14px);
  background: rgb(99 230 212 / 0.92);
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: 999px;
  color: #120a2d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 11px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  top: 14px;
  z-index: 3;
}

.story-format-card__visual {
  aspect-ratio: 4 / 3;
  background: #221243;
  border: 0;
  color: inherit;
  display: block;
  font: inherit;
  height: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.story-format-card__visual::after {
  background: linear-gradient(to top, rgb(10 5 28 / 0.68), transparent 55%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.story-format-card__visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.story-format-card__visual--media {
  cursor: zoom-in;
}

.story-format-card__visual--media:focus-visible {
  outline: 3px solid #63e6d4;
  outline-offset: -5px;
}

.story-format-card--print .story-format-card__visual img {
  object-position: center 33%;
}

.story-format-card--premium .story-format-card__visual img {
  object-position: 56% center;
}

.story-format-card:hover .story-format-card__visual img {
  transform: scale(1.035);
}

.story-format-card__zoom {
  backdrop-filter: blur(12px);
  background: rgb(18 8 43 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 999px;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  position: absolute;
  right: 15px;
  text-transform: uppercase;
  top: 14px;
  z-index: 2;
}

.story-format-card__visual > span:not(.story-format-card__device) {
  backdrop-filter: blur(12px);
  background: rgb(18 8 43 / 0.72);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 999px;
  bottom: 14px;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  left: 15px;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.story-format-card--digital .story-format-card__visual {
  align-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgb(99 230 212 / 0.28), transparent 30%),
    linear-gradient(145deg, #24134b, #12092f);
  display: flex;
  justify-content: center;
}

.story-format-card--digital .story-format-card__visual::before {
  background: radial-gradient(circle, rgb(255 255 255 / 0.7) 0 1px, transparent 1.5px);
  background-size: 24px 24px;
  content: "";
  inset: 0;
  opacity: 0.22;
  position: absolute;
}

.story-format-card__device {
  background: linear-gradient(145deg, #fff, #eee5f7);
  border: 7px solid #2d1a51;
  border-radius: 11px;
  box-shadow: 0 22px 45px rgb(4 1 17 / 0.42);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 138px;
  justify-content: flex-end;
  padding: 17px;
  position: relative;
  transform: rotate(-4deg);
  width: 104px;
  z-index: 1;
}

.story-format-card__device::before {
  background:
    radial-gradient(circle at 68% 30%, #ffd98a 0 7px, transparent 8px),
    linear-gradient(145deg, #7d42f4, #ef4f9b);
  border-radius: 5px;
  content: "";
  inset: 9px 9px 54px;
  position: absolute;
}

.story-format-card__device i {
  background: #c9bed4;
  border-radius: 999px;
  height: 3px;
  position: relative;
}

.story-format-card__device i:nth-child(2) {
  width: 78%;
}

.story-format-card__device i:nth-child(3) {
  width: 58%;
}

.story-format-card__visual > b {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  margin-left: 18px;
  position: relative;
  z-index: 1;
}

.story-format-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 25px 28px;
}

.story-format-card__eyebrow {
  color: #b8a9c9;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 9px;
  text-transform: uppercase;
}

.story-format-card h3 {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  letter-spacing: -0.045em;
  line-height: 1.24;
  margin: 0;
}

.story-format-card__price {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 13px 0 10px;
}

.story-format-card--premium .story-format-card__price {
  color: #ffe5aa;
}

.story-format-card__summary {
  color: #eee7f6;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
  margin: 12px 0 20px;
  min-height: 47px;
}

.story-format-card__benefits {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.story-format-card__benefits li {
  color: #c0b4cf;
  font-size: 10.5px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.story-format-card__benefits li::before {
  color: #63e6d4;
  content: "✓";
  font-size: 9px;
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 1px;
}

.story-format-card__purchase {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.story-format-card__purchase > span {
  color: #988ba8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-format-card__price {
  margin: 0 0 7px;
  white-space: nowrap;
}

.story-format-card__installments {
  color: #a99db8;
  font-size: 9px;
  line-height: 1.35;
  margin: -4px 0 6px;
}

.story-format-card__installments strong {
  color: #cfc4dc;
  font-weight: 800;
}

.story-format-card__cta {
  background: linear-gradient(135deg, #7d42f4, #ef4f9b);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgb(102 54 218 / 0.24);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  justify-content: center;
  min-height: 43px;
  padding: 12px 16px;
  text-align: center;
  width: 100%;
}

.story-format-card__cta:hover {
  box-shadow: 0 17px 36px rgb(102 54 218 / 0.34);
  color: #fff;
  transform: translateY(-1px);
}

.story-format-card__details {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  margin-top: 17px;
  padding-top: 15px;
}

.story-format-card__details summary {
  color: #d9cfe5;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  list-style: none;
  padding: 3px 24px 3px 0;
  position: relative;
}

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

.story-format-card__details summary::after {
  content: "+";
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  right: 2px;
  top: -1px;
}

.story-format-card__details[open] summary::after {
  content: "−";
}

.story-format-card__details summary:focus-visible {
  border-radius: 5px;
  outline: 2px solid #63e6d4;
  outline-offset: 3px;
}

.story-format-card__details ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 13px 0 0;
  padding: 0;
}

.story-format-card__details li {
  color: #a99db8;
  font-size: 9.5px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.story-format-card__details li::before {
  color: #63e6d4;
  content: "·";
  font-weight: 900;
  left: 1px;
  position: absolute;
}

.story-format-media-dialog {
  background: transparent;
  border: 0;
  color: #fff;
  max-height: 100vh;
  max-width: 100vw;
  padding: 24px;
  width: min(1120px, 100vw);
}

.story-format-media-dialog::backdrop {
  backdrop-filter: blur(12px);
  background: rgb(7 3 20 / 0.86);
}

.story-format-media-dialog__shell {
  background: #13092f;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgb(0 0 0 / 0.48);
  margin: auto;
  max-width: 1040px;
  overflow: hidden;
  position: relative;
}

.story-format-media-dialog figure {
  margin: 0;
}

.story-format-media-dialog img {
  display: block;
  height: auto;
  max-height: calc(100vh - 112px);
  object-fit: contain;
  width: 100%;
}

.story-format-media-dialog figcaption {
  color: #d8cde5;
  font-size: 10px;
  line-height: 1.5;
  padding: 13px 20px 15px;
}

.story-format-media-dialog__close {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgb(13 6 34 / 0.78);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 22px;
  height: 42px;
  justify-content: center;
  padding: 0 0 3px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  z-index: 3;
}

.story-format-media-dialog__close:focus-visible {
  outline: 3px solid #63e6d4;
  outline-offset: 3px;
}

.story-formats__action {
  align-items: center;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 22px;
  padding: 22px 22px 22px 26px;
}

.story-formats__action > div {
  display: grid;
  gap: 5px;
  max-width: 680px;
}

.story-formats__action strong {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  letter-spacing: -0.035em;
}

.story-formats__action > div span {
  color: #c0b4cf;
  font-size: 10.5px;
  line-height: 1.55;
}

.story-formats__action .button-hero {
  min-width: 235px;
}

.styles-section {
  background: #fff;
}

.styles-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.style-showcase {
  background: #fff;
  border: 1px solid #e8e0ef;
  border-radius: 23px;
  box-shadow: 0 17px 42px rgb(55 30 89 / 0.065);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition:
    box-shadow 250ms ease,
    transform 250ms ease;
}

.style-showcase:hover {
  box-shadow: 0 25px 58px rgb(55 30 89 / 0.13);
  transform: translateY(-6px);
}

.style-showcase__art {
  aspect-ratio: 1;
  background: #24133e;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.style-showcase__art img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.style-showcase:hover .style-showcase__art img {
  transform: scale(1.035);
}

.style-showcase__shade {
  background: linear-gradient(
    to top,
    rgb(13 6 34 / 0.94) 0%,
    rgb(13 6 34 / 0.46) 38%,
    transparent 72%
  );
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.style-showcase__index {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgb(18 10 45 / 0.58);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  color: #fff1bd;
  display: inline-flex;
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  height: 34px;
  justify-content: center;
  left: 14px;
  position: absolute;
  top: 14px;
  width: 34px;
  z-index: 2;
}

.style-showcase__image-copy {
  bottom: 0;
  left: 0;
  padding: 19px 18px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.style-showcase__image-copy small {
  color: #ffd98a;
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.style-showcase__image-copy h3 {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(13px, 1.35vw, 17px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 4px 18px rgb(8 3 23 / 0.48);
}

.style-showcase__copy {
  background: linear-gradient(145deg, #fff, #fcf9fe);
  display: flex;
  flex: 1;
  min-height: 82px;
  padding: 17px 19px 20px;
}

.style-showcase__copy p {
  color: #7c7186;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.process-section {
  background:
    radial-gradient(circle at 20% 0%, rgb(119 59 236 / 0.2), transparent 32%),
    radial-gradient(circle at 85% 90%, rgb(226 63 151 / 0.16), transparent 30%),
    #12092d;
  color: #fff;
  overflow: hidden;
  padding-bottom: 92px;
  padding-top: 92px;
}

.process-section__glow {
  background: #2fcbbd;
  border-radius: 50%;
  filter: blur(120px);
  height: 420px;
  opacity: 0.08;
  position: absolute;
  right: -100px;
  top: 10%;
  width: 420px;
}

.section-heading--dark h2 {
  color: #fff;
}

.section-heading--dark > p:last-child {
  color: #aaa0b9;
}

.process-grid {
  counter-reset: process;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-grid li {
  background: linear-gradient(145deg, rgb(255 255 255 / 0.075), rgb(255 255 255 / 0.035));
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 23px;
  min-height: 305px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.process-grid li:hover {
  background: linear-gradient(145deg, rgb(141 75 247 / 0.18), rgb(255 255 255 / 0.045));
  border-color: rgb(178 131 255 / 0.28);
  transform: translateY(-5px);
}

.process-grid li:not(:last-child)::after {
  color: #6b5c80;
  content: "→";
  font-size: 13px;
  position: absolute;
  right: -12px;
  top: 47px;
  z-index: 2;
}

.process-card__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.process-card__top span {
  color: #766888;
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
}

.process-card__top i {
  align-items: center;
  background: linear-gradient(145deg, rgb(149 83 247 / 0.26), rgb(239 79 155 / 0.14));
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 15px;
  color: #e8cfff;
  display: flex;
  font-size: 22px;
  font-style: normal;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.process-grid h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  letter-spacing: -0.035em;
  line-height: 1.35;
  margin: 60px 0 14px;
}

.process-grid p {
  color: #968aa7;
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}

.process-cta {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 0.09);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 46px;
  padding-top: 38px;
}

.process-cta > span {
  color: #afa2be;
  font-size: 11px;
  font-weight: 700;
}

.story-worlds {
  background: #f8f4fc;
}

.worlds-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.world-card {
  align-items: center;
  border: 1px solid #e9e1f0;
  border-radius: 24px;
  display: grid;
  gap: 15px;
  grid-template-columns: 24px 58px 1fr;
  min-height: 126px;
  overflow: hidden;
  padding: 18px 20px;
  position: relative;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.world-card:hover {
  box-shadow: 0 22px 55px rgb(53 28 91 / 0.1);
  transform: translateY(-4px);
}

.world-card::after {
  border-radius: 50%;
  content: "";
  filter: blur(38px);
  height: 140px;
  opacity: 0.2;
  position: absolute;
  right: -45px;
  top: -50px;
  width: 140px;
}

.world-card--forest {
  background: linear-gradient(135deg, #f6fbf6, #faf7ff);
}

.world-card--forest::after {
  background: #50b788;
}

.world-card--space {
  background: linear-gradient(135deg, #f5f2ff, #faf7ff);
}

.world-card--space::after {
  background: #6d4be8;
}

.world-card--first {
  background: linear-gradient(135deg, #fff8f4, #fbf6ff);
}

.world-card--first::after {
  background: #f19769;
}

.world-card--birthday {
  background: linear-gradient(135deg, #fff5fb, #faf7ff);
}

.world-card--birthday::after {
  background: #eb55a4;
}

.world-card__index {
  color: #a89caf;
  font-family: "Unbounded", sans-serif;
  font-size: 7px;
}

.world-card__icon {
  align-items: center;
  border-radius: 16px;
  color: #fff;
  display: flex;
  font-size: 25px;
  height: 58px;
  justify-content: center;
  position: relative;
  width: 58px;
  z-index: 1;
}

.world-card--forest .world-card__icon {
  background: linear-gradient(145deg, #72c99f, #32866b);
}

.world-card--space .world-card__icon {
  background: linear-gradient(145deg, #8e6cf6, #4e31ba);
}

.world-card--first .world-card__icon {
  background: linear-gradient(145deg, #f6b07d, #db7558);
}

.world-card--birthday .world-card__icon {
  background: linear-gradient(145deg, #f383ba, #c83a89);
}

.world-card small {
  color: #9b8fa7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.world-card h3 {
  color: #2a1a3e;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  letter-spacing: -0.04em;
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
}

.safety-section {
  background:
    radial-gradient(circle at 18% 50%, rgb(87 220 202 / 0.1), transparent 25%),
    #f5f0fb;
}

.safety-section__grid {
  align-items: center;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1.1fr);
}

.safety-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 510px;
  position: relative;
}

.safety-shield {
  align-items: center;
  background: linear-gradient(145deg, #25124d, #6d38d7);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 46% 46% 54% 54% / 35% 35% 65% 65%;
  box-shadow:
    0 35px 80px rgb(73 35 139 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.2);
  height: 230px;
  position: relative;
  width: 190px;
  z-index: 2;
}

.safety-shield::after {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: inherit;
  content: "";
  inset: 10px;
  position: absolute;
}

.safety-shield > span {
  color: #ffda86;
  filter: drop-shadow(0 0 14px rgb(255 218 134 / 0.6));
  font-size: 29px;
  left: 22px;
  position: absolute;
  top: 24px;
}

.safety-shield > i {
  align-items: center;
  background: linear-gradient(145deg, #70e5d0, #28b7ae);
  border: 5px solid rgb(255 255 255 / 0.12);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 28px;
  font-style: normal;
  height: 78px;
  justify-content: center;
  width: 78px;
}

.safety-orbit {
  border: 1px solid rgb(126 68 237 / 0.18);
  border-radius: 50%;
  position: absolute;
}

.safety-orbit--one {
  height: 345px;
  width: 345px;
}

.safety-orbit--two {
  border-style: dashed;
  height: 455px;
  opacity: 0.6;
  width: 455px;
}

.safety-orbit--one::before,
.safety-orbit--two::before {
  background: #8651ee;
  border: 5px solid #f5f0fb;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgb(92 47 168 / 0.25);
  content: "";
  height: 13px;
  position: absolute;
  width: 13px;
}

.safety-orbit--one::before {
  right: 31px;
  top: 40px;
}

.safety-orbit--two::before {
  bottom: 60px;
  left: 28px;
}

.safety-badge {
  align-items: center;
  background: rgb(255 255 255 / 0.88);
  border: 1px solid #e2d8ed;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgb(53 28 91 / 0.12);
  color: #44334f;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 8px;
  padding: 10px 14px;
  position: absolute;
  z-index: 3;
}

.safety-badge span {
  color: #7341e5;
}

.safety-badge--top {
  right: 2%;
  top: 95px;
}

.safety-badge--bottom {
  bottom: 96px;
  left: 1%;
}

.safety-copy > p {
  margin: 24px 0 31px;
}

.safety-points {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.safety-points article {
  align-items: flex-start;
  border-top: 1px solid #ded4e8;
  display: grid;
  gap: 16px;
  grid-template-columns: 32px 1fr;
  padding: 18px 0;
}

.safety-points article > span {
  color: #8d58ed;
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  padding-top: 3px;
}

.safety-points h3 {
  color: #31203f;
  font-size: 12px;
  margin: 0 0 5px;
}

.safety-points p {
  color: #81748d;
  font-size: 10px;
  line-height: 1.65;
  margin: 0;
}

.preview-section {
  background: #fff;
}

.preview-panel {
  background:
    linear-gradient(120deg, rgb(255 255 255 / 0.035), transparent),
    #140a31;
  border-radius: 38px;
  color: #fff;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  min-height: 560px;
  overflow: hidden;
  padding: 66px;
  position: relative;
}

.preview-panel__glow {
  background: #d43e9a;
  border-radius: 50%;
  filter: blur(100px);
  height: 390px;
  opacity: 0.2;
  position: absolute;
  right: -80px;
  top: -100px;
  width: 390px;
}

.preview-panel__copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.preview-panel h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
}

.preview-panel__copy > p {
  color: #aaa0b9;
  margin: 22px 0 0;
}

.preview-panel__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 27px 0 31px;
}

.preview-panel__facts span {
  align-items: center;
  color: #a99bb9;
  display: flex;
  font-size: 9px;
  gap: 8px;
  text-transform: uppercase;
}

.preview-panel__facts strong {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
}

.preview-panel__delivery {
  align-items: center;
  background: rgb(255 255 255 / 0.055);
  border: 1px solid rgb(255 255 255 / 0.11);
  border-radius: 17px;
  display: flex;
  gap: 13px;
  margin-top: 24px;
  max-width: 430px;
  padding: 14px 16px;
}

.preview-panel__delivery > span {
  align-items: center;
  background: rgb(99 230 212 / 0.12);
  border: 1px solid rgb(99 230 212 / 0.2);
  border-radius: 12px;
  color: #63e6d4;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 17px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.preview-panel__delivery strong,
.preview-panel__delivery small {
  display: block;
}

.preview-panel__delivery strong {
  color: #f9f6ff;
  font-size: 10px;
  line-height: 1.45;
}

.preview-panel__delivery small {
  color: #a99bb9;
  font-size: 8px;
  line-height: 1.55;
  margin-top: 3px;
}

.preview-book {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  perspective: 1000px;
  position: relative;
  transform: rotate(3deg);
  z-index: 2;
}

.preview-book__page {
  background: #fffaf0;
  box-shadow: 0 30px 60px rgb(3 1 11 / 0.36);
  color: #40314d;
  min-height: 350px;
  padding: 17px;
  position: relative;
}

.preview-book__page--left {
  border-radius: 22px 3px 3px 22px;
  transform: rotateY(8deg);
  transform-origin: right center;
}

.preview-book__page--right {
  border-radius: 3px 22px 22px 3px;
  transform: rotateY(-8deg);
  transform-origin: left center;
}

.preview-book__page small {
  color: #a99aac;
  font-size: 7px;
  text-transform: uppercase;
}

.preview-book__scene {
  align-items: center;
  background:
    radial-gradient(circle at 70% 25%, #ffd882 0 6%, transparent 7%),
    linear-gradient(145deg, #7965d2, #ed78aa 57%, #f6c980);
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 47px;
  height: 205px;
  justify-content: center;
  margin: 10px 0 14px;
}

.preview-book__page--right .preview-book__scene {
  background:
    radial-gradient(circle at 28% 28%, #fff2b3 0 7%, transparent 8%),
    linear-gradient(145deg, #24356d, #7f4ecb 55%, #de5fa1);
}

.preview-book__page i {
  background: #dfd5d2;
  border-radius: 2px;
  display: block;
  height: 4px;
  margin-top: 7px;
}

.preview-book__page i:nth-of-type(1) {
  width: 92%;
}

.preview-book__page i:nth-of-type(2) {
  width: 78%;
}

.preview-book__page i:nth-of-type(3) {
  width: 56%;
}

.preview-book__locked {
  align-items: center;
  backdrop-filter: blur(13px);
  background: rgb(29 13 61 / 0.85);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
  bottom: -19px;
  box-shadow: 0 15px 35px rgb(3 1 12 / 0.32);
  color: #c5b7d5;
  display: flex;
  font-size: 8px;
  font-weight: 700;
  gap: 8px;
  left: 50%;
  padding: 10px 14px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 3;
}

.preview-book__locked span {
  color: #f2bf65;
  font-size: 13px;
}

.landing-social {
  background: #f8f4fc;
  padding-bottom: 72px;
  padding-top: 72px;
}

.landing-social__panel {
  align-items: center;
  background:
    radial-gradient(circle at 8% 50%, rgb(228 79 158 / 0.18), transparent 28%),
    radial-gradient(circle at 92% 10%, rgb(87 206 194 / 0.13), transparent 28%),
    linear-gradient(145deg, #1a0c39, #12082d);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgb(39 18 72 / 0.18);
  color: #fff;
  display: grid;
  gap: 32px;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 38px 42px;
  position: relative;
}

.landing-social__mark {
  align-items: center;
  background: linear-gradient(145deg, #8d52f2, #e6509d);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 23px;
  box-shadow: 0 17px 38px rgb(173 65 205 / 0.28);
  display: flex;
  height: 74px;
  justify-content: center;
  transform: rotate(-4deg);
  width: 74px;
}

.landing-social__mark span {
  color: #ffe09a;
  font-size: 30px;
}

.landing-social__copy .section-kicker {
  color: #c8a9ff;
  margin-bottom: 10px;
}

.landing-social__copy h2 {
  color: #fff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(23px, 3vw, 34px);
  letter-spacing: -0.05em;
  line-height: 1.15;
  margin: 0;
}

.landing-social__copy > p:last-child {
  color: #bcb0ca;
  font-size: 12px;
  line-height: 1.65;
  margin: 13px 0 0;
  max-width: 680px;
}

.landing-social__links {
  display: flex;
  gap: 10px;
}

.landing-social__link {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 15px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.landing-social__link:hover {
  box-shadow: 0 12px 28px rgb(3 1 12 / 0.26);
  transform: translateY(-3px);
}

.landing-social__link svg {
  fill: currentColor;
  height: 21px;
  width: 21px;
}

.landing-social__link--telegram {
  background: linear-gradient(145deg, #2ea4d8, #2585c2);
}

.landing-social__link--vk {
  background: linear-gradient(145deg, #397cea, #2761c8);
}

.faq-section {
  background: #fff;
}

.faq-section__grid {
  align-items: start;
  display: grid;
  gap: 95px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.faq-section__heading {
  position: sticky;
  top: 118px;
}

.faq-section__heading > p {
  margin: 22px 0 0;
}

.faq-decoration {
  align-items: center;
  background: linear-gradient(145deg, #7e47ee, #ec4e9b);
  border-radius: 28px;
  box-shadow: 0 23px 55px rgb(126 65 226 / 0.25);
  color: #fff;
  display: flex;
  height: 105px;
  justify-content: center;
  margin-top: 35px;
  position: relative;
  transform: rotate(-4deg);
  width: 105px;
}

.faq-decoration span {
  font-family: "Unbounded", sans-serif;
  font-size: 44px;
}

.faq-decoration i {
  color: #ffdc88;
  font-size: 18px;
  font-style: normal;
  position: absolute;
  right: -14px;
  top: -14px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-list details {
  border-top: 1px solid #ded5e6;
}

.faq-list details:last-child {
  border-bottom: 1px solid #ded5e6;
}

.faq-list summary {
  align-items: center;
  color: #322140;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  padding: 24px 0;
}

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

.faq-list summary span {
  align-items: center;
  border: 1px solid #d7cbe3;
  border-radius: 50%;
  color: #7e48ed;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 400;
  height: 32px;
  justify-content: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 32px;
}

.faq-list details[open] summary span {
  background: #7d43ed;
  color: #fff;
  transform: rotate(45deg);
}

.faq-list details p {
  color: #796d84;
  font-size: 11px;
  line-height: 1.8;
  margin: -5px 48px 24px 0;
  max-width: 650px;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 110%, rgb(142 71 245 / 0.35), transparent 39%),
    #0f0726;
  color: #fff;
  overflow: hidden;
  padding: 115px 0 125px;
  position: relative;
  text-align: center;
}

.final-cta__orb {
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  position: absolute;
}

.final-cta__orb--one {
  background: #ef4f9b;
  height: 340px;
  left: -120px;
  top: -80px;
  width: 340px;
}

.final-cta__orb--two {
  background: #39d3c6;
  bottom: -130px;
  height: 360px;
  right: -100px;
  width: 360px;
}

.final-cta__stars {
  color: rgb(255 220 139 / 0.46);
  font-size: 20px;
  left: 0;
  letter-spacing: 1em;
  position: absolute;
  right: 0;
  top: 52px;
}

.final-cta__content {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 65px);
  margin-top: 28px;
  max-width: 1000px;
}

.final-cta h2 span {
  background: linear-gradient(100deg, #d9b7ff, #ef75b6, #ffd68b);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.final-cta p {
  color: #aa9dbb;
  font-size: 14px;
  line-height: 1.7;
  margin: 24px 0 30px;
}

.button-hero--large {
  font-size: 14px;
  min-height: 62px;
  padding-left: 30px;
  padding-right: 30px;
}

.final-cta__content > small {
  color: #716481;
  font-size: 9px;
  margin-top: 15px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid [data-reveal]:nth-child(2),
.styles-grid [data-reveal]:nth-child(2),
.process-grid [data-reveal]:nth-child(2),
.worlds-grid [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.feature-grid [data-reveal]:nth-child(3),
.styles-grid [data-reveal]:nth-child(3),
.process-grid [data-reveal]:nth-child(3),
.worlds-grid [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

.styles-grid [data-reveal]:nth-child(4),
.process-grid [data-reveal]:nth-child(4),
.worlds-grid [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes twinkle {
  from {
    opacity: 0.2;
    transform: scale(0.7);
  }

  to {
    opacity: 0.9;
    transform: scale(1.25);
  }
}

/*
 * Desktop hero viewport budget.
 * Keeps the complete promise, visual and proof strip inside the first screen
 * on 13–15 inch laptops while tablet and mobile retain their natural flow.
 */
@media (min-width: 1101px) and (min-height: 700px) {
  .landing-hero {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding-bottom: clamp(24px, 3.5svh, 38px);
    padding-top: clamp(102px, 12.5svh, 132px);
    row-gap: clamp(10px, 1.6svh, 18px);
  }

  .landing-hero__grid {
    gap: clamp(36px, 4vw, 58px);
    height: 100%;
    min-height: 0;
    transform: translateY(clamp(-42px, calc(-3svh - 10px), -30px));
  }

  .landing-hero__content {
    padding: 0;
  }

  .landing-hero h1 {
    font-size: clamp(43px, min(5.15vw, 7.2svh), 72px);
    margin-bottom: clamp(16px, 2.4svh, 26px);
    margin-top: clamp(18px, 2.7svh, 28px);
  }

  .landing-hero__lead {
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: clamp(20px, 3svh, 34px);
  }

  .hero-price-anchor {
    margin-top: clamp(10px, 1.6svh, 15px);
  }

  .hero-visual {
    height: 100%;
    min-height: 0;
  }

  .hero-book-card {
    left: 50%;
    top: clamp(18px, 4svh, 38px);
    transform:
      translateX(-50%)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      rotate(2.2deg);
    width: min(94%, 74svh);
  }

  .floating-card--profile {
    bottom: clamp(189px, calc(6svh + 155px), 215px);
  }

  .hero-metrics {
    margin-top: 0;
  }

  .hero-metrics > div {
    min-height: clamp(64px, 9svh, 88px);
    padding: clamp(10px, 2svh, 16px);
  }
}

@media (min-width: 1101px) and (min-height: 700px) and (max-height: 800px) {
  .landing-hero {
    padding-bottom: clamp(20px, 3svh, 26px);
    padding-top: 100px;
  }

  .landing-hero h1 {
    font-size: clamp(42px, min(4.7vw, 6.9svh), 56px);
  }

  .landing-hero__lead {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 18px;
  }

  .button-hero {
    min-height: 52px;
    padding-bottom: 13px;
    padding-top: 13px;
  }

  .hero-price-anchor {
    padding-bottom: 7px;
    padding-top: 7px;
  }

  .hero-visual {
    height: 100%;
    min-height: 0;
  }

  .hero-book-card {
    top: 16px;
  }

  .hero-metrics {
    margin-top: 0;
  }

  .hero-metrics > div {
    min-height: clamp(62px, 8.5svh, 70px);
  }
}

@media (max-width: 1100px) {
  .landing-hero {
    min-height: auto;
  }

  .landing-hero__grid {
    gap: 28px;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  }

  .landing-hero h1 {
    font-size: clamp(41px, 5.2vw, 58px);
  }

  .floating-card--profile {
    left: -2%;
  }

  .floating-card--style {
    right: -1%;
  }

  .transformation-demo {
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) 54px minmax(310px, 0.78fr);
    padding: 24px;
  }

  .safety-section__grid {
    gap: 60px;
  }

  .styles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .landing-social__panel {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .landing-social__links {
    grid-column: 2;
  }

  .story-formats__proofs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .story-formats__proofs > div:nth-child(4)::before {
    display: block;
  }

  .story-formats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .preview-panel {
    gap: 38px;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    padding: 52px;
  }
}

@media (max-width: 900px) {
  .landing-section {
    padding: 88px 0;
  }

  .landing-hero {
    padding-top: 130px;
  }

  .landing-hero__grid {
    grid-template-columns: 1fr;
  }

  .landing-hero__content {
    max-width: 760px;
    padding-bottom: 0;
    text-align: center;
  }

  .landing-hero h1,
  .landing-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-price-anchor {
    justify-content: center;
  }

  .hero-visual {
    margin: 0 auto;
    max-width: 660px;
    min-height: 610px;
    width: 100%;
  }

  .hero-metrics {
    margin-top: 0;
  }

  .section-heading--split {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .section-heading--split > p {
    max-width: 680px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 325px;
  }

  .transformation__heading {
    margin-bottom: 38px;
  }

  .transformation-demo {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 690px;
  }

  .story-compare,
  .story-book-proof {
    width: 100%;
  }

  .transformation-link {
    min-height: 70px;
  }

  .transformation-link span {
    margin-bottom: 9px;
  }

  .transformation-link i {
    background: linear-gradient(#b894f2, #8150ed);
    height: 46px;
    width: 1px;
  }

  .transformation-link i::after {
    border-bottom: 1px solid #8150ed;
    border-right: 1px solid #8150ed;
    border-top: 0;
    bottom: 0;
    right: -3px;
    top: auto;
    transform: rotate(45deg);
  }

  .transformation-link b {
    margin-left: -1px;
    margin-top: -17px;
  }

  .story-book-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr);
  }

  .story-book-proof__stage {
    min-height: 0;
  }

  .story-book-proof__copy {
    align-self: center;
  }

  .safety-section__grid,
  .preview-panel,
  .faq-section__grid {
    grid-template-columns: 1fr;
  }

  .safety-copy {
    max-width: 720px;
  }

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

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

  .landing-social__panel {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .process-grid li:not(:last-child)::after {
    display: none;
  }

  .safety-section__grid {
    gap: 40px;
  }

  .safety-visual {
    order: 2;
  }

  .preview-panel {
    gap: 58px;
  }

  .preview-panel__copy {
    max-width: 680px;
  }

  .preview-book {
    margin: 0 auto;
    max-width: 650px;
    width: 100%;
  }

  .faq-section__grid {
    gap: 50px;
  }

  .faq-section__heading {
    position: static;
  }

  .faq-decoration {
    display: none;
  }
}

@media (max-width: 650px) {
  .landing-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .landing-section {
    padding: 72px 0;
  }

  .landing-social {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .story-format-media-dialog {
    padding: 8px;
  }

  .story-format-media-dialog__shell {
    border-radius: 18px;
  }

  .story-format-media-dialog__close {
    height: 38px;
    right: 10px;
    top: 10px;
    width: 38px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .safety-copy h2,
  .preview-panel h2,
  .faq-section__heading h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .landing-hero {
    padding-bottom: 54px;
    padding-top: 112px;
  }

  .magic-pill {
    font-size: 8px;
  }

  .landing-hero h1 {
    font-size: clamp(39px, 12.2vw, 54px);
  }

  .landing-hero__lead {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button-hero {
    width: 100%;
  }

  .hero-price-anchor {
    border-radius: 18px;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 310px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-book-card {
    left: 0;
    top: 50px;
    width: 100%;
  }

  .hero-book-card__image {
    aspect-ratio: 1.05;
  }

  .hero-book-card__image img {
    object-position: 55% center;
  }

  .hero-book-card__caption {
    bottom: 17px;
    left: 18px;
  }

  .floating-card--profile {
    bottom: 144px;
    left: 0;
  }

  .floating-card--style {
    right: 0;
    top: 18px;
  }

  .floating-spark {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics > div {
    min-height: 82px;
  }

  .hero-metrics > div + div {
    border-left: 0;
  }

  .hero-metrics > div:nth-child(even) {
    border-left: 1px solid rgb(255 255 255 / 0.09);
  }

  .hero-metrics > div:nth-child(n + 3) {
    border-top: 1px solid rgb(255 255 255 / 0.09);
  }

  .feature-card {
    min-height: 360px;
  }

  .transformation__heading {
    margin-bottom: 30px;
  }

  .transformation-demo {
    border-radius: 28px;
    gap: 12px;
    margin-left: -8px;
    margin-right: -8px;
    padding: 12px;
  }

  .story-compare,
  .story-book-proof {
    border-radius: 23px;
  }

  .story-compare {
    padding: 7px;
  }

  .story-compare__media {
    border-radius: 18px;
  }

  .story-compare__label {
    font-size: 7px;
    padding: 7px 9px;
    top: 11px;
  }

  .story-compare__label--photo {
    left: 11px;
  }

  .story-compare__label--hero {
    right: 11px;
  }

  .story-compare__divider i {
    height: 48px;
    width: 48px;
  }

  .story-compare figcaption {
    gap: 9px;
    grid-template-columns: 1fr;
    padding: 13px 8px 7px;
  }

  .story-book-proof {
    display: block;
  }

  .story-book-proof__stage {
    min-height: 0;
  }

  .story-book-proof__copy {
    padding: 20px;
  }

  .story-book-proof__copy h3 {
    font-size: 18px;
  }

  .transformation-action {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .transformation-action .button-hero {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .styles-grid,
  .process-grid,
  .worlds-grid {
    grid-template-columns: 1fr;
  }

  .landing-social__panel {
    gap: 26px;
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .landing-social__mark {
    display: none;
  }

  .landing-social__links {
    align-items: stretch;
    flex-direction: column;
    grid-column: auto;
  }

  .story-formats__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .story-format-card {
    max-width: 620px;
    width: 100%;
  }

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

  .story-formats__proofs > div:nth-child(3)::before {
    display: none;
  }

  .story-formats__proofs > div:nth-child(4)::before {
    display: block;
  }

  .story-format-card__visual {
    height: auto;
  }

  .story-format-card__copy {
    padding: 22px 21px 24px;
  }

  .story-format-card__summary {
    min-height: 0;
  }

  .story-formats__action {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .story-formats__action .button-hero {
    justify-content: center;
    min-width: 0;
    text-align: center;
    width: 100%;
  }

  .process-grid li {
    min-height: 260px;
  }

  .process-grid h3 {
    margin-top: 44px;
  }

  .world-card {
    gap: 14px;
    grid-template-columns: 18px 62px 1fr;
    padding: 16px;
  }

  .world-card__icon {
    border-radius: 16px;
    height: 62px;
    width: 62px;
  }

  .world-card h3 {
    font-size: 12px;
  }

  .safety-visual {
    min-height: 410px;
    transform: scale(0.84);
  }

  .safety-badge--top {
    right: -8%;
  }

  .safety-badge--bottom {
    left: -8%;
  }

  .preview-panel {
    border-radius: 28px;
    padding: 38px 22px 54px;
  }

  .preview-panel__facts {
    gap: 16px;
  }

  .preview-panel__delivery {
    align-items: flex-start;
    padding: 13px;
  }

  .preview-book {
    min-height: 285px;
  }

  .preview-book__page {
    min-height: 280px;
    padding: 11px;
  }

  .preview-book__scene {
    font-size: 36px;
    height: 165px;
  }

  .preview-book__locked {
    bottom: -30px;
    font-size: 7px;
  }

  .faq-list summary {
    font-size: 12px;
    line-height: 1.5;
    padding: 20px 0;
  }

  .final-cta {
    padding: 95px 0;
  }

  .final-cta h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
}
