@import url("https://fonts.googleapis.com/css2?family=Gluten:wght@500&family=Poppins&display=swap");
:root {
  --color-navy: #073e84;
  --color-navy-dark: #063e85;
  --color-yellow: #ffd25d;
  --color-pink: #fa9eb7;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-blue: rgba(6, 62, 133, 0.68);
  --max-content: 1920px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Gotham", "Poppins", sans-serif;
}

.homepage-body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.site-header {
  width: 100%;
  background: var(--color-white);
  z-index: 100;
}
@media (min-width: 992px) {
  .site-header {
    position: sticky;
    top: 0;
  }
}

.site-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .site-header__inner {
    padding-left: clamp(1.5rem, 10.4167vw, 200px);
    padding-right: clamp(1.5rem, 10.4167vw, 200px);
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-navy);
}

.site-header__logo-img {
  height: 90px;
  width: auto;
  aspect-ratio: 161/167;
  transition: height 0.3s ease;
  filter: brightness(0) invert(14%) sepia(97%) saturate(3000%) hue-rotate(210deg) brightness(74%);
}

.site-header--scrolled .site-header__logo-img {
  height: 48px;
}

.site-header__logo-text {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-navy);
  letter-spacing: 0.03em;
}
@media (min-width: 992px) {
  .site-header__logo-text {
    font-size: 1.35rem;
  }
}

.site-header__toggler {
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  line-height: 1;
}
@media (min-width: 992px) {
  .site-header__toggler {
    display: none;
  }
}

.site-header__toggler-icon {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-navy);
  position: relative;
}
.site-header__toggler-icon::before, .site-header__toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-navy);
}
.site-header__toggler-icon::before {
  top: -8px;
}
.site-header__toggler-icon::after {
  top: 8px;
}

.site-header__nav {
  width: 100%;
}
@media (min-width: 992px) {
  .site-header__nav {
    display: block !important;
    width: auto;
  }
}

.site-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .site-header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
  }
}

.site-header__nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.15s;
}
.site-header__nav-link:hover {
  background: rgba(7, 62, 132, 0.07);
}
.site-header__nav-link--cta {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.45rem 1.1rem;
  border-radius: 25px;
}
.site-header__nav-link--cta:hover {
  background: var(--color-navy-dark);
  color: var(--color-white);
}
.site-header__nav-link--logout {
  color: #c0392b;
}

.site-header__nav-item--has-sub {
  position: relative;
}

.site-header__nav-link--sub-trigger {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.site-header__nav-item--has-sub:hover > .site-header__nav-link--sub-trigger,
.site-header__nav-item--has-sub:focus-within > .site-header__nav-link--sub-trigger,
.site-header__nav-item--has-sub > .site-header__nav-link--sub-trigger[aria-expanded=true] {
  background: rgba(7, 62, 132, 0.1);
  border-radius: 8px;
}

@media (min-width: 992px) {
  .site-header__nav-item--has-sub:not(.is-suppressed):not([data-submenu-closed]):hover > .site-header__submenu,
  .site-header__nav-item--has-sub:not(.is-suppressed):not([data-submenu-closed]):focus-within > .site-header__submenu,
  .site-header__nav-item--has-sub.is-pinned > .site-header__submenu {
    display: block !important;
  }
}
.site-header__nav-item--has-sub[data-submenu-closed] > .site-header__submenu {
  display: none !important;
}

.site-header__submenu {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  background: #ffffff;
  border-radius: 25px;
  border: 1px solid #073e84;
}
@media (min-width: 992px) {
  .site-header__submenu {
    border: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 288px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 200;
  }
}

.site-header__submenu-link {
  display: block;
  padding: 0.55rem 1.25rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #073e84;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .site-header__submenu-link {
    text-align: center;
  }
}
.site-header__submenu-link:hover {
  background: rgba(7, 62, 132, 0.07);
}

.site-header--inverse {
  background: transparent;
}

.site-header--inverse.site-header--scrolled {
  background: rgba(6, 62, 133, 0.85);
}

.site-header--inverse .site-header__logo-img {
  filter: none;
}

.site-header--inverse .site-header__toggler-icon {
  background: white;
}
.site-header--inverse .site-header__toggler-icon::before, .site-header--inverse .site-header__toggler-icon::after {
  background: white;
}

.site-header--inverse .site-header__nav-link {
  color: white;
}
.site-header--inverse .site-header__nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-header--inverse .site-header__nav-link--cta {
  background: white;
  color: #073e84;
  border-radius: 15px;
}
.site-header--inverse .site-header__nav-link--cta:hover {
  opacity: 0.9;
  background: white;
  color: #073e84;
}
.site-header--inverse .site-header__nav-link--logout {
  color: rgba(255, 200, 200, 0.9);
}

.site-header--inverse .site-header__nav-item--has-sub:hover > .site-header__nav-link--sub-trigger,
.site-header--inverse .site-header__nav-item--has-sub:focus-within > .site-header__nav-link--sub-trigger,
.site-header--inverse .site-header__nav-item--has-sub > .site-header__nav-link--sub-trigger[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 13px;
}

.site-header--inverse .site-header__submenu {
  border: 2px solid #073e84;
}

.site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .btn-pill {
    font-size: 1rem;
  }
}
.btn-pill {
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.btn-pill:hover {
  opacity: 0.88;
}
.btn-pill--yellow {
  background: var(--color-yellow);
  color: var(--color-navy);
}
.btn-pill--navy {
  background: var(--color-navy);
  color: var(--color-pink);
}
.btn-pill--pink {
  background: var(--color-pink);
  color: var(--color-navy);
}

.btn-pill__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 30px;
  line-height: 1;
  padding-bottom: 2px;
  transform: rotate(-30deg);
}

.hero {
  width: 100%;
  background: var(--color-white);
  position: relative;
  overflow: clip;
}
@media (min-width: 992px) {
  .hero {
    padding-bottom: 197.5786924939px;
  }
}

.hero__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
  }
}

.hero__content {
  padding: 5rem 1.5rem 2rem;
  flex: 0 0 auto;
  z-index: 2;
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .hero__content {
    width: 44%;
    padding: 5rem 2rem 0 clamp(1.5rem, 10.4167vw, 200px);
    text-align: left;
  }
}

.hero__title {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--color-navy-dark);
  line-height: 1.04;
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__subtitle {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-black);
  margin: 0 0 2rem;
  max-width: none;
}
@media (min-width: 992px) {
  .hero__subtitle {
    font-size: 1.35rem;
    max-width: 440px;
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .hero__ctas {
    justify-content: flex-start;
  }
}

.hero__image-wrap {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
  order: -1;
}
@media (min-width: 992px) {
  .hero__image-wrap {
    width: 56%;
    align-self: flex-end;
    order: 0;
  }
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero__image--desktop {
  display: none;
}
@media (min-width: 992px) {
  .hero__image--desktop {
    display: block;
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: cover;
    object-position: top left;
  }
}
.hero__image--mobile {
  display: block;
  width: 90%;
  height: auto;
  margin-left: 10%;
}
@media (min-width: 992px) {
  .hero__image--mobile {
    display: none;
  }
}

.hero__elf {
  display: block;
  position: absolute;
  pointer-events: none;
  bottom: -80px;
  left: 1rem;
  right: auto;
  top: auto;
  width: 202px;
  height: auto;
  aspect-ratio: 413/272;
  transform: scaleX(-1);
  z-index: 3;
}
@media (min-width: 992px) {
  .hero__elf {
    bottom: auto;
    left: auto;
    top: 100%;
    right: 100%;
    width: 300px;
    transform: scaleX(-1);
  }
}

.hero__dots {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}
@media (min-width: 992px) {
  .hero__dots {
    display: block;
  }
}
.hero__dots--1 {
  display: none;
  width: 260px;
  height: 459px;
  bottom: -220px;
  right: 110px;
  transform: rotate(-82deg);
  z-index: -1;
  opacity: 1;
}
@media (min-width: 992px) {
  .hero__dots--1 {
    display: block;
  }
}
.hero__dots--3 {
  display: block;
  width: 260px;
  height: 459px;
  right: -80px;
  top: 0;
  transform: rotate(-82deg);
  z-index: -1;
  opacity: 1;
}
@media (min-width: 992px) {
  .hero__dots--3 {
    display: none;
  }
}
.hero__dots--2 {
  display: block;
  width: 220px;
  height: 200px;
  bottom: 1rem;
  left: -100px;
  transform: rotate(-82deg);
  z-index: -1;
  opacity: 0.7;
}
@media (min-width: 992px) {
  .hero__dots--2 {
    display: block;
    width: 318px;
    height: 280px;
    bottom: -125px;
    left: -125px;
    right: auto;
    transform: rotate(-38deg);
  }
}

.how-it-works {
  width: 100%;
  background: var(--color-yellow);
  position: relative;
  overflow: hidden;
}

.how-it-works__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .how-it-works__inner {
    display: block;
    padding: 0 4rem 6rem;
    max-width: 610px;
  }
}

.how-it-works__heading {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 auto 2.5rem;
  text-align: center;
  padding: 3rem 1.5rem 0;
}
@media (min-width: 992px) {
  .how-it-works__heading {
    font-size: 2.5rem;
    padding: 5rem 4rem 0;
  }
}

.how-it-works__heading-pink {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  color: var(--color-pink);
  display: block;
}

.how-it-works__heading-navy {
  font-family: "Gotham", "Poppins", sans-serif;
  color: var(--color-navy);
}
@media (min-width: 992px) {
  .how-it-works__heading-navy {
    white-space: nowrap;
  }
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.how-it-works__step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.how-it-works__step-text {
  flex: 1;
  min-width: 0;
}
@media (min-width: 992px) {
  .how-it-works__step-text {
    width: 270px;
    flex: none;
  }
}
.how-it-works__step-text p {
  margin: 0;
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 20px;
  color: var(--color-black);
}
@media (min-width: 992px) {
  .how-it-works__step-text p {
    font-size: 1.2rem;
  }
}

.step-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  color: var(--color-navy);
}
@media (min-width: 992px) {
  .step-badge {
    width: 140px;
    height: 140px;
    font-size: 3.6rem;
  }
}
.step-badge--1 {
  background: var(--color-white);
  border-radius: 62% 38% 55% 45%/48% 54% 46% 52%;
}
.step-badge--2 {
  background: var(--color-white);
  border-radius: 45% 55% 42% 58%/54% 46% 52% 48%;
}
.step-badge--3 {
  background: var(--color-white);
  border-radius: 52% 48% 60% 40%/46% 56% 44% 54%;
}
.step-badge--4 {
  background: var(--color-white);
  border-radius: 40% 60% 46% 54%/52% 44% 58% 42%;
  color: #FA9EB7;
}

.how-it-works__cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.how-it-works__elf {
  position: absolute;
  bottom: 0;
  right: 1rem;
  width: 120px;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .how-it-works__elf {
    display: block;
    width: clamp(228px, -9px + 23.92vw, 450px);
    height: auto;
    aspect-ratio: 450/307;
    right: 6%;
  }
}

.how-it-works__elf--mobile {
  display: block;
  width: 208px;
  height: 163px;
  margin: 2rem auto 0;
  pointer-events: none;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .how-it-works__elf--mobile {
    display: none;
  }
}

.how-it-works__dots {
  position: absolute;
  pointer-events: none;
}
.how-it-works__dots--1 {
  display: block;
  width: 143px;
  height: 126px;
  bottom: 100px;
  right: -70px;
}
@media (min-width: 992px) {
  .how-it-works__dots--1 {
    top: 45%;
    bottom: auto;
    right: 1rem;
    width: 143px;
    height: 126px;
  }
}
.how-it-works__dots--2 {
  display: none;
  width: 120px;
  bottom: 4%;
  left: 12%;
  transform: rotate(-45deg);
  opacity: 0.28;
  filter: brightness(0) invert(1);
}
@media (min-width: 992px) {
  .how-it-works__dots--2 {
    display: block;
  }
}
.how-it-works__dots--3 {
  display: block;
  width: 75px;
  height: 116px;
  top: 19px;
  left: 15px;
}

.how-it-works__step-icon {
  display: block;
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}
.how-it-works__step-icon--3 {
  width: 60px;
  aspect-ratio: 71/122;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(27deg);
  opacity: 0.4;
}
.how-it-works__step-icon--4 {
  width: 70px;
  aspect-ratio: 1/1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.4;
}

.how-it-works__steps > .how-it-works__step:nth-child(1) {
  background-image: url("/static/img/choose-name-icons-mobile.svg");
  background-size: 170px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 992px) {
  .how-it-works__steps > .how-it-works__step:nth-child(1) {
    background-image: url("/static/img/choose-name-icons.svg");
    background-size: 320px auto;
    background-position: right center;
  }
}

.how-it-works__steps > .how-it-works__step:nth-child(2) {
  background-image: url("/static/img/choose-story-icons-mobile.svg");
  background-size: 190px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 992px) {
  .how-it-works__steps > .how-it-works__step:nth-child(2) {
    background-image: url("/static/img/choose-story-icons.svg");
    background-size: 320px auto;
    background-position: right center;
  }
}

.pricing-section {
  width: 100%;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.pricing-section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
@media (min-width: 992px) {
  .pricing-section__inner {
    padding: 5rem clamp(1.5rem, 10.4167vw, 200px) 6rem;
  }
}

.pricing-section__heading {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-navy);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 3rem;
}
@media (min-width: 992px) {
  .pricing-section__heading {
    font-size: 2rem;
    margin: 0 0 5rem;
  }
}

.pricing-section__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing-section__cards > * {
  margin-left: 10%;
  margin-right: 10%;
}
@media (min-width: 992px) {
  .pricing-section__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    padding-top: 5rem;
  }
  .pricing-section__cards > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.pricing-card-wrap {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card-wrap > .pricing-card {
  flex: 1;
  position: relative;
  z-index: 1;
}

.pricing-card {
  flex: 1;
  border-radius: 24px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(7, 62, 132, 0.18);
}
.pricing-card--pink {
  background: var(--color-pink);
  color: var(--color-navy);
}
.pricing-card--navy {
  background: var(--color-navy);
  color: #FFD25D;
}
.pricing-card--yellow {
  background: var(--color-yellow);
  color: var(--color-navy);
}

.pricing-card__dots {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  width: 120px;
  bottom: 0;
  right: 0;
  display: block;
}
@media (min-width: 992px) {
  .pricing-card__dots {
    display: block;
    width: 160px;
  }
}

.pricing-card--navy .pricing-card__dots {
  bottom: auto;
  top: 0;
  right: 0;
  left: auto;
}

.pricing-card--yellow .pricing-card__dots {
  bottom: 0;
  right: auto;
  left: 0;
}

.pricing-card__name {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 992px) {
  .pricing-card__name {
    font-size: 1.15rem;
  }
}

.pricing-card__desc {
  font-size: 0.9rem;
  opacity: 0.85;
  flex: 1;
}

.pricing-card__price {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
}

.pricing-card__period {
  font-size: 0.85em;
  font-weight: 400;
  opacity: 0.75;
}

.pricing-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.4rem 0.5rem 1.25rem;
  border-radius: 20px;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  align-self: center;
  transition: opacity 0.15s;
}
.pricing-card__btn:hover {
  opacity: 0.8;
}

.pricing-card__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  font-size: 0.9rem;
  line-height: 1;
  transform: rotate(-30deg);
}

.pricing-card--pink .pricing-card__btn {
  color: var(--color-navy);
}

.pricing-card--navy .pricing-card__btn {
  color: #FFD25D;
}

.pricing-card--yellow .pricing-card__btn {
  color: var(--color-navy);
}

.pricing-section__footer {
  margin-top: 2rem;
  text-align: left;
}

.pricing-section__details-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.pricing-section__details-link:hover {
  text-decoration: underline;
}

.pricing-section__details-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.pricing-section__elf {
  position: absolute;
  pointer-events: none;
  display: block;
}
.pricing-section__elf--left {
  width: 77px;
  height: 100px;
  top: 110px;
  left: -40px;
  transform: rotate(-16deg);
  z-index: 2;
}
@media (min-width: 992px) {
  .pricing-section__elf--left {
    width: 140px;
    height: 180px;
    left: -112px;
    top: auto;
    bottom: 15%;
    transform: rotate(-16deg);
    z-index: 0;
  }
}
.pricing-section__elf--right {
  width: 83px;
  height: 79px;
  top: 175px;
  right: -13px;
  left: auto;
  z-index: 2;
}
@media (min-width: 992px) {
  .pricing-section__elf--right {
    width: 151px;
    height: 143px;
    right: auto;
    left: 50%;
    top: -135px;
    transform: translateX(-50%);
    z-index: 0;
  }
}

.pricing-page {
  width: 100%;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.pricing-page__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
@media (min-width: 992px) {
  .pricing-page__inner {
    padding: 5rem clamp(1.5rem, 10.4167vw, 200px) 6rem;
  }
}

.pricing-page__heading {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-navy);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 3rem;
}
@media (min-width: 992px) {
  .pricing-page__heading {
    font-size: 2rem;
    margin: 0 0 5rem;
  }
}

.pricing-page__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing-page__cards > * {
  margin-left: 10%;
  margin-right: 10%;
}
@media (min-width: 992px) {
  .pricing-page__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    padding-top: 2rem;
  }
  .pricing-page__cards > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.pricing-page__card-wrap {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-page__card-wrap > .pricing-page__card {
  flex: 1;
  position: relative;
  z-index: 1;
}

.pricing-page__card {
  flex: 1;
  border-radius: 35px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(7, 62, 132, 0.18);
}
@media (min-width: 992px) {
  .pricing-page__card {
    padding: 2rem 2rem;
  }
}
.pricing-page__card--pink {
  background: var(--color-pink);
  color: var(--color-navy);
}
.pricing-page__card--navy {
  background: var(--color-navy);
  color: var(--color-yellow);
}
.pricing-page__card--yellow {
  background: var(--color-yellow);
  color: var(--color-navy);
}

.pricing-page__card-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .pricing-page__card-top {
    display: grid;
    grid-template-rows: 4.25rem 3.3rem 2.8rem;
    align-items: center;
    justify-items: center;
    text-align: center;
  }
}

.pricing-page__card-dots {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  width: 120px;
  bottom: 0;
  right: 0;
  display: block;
}
@media (min-width: 992px) {
  .pricing-page__card-dots {
    width: 160px;
  }
}

.pricing-page__card--navy .pricing-page__card-dots {
  bottom: auto;
  top: 0;
  right: 0;
  left: auto;
}

.pricing-page__card--yellow .pricing-page__card-dots {
  bottom: 0;
  right: auto;
  left: 0;
}

.pricing-page__card-name {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
@media (min-width: 992px) {
  .pricing-page__card-name {
    width: 100%;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.pricing-page__card-desc {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  opacity: 0.9;
  margin: 0;
}
@media (min-width: 992px) {
  .pricing-page__card-desc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.pricing-page__card-price {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-top: 0.25rem;
}
@media (min-width: 992px) {
  .pricing-page__card-price {
    width: 100%;
    text-align: center;
  }
}

.pricing-page__card-period {
  font-size: 0.6em;
  font-weight: 400;
  opacity: 0.8;
}

.pricing-page__card-headline {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  margin: 0.35rem 0 0;
}
@media (min-width: 992px) {
  .pricing-page__card-headline {
    min-height: 3rem;
    display: flex;
    align-items: center;
  }
}

.pricing-page__card-headline--empty {
  visibility: hidden;
}

.pricing-page__card-additions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pricing-page__card-addition {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.pricing-page__card-plus {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.pricing-page__card--pink .pricing-page__card-plus {
  color: #ffd25d;
}

.pricing-page__card--navy .pricing-page__card-plus {
  color: #ffffff;
}

.pricing-page__card--yellow .pricing-page__card-plus {
  color: #fa9eb7;
}

.pricing-page__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.4rem 0.5rem 1.25rem;
  border-radius: 20px;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  align-self: flex-start;
  transition: opacity 0.15s;
}
.pricing-page__card-btn:hover {
  opacity: 0.8;
}

.pricing-page__card-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  font-size: 0.9rem;
  line-height: 1;
  transform: rotate(-30deg);
}

.pricing-page__card--pink .pricing-page__card-btn {
  color: var(--color-navy);
}

.pricing-page__card--navy .pricing-page__card-btn {
  color: #ffd25d;
}

.pricing-page__card--yellow .pricing-page__card-btn {
  color: var(--color-navy);
}

.pricing-page__elf {
  position: absolute;
  pointer-events: none;
  display: block;
}
.pricing-page__elf--left {
  width: 77px;
  height: 100px;
  top: 110px;
  left: -55px;
  transform: rotate(-16deg);
  z-index: 2;
}
@media (min-width: 992px) {
  .pricing-page__elf--left {
    width: 140px;
    height: 180px;
    left: -112px;
    top: auto;
    bottom: 15%;
    transform: rotate(-16deg);
    z-index: 0;
  }
}
.pricing-page__elf--right {
  width: 83px;
  height: 79px;
  top: 175px;
  right: -40px;
  left: auto;
  z-index: 2;
}
@media (min-width: 992px) {
  .pricing-page__elf--right {
    width: 151px;
    height: 143px;
    right: auto;
    left: 50%;
    top: -135px;
    transform: translateX(-50%);
    z-index: 0;
  }
}

.try-it-out {
  width: 100%;
  background-color: var(--color-navy-dark);
  background-image: url("/static/img/background-picture.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
.try-it-out::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-bg-blue);
  pointer-events: none;
}

.try-it-out__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
@media (min-width: 992px) {
  .try-it-out__inner {
    padding: 5rem 4rem 6rem;
    max-width: 860px;
  }
}

.try-it-out__heading-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.try-it-out__heading {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--color-white);
  margin: 0;
}
@media (min-width: 992px) {
  .try-it-out__heading {
    font-size: 3.5rem;
  }
}

.try-it-out__wand {
  width: 48px;
  height: auto;
}
@media (min-width: 992px) {
  .try-it-out__wand {
    width: 64px;
  }
}

.try-it-out__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.try-it-out__form .cf-turnstile {
  align-self: center;
}

.try-it-out__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (min-width: 992px) {
  .try-it-out__field {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.try-it-out__label {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
}
@media (min-width: 992px) {
  .try-it-out__label {
    font-size: 1.2rem;
    width: 240px;
    text-align: right;
    flex-shrink: 0;
  }
}

.try-it-out__input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 16px;
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--color-navy);
  background: var(--color-white);
  outline: none;
}
.try-it-out__input::placeholder {
  color: var(--color-pink);
}
.try-it-out__input:focus {
  box-shadow: 0 0 0 3px rgba(250, 158, 183, 0.5);
}
@media (min-width: 992px) {
  .try-it-out__input {
    max-width: 360px;
  }
}

.try-it-out__radio-group {
  display: flex;
  gap: 1.5rem;
}

.try-it-out__radio-label {
  font-family: "Gotham", "Poppins", sans-serif;
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.try-it-out__submit {
  margin-top: 0.5rem;
  align-self: center;
  border-radius: 16px;
  padding: 0.7rem 2rem;
}

.try-it-out__player {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.try-it-out__story-headline {
  font-family: "Gluten", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .try-it-out__story-headline {
    font-size: 1.6rem;
  }
}

.try-it-out__story-description {
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.try-it-out__upsell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.try-it-out__upsell-heading {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .try-it-out__upsell-heading {
    font-size: 1.15rem;
  }
}

.try-it-out__upsell-btn {
  min-width: 200px;
  justify-content: center;
}

.try-it-out__player .mejs__container {
  width: 100% !important;
  max-width: none;
}

.try-it-out .mejs__container {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}
.try-it-out .mejs__controls {
  background: transparent !important;
  border-radius: 12px;
}
.try-it-out .mejs__time-total {
  background: rgba(255, 255, 255, 0.35) !important;
}
.try-it-out .mejs__time-current {
  background: white !important;
  filter: brightness(0) saturate(100%) invert(77%) sepia(21%) saturate(1533%) hue-rotate(292deg) brightness(102%) contrast(101%);
}
.try-it-out .mejs__time-loaded {
  background: rgba(255, 255, 255, 0.55) !important;
}
.try-it-out .mejs__currenttime,
.try-it-out .mejs__duration {
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #fff;
}
.try-it-out .mejs__button > button {
  filter: brightness(0) invert(1);
}
.try-it-out .mejs__playpause-button > button,
.try-it-out .mejs__volume-button > button {
  filter: brightness(0) saturate(100%) invert(77%) sepia(21%) saturate(1533%) hue-rotate(292deg) brightness(102%) contrast(101%);
}
.try-it-out .mejs__volume-slider {
  background: rgba(250, 158, 183, 0.3);
}
.try-it-out .mejs__volume-current {
  background: white;
  filter: brightness(0) saturate(100%) invert(77%) sepia(21%) saturate(1533%) hue-rotate(292deg) brightness(102%) contrast(101%);
}

.story-spinner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  padding: 1rem 0;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.status-label {
  font-size: 0.9rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.about-project {
  width: 100%;
  background: rgba(250, 158, 183, 0.13);
  position: relative;
  overflow: hidden;
}

.about-project__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
@media (min-width: 992px) {
  .about-project__inner {
    padding: 5rem clamp(1.5rem, 10.4167vw, 200px) 6rem;
  }
}

.about-project__heading {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: visible;
}
@media (min-width: 992px) {
  .about-project__heading {
    font-size: 2.5rem;
  }
}

.about-project__heading-navy {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  color: var(--color-navy);
}

.about-project__heading-yellow {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  color: var(--color-yellow);
}

.about-project__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .about-project__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

.about-project__image-col {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.about-project__image {
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) {
  .about-project__image {
    max-width: 320px;
  }
}

.about-project__text-cols {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .about-project__text-cols {
    flex-direction: row;
    gap: 3rem;
  }
}

.about-project__text-block {
  flex: 1;
}
@media (min-width: 992px) {
  .about-project__text-block {
    max-width: 400px;
  }
}

.about-project__text-heading {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
  margin: 0 0 0.6rem;
}
@media (min-width: 992px) {
  .about-project__text-heading {
    font-size: 1.3rem;
  }
}

.about-project__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.about-project__dots {
  position: absolute;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .about-project__dots {
    display: block;
  }
}
.about-project__dots--1 {
  width: 190px;
  top: -20px;
  right: -100px;
  opacity: 1;
}
.about-project__dots--2 {
  width: 200px;
  bottom: -40px;
  left: -100px;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 1;
}

.faq {
  width: 100%;
  background: var(--color-white);
  position: relative;
  overflow: visible;
}

.faq__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
@media (min-width: 992px) {
  .faq__inner {
    padding: 5rem 4rem 6rem;
    max-width: 860px;
  }
}

.faq__heading {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-navy);
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  position: relative;
  overflow: visible;
}
@media (min-width: 992px) {
  .faq__heading {
    font-size: 2rem;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border-radius: 12px;
}
.faq__item:has(.faq__answer.show) .faq__question, .faq__item:has(.faq__answer.collapsing) .faq__question {
  border-radius: 12px 12px 0 0;
}

.faq__question {
  width: 100%;
  background: var(--color-navy);
  color: var(--color-yellow);
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  border-radius: 12px;
  transition: background 0.15s;
}
.faq__question[aria-expanded=true] {
  border-radius: 12px 12px 0 0;
}
.faq__question[aria-expanded=true] .faq__icon {
  transform: rotate(45deg);
}
.faq__question:hover, .faq__question:focus, .faq__question:active, .faq__question:focus-visible {
  background: var(--color-navy);
  outline: none;
}

.faq__icon {
  font-size: 1.4rem;
  color: var(--color-yellow);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq__answer {
  background: rgba(7, 62, 132, 0.87);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.faq__answer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-yellow);
  line-height: 1.6;
}

.faq__answer-inner {
  padding: 1rem 1.25rem;
}

.faq__footer {
  margin-top: 2rem;
  text-align: left;
}

.faq__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.faq__more-link:hover {
  text-decoration: underline;
}

.faq__more-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  padding-bottom: 2px;
  transform: rotate(-30deg);
}

.faq__dots {
  position: absolute;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .faq__dots {
    display: block;
  }
}
.faq__dots--1 {
  width: 260px;
  top: -60px;
  left: -250px;
  opacity: 1;
}
.faq__dots--2 {
  width: 355px;
  bottom: -150px;
  left: calc(50% + 191px);
  z-index: 10;
  opacity: 1;
}
.faq__dots--page {
  display: none;
}
@media (min-width: 992px) {
  .faq__dots--page {
    display: block;
    width: 260px;
    bottom: 80px;
    right: -80px;
  }
}

.site-footer {
  width: 100%;
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.site-footer__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  position: relative;
}
@media (min-width: 992px) {
  .site-footer__inner {
    padding: 4rem 4rem 3rem;
  }
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.site-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-footer__logo {
  height: 80px;
  width: auto;
  aspect-ratio: 161/167;
}

.site-footer__logo-text {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--color-white);
}

.site-footer__stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border: 3px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  align-self: center;
  margin: 1rem auto 0;
}
@media (min-width: 992px) {
  .site-footer__stamp {
    margin: 0;
  }
}

.site-footer__stamp-line {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0;
}
.site-footer__stamp-line--pink {
  color: #fa9eb7;
}
.site-footer__stamp-line--yellow {
  color: var(--color-yellow);
}

.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0 0 2rem;
}

.site-footer__columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .site-footer__columns {
    flex-direction: row;
    gap: 4rem;
  }
}

.site-footer__col {
  flex: 1;
}

.site-footer__col-heading {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-yellow);
  margin: 0 0 1rem;
}

.site-footer__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__link,
.site-footer__text {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer__link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.site-footer__bottom-bar {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-yellow);
}
@media (min-width: 992px) {
  .site-footer__bottom-bar {
    padding: 0.75rem 4rem;
  }
}

.site-footer__studio {
  color: var(--color-yellow);
}

.ls-input {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 0 1.25rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  width: 100%;
  outline: none;
  color: var(--color-navy);
}
.ls-input:focus-visible {
  box-shadow: 0 0 0 3px rgba(7, 62, 132, 0.4);
}
.ls-input::placeholder {
  color: var(--color-pink);
  font-weight: 500;
}
.ls-input {
  height: 56px;
}

.ls-textarea {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 0 1.25rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  width: 100%;
  outline: none;
  color: var(--color-navy);
}
.ls-textarea:focus-visible {
  box-shadow: 0 0 0 3px rgba(7, 62, 132, 0.4);
}
.ls-textarea::placeholder {
  color: var(--color-pink);
  font-weight: 500;
}
.ls-textarea {
  height: auto;
  min-height: 214px;
  padding: 1rem 1.25rem;
  resize: vertical;
}

.ls-label {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-navy);
}

.ls-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: white;
  border: none;
  border-radius: 12px;
  height: 42px;
  padding: 0 1.5rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ls-btn-submit:hover {
  opacity: 0.9;
  color: white;
}

.ls-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pink);
  color: var(--color-navy);
  border: none;
  border-radius: 16px;
  height: 56px;
  width: 100%;
  max-width: 420px;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
}
.ls-form-btn:hover {
  opacity: 0.9;
  color: var(--color-navy);
}
@media (max-width: 991px) {
  .ls-form-btn {
    max-width: 349px;
  }
}

.login-body {
  background: transparent;
  overflow-x: hidden;
}

.subs-body {
  background: transparent;
  overflow-x: hidden;
}

.form-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.form-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
@media (max-width: 991px) {
  .form-page__bg {
    object-position: 72% center;
  }
}

.form-page__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 62, 133, 0.76);
  z-index: 1;
}

.form-page__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
}

.form-page__info {
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-page .info-message,
.form-page .error-message {
  width: 100%;
  max-width: 420px;
  text-align: center;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-page .info-message {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.form-page .error-message {
  background: rgba(220, 53, 69, 0.25);
  color: white;
}

.form-page__title {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media (min-width: 992px) {
  .form-page__title {
    font-size: 4.375rem;
  }
}

.form-page__lumino {
  display: block;
  width: 128px;
  height: 119px;
  margin: 0 auto 2rem;
}
@media (min-width: 992px) {
  .form-page__lumino {
    width: 162px;
    height: 151px;
  }
}

.form-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .form-fields {
    max-width: 700px;
  }
}

.form-fields__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 992px) {
  .form-fields__row {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.form-fields__label {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  opacity: 0.8;
}
@media (min-width: 992px) {
  .form-fields__label {
    opacity: 1;
    text-align: right;
    width: 175px;
    flex-shrink: 0;
  }
}

@media (min-width: 992px) {
  .form-fields__label--sm {
    font-size: 1.1rem;
  }
}

.d-none {
  display: none;
}

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline;
  }
}

.form-fields__input {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 0 1.25rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  width: 100%;
  outline: none;
  color: var(--color-navy);
}
.form-fields__input:focus-visible {
  box-shadow: 0 0 0 3px rgba(7, 62, 132, 0.4);
}
.form-fields__input::placeholder {
  color: var(--color-pink);
  font-weight: 500;
}
.form-fields__input {
  height: 56px;
  padding: 0 1rem;
  font-size: 1rem;
  max-width: 420px;
}
.form-fields__input::placeholder {
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .form-fields__input {
    width: 420px;
    max-width: 420px;
  }
}

.form-fields__password-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}
@media (min-width: 992px) {
  .form-fields__password-wrapper {
    width: 420px;
    max-width: 420px;
  }
}

.form-fields__password-wrapper .form-fields__input {
  width: 100%;
  max-width: 100%;
  padding-right: 3rem;
}

.form-fields__password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #073e84;
  font-size: 1rem;
  line-height: 1;
}

.form-fields__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.form-fields__forgot {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  text-decoration: none;
  margin-top: 0.25rem;
  display: block;
}
.form-fields__forgot:hover {
  color: white;
  text-decoration: underline;
}

.form-fields__select {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 0 1.25rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  width: 100%;
  outline: none;
  color: var(--color-navy);
}
.form-fields__select:focus-visible {
  box-shadow: 0 0 0 3px rgba(7, 62, 132, 0.4);
}
.form-fields__select::placeholder {
  color: var(--color-pink);
  font-weight: 500;
}
.form-fields__select {
  height: 56px;
  padding: 0 1rem;
  font-size: 1rem;
  max-width: 420px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063e85'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}
@media (min-width: 992px) {
  .form-fields__select {
    width: 420px;
    max-width: 420px;
  }
}

.form-fields__multiselect {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 0 1.25rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  width: 100%;
  outline: none;
  color: var(--color-navy);
}
.form-fields__multiselect:focus-visible {
  box-shadow: 0 0 0 3px rgba(7, 62, 132, 0.4);
}
.form-fields__multiselect::placeholder {
  color: var(--color-pink);
  font-weight: 500;
}
.form-fields__multiselect {
  height: auto;
  min-height: 150px;
  padding: 0.5rem;
  font-size: 1rem;
  max-width: 420px;
  overflow-y: auto;
}
.form-fields__multiselect option {
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
}
.form-fields__multiselect option:checked {
  background: var(--color-navy);
  color: #ffffff;
}
@media (min-width: 992px) {
  .form-fields__multiselect {
    width: 420px;
    max-width: 420px;
  }
}

.form-fields__multiselect-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  max-width: 420px;
}
.form-fields__multiselect-wrapper .form-fields__multiselect {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .form-fields__multiselect-wrapper .form-fields__multiselect {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .form-fields__multiselect-wrapper {
    width: 420px;
  }
}

.form-fields__multiselect-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.form-fields__radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  width: 100%;
  max-width: 420px;
}
@media (min-width: 992px) {
  .form-fields__radio-group {
    width: 420px;
    justify-content: flex-start;
  }
}

.form-fields__radio {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  background: transparent;
}
.form-fields__radio:checked {
  border-color: var(--color-pink);
  background: var(--color-pink);
  box-shadow: inset 0 0 0 3px white;
}

.form-fields__radio-label {
  color: white;
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 1rem;
  cursor: pointer;
}

.generate-page__submit-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-yellow);
  border: none;
  border-radius: 25px;
  color: var(--color-navy);
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.65rem 1.25rem;
  width: 100%;
  max-width: 420px;
  transition: opacity 0.15s;
}
.generate-page__submit-btn:hover {
  opacity: 0.9;
}
@media (min-width: 992px) {
  .generate-page__submit-btn {
    font-size: 1.125rem;
    padding: 0.75rem 1.25rem;
  }
}

.generate-page__submit-btn-icon {
  width: 41px;
  height: 70px;
  flex-shrink: 0;
  filter: brightness(0) invert(14%) sepia(97%) saturate(3000%) hue-rotate(210deg) brightness(74%);
}

.generate-page__advanced {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 991px) {
  .generate-page__advanced {
    width: calc(100% - 1.5rem);
    margin: 0.25rem 0;
  }
}
.generate-page__advanced .accordion-header {
  margin: 0;
}
.generate-page__advanced .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  border: none;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: none;
  padding: 1rem 1.5rem;
  color: var(--color-navy);
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
}
.generate-page__advanced .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063e85'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.generate-page__advanced .accordion-button:not(.collapsed) {
  background: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.generate-page__advanced .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.generate-page__advanced .accordion-body {
  background: rgba(255, 255, 255, 0.15);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  color: #ffffff;
  margin-top: 0;
  padding: 1.25rem 1.5rem;
}

.page-404-body {
  background: #fa9eb7;
  overflow-x: hidden;
}

.page-404-body .site-header--overlay {
  position: sticky;
  top: 0;
}

.page-404 {
  background: #fa9eb7;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 992px) {
  .page-404 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 4rem;
  }
}

.page-404__elf {
  display: block;
  width: 160px;
  height: 228px;
  margin: 0 auto 2rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .page-404__elf {
    position: static;
    width: 241px;
    height: 343px;
    max-width: none;
    margin: 0;
    flex-shrink: 0;
  }
}

.page-404__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  text-align: left;
}

.page-404__headline {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #063e85;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .page-404__headline {
    font-size: 3.125rem;
  }
}

.page-404__subheadline {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #063e85;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .page-404__subheadline {
    font-size: 1.75rem;
  }
}

.page-404__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #073e84;
  text-decoration: none;
}
.page-404__back-link:hover {
  color: #073e84;
  opacity: 0.8;
}
@media (min-width: 992px) {
  .page-404__back-link {
    font-size: 1.5rem;
    float: right;
  }
}

.page-404__back-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.page-404__dots {
  position: absolute;
  pointer-events: none;
}

.page-404__dots--1 {
  bottom: -1rem;
  left: -1rem;
  width: 35vw;
  max-width: 140px;
}
@media (min-width: 992px) {
  .page-404__dots--1 {
    width: 319px;
    height: 281px;
    max-width: none;
    bottom: -4rem;
    left: -2rem;
  }
}

.page-404__dots--2 {
  top: -1rem;
  right: -1rem;
  width: 30vw;
  max-width: 120px;
}
@media (min-width: 992px) {
  .page-404__dots--2 {
    width: 219px;
    height: 467px;
    max-width: none;
    top: -1rem;
    right: 0;
    transform: rotate(-87deg);
    transform-origin: top right;
  }
}

.page-500-body {
  background: #fa9eb7;
  overflow-x: hidden;
}

.page-500-body .site-header--overlay {
  position: sticky;
  top: 0;
}

.page-500 {
  background: #fa9eb7;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 992px) {
  .page-500 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 4rem;
  }
}

.page-500__elf {
  display: block;
  width: 160px;
  height: 228px;
  margin: 0 auto 2rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .page-500__elf {
    position: static;
    width: 241px;
    height: 343px;
    max-width: none;
    margin: 0;
    flex-shrink: 0;
  }
}

.page-500__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  text-align: left;
}

.page-500__headline {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #063e85;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .page-500__headline {
    font-size: 3.125rem;
  }
}

.page-500__subheadline {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #063e85;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .page-500__subheadline {
    font-size: 1.75rem;
  }
}

.page-500__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #073e84;
  text-decoration: none;
}
.page-500__back-link:hover {
  color: #073e84;
  opacity: 0.8;
}
@media (min-width: 992px) {
  .page-500__back-link {
    font-size: 1.5rem;
    float: right;
  }
}

.page-500__back-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.page-500__dots {
  position: absolute;
  pointer-events: none;
  top: -1rem;
  left: -1rem;
  width: 35vw;
  max-width: 140px;
}
@media (min-width: 992px) {
  .page-500__dots {
    width: 319px;
    height: 281px;
    max-width: none;
    top: -4rem;
    left: -2rem;
  }
}

.my-stories {
  width: 100%;
  background-color: var(--color-navy-dark);
  background-image: url("/static/img/background-picture.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}
.my-stories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 62, 133, 0.72);
  pointer-events: none;
}

.my-stories__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 6.875rem 1.25rem 4rem;
}
@media (min-width: 992px) {
  .my-stories__inner {
    padding: 6rem 2rem 6rem;
  }
}

.my-stories__heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .my-stories__heading-row {
    max-width: 1078px;
    margin: 2rem auto 2rem;
    justify-content: space-between;
  }
}

.my-stories__heading {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .my-stories__heading {
    font-size: 4.375rem;
    text-align: left;
  }
}

.my-stories__elf-icon {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .my-stories__elf-icon {
    width: 258px;
  }
}

.my-stories__panel {
  background: rgba(6, 62, 133, 0.72);
  backdrop-filter: blur(2px);
  border-radius: 39px;
  padding: 2rem 1.25rem;
}
@media (min-width: 992px) {
  .my-stories__panel {
    max-width: 1078px;
    margin: 0 auto;
    padding: 3.5rem 4.75rem;
    display: grid;
    grid-template-columns: 1fr 220px;
    grid-template-areas: "content actions";
    gap: 2rem;
    align-items: start;
  }
}

.my-stories__panel-content {
  min-width: 0;
}
@media (min-width: 992px) {
  .my-stories__panel-content {
    grid-area: content;
  }
}

.my-stories__side-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .my-stories__side-actions {
    grid-area: actions;
    position: sticky;
    top: 5.5rem;
    align-self: start;
    margin-bottom: 0;
  }
}

.my-stories__create-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-yellow);
  border-radius: 25px;
  color: var(--color-navy);
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  width: 100%;
}
@media (min-width: 992px) {
  .my-stories__create-btn {
    font-size: 1.125rem;
    padding: 0.75rem 1.25rem;
  }
}

.my-stories__create-btn-icon {
  width: 41px;
  height: 70px;
  flex-shrink: 0;
  filter: brightness(0) invert(14%) sepia(97%) saturate(3000%) hue-rotate(210deg) brightness(74%);
}
@media (min-width: 992px) {
  .my-stories__create-btn-icon {
    width: 47px;
    height: 81px;
  }
}

.my-stories__create-btn-label {
  line-height: 1.2;
}

.my-stories__global-feedback-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid #fff;
  border-radius: 13px;
  color: #fff;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  width: 100%;
}
.my-stories__global-feedback-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.my-stories__global-feedback-btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.my-stories__token-count {
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
}
.my-stories__token-count strong {
  color: #fff;
}

.my-stories__token-count--empty {
  color: rgba(255, 255, 255, 0.5);
}

.my-stories__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.my-stories__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.my-stories__item .story-headline,
.my-stories__item .my-stories__item-title,
.my-stories__item .story-date,
.my-stories__item .my-stories__item-date,
.my-stories__item .mejs__container,
.my-stories__item .story-spinner,
.my-stories__item .story-error-message {
  flex-basis: 100%;
}
@media (min-width: 992px) {
  .my-stories__item {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 15px;
    row-gap: 0.5rem;
    align-items: start;
  }
  .my-stories__item .story-headline,
  .my-stories__item .my-stories__item-title,
  .my-stories__item .story-date,
  .my-stories__item .my-stories__item-date,
  .my-stories__item .feedback-btn,
  .my-stories__item .my-stories__feedback-link,
  .my-stories__item .story-spinner,
  .my-stories__item .story-error-message {
    grid-column: 1/-1;
  }
  .my-stories__item .mejs__container {
    grid-column: 1;
  }
  .my-stories__item .download-btn,
  .my-stories__item .my-stories__download-btn {
    grid-column: 2;
    align-self: stretch;
  }
}

.story-headline,
.my-stories__item-title {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
  order: 1;
}
@media (min-width: 992px) {
  .story-headline,
  .my-stories__item-title {
    font-size: 1.5rem;
  }
}

.story-date,
.my-stories__item-date {
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  order: 2;
}

.my-stories__item .mejs__container {
  order: 3;
  width: 100% !important;
  max-width: none;
}

.download-btn,
.my-stories__download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid #fff;
  border-radius: 13px;
  color: #fff;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-decoration: none;
  padding: 0.3rem 1rem;
  width: fit-content;
  order: 4;
}
.download-btn::after,
.my-stories__download-btn::after {
  content: "";
  display: block;
  width: 15px;
  height: 18px;
  flex-shrink: 0;
  background: url("/static/img/download-icon.svg") no-repeat center/contain;
}
@media (min-width: 992px) {
  .download-btn,
  .my-stories__download-btn {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    width: 100%;
  }
}
.download-btn:hover,
.my-stories__download-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.feedback-btn,
.my-stories__feedback-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.75rem;
  text-decoration: none;
  width: fit-content;
  order: 5;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  padding: 0.3rem 1rem;
}
@media (min-width: 992px) {
  .feedback-btn,
  .my-stories__feedback-link {
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 0.875rem;
  }
  .feedback-btn:hover,
  .my-stories__feedback-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
}

.story-spinner,
.my-stories__spinner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  order: 3;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.9rem;
}

.story-error-message {
  order: 3;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.9rem;
}

.my-stories__empty {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 1rem;
  text-align: center;
  margin: 2rem 0;
}

.my-stories .mejs__container {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}
.my-stories .mejs__controls {
  background: transparent !important;
  border-radius: 12px;
}
.my-stories .mejs__time-total {
  background: rgba(255, 255, 255, 0.35) !important;
}
.my-stories .mejs__time-current {
  background: white !important;
  filter: brightness(0) saturate(100%) invert(77%) sepia(21%) saturate(1533%) hue-rotate(292deg) brightness(102%) contrast(101%);
}
.my-stories .mejs__time-loaded {
  background: rgba(255, 255, 255, 0.55) !important;
}
.my-stories .mejs__currenttime,
.my-stories .mejs__duration {
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #fff;
}
.my-stories .mejs__button > button {
  filter: brightness(0) invert(1);
}
.my-stories .mejs__playpause-button > button,
.my-stories .mejs__volume-button > button {
  filter: brightness(0) saturate(100%) invert(77%) sepia(21%) saturate(1533%) hue-rotate(292deg) brightness(102%) contrast(101%);
}
.my-stories .mejs__volume-slider {
  background: rgba(250, 158, 183, 0.3);
}
.my-stories .mejs__volume-current {
  background: white;
  filter: brightness(0) saturate(100%) invert(77%) sepia(21%) saturate(1533%) hue-rotate(292deg) brightness(102%) contrast(101%);
}

.my-children {
  width: 100%;
  background-color: var(--color-navy-dark);
  background-image: url("/static/img/background-picture.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}
.my-children::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 62, 133, 0.72);
  pointer-events: none;
}

.my-children__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 6.875rem 1.25rem 4rem;
}
@media (min-width: 992px) {
  .my-children__inner {
    padding: 6rem 2rem 6rem;
  }
}

.my-children__heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .my-children__heading-row {
    max-width: 1078px;
    margin: 2rem auto 2rem;
  }
}

.my-children__heading {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .my-children__heading {
    font-size: 4.375rem;
  }
}

.my-children__panel {
  background: rgba(6, 62, 133, 0.72);
  backdrop-filter: blur(2px);
  border-radius: 39px;
  padding: 2rem 1.25rem;
}
@media (min-width: 992px) {
  .my-children__panel {
    max-width: 1078px;
    margin: 0 auto;
    padding: 3.5rem 4.75rem;
    display: grid;
    grid-template-columns: 1fr 220px;
    grid-template-areas: "content actions";
    gap: 2rem;
    align-items: start;
  }
}

.my-children__panel-content {
  min-width: 0;
}
@media (min-width: 992px) {
  .my-children__panel-content {
    grid-area: content;
  }
}
.my-children__panel-content .info-message {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}
.my-children__panel-content .error-message {
  background: rgba(220, 53, 69, 0.25);
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.my-children__side-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .my-children__side-actions {
    grid-area: actions;
    position: sticky;
    top: 5.5rem;
    align-self: start;
    margin-bottom: 0;
  }
}

.my-children__add-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-yellow);
  border-radius: 25px;
  color: var(--color-navy);
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  width: 100%;
}
@media (min-width: 992px) {
  .my-children__add-btn {
    font-size: 1.125rem;
    padding: 0.75rem 1.25rem;
  }
}

.my-children__add-btn-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.my-children__add-btn-label {
  line-height: 1.2;
}

.my-children__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.my-children__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 1.25rem 0;
}
.my-children__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.my-children__item-name {
  flex-basis: 100%;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
}
@media (min-width: 992px) {
  .my-children__item-name {
    font-size: 1.5rem;
  }
}

.my-children__item-meta {
  flex-basis: 100%;
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.my-children__edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 13px;
  color: #fff;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-decoration: none;
  padding: 0.3rem 1rem;
  width: fit-content;
}
@media (min-width: 992px) {
  .my-children__edit-btn {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
.my-children__edit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.my-children__delete-btn {
  display: inline-block;
  background: #ff000f;
  color: #ffffff;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.25rem 1.25rem;
  border-radius: 10px;
}
.my-children__delete-btn:hover {
  background: #cc000c;
  color: #fff;
}

.my-children__empty {
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.feedback {
  width: 100%;
  background: white;
  position: relative;
  padding: 3rem 1.25rem 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .feedback {
    padding: 3rem 10% 5rem;
  }
}

.feedback__inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.feedback__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .feedback__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2.5rem;
  }
}

.feedback__photo-col {
  position: relative;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .feedback__photo-col {
    width: 440px;
  }
}

.feedback__dots--tl {
  position: absolute;
  top: -30px;
  left: -20px;
  width: 200px;
  height: 197px;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .feedback__dots--tl {
    top: 100px;
    left: -100px;
    width: 296px;
    height: 292px;
  }
}

.feedback__photo {
  width: 271px;
  height: 263px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .feedback__photo {
    width: 401px;
    height: 389px;
  }
}

.feedback__content-col {
  flex: 1;
}
@media (min-width: 992px) {
  .feedback__content-col {
    padding-top: 0.5rem;
  }
}

.feedback__heading {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--color-navy-dark);
  line-height: 1;
  margin: 0 0 1.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .feedback__heading {
    font-size: 3.4375rem;
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .feedback__heading {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .feedback__heading {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .feedback__heading {
    font-size: 1.875rem;
  }
}

.feedback__copy {
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: black;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .feedback__copy {
    font-size: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .feedback__copy {
    font-size: 0.9375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .feedback__copy {
    font-size: 0.875rem;
  }
}
.feedback__copy p {
  margin: 0 0 0.75rem;
}
.feedback__copy p:last-child {
  margin-bottom: 0;
}

.feedback__form-card {
  background: var(--color-yellow);
  border-radius: 39px;
  padding: 2.5rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}
@media (max-width: 991px) {
  .feedback__form-card {
    border-radius: 0;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
@media (min-width: 992px) {
  .feedback__form-card {
    padding: 3rem 3rem 3rem 2.5rem;
  }
}

.feedback__elf {
  position: absolute;
  width: 188px;
  height: 180px;
  top: -100px;
  right: 10px;
  transform: rotate(7.2deg);
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 992px) {
  .feedback__elf {
    top: -130px;
    right: 30px;
  }
}

.feedback__inputs-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .feedback__inputs-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.feedback__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .feedback__field--name {
    flex: 0 0 auto;
  }
  .feedback__field--name .ls-input {
    width: 305px;
  }
}

@media (min-width: 992px) {
  .feedback__field--email {
    flex: 1;
  }
}

.feedback__field--message {
  margin-bottom: 0.75rem;
}

.feedback__story-badge {
  display: inline-block;
  background: var(--color-navy);
  color: white;
  border-radius: 20px;
  padding: 0.25rem 1rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.feedback__submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .feedback__submit-row {
    justify-content: center;
  }
  .feedback__submit-row .ls-btn-submit {
    width: 100%;
    max-width: 350px;
  }
}

.feedback__dots--br {
  display: block;
  position: relative;
  width: 250px;
  height: auto;
  pointer-events: none;
  z-index: -1;
  margin: 0 0 -30px;
}
@media (min-width: 992px) {
  .feedback__dots--br {
    position: absolute;
    bottom: -55px;
    right: -180px;
    margin: 0;
    z-index: 0;
  }
}

@media (max-width: 991px) {
  .feedback .ls-input {
    height: 101px;
  }
}

.subs-page {
  width: 100%;
  background-color: var(--color-navy-dark);
  background-image: url("/static/img/background-picture.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}
.subs-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 62, 133, 0.72);
  pointer-events: none;
}

.subs-page__inner {
  position: relative;
  z-index: 1;
  max-width: 1078px;
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
}
@media (min-width: 992px) {
  .subs-page__inner {
    padding: 6rem 2rem 6rem;
  }
}

.subs-page__section-title {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .subs-page__section-title {
    font-size: 3rem;
  }
}

.subs-page__no-subscription,
.subs-page__no-orders {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.875rem 1.5rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #063e85;
  margin-bottom: 2rem;
}

.subs-page__subscription-card {
  background: #fa9eb7;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.subs-page__subscription-name {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #063e85;
  margin-bottom: 0.75rem;
}

.subs-page__subscription-meta {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #063e85;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.subs-page__subscription-meta strong {
  font-weight: 700;
}

.subs-page__cancel-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  background: #ff000f;
  color: #ffffff;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  padding: 0.25rem 1.25rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.subs-page__cancel-btn:hover {
  background: #cc000c;
}

.subs-page__cancel-note {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #063e85;
  margin-top: 0.25rem;
}

.subs-page__subscription-cancelled {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #063e85;
  margin-top: 0.75rem;
}

.subs-page__order {
  margin-bottom: 1rem;
}
.subs-page__order .accordion-header {
  margin: 0;
}
.subs-page__order .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  border: none;
  overflow: hidden;
}
.subs-page__order .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23063e85'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.subs-page__order .accordion-button {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: none;
  padding: 1rem 1.5rem;
}
.subs-page__order .accordion-button:not(.collapsed) {
  background: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.subs-page__order .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.subs-page__order .accordion-body {
  background: rgba(255, 255, 255, 0.15);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  color: #ffffff;
  margin-top: 0;
  padding: 1.25rem 1.5rem;
}

.subs-page__order-title {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #063e85;
}

.subs-page__order-date {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #073e84;
  opacity: 0.57;
  display: block;
  margin-top: 0.2rem;
}

.subs-page__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
  line-height: 1.4;
}
.subs-page__badge--payment-status {
  background: #cecece;
  color: #073e84;
}
.subs-page__badge--total, .subs-page__badge--count {
  background: transparent;
  border: 1px solid #073e84;
  color: #073e84;
}
.subs-page__badge--completed {
  background: #009e44;
  color: #ffffff;
}
.subs-page__badge--pending-payment {
  background: #ffc107;
  color: #073e84;
}
.subs-page__badge--cancelled-payment {
  background: #dc3545;
  color: #ffffff;
}

.subs-page__invoice-link {
  color: #ffffff;
  text-decoration: underline;
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 1rem;
}
.subs-page__invoice-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.subs-page__order-body table {
  width: 100%;
}
.subs-page__order-body th {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
  text-align: center;
  padding: 0.5rem;
}
.subs-page__order-body td {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #ffffff;
  text-align: center;
  padding: 0.5rem;
}
@media (max-width: 599px) {
  .subs-page__order-body thead {
    display: none;
  }
  .subs-page__order-body table,
  .subs-page__order-body tbody,
  .subs-page__order-body tr,
  .subs-page__order-body td {
    display: block;
    width: 100%;
  }
  .subs-page__order-body tr {
    margin-bottom: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 0.5rem;
  }
  .subs-page__order-body tr:first-child {
    border-top: none;
    padding-top: 0;
  }
  .subs-page__order-body td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: 0.2rem 0;
  }
  .subs-page__order-body td::before {
    content: attr(data-label);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }
}

.checkout-recap-card {
  background: #fa9eb7;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  width: 100%;
  margin-top: 0.5rem;
}

.checkout-recap-card__heading {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #063e85;
  margin: 0 0 0.5rem;
}

.checkout-recap-card__name {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #063e85;
  margin: 0;
}

.checkout-recap-card__detail {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 500;
  color: #063e85;
  margin: 0.25rem 0 0;
}

.checkout-recap-card__price {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #063e85;
  margin: 0.5rem 0 0;
}

.checkout-form__readonly-email {
  display: flex;
  align-items: center;
  cursor: default;
}

.form-fields__hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin: 2px 0 0;
}

.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--color-navy-dark);
  border-top: 1px solid rgba(255, 210, 93, 0.35);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  box-sizing: border-box;
  font-family: "Gotham", "Poppins", sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 992px) {
  .cookie-consent-bar {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}

.cookie-consent-text {
  flex: 1 1 260px;
  margin: 0;
  color: var(--color-white);
  line-height: 1.4;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
}

.cookie-btn--accept {
  background: var(--color-yellow);
  color: var(--color-navy);
  border-color: var(--color-yellow);
}
.cookie-btn--accept:hover {
  filter: brightness(0.9);
}
.cookie-btn--accept:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

.cookie-btn--reject {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.cookie-btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cookie-btn--reject:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

.payment-landing {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.payment-landing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.payment-landing__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 62, 133, 0.72);
  z-index: 1;
}

.payment-landing__card {
  position: relative;
  z-index: 2;
  width: 692px;
  max-width: calc(100vw - 2rem);
  background: rgba(6, 62, 133, 0.72);
  backdrop-filter: blur(2px);
  border-radius: 39px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding-bottom: 2.5rem;
}

.payment-landing__order-heading {
  padding: 2.5rem 1.5rem 1.5rem;
}

.payment-landing__order-label {
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 0;
}

.payment-landing__order-number {
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: 80px;
  margin-bottom: 0;
  line-height: 1;
}

.payment-landing__status-banner {
  width: 100%;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.payment-landing__status-banner--completed {
  background: #009e44;
}

.payment-landing__status-banner--cancelled {
  background: #ff000f;
}

.payment-landing__status-banner--pending {
  background: #6c757d;
}

.payment-landing__status-message {
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  display: block;
}

.payment-landing__error {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin: 0 1.5rem 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: #fff;
  text-align: left;
}

.payment-landing__package {
  font-size: 24px;
  margin: 0 1.5rem 1.5rem;
}

.payment-landing__package-label {
  font-family: "Gotham", sans-serif;
  font-weight: 700;
}

.payment-landing__package-name {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
}

.payment-landing__cta {
  display: inline-block;
  background: #fa9eb7;
  color: #073e84;
  border: none;
  border-radius: 12px;
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 0.5rem 1.75rem;
  cursor: pointer;
  text-decoration: none;
  margin-top: 0.5rem;
}
.payment-landing__cta:hover {
  filter: brightness(0.92);
  color: #073e84;
  text-decoration: none;
}

.about-page-section {
  width: 100%;
  background: var(--color-white);
  position: relative;
}

.about-page-section__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
@media (min-width: 992px) {
  .about-page-section__inner {
    padding: 5rem 0 6rem clamp(2rem, 10.4167vw, 200px);
  }
}

.about-page-section__title {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--color-navy-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 3rem;
}
@media (min-width: 992px) {
  .about-page-section__title {
    font-size: 4rem;
    margin: 0 0 4.5rem;
  }
}

.about-page-section__dots {
  display: block;
  position: absolute;
  pointer-events: none;
}
.about-page-section__dots--top-right {
  top: 2rem;
  right: -10px;
  width: 130px;
  transform: rotate(45deg);
  opacity: 0.7;
}
@media (min-width: 992px) {
  .about-page-section__dots--top-right {
    top: 3rem;
    right: 1rem;
    width: 160px;
    transform: rotate(180deg);
    opacity: 0.7;
  }
}
.about-page-section__dots--bottom-left {
  bottom: -3rem;
  left: -30px;
  width: 130px;
  transform: rotate(-37deg);
  opacity: 0.6;
}
@media (min-width: 992px) {
  .about-page-section__dots--bottom-left {
    bottom: 6rem;
    left: 0;
    width: 150px;
    transform: rotate(-37deg);
    opacity: 0.6;
  }
}
.about-page-section__dots--mid-right {
  top: 40%;
  right: -15px;
  width: 110px;
  transform: rotate(149deg);
  opacity: 0.6;
}
@media (min-width: 992px) {
  .about-page-section__dots--mid-right {
    display: none;
  }
}

@media (min-width: 992px) {
  .about-page-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(416px, 150px + 26.85vw, 665px);
    column-gap: 3.5rem;
    align-items: start;
  }
}

@media (min-width: 992px) {
  .about-page-section__text-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    column-gap: 3.5rem;
    row-gap: 80px;
    align-content: start;
  }
}

.about-page-section__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .about-page-section__row {
    display: contents;
  }
}

.about-page-section__row-image-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .about-page-section__row-image-wrap {
    display: none;
  }
}

.about-page-section__row-heading {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .about-page-section__row-heading {
    font-size: 1.75rem;
  }
}

.about-page-section__row-body {
  font-family: "Gotham", "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.75;
}
@media (min-width: 992px) {
  .about-page-section__row-body {
    font-size: 1.05rem;
  }
}
.about-page-section__row-body p {
  margin: 0 0 0.75rem;
}
.about-page-section__row-body p:last-child {
  margin-bottom: 0;
}
.about-page-section__row-body ul {
  margin: 0.5rem 0 0.75rem 1.5rem;
  padding: 0;
}
.about-page-section__row-body ul li {
  margin-bottom: 0.5rem;
}

.about-page-section__row-image {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  height: auto;
  width: 100%;
}
.about-page-section__row-image--large {
  max-width: 280px;
}
.about-page-section__row-image--medium {
  max-width: 220px;
}

.about-page-section__image-col {
  display: none;
}
@media (min-width: 992px) {
  .about-page-section__image-col {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 140px;
    align-items: flex-end;
  }
}

.about-page-section__col-image {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
}
.about-page-section__col-image--large {
  width: clamp(420px, 227px + 19.42vw, 600px);
  margin-right: -5vw;
}
@media (min-width: 1920px) {
  .about-page-section__col-image--large {
    margin-right: 0;
  }
}
.about-page-section__col-image--medium {
  width: clamp(270px, 174px + 9.71vw, 360px);
  margin-right: clamp(100px, 43px + 5.72vw, 153px);
}

.about-page-section__elf {
  display: block;
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: -10px;
  width: 200px;
  height: 177px;
}
@media (min-width: 992px) {
  .about-page-section__elf {
    right: auto;
    left: clamp(576px, 100vw - clamp(416px, 150px + 26.85vw, 665px), 1255px);
    bottom: 0;
    width: 305px;
    height: 270px;
  }
}

.legal-page {
  background: var(--color-white);
  min-height: 60vh;
}

.legal-page__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
@media (min-width: 992px) {
  .legal-page__content {
    padding: 5rem 0 7rem;
  }
}

.legal-page__title {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-navy);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
@media (min-width: 992px) {
  .legal-page__title {
    font-size: 2.75rem;
  }
}

.legal-page__lead {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: var(--color-navy);
  line-height: 1.7;
  margin: 0;
}
@media (min-width: 992px) {
  .legal-page__lead {
    font-size: 1.25rem;
  }
}

.admin-page {
  background: var(--color-white);
  min-height: 60vh;
}

.admin-page__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
@media (min-width: 992px) {
  .admin-page__inner {
    padding: 5rem 0 7rem;
  }
}

.admin-page__title {
  font-family: "Gluten", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-navy);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
@media (min-width: 992px) {
  .admin-page__title {
    font-size: 2.5rem;
  }
}

.admin-page__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--color-navy);
  margin-bottom: 2rem;
}
.admin-page__table th,
.admin-page__table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(7, 62, 132, 0.2);
  text-align: left;
}
.admin-page__table th {
  background: rgba(7, 62, 132, 0.06);
  font-weight: 600;
}

.admin-page__verify-btn,
.admin-page__token-btn {
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.admin-page__verify-btn:hover,
.admin-page__token-btn:hover {
  opacity: 0.85;
}

.admin-page__download-link-row {
  margin-top: 2rem;
  text-align: center;
}

.admin-page__download-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.admin-page__download-link:hover {
  opacity: 0.85;
  color: var(--color-white);
}

.admin-page__email-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(7, 62, 132, 0.2);
  border-radius: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.admin-page__email-panel-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 1rem;
}

.admin-page__email-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(7, 62, 132, 0.3);
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--color-navy);
  box-sizing: border-box;
}

.admin-page__email-btn {
  width: 100%;
  padding: 0.625rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.admin-page__email-btn:hover {
  opacity: 0.85;
}

.admin-page__email-message {
  margin-top: 0.75rem;
  text-align: center;
  display: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.admin-page__elf-wrap {
  margin-top: 3rem;
  text-align: center;
}

.admin-page__elf {
  max-width: 220px;
  margin: 0 auto;
}
