@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --toveedo-cyan: #41d0ff;
  --toveedo-cyan-deep: #25c0f4;
  --toveedo-cyan-soft: #8ce6ff;
  --toveedo-purple: #7853ff;
  --toveedo-purple-soft: #c9a8ff;
  --toveedo-text: #151515;
  --toveedo-text-soft: rgba(21, 21, 21, 0.72);
  --toveedo-surface: #ffffff;
  --toveedo-border: rgba(255, 255, 255, 0.4);
  --page-max-width: 1120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--toveedo-surface);
  color: var(--toveedo-text);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body.mobile-header-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
}

.site-main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

body.page-shell--custom-background,
body.page-shell--custom-background .app-shell {
  background: var(--page-shell-background);
}

body.page-shell--custom-background .site-main {
  background: var(--page-shell-background);
}

.media-loadable {
  position: relative;
  display: block;
  overflow: hidden;
}

.media-loadable__asset {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.media-loadable:not(.is-loading) .media-loadable__asset {
  opacity: 1;
}

.media-loadable__skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(140, 230, 255, 0.92) 0%,
    rgba(65, 208, 255, 0.78) 100%
  );
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.media-loadable:not(.is-loading) .media-loadable__skeleton {
  opacity: 0;
  visibility: hidden;
}

.skeleton {
  width: 100%;
  height: 100%;
}

.skeleton--media {
  background: linear-gradient(
    110deg,
    rgba(140, 230, 255, 0.22) 8%,
    rgba(255, 255, 255, 0.5) 18%,
    rgba(140, 230, 255, 0.22) 33%
  );
  background-size: 220% 100%;
  animation: skeleton-shimmer 1.25s linear infinite;
}

@keyframes skeleton-shimmer {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

.reveal-block {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.985);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.flash-message {
  max-width: var(--page-max-width);
  margin: 1.5rem auto 0;
  padding: 0.95rem 1.2rem;
  border-radius: 18px;
  background: rgba(120, 83, 255, 0.08);
  color: var(--toveedo-text);
}

.editor-content img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.editor-content a,
.editor-content u {
  text-decoration: underline;
}

.editor-content strong,
.editor-content b {
  font-weight: 700;
}

.editor-content em,
.editor-content i {
  font-style: italic;
}

.editor-content p {
  margin: 0 0 1rem;
}

.editor-content > :first-child {
  margin-top: 0;
}

.editor-content > :last-child {
  margin-bottom: 0;
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
  margin: 1.4rem 0 0.75rem;
  line-height: 1.18;
}

.editor-content ul,
.editor-content ol {
  padding-left: 1.3rem;
}

.editor-content blockquote {
  margin: 1.35rem 0;
  padding-left: 1rem;
  border-left: 4px solid currentColor;
}

.editor-content figure {
  margin: 1.5rem 0;
}

.editor-content figure img,
.editor-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.editor-content figcaption {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  opacity: 0.8;
}

.editor-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}

.editor-content th,
.editor-content td {
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(21, 21, 21, 0.14);
  vertical-align: top;
}

.editor-content hr {
  margin: 1.4rem 0;
  border: 0;
  border-top: 1px solid rgba(21, 21, 21, 0.16);
}

.storefront-header {
  position: relative;
  z-index: 30;
  padding: 0 1.5rem;
  background: var(--toveedo-cyan);
  color: #fff;
}

.storefront-header__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
}

.storefront-header__logo-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.storefront-header__logo-link {
  display: inline-flex;
  align-items: center;
}

.storefront-header__logo-image {
  display: block;
  width: auto;
  height: 3.25rem;
}

.storefront-header__logo-fallback {
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.storefront-header__desktop-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.storefront-header__dropdown {
  position: relative;
}

.storefront-header__dropdown-toggle,
.storefront-header__auth-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.storefront-header__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.storefront-header__dropdown-toggle svg {
  display: block;
  transition: transform 0.2s ease;
}

.storefront-header__dropdown.is-open .storefront-header__dropdown-toggle svg {
  transform: rotate(180deg);
}

.storefront-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: -1rem;
  z-index: 50;
  min-width: 11.5rem;
  padding: 0.6rem 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.9rem;
  background: var(--toveedo-cyan);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.storefront-header__dropdown-link {
  display: block;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  transition: background-color 0.18s ease;
}

.storefront-header__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.storefront-header__mobile-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.storefront-mobile-nav {
  display: none;
  padding: 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--toveedo-cyan);
}

.storefront-mobile-nav__panel {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 0 1.2rem;
}

.storefront-mobile-nav__menu {
  display: flex;
  flex-direction: column;
}

.storefront-mobile-nav__link {
  display: block;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.storefront-mobile-nav__link--auth {
  border-bottom: 0;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.18),
      transparent 34%
    ),
    linear-gradient(140deg, #41d0ff 0%, #85dbff 38%, #c9a8ff 100%);
}

.hero-banner__content {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.hero-banner__eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-banner__title {
  margin: 0;
  max-width: 12ch;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.95;
}

.hero-banner__body {
  max-width: 40rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.hero-banner__actions {
  margin-top: 2rem;
}

.hero-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  background: #fff;
  color: var(--toveedo-purple);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-banner__media {
  display: none;
}

.coloring-pages-grid {
  padding: 3.2rem 1.5rem 0;
}

.coloring-pages-grid__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.coloring-pages-grid__title {
  margin: 0;
  color: #000;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.coloring-pages-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.75rem;
}

.coloring-pages-grid__card {
  min-width: 0;
}

.coloring-pages-grid__card-link {
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.coloring-pages-grid__card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
}

.coloring-pages-grid__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coloring-pages-grid__card-link:hover,
.coloring-pages-grid__card-link:focus-visible {
  transform: translateY(-6px);
  filter: saturate(1.04);
}

.download-gallery {
  padding: 3.2rem 1.5rem 0;
}

.download-gallery__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.download-gallery__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: #000;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.download-gallery__home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--toveedo-cyan);
  flex: 0 0 auto;
}

.download-gallery__home-link svg {
  display: block;
  width: 100%;
  height: 100%;
}

.download-gallery__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem 2rem;
  margin-top: 2.75rem;
}

.download-gallery__card {
  min-width: 0;
}

.download-gallery__card-link {
  display: block;
  overflow: hidden;
  border-radius: 1.35rem;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.download-gallery__card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
}

.download-gallery__card-media.is-loading {
  aspect-ratio: 1 / 1;
}

.download-gallery__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-gallery__card-link:hover,
.download-gallery__card-link:focus-visible {
  transform: translateY(-4px);
  filter: saturate(1.03);
}

.testimonials-showcase {
  position: relative;
  padding: clamp(3.25rem, 6vw, 5.4rem) 1.5rem clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  color: #fff;
  padding-bottom: 40vw;
}

.testimonials-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 14% 32%,
      rgba(255, 219, 191, 0.24) 0%,
      rgba(255, 219, 191, 0) 26%
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(255, 163, 139, 0.2) 0%,
      rgba(255, 163, 139, 0) 30%
    );
  pointer-events: none;
}

.testimonials-showcase__inner {
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
  z-index: 1;
}

.testimonials-showcase__title {
  margin: 0;
  max-width: 14ch;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(4rem, 7vw, 6.25rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.testimonials-showcase__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2vw, 2rem);
  margin-top: clamp(1.8rem, 4vw, 3.2rem);
  align-items: start;
}

.testimonials-showcase__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonials-showcase__column--2 {
  padding-top: 4.4rem;
}

.testimonials-showcase__column--3 {
  padding-top: 2rem;
}

.testimonials-showcase__card {
  padding: 1.7rem 1.55rem;
  border: 1px solid rgba(90, 37, 223, 0.24);
  border-radius: 1.6rem;
  background: linear-gradient(145deg, #7f2ce8 0%, #8053ff 100%);
  box-shadow: 0 18px 38px rgba(111, 40, 195, 0.22);
  color: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.testimonials-showcase__quote {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.52;
}

.testimonials-showcase__meta {
  margin: 1.3rem 0 0;
  text-align: right;
  font-size: 0.95rem;
}

.testimonials-showcase__name,
.testimonials-showcase__location {
  display: block;
}

.testimonials-showcase__location {
  font-style: italic;
}

.testimonials-showcase__accent,
.testimonials-showcase__badge {
  display: flex;
}

.testimonials-showcase__accent--left {
  max-width: 12rem;
  opacity: 0.45;
}

.testimonials-showcase__accent--right {
  justify-content: flex-end;
  max-width: 13rem;
  margin-top: 0.75rem;
  margin-left: auto;
  padding-left: 3rem;
  opacity: 0.42;
}

.testimonials-showcase__badge {
  justify-content: flex-start;
  margin-top: 0.35rem;
}

.testimonials-showcase__accent-image,
.testimonials-showcase__badge-image {
  display: block;
  width: 100%;
  height: auto;
}

.testimonials-showcase__badge-image {
  max-width: 15rem;
}

.testimonials-showcase__bottom-illustration {
  position: absolute;
  right: min(-12vw, -7rem);
  bottom: -0.5rem;
  width: min(56vw, 46rem);
  pointer-events: none;
  opacity: 0.98;
  z-index: 0;
}

.testimonials-showcase__bottom-image {
  display: block;
  width: 100%;
  height: auto;
}

.testimonials-showcase__card:hover,
.testimonials-showcase__card:focus-within {
  transform: translateY(-6px) rotate(-0.35deg);
  box-shadow: 0 24px 42px rgba(111, 40, 195, 0.28);
  filter: saturate(1.04);
}

.faq-accordion {
  position: relative;
  overflow: hidden;
  flex: 1 0 auto;
  padding: 1.2rem 0 2.5rem;
  background: transparent;
  color: #fff;
}

.faq-accordion__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-accordion__title {
  margin: 0;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.faq-accordion__items {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
}

.faq-accordion__item {
  border-bottom: 1px solid rgba(90, 187, 243, 0.92);
}

.faq-accordion__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-accordion__question {
  display: block;
  flex: 1 1 auto;
}

.faq-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  color: #fff;
  flex: 0 0 auto;
}

.faq-accordion__icon::before {
  content: "+";
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.faq-accordion__trigger.active .faq-accordion__icon::before,
.faq-accordion__item.is-open .faq-accordion__icon::before {
  content: "−";
  transform: translateY(-0.05em);
}

.faq-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  padding-right: 1.15rem;
  overflow: clip;
  line-height: 1.5rem;
  opacity: 0;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    margin-top 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-accordion__item.is-open .faq-accordion__panel {
  grid-template-rows: 1fr;
  margin-top: 0.15rem;
  opacity: 1;
}

.faq-accordion__panel-inner {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 1.45rem;
}

.faq-accordion__answer {
  color: rgba(255, 255, 255, 0.94);
}

.faq-accordion__answer p:last-child,
.faq-accordion__answer ul:last-child,
.faq-accordion__answer ol:last-child {
  margin-bottom: 0;
}

.faq-accordion__answer a {
  color: #fff;
  font-weight: 700;
}

.editorial-page {
  padding: 3.8rem 1.5rem 0;
}

.editorial-page__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.editorial-page__title {
  margin: 0;
  color: #141414;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.editorial-page__body {
  margin-top: 1.4rem;
  max-width: 100%;
  color: var(--toveedo-text-soft);
  font-size: 1rem;
}

.editorial-page__body h2,
.editorial-page__body h3,
.editorial-page__body h4 {
  margin: 1.5rem 0 0.75rem;
  color: var(--toveedo-text);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.editorial-page__body ul,
.editorial-page__body ol {
  padding-left: 1.25rem;
}

.editorial-page__media {
  margin-top: 1.75rem;
  max-width: 100%;
}

.editorial-page__media-link {
  display: inline-block;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.editorial-page__media-link:hover,
.editorial-page__media-link:focus-visible {
  transform: translateY(-4px);
  filter: saturate(1.03);
}

.editorial-page__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
}

.page--support.page-shell--custom-background .editorial-page,
.page--gift-card.page-shell--custom-background .editorial-page {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem clamp(6.5rem, 12vw, 9rem);
  overflow: hidden;
  color: #fff;
}

.page--support.page-shell--custom-background .editorial-page::before,
.page--gift-card.page-shell--custom-background .editorial-page::before,
.page--support.page-shell--custom-background .editorial-page::after,
.page--gift-card.page-shell--custom-background .editorial-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.page--support.page-shell--custom-background .editorial-page::before,
.page--gift-card.page-shell--custom-background .editorial-page::before {
  top: -4rem;
  right: min(8vw, 6rem);
  width: clamp(12rem, 22vw, 18rem);
  height: clamp(12rem, 22vw, 18rem);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.26) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0.55;
}

.page--support.page-shell--custom-background .editorial-page::after,
.page--gift-card.page-shell--custom-background .editorial-page::after {
  bottom: -5rem;
  left: max(-4rem, -3vw);
  width: clamp(16rem, 30vw, 24rem);
  height: clamp(16rem, 30vw, 24rem);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0) 72%
  );
  opacity: 0.5;
}

.page--support.page-shell--custom-background .editorial-page__inner,
.page--gift-card.page-shell--custom-background .editorial-page__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  padding: 0 1.5rem;
}

.page--support.page-shell--custom-background .editorial-page__title,
.page--gift-card.page-shell--custom-background .editorial-page__title {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.page--support.page-shell--custom-background .editorial-page__body,
.page--gift-card.page-shell--custom-background .editorial-page__body {
  margin-top: 2rem;
  width: min(100%, 55rem);
  max-width: none;
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.75rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 0 1.5rem 4rem rgba(54, 21, 123, 0.18);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.05rem;
  line-height: 1.72;
}

.page--support.page-shell--custom-background
  .editorial-page__body
  > :first-child,
.page--gift-card.page-shell--custom-background
  .editorial-page__body
  > :first-child {
  margin-top: 0;
}

.page--support.page-shell--custom-background
  .editorial-page__body
  > :last-child,
.page--gift-card.page-shell--custom-background
  .editorial-page__body
  > :last-child {
  margin-bottom: 0;
}

.page--support.page-shell--custom-background
  .editorial-page__body
  :is(h2, h3, h4, strong),
.page--gift-card.page-shell--custom-background
  .editorial-page__body
  :is(h2, h3, h4, strong) {
  color: #fff;
}

.page--support.page-shell--custom-background .editorial-page__body a,
.page--gift-card.page-shell--custom-background .editorial-page__body a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.14em;
}

.page--support.page-shell--custom-background .editorial-page__body ul,
.page--support.page-shell--custom-background .editorial-page__body ol,
.page--gift-card.page-shell--custom-background .editorial-page__body ul,
.page--gift-card.page-shell--custom-background .editorial-page__body ol {
  padding-left: 1.4rem;
}

.page--support.page-shell--custom-background .editorial-page__body li + li,
.page--gift-card.page-shell--custom-background .editorial-page__body li + li {
  margin-top: 0.35rem;
}

.contact-page {
  position: relative;
  padding: clamp(3.25rem, 6vw, 5.5rem) 1.5rem clamp(6rem, 11vw, 9rem);
  color: #fff;
}

.contact-page__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 44rem) minmax(24rem, 1fr);
  gap: clamp(2.5rem, 6vw, 6.25rem);
  align-items: start;
}

.contact-page__content {
  max-width: 46rem;
}

.contact-page__title {
  margin: 0;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(3.8rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.contact-page__intro {
  margin-top: 2rem;
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.98);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-weight: 700;
  line-height: 1.42;
}

.contact-page__intro :is(p, a) {
  color: inherit;
}

.contact-page__intro a {
  text-decoration: none;
}

.contact-page__intro a:hover,
.contact-page__intro a:focus-visible {
  text-decoration: underline;
}

.contact-page__form-wrap {
  margin-top: 2.6rem;
  max-width: 46rem;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-page__input,
.contact-page__textarea,
.contact-page__newsletter-input {
  width: 100%;
  border: 1px solid rgba(140, 204, 255, 0.28);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 12px 26px rgba(86, 161, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: #1f1f1f;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.contact-page__input,
.contact-page__newsletter-input {
  min-height: 4.25rem;
  padding: 1rem 1.3rem;
}

.contact-page__textarea {
  min-height: 12.5rem;
  padding: 1.25rem 1.3rem;
  border-radius: 1.9rem;
  resize: vertical;
}

.contact-page__input::placeholder,
.contact-page__textarea::placeholder,
.contact-page__newsletter-input::placeholder {
  color: #54b9ff;
}

.contact-page__submit,
.contact-page__newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-width: 11.75rem;
  min-height: 3.35rem;
  padding: 0.7rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c55ff 0%, #7448ff 50%, #9651ff 100%);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
}

.contact-page__submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.contact-page__submit:hover:not([disabled]),
.contact-page__submit:focus-visible,
.contact-page__newsletter-submit:hover,
.contact-page__newsletter-submit:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 16px 28px rgba(101, 73, 255, 0.3);
}

.contact-page__illustration-wrap {
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 0.75rem;
}

.contact-page__illustration {
  display: block;
  width: clamp(23rem, 30vw, 28.5rem);
  height: auto;
}

.contact-page__alert {
  margin-bottom: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.contact-page__alert--success {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.contact-page__alert--error {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.contact-page__newsletter {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(22rem, 34rem);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  margin-top: clamp(5rem, 9vw, 8rem);
}

.contact-page__newsletter-image-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-page__newsletter-image {
  display: block;
  width: min(100%, 33.5rem);
  height: auto;
}

.contact-page__newsletter-content {
  max-width: 34rem;
}

.contact-page__newsletter-title {
  margin: 0;
  max-width: 33rem;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-page__newsletter-form {
  margin-top: 2rem;
  max-width: 34rem;
}

.contact-page__newsletter-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.contact-page__newsletter-submit {
  align-self: auto;
  min-width: 9rem;
}

.contact-page__social {
  margin-top: clamp(5rem, 9vw, 8rem);
  text-align: center;
}

.contact-page__social-title {
  margin: 0;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.contact-page__social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 2rem;
}

.contact-page__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.96);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.contact-page__social-link:hover,
.contact-page__social-link:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.04);
}

.contact-page__social-icon {
  width: clamp(4rem, 5vw, 5.6rem);
  height: clamp(4rem, 5vw, 5.6rem);
}

.contact-page__newsletter-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.storefront-footer {
  margin-top: 4.75rem;
  background: linear-gradient(
    to bottom,
    var(--toveedo-purple-soft) 0%,
    var(--toveedo-purple) 100%
  );
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #fff;
  opacity: 1;
}

.storefront-footer__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: clamp(8rem, 18vw, 22rem) 1.5rem 4.4rem;
  text-align: center;
}

.storefront-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.storefront-footer__logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(13rem, 60vw);
}

.storefront-footer__logo-fallback {
  font-family: "Quicksand", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.storefront-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.95rem 1.6rem;
  margin-top: 2rem;
}

.storefront-footer__nav-link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.storefront-footer__nav-link:hover,
.storefront-footer__nav-link:focus-visible {
  opacity: 0.88;
}

.storefront-footer__copyright {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  text-transform: uppercase;
}

body.page-shell--footer-overlap .site-main {
  padding-bottom: var(--page-footer-overlap, 0px);
}

body.page-shell--footer-overlap .storefront-footer {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--page-footer-overlap, 0px) * -1);
}

body.page-shell--footer-overlap .storefront-footer__inner {
  padding-top: calc(clamp(8rem, 18vw, 22rem) + var(--page-footer-overlap, 0px));
}

.empty-sections-state {
  max-width: 48rem;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.empty-sections-state__card {
  padding: 2rem;
  border: 1px dashed rgba(120, 83, 255, 0.28);
  border-radius: 1.5rem;
  background: rgba(120, 83, 255, 0.04);
}

.empty-sections-state__title {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.empty-sections-state__body {
  margin-top: 1rem;
  color: var(--toveedo-text-soft);
}

.video-testimonials-grid {
  padding: 3.4rem 1.5rem 2rem;
  background: linear-gradient(180deg, #ff9936 0%, #8a2be2 42%, #6b26ce 100%);
  color: #fff;
}

body.page--video-testimonials .video-testimonials-grid--page {
  background: transparent;
}

body.page--video-testimonials.page-shell--footer-overlap .site-main {
  padding-bottom: calc(var(--page-footer-overlap, 0px) + 2px);
}

body.page--video-testimonials.page-shell--footer-overlap .storefront-footer {
  margin-top: calc((var(--page-footer-overlap, 0px) + 2px) * -1);
}

.video-testimonials-grid--homepage {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.video-testimonials-grid__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.video-testimonials-grid__title {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
}

.video-testimonials-grid__subtitle {
  max-width: 38rem;
  margin: 0.7rem auto 0;
  font-size: 1.15rem;
  text-align: center;
}

.video-testimonials-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.video-testimonials-grid--homepage .video-testimonials-grid__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 21rem);
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
}

.video-testimonials-grid__cards::-webkit-scrollbar {
  height: 10px;
}

.video-testimonials-grid__cards::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.video-testimonials-grid__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(138, 43, 226, 0.92);
  box-shadow: 0 20px 50px rgba(37, 0, 75, 0.22);
  scroll-snap-align: start;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.video-testimonials-grid__card-shell {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.video-testimonials-grid__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.7rem;
}

.video-testimonials-grid__poster,
.video-testimonials-grid__video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.video-testimonials-grid__poster--placeholder {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: rgba(255, 255, 255, 0.15);
}

.video-testimonials-grid__media-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.video-testimonials-grid__media-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.88);
}

.video-testimonials-grid__play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 3.5rem;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 0.875rem;
  background: rgba(12, 20, 39, 0.4);
  transform: translate(-50%, -50%);
  box-shadow: 0 0.625rem 1.75rem rgba(8, 11, 25, 0.24);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.video-testimonials-grid__media-button:hover
  .video-testimonials-grid__play-button,
.video-testimonials-grid__media-button:focus-visible
  .video-testimonials-grid__play-button {
  background: rgba(12, 20, 39, 0.62);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-testimonials-grid__play-icon {
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-top: 0.875rem solid transparent;
  border-bottom: 0.875rem solid transparent;
  border-left: 1.375rem solid #fff;
}

.video-testimonials-grid__media.is-loading {
  aspect-ratio: 9 / 16;
  background: rgba(255, 255, 255, 0.15);
}

.video-testimonials-grid__video {
  height: auto;
}

.video-testimonials-grid__card-copy {
  padding-top: 0.8rem;
}

.video-testimonials-grid__card-title {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
}

.video-testimonials-grid__card-subtitle {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.video-testimonials-grid__card:hover,
.video-testimonials-grid__card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(37, 0, 75, 0.28);
  filter: saturate(1.04);
}

body.page--terms .reveal-block,
body.page--privacy-policy .reveal-block {
  opacity: 1;
  transform: none;
  transition: none;
}

.video-testimonials-grid__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 1.9rem;
}

.video-testimonials-grid__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: #fff;
  color: #8a2be2;
  font-weight: 700;
}

.video-testimonials-grid__modal[hidden] {
  display: none;
}

.video-testimonials-grid__modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.video-testimonials-grid__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 39, 0.82);
  backdrop-filter: blur(8px);
}

.video-testimonials-grid__modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  padding: 0.9rem;
  border-radius: 1.1rem;
  background: rgba(21, 13, 43, 0.96);
  box-shadow: 0 1.4rem 4rem rgba(8, 11, 25, 0.45);
}

.video-testimonials-grid__modal-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 8rem);
  border-radius: 0.85rem;
  background: #000;
}

.video-testimonials-grid__modal-close {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #171126;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 0.75rem 1.8rem rgba(8, 11, 25, 0.28);
  cursor: pointer;
}

.video-testimonials-grid__modal-caption {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.toveedo-homepage {
  background: #fff;
  color: var(--toveedo-text);
}

.toveedo-homepage__popup[hidden] {
  display: none;
}

.toveedo-homepage__popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.toveedo-homepage__popup-backdrop {
  display: none;
}

.toveedo-homepage__popup-dialog {
  position: relative;
  z-index: 1;
  width: min(75vw, 64rem);
  max-width: calc(100vw - 3rem);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 10px 10px 60px rgba(85, 85, 85, 0.8);
  overflow: visible;
}

.toveedo-homepage__popup-link,
.toveedo-homepage__popup-image {
  display: block;
}

.toveedo-homepage__popup-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.toveedo-homepage__popup-close {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  border: 3px solid #999;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.toveedo-homepage__hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.22),
      transparent 24%
    ),
    linear-gradient(140deg, #36c8fd 0%, #6fd7ff 38%, #bca7ff 100%);
  color: #fff;
}

.toveedo-homepage__hero-inner,
.toveedo-homepage__section-inner {
  max-width: min(1160px, calc(100vw - 3rem));
  margin: 0 auto;
}

.toveedo-homepage__hero-inner {
  padding: 1.4rem 0 4rem;
}

.toveedo-homepage__hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toveedo-homepage__login-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.toveedo-homepage__hero-logo-link {
  display: inline-flex;
  margin-top: 1.75rem;
}

.toveedo-homepage__hero-logo {
  width: auto;
  height: 4.5rem;
}

.toveedo-homepage__hero-grid,
.toveedo-homepage__watch-grid,
.toveedo-homepage__options-grid,
.toveedo-homepage__download-grid,
.toveedo-homepage__safety-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
}

.toveedo-homepage__hero-grid {
  padding-top: 2rem;
}

.toveedo-homepage__hero-title,
.toveedo-homepage__section-title {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  line-height: 0.97;
}

.toveedo-homepage__hero-title {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.toveedo-homepage__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.toveedo-homepage__hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toveedo-homepage__hero-button--primary,
.toveedo-homepage__hero-button--light {
  background: #ff73b2;
  color: #fff;
}

.toveedo-homepage__hero-button--secondary {
  background: #fff;
  color: #16a5dd;
}

.toveedo-homepage__hero-button--tertiary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.toveedo-homepage__gift-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  color: #fff;
  font-weight: 700;
}

.toveedo-homepage__gift-icon {
  width: 1.7rem;
  height: 1.7rem;
}

.toveedo-homepage__hero-media {
  display: flex;
  justify-content: flex-end;
}

.toveedo-homepage__hero-phone {
  width: min(30rem, 100%);
  height: auto;
}

.toveedo-homepage__pricing {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff6db;
}

.toveedo-homepage__pricing-accent {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 8rem;
  opacity: 0.94;
}

.toveedo-homepage__pricing-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6c2fde;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.toveedo-homepage__watch,
.toveedo-homepage__options,
.toveedo-homepage__download,
.toveedo-homepage__safety {
  padding: 5rem 1.5rem;
}

.toveedo-homepage__watch {
  background: linear-gradient(180deg, #fff5e3 0%, #fff 100%);
}

.toveedo-homepage__options {
  background: #fff;
}

.toveedo-homepage__download {
  background: linear-gradient(180deg, #fff 0%, #fff3db 100%);
}

.toveedo-homepage__safety {
  background: #fff;
}

.toveedo-homepage__section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.toveedo-homepage__section-title--white {
  color: #fff;
}

.toveedo-homepage__rich {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.toveedo-homepage__watch-art,
.toveedo-homepage__options-media,
.toveedo-homepage__download-media {
  position: relative;
  min-height: 18rem;
}

.toveedo-homepage__watch-wave-phone,
.toveedo-homepage__options-covers,
.toveedo-homepage__download-hand {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
}

.toveedo-homepage__watch-wave-phone {
  width: min(29rem, 100%);
}

.toveedo-homepage__watch-cube,
.toveedo-homepage__watch-silver-circles,
.toveedo-homepage__watch-purple-ball,
.toveedo-homepage__options-yellow-ball,
.toveedo-homepage__options-silver-ball,
.toveedo-homepage__download-silver-ball {
  position: absolute;
}

.toveedo-homepage__watch-cube {
  top: 0;
  left: 0;
  width: 5rem;
}

.toveedo-homepage__watch-silver-circles {
  top: 1rem;
  left: 2rem;
  width: 7rem;
}

.toveedo-homepage__watch-purple-ball {
  right: 0;
  bottom: 0;
  width: 5.5rem;
}

.toveedo-homepage__options-covers {
  width: min(34rem, 100%);
}

.toveedo-homepage__options-yellow-ball {
  top: 1rem;
  left: -1.5rem;
  width: 4.8rem;
}

.toveedo-homepage__options-silver-ball {
  right: 0;
  bottom: 1rem;
  width: 5rem;
}

.toveedo-homepage__device-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
}

.toveedo-homepage__store-badge {
  width: auto;
  height: 2.9rem;
}

.toveedo-homepage__platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
}

.toveedo-homepage__platform-logo {
  width: auto;
  height: 1.7rem;
}

.toveedo-homepage__testimonial-strip {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, #ff9331 0%, #8a2be2 34%, #7a34dd 100%);
  color: #fff;
}

.toveedo-homepage__testimonial-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 22rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
}

.toveedo-homepage__testimonial-card {
  padding: 1.4rem;
  border-radius: 1rem;
  background: rgba(138, 43, 226, 0.95);
  box-shadow: 0 20px 50px rgba(44, 0, 96, 0.22);
  scroll-snap-align: start;
}

.toveedo-homepage__testimonial-quote {
  margin: 0;
  font-weight: 700;
  line-height: 1.65;
}

.toveedo-homepage__testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
  font-size: 0.92rem;
}

.toveedo-homepage__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.toveedo-homepage__white-cta,
.toveedo-homepage__faq-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 700;
}

.toveedo-homepage__white-cta {
  background: #fff;
  color: #8a2be2;
}

.toveedo-homepage__download-hand {
  width: min(34rem, 100%);
}

.toveedo-homepage__download-silver-ball {
  right: 1rem;
  bottom: 0;
  width: 4.5rem;
}

.toveedo-homepage__safety-badge {
  width: min(15rem, 100%);
  margin: 0 auto;
}

.toveedo-homepage__cta-faq {
  padding: 4.75rem 1.5rem;
  background: linear-gradient(180deg, #7d44f6 0%, #6f31dd 100%);
  color: #fff;
}

.toveedo-homepage__cta-block {
  text-align: center;
}

.toveedo-homepage__faq {
  max-width: 48rem;
  margin: 3rem auto 0;
}

.toveedo-homepage__faq-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.toveedo-homepage__faq-item {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.toveedo-homepage__faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.toveedo-homepage__faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.2rem;
  opacity: 0;
  transition:
    grid-template-rows 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    padding-bottom 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.toveedo-homepage__faq-item.is-open .toveedo-homepage__faq-panel {
  grid-template-rows: 1fr;
  padding-bottom: 1.1rem;
  opacity: 1;
}

.toveedo-homepage__faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.toveedo-homepage__faq-answer {
  color: rgba(255, 255, 255, 0.94);
}

.toveedo-homepage__faq-link {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 900px) {
  .storefront-header__desktop-actions {
    display: none;
  }

  .storefront-header__mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .storefront-mobile-nav:not([hidden]) {
    display: block;
  }

  .coloring-pages-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

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

  .testimonials-showcase__columns {
    grid-template-columns: 1fr;
  }

  .testimonials-showcase__column,
  .testimonials-showcase__column--2,
  .testimonials-showcase__column--3 {
    padding-top: 0;
  }

  .testimonials-showcase__accent--left,
  .testimonials-showcase__accent--right {
    max-width: 11rem;
    margin-top: 0;
    padding-left: 0;
  }

  .testimonials-showcase__bottom-illustration {
    position: static;
    width: min(100%, 18rem);
    margin: 2rem 0 0 auto;
  }

  .contact-page__grid,
  .contact-page__newsletter {
    grid-template-columns: 1fr;
  }

  .contact-page__inner {
    max-width: min(760px, calc(100vw - 2rem));
  }

  .contact-page__content,
  .contact-page__form-wrap,
  .contact-page__newsletter-content,
  .contact-page__newsletter-form {
    max-width: none;
  }

  .contact-page__illustration-wrap {
    justify-content: center;
    align-items: center;
  }

  .contact-page__newsletter-image {
    margin: 0 auto;
  }

  .contact-page__illustration {
    width: min(100%, 24rem);
  }

  .contact-page__social-links {
    flex-wrap: wrap;
  }

  .video-testimonials-grid__cards,
  .video-testimonials-grid--homepage .video-testimonials-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
  }

  .toveedo-homepage__hero-grid,
  .toveedo-homepage__watch-grid,
  .toveedo-homepage__options-grid,
  .toveedo-homepage__download-grid,
  .toveedo-homepage__safety-inner {
    grid-template-columns: 1fr;
  }

  .toveedo-homepage__hero-media,
  .toveedo-homepage__watch-art,
  .toveedo-homepage__options-media,
  .toveedo-homepage__download-media {
    justify-content: center;
    min-height: 0;
  }

  .toveedo-homepage__hero-phone,
  .toveedo-homepage__watch-wave-phone,
  .toveedo-homepage__options-covers,
  .toveedo-homepage__download-hand {
    margin: 0 auto;
  }

  .toveedo-homepage__testimonial-cards {
    grid-auto-columns: minmax(15rem, 18rem);
  }
}

@media (max-width: 640px) {
  .storefront-header__inner {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .storefront-header__logo-image {
    height: 2.4rem;
  }

  .hero-banner__content {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .coloring-pages-grid {
    padding-top: 2.8rem;
  }

  .coloring-pages-grid__cards {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .download-gallery {
    padding-top: 2.8rem;
  }

  .download-gallery__title {
    gap: 0.7rem;
    font-size: 2rem;
  }

  .download-gallery__home-link {
    width: 2.25rem;
    height: 2.25rem;
  }

  .download-gallery__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .testimonials-showcase {
    padding-top: 2.8rem;
  }

  .testimonials-showcase__title {
    max-width: 8ch;
  }

  .testimonials-showcase__card {
    padding: 1.45rem 1.25rem;
  }

  .faq-accordion,
  .editorial-page,
  .contact-page {
    padding-top: 2.8rem;
  }

  .faq-accordion {
    padding-bottom: 4rem;
  }

  .contact-page__intro {
    font-size: 1.1rem;
  }

  .contact-page__title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .contact-page__input,
  .contact-page__textarea,
  .contact-page__newsletter-input {
    font-size: 0.95rem;
  }

  .contact-page__newsletter {
    margin-top: 4rem;
  }

  .contact-page__newsletter-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .contact-page__newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-page__submit,
  .contact-page__newsletter-submit {
    width: 100%;
  }

  .contact-page__social {
    margin-top: 4rem;
  }

  .contact-page__social-links {
    gap: 1.5rem;
  }

  .video-testimonials-grid {
    padding-top: 2.8rem;
  }

  .video-testimonials-grid__cards,
  .video-testimonials-grid--homepage .video-testimonials-grid__cards {
    grid-template-columns: 1fr;
  }

  .toveedo-homepage__popup {
    padding: 1rem;
  }

  .toveedo-homepage__popup-dialog {
    width: min(calc(100vw - 2rem), 32rem);
  }

  .toveedo-homepage__popup-close {
    top: -0.55rem;
    right: -0.55rem;
  }

  .toveedo-homepage__hero-inner,
  .toveedo-homepage__section-inner {
    max-width: calc(100vw - 2rem);
  }

  .toveedo-homepage__hero-inner {
    padding-bottom: 3rem;
  }

  .toveedo-homepage__hero-logo {
    height: 3.1rem;
  }

  .toveedo-homepage__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .toveedo-homepage__hero-button {
    width: 100%;
  }

  .toveedo-homepage__pricing,
  .toveedo-homepage__watch,
  .toveedo-homepage__options,
  .toveedo-homepage__testimonial-strip,
  .video-testimonials-grid--homepage,
  .toveedo-homepage__download,
  .toveedo-homepage__safety,
  .toveedo-homepage__cta-faq {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .toveedo-homepage__pricing-title {
    font-size: 1.2rem;
  }

  .toveedo-homepage__platform-logos {
    gap: 0.8rem 1rem;
  }

  .storefront-footer__inner {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .storefront-footer__nav {
    flex-direction: column;
    gap: 0.65rem;
  }
}

@media (max-width: 26em) {
  .faq-accordion__trigger {
    gap: 1rem;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    font-size: 1rem;
  }

  .faq-accordion__panel {
    padding-right: 0;
  }
}

@font-face {
  font-family: "mark-mediummedium";
  src:
    url("https://s3.amazonaws.com/unode1/assets/556/r44qUnbQPEiVESuVabgl_mark-medium_2-webfont.woff2")
      format("woff2"),
    url("https://s3.amazonaws.com/unode1/assets/556/QO3nHa8JS76avWNR8jXm_mark-medium_2-webfont.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.font-mark {
  font-weight: 700;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.delay-250 {
  animation-delay: 0.25s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-750 {
  animation-delay: 0.75s;
}

.fadeInLeft,
.fadeInUp,
.growIn,
.pulse {
  opacity: 0;
}

.fadeInLeft.go,
.fadeInUp.go,
.growIn.go,
.pulse.go {
  opacity: 1;
}

.fadeInLeft {
  transform: translateX(-3rem);
}

.fadeInLeft.go {
  animation-name: toveedoFadeInLeft;
}

.fadeInUp {
  transform: translateY(2.2rem);
}

.fadeInUp.go {
  animation-name: toveedoFadeInUp;
}

.growIn {
  transform: scale(0.88);
}

.growIn.go {
  animation-name: toveedoGrowIn;
}

.pulse.go {
  animation-name: toveedoPulse;
}

@keyframes toveedoFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-3rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toveedoFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(2.2rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toveedoGrowIn {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  65% {
    opacity: 1;
    transform: scale(1.04);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes toveedoPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

body.page--home {
  overflow-x: clip;
}

html.page--modal-open,
body.page--modal-open {
  overflow: hidden;
}

.page--home .app-shell {
  overflow-x: clip;
}

.toveedo-homepage {
  color: #fff;
}

.toveedo-homepage__motion-layer {
  --home-parallax-base-x: 0px;
  --home-parallax-base-y: 0px;
  --home-parallax-base-rotate: 0deg;
  --home-parallax-x: 0px;
  --home-parallax-y: 0px;
  --home-parallax-rotate: 0deg;
  --home-parallax-scale: 1;
  transform: translate3d(
      calc(var(--home-parallax-base-x) + var(--home-parallax-x)),
      calc(var(--home-parallax-base-y) + var(--home-parallax-y)),
      0
    )
    rotate(calc(var(--home-parallax-base-rotate) + var(--home-parallax-rotate)))
    scale(var(--home-parallax-scale));
  transform-origin: center;
  will-change: transform;
}

.toveedo-homepage__motion-layer > img {
  display: block;
  width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page--home .toveedo-homepage__motion-layer {
    transform: none !important;
  }
}

.toveedo-homepage__hero {
  position: relative;
  min-height: 90vh;
  padding: 1.75rem 0 11rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #5ed1ff 0%, #c9a8ff 100%);
}

.toveedo-homepage__hero-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.toveedo-homepage__hero-blob--pink {
  top: -8.5rem;
  left: -26rem;
  width: min(38rem, 52vw);
  height: min(18rem, 24vw);
  background: radial-gradient(
    circle at 32% 34%,
    rgba(255, 182, 226, 0.92) 0%,
    rgba(237, 99, 181, 0.96) 34%,
    rgba(143, 0, 76, 0.96) 72%,
    rgba(86, 0, 42, 1) 100%
  );
  border-radius: 42% 58% 44% 56% / 60% 42% 58% 40%;
  filter: saturate(1.08);
  --home-parallax-base-rotate: 18deg;
}

.toveedo-homepage__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(32rem, 46vw);
  height: min(32rem, 46vw);
  background: url("https://s3.amazonaws.com/unode1/assets/556/5HHqJWciR3uQ5NV2TE2O_pink-blob.png")
    no-repeat top left / contain;
  z-index: 0;
  pointer-events: none;
}

.toveedo-homepage__hero-blob--green {
  right: 0;
  bottom: 13.75rem;
  width: min(21.875rem, 28vw);
  height: min(21.875rem, 28vw);
  background: url("https://s3.amazonaws.com/unode1/assets/556/YPu0wF8AR7mRdtnWVnxZ_green-blob.png")
    no-repeat top right / contain;
}

.toveedo-homepage__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.toveedo-homepage__section-inner {
  position: relative;
  z-index: 1;
  max-width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.toveedo-homepage__hero-topbar {
  display: flex;
  justify-content: flex-end;
}

.toveedo-homepage__hero-nav {
  margin-top: 0;
}

.toveedo-homepage__login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 3.15rem;
  border-radius: 999px;
  background: #5abbf3;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.toveedo-homepage__login-link:hover {
  background: #48b2ef;
}

.toveedo-homepage__hero-logo-link {
  display: inline-flex;
  margin-top: 0.55rem;
}

.toveedo-homepage__hero-logo {
  width: min(15.625rem, 42vw);
  height: auto;
  max-width: none;
}

.toveedo-homepage__hero-grid {
  display: block;
  position: relative;
  min-height: clamp(33rem, 46vw, 42rem);
}

.toveedo-homepage__hero-copy {
  width: 60%;
  max-width: none;
}

.toveedo-homepage__hero-title {
  width: 100%;
  margin: 3.2rem 0 0;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.toveedo-homepage__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 5rem;
}

.toveedo-homepage__hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0 2.35rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.toveedo-homepage__hero-button--primary,
.toveedo-homepage__hero-button--light {
  background: #7853ff;
}

.toveedo-homepage__hero-button--primary:hover,
.toveedo-homepage__hero-button--light:hover {
  background: #6742ef;
}

.toveedo-homepage__hero-button--secondary {
  background: #fe90d6;
}

.toveedo-homepage__hero-button--secondary:hover {
  background: #ff76c9;
}

.toveedo-homepage__hero-button--tertiary {
  background: #5abbf3;
}

.toveedo-homepage__hero-button--tertiary:hover {
  background: #48b2ef;
}

.toveedo-homepage__gift-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.6rem;
  margin-left: 1.25rem;
  color: #fff;
  font-size: 1.05rem;
}

.toveedo-homepage__gift-icon {
  width: 1.7rem;
  height: 1.7rem;
}

.toveedo-homepage__hero-media {
  position: absolute;
  right: 0;
  bottom: -1.875rem;
  width: min(45vw, 45rem);
}

.toveedo-homepage__hero-phone {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  z-index: 10;
}

.toveedo-homepage__pricing {
  position: relative;
  padding: 3.125rem 0;
  background: #fff;
}

.toveedo-homepage__pricing .toveedo-homepage__section-inner,
.toveedo-homepage__watch .toveedo-homepage__section-inner {
  max-width: 1240px;
  padding: 0 1.25rem;
}

.toveedo-homepage__pricing-accent {
  position: absolute;
  top: -5.3125rem;
  left: 3.4375rem;
  width: 10rem;
  height: auto;
  display: block;
  max-width: none;
  z-index: 2;
}

.toveedo-homepage__pricing-title {
  max-width: 65%;
  margin: 0;
  color: #7853ff;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.toveedo-homepage__orange-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #ff5252 0%, #efb841 100%);
}

.toveedo-homepage__orange-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.toveedo-homepage__orange-blob--blue {
  top: 21.875rem;
  left: 0;
  width: 10.5rem;
  height: 11.125rem;
  background: url("https://s3.amazonaws.com/unode1/assets/556/pKrSVihRSQetYxQIe1Lj_blue-blob.png")
    no-repeat top left / contain;
}

.toveedo-homepage__orange-blob--purple {
  top: 19.5rem;
  right: 0;
  width: 14.375rem;
  height: 21.375rem;
  background: url("https://s3.amazonaws.com/unode1/assets/556/g5P1J2RkQ1eJGTq11Mwo_purple-blob.png")
    no-repeat top right / contain;
}

.toveedo-homepage__watch,
.toveedo-homepage__options,
.toveedo-homepage__testimonial-strip,
.video-testimonials-grid--homepage,
.toveedo-homepage__download,
.toveedo-homepage__safety {
  position: relative;
  z-index: 1;
  padding: 3.75rem 0;
  background: transparent;
}

@supports (content-visibility: auto) {
  .page--home .toveedo-homepage__watch,
  .page--home .toveedo-homepage__options,
  .page--home .toveedo-homepage__testimonial-strip,
  .page--home .video-testimonials-grid--homepage,
  .page--home .toveedo-homepage__download,
  .page--home .toveedo-homepage__safety,
  .page--home .toveedo-homepage__cta-faq {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

.toveedo-homepage__watch-grid,
.toveedo-homepage__options-grid,
.toveedo-homepage__download-grid,
.toveedo-homepage__safety-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.toveedo-homepage__options-grid {
  align-items: start;
}

.toveedo-homepage__watch-copy,
.toveedo-homepage__options-copy,
.toveedo-homepage__download-copy,
.toveedo-homepage__safety-copy {
  position: relative;
  z-index: 1;
}

.toveedo-homepage__watch-copy,
.toveedo-homepage__options-copy {
  padding-top: 6.25rem;
}

.toveedo-homepage__watch-grid {
  display: block;
  position: relative;
  min-height: 39rem;
}

.toveedo-homepage__watch-copy {
  width: 50%;
  padding-top: 6.25rem;
}

.toveedo-homepage__section-title {
  margin: 0 0 1.5625rem;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  line-height: 1;
}

.toveedo-homepage__section-title--white {
  color: #fff;
}

.toveedo-homepage__rich {
  color: #fff;
}

.toveedo-homepage__rich p {
  margin: 0 0 1.5625rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

.toveedo-homepage__rich p:last-child {
  margin-bottom: 0;
}

.toveedo-homepage__rich a {
  color: #fff;
  text-decoration: underline;
}

.toveedo-homepage__watch-art,
.toveedo-homepage__options-media,
.toveedo-homepage__download-media {
  position: relative;
  min-height: 20rem;
}

.toveedo-homepage__watch-art {
  position: absolute;
  top: 4.875rem;
  right: 0;
  width: 29%;
  min-height: 31.25rem;
}

.toveedo-homepage__watch-cube {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.875rem;
}

.toveedo-homepage__watch-silver-circles {
  position: absolute;
  top: 0;
  left: 14.875rem;
  width: 12.5rem;
}

.toveedo-homepage__watch-wave-phone {
  position: absolute;
  top: 2.8125rem;
  left: 0;
  width: 18.75rem;
}

.toveedo-homepage__watch-purple-ball {
  position: absolute;
  left: 16.875rem;
  bottom: 3.125rem;
  width: 8.125rem;
}

.toveedo-homepage__device-logos {
  display: block;
  margin-top: 3.125rem;
}

.toveedo-homepage__store-badge {
  display: inline-block;
  width: auto !important;
  max-width: none;
  height: 2.5rem;
  margin-right: 0.9375rem;
  vertical-align: top;
}

.toveedo-homepage__platform-logos {
  display: block;
  margin-top: 1.25rem;
}

.toveedo-homepage__platform-logo {
  width: auto;
  height: 1.5625rem;
  margin-right: 0.9375rem;
  display: inline-block;
}

.toveedo-homepage__watch .toveedo-homepage__rich p,
.toveedo-homepage__options .toveedo-homepage__rich p {
  font-size: 1.2rem;
  line-height: 1.25;
}

.toveedo-homepage__options .toveedo-homepage__section-inner {
  max-width: none;
  padding: 0;
}

.toveedo-homepage__options-grid {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.toveedo-homepage__options-media {
  padding-right: 3.125rem;
  min-height: 23.28125rem;
}

.toveedo-homepage__options-image-link {
  display: block;
}

.toveedo-homepage__options-covers {
  width: 100%;
  max-width: none;
  display: block;
}

.toveedo-homepage__options-yellow-ball {
  position: absolute;
  top: 9.875rem;
  right: 6.125rem;
  left: auto;
  width: 9.375rem;
  height: auto;
}

.toveedo-homepage__options-silver-ball {
  position: absolute;
  right: 8.625rem;
  bottom: 3.625rem;
  width: 3.75rem;
  height: auto;
}

.toveedo-homepage__options-copy {
  padding: 6.25rem 1.25rem 0;
}

.toveedo-homepage__options .toveedo-homepage__rich p a {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.9em;
}

.toveedo-homepage__testimonial-strip {
  color: #fff;
}

.toveedo-homepage__testimonial-strip .toveedo-homepage__section-inner,
.video-testimonials-grid--homepage .video-testimonials-grid__inner {
  max-width: none;
  width: 100%;
}

.toveedo-homepage__testimonial-swiper,
.video-testimonials-grid--homepage .video-testimonials-grid__cards--homepage {
  width: 100%;
  margin: 0;
  padding: 0 0.75rem 0.25rem;
  box-sizing: border-box;
  overflow: visible;
}

.toveedo-homepage__testimonial-swiper .swiper-wrapper,
.video-testimonials-grid--homepage
  .video-testimonials-grid__cards--homepage
  .swiper-wrapper {
  align-items: stretch;
}

.toveedo-homepage__testimonial-slide,
.video-testimonials-grid__slide {
  height: auto;
}

.toveedo-homepage__testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 27rem;
  padding: 1.875rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, #7c2bf0 0%, #a137f4 100%);
  box-shadow: 0 1rem 2rem rgba(74, 19, 131, 0.18);
}

.toveedo-homepage__testimonial-quote {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
}

.toveedo-homepage__testimonial-meta {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  text-align: right;
  font-size: 0.95rem;
}

.toveedo-homepage__testimonial-meta span:last-child {
  font-style: italic;
}

.video-testimonials-grid--homepage {
  color: #fff;
}

.video-testimonials-grid--homepage .video-testimonials-grid__inner {
  margin: 0;
}

.video-testimonials-grid--homepage .video-testimonials-grid__title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.video-testimonials-grid--homepage .video-testimonials-grid__subtitle {
  margin: 1rem 0 1.75rem;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}

.toveedo-homepage__hero-inner--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

.video-testimonials-grid--homepage .video-testimonials-grid__cards {
  display: block;
}

.video-testimonials-grid--homepage .video-testimonials-grid__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.95rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, #7c2bf0 0%, #a137f4 100%);
  box-shadow: 0 1rem 2rem rgba(74, 19, 131, 0.18);
}

.video-testimonials-grid--homepage .video-testimonials-grid__card-shell {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: #fff;
}

.video-testimonials-grid--homepage .video-testimonials-grid__media--poster {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 0.55rem;
}

.video-testimonials-grid--homepage .video-testimonials-grid__poster,
.video-testimonials-grid--homepage .video-testimonials-grid__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

.video-testimonials-grid--homepage
  .video-testimonials-grid__poster--placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.14);
}

.video-testimonials-grid--homepage .video-testimonials-grid__card-copy {
  padding-top: 0.95rem;
}

.video-testimonials-grid--homepage .video-testimonials-grid__card-title {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 700;
}

.video-testimonials-grid--homepage .video-testimonials-grid__card-subtitle {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.video-testimonials-grid--homepage .video-testimonials-grid__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.65rem;
  border-radius: 999px;
  background: #fff;
  color: #8a2be2;
  font-weight: 700;
}

.video-testimonials-grid--homepage .video-testimonials-grid__slide {
  height: auto;
}

.toveedo-homepage__download-grid {
  align-items: end;
}

.toveedo-homepage__download .toveedo-homepage__section-inner {
  max-width: none;
  padding: 0;
  padding-left: 1.25rem;
}

.toveedo-homepage__download-hand {
  width: min(38.5rem, 100%);
  max-width: none;
  margin-left: auto;
}

.toveedo-homepage__download-silver-ball {
  position: absolute;
  bottom: 0;
  left: 5rem;
  width: 4rem;
}

.toveedo-homepage__safety-inner {
  grid-template-columns: auto minmax(0, 50rem);
  justify-content: center;
  gap: 3.4375rem;
  align-items: center;
}

.toveedo-homepage__safety-badge {
  width: min(11.5rem, 18vw);
  justify-self: end;
}

.toveedo-homepage__safety-copy {
  width: min(50rem, 100%);
}

.toveedo-homepage__safety-lead,
.toveedo-homepage__safety-body p {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.toveedo-homepage__safety-body p:last-child {
  margin-bottom: 0;
}

.toveedo-homepage__cta-faq {
  padding: 3.75rem 0 0;
  background: linear-gradient(to bottom, #7853ff 0%, #ce74f8 100%);
  color: #fff;
}

.toveedo-homepage__cta-faq .toveedo-homepage__section-inner {
  max-width: 1240px;
  padding: 0 1.25rem;
}

.toveedo-homepage__cta-block {
  margin: 0 2.8125rem;
  padding-bottom: 4.375rem;
  border-bottom: 1px solid #542ede;
  text-align: center;
}

.toveedo-homepage__faq {
  max-width: none;
  margin-top: 3.125rem;
}

.toveedo-homepage__faq > .toveedo-homepage__section-title {
  text-align: center;
  text-transform: uppercase;
}

.toveedo-homepage__faq-items {
  margin: 1.875rem 2.8125rem 0;
  display: block;
}

.toveedo-homepage__faq-item {
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #542ede;
}

.toveedo-homepage__faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5625rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.toveedo-homepage__faq-trigger span:first-child {
  flex: 1 1 auto;
}

.toveedo-homepage__faq-trigger span:last-child {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  font-size: 1.15rem;
  line-height: 1;
}

.toveedo-homepage__faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.125rem;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows 240ms ease,
    opacity 200ms ease,
    padding-top 240ms ease,
    padding-bottom 240ms ease;
}

.toveedo-homepage__faq-item.is-open .toveedo-homepage__faq-panel {
  grid-template-rows: 1fr;
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
  opacity: 1;
}

.toveedo-homepage__faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.toveedo-homepage__faq-answer p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.toveedo-homepage__faq-answer p:last-child {
  margin-bottom: 0;
}

.toveedo-homepage__faq-answer a,
.toveedo-homepage__faq-link {
  color: #fff;
  text-decoration: underline;
}

.toveedo-homepage__faq-link {
  background: transparent;
}

.page--home .storefront-footer {
  margin-top: 0;
  background:
    url("https://s3.amazonaws.com/unode1/assets/556/rcqm3AfSRfmWnPZfR7oq_footer-bg.png")
      no-repeat top center,
    linear-gradient(to bottom, #ce74f8 0%, #7853ff 100%) !important;
  background-size: cover !important;
}

@media (max-width: 98.4375em) {
  .toveedo-homepage__hero-copy {
    width: 60%;
  }

  .toveedo-homepage__hero-title {
    width: 100%;
    font-size: 4.5rem;
  }

  .toveedo-homepage__hero-media {
    right: 0;
    width: min(46vw, 41rem);
    bottom: -1rem;
  }

  .toveedo-homepage__watch-copy,
  .toveedo-homepage__options-copy {
    padding-top: 3.125rem;
  }

  .toveedo-homepage__watch-art {
    width: 40%;
  }
}

@media (max-width: 73.75em) {
  .toveedo-homepage__hero-copy {
    width: 58%;
  }

  .toveedo-homepage__hero-title {
    width: 100%;
    font-size: 4rem;
    line-height: 1.2;
  }

  .toveedo-homepage__hero-actions {
    margin-top: 3.5rem;
  }

  .toveedo-homepage__hero-button {
    width: auto;
  }

  .toveedo-homepage__hero-media {
    right: 0;
    width: min(48vw, 36rem);
  }

  .toveedo-homepage__watch-art {
    width: 50%;
  }
}

@media (max-width: 60em) {
  .toveedo-homepage__hero {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .toveedo-homepage__hero-blob--green,
  .toveedo-homepage__orange-blob,
  .toveedo-homepage__watch-cube,
  .toveedo-homepage__watch-silver-circles,
  .toveedo-homepage__watch-purple-ball,
  .toveedo-homepage__options-yellow-ball,
  .toveedo-homepage__options-silver-ball,
  .toveedo-homepage__download-silver-ball {
    display: none;
  }

  .toveedo-homepage__hero-grid,
  .toveedo-homepage__watch-grid,
  .toveedo-homepage__options-grid,
  .toveedo-homepage__download-grid,
  .toveedo-homepage__safety-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .toveedo-homepage__hero-grid {
    min-height: 0;
  }

  .toveedo-homepage__section-inner,
  .toveedo-homepage__pricing .toveedo-homepage__section-inner,
  .toveedo-homepage__watch .toveedo-homepage__section-inner,
  .toveedo-homepage__options .toveedo-homepage__section-inner,
  .toveedo-homepage__download .toveedo-homepage__section-inner,
  .toveedo-homepage__cta-faq .toveedo-homepage__section-inner,
  .video-testimonials-grid--homepage .video-testimonials-grid__inner {
    max-width: min(40rem, calc(100vw - 2rem));
    padding: 0 1rem;
  }

  .toveedo-homepage__hero-copy {
    width: 100%;
  }

  .toveedo-homepage__hero-media,
  .toveedo-homepage__watch-art,
  .toveedo-homepage__options-media,
  .toveedo-homepage__download-media {
    position: static;
    min-height: 0;
    width: auto;
  }
  .toveedo-homepage__download-media {
    position: relative;
    right: -2.5rem;
  }

  .toveedo-homepage__hero-phone,
  .toveedo-homepage__options-covers,
  .toveedo-homepage__download-hand {
    width: min(100%, 23rem);
    margin: 0 auto;
  }

  .toveedo-homepage__watch-wave-phone {
    width: min(100%, 18rem);
    margin: 0 auto;
    position: static;
  }

  .toveedo-homepage__hero-phone {
    width: min(100%, 24rem);
    margin: 0 auto;
    margin-right: 0;
  }

  .toveedo-homepage__options-media {
    padding-right: 0;
    position: relative;
    left: -1.5rem;
  }

  .toveedo-homepage__watch-copy,
  .toveedo-homepage__options-copy,
  .toveedo-homepage__download-copy,
  .toveedo-homepage__safety-copy {
    width: 100%;
    padding: 0;
  }

  .toveedo-homepage__options-grid {
    width: auto;
    margin-left: 0;
    gap: 2.5rem;
  }

  .toveedo-homepage__watch-art,
  .toveedo-homepage__options-media,
  .toveedo-homepage__download-media {
    justify-self: center;
  }

  .toveedo-homepage__device-logos {
    margin-top: 2rem;
  }

  .toveedo-homepage__store-badge {
    display: block;
    height: 2.25rem;
    margin: 0 0 0.8rem;
  }

  .toveedo-homepage__platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.15rem;
    align-items: center;
  }

  .toveedo-homepage__platform-logo {
    margin-right: 0;
    height: 1.45rem;
  }

  .toveedo-homepage__testimonial-swiper,
  .video-testimonials-grid--homepage .video-testimonials-grid__cards--homepage {
    padding: 0;
  }

  .toveedo-homepage__testimonial-card,
  .video-testimonials-grid--homepage .video-testimonials-grid__card {
    min-height: 23rem;
  }

  .toveedo-homepage__safety-badge {
    width: min(8rem, 44vw);
    justify-self: center;
  }

  .toveedo-homepage__section-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
    line-height: 1;
  }

  .toveedo-homepage__rich p {
    font-size: 1.1rem;
  }

  .toveedo-homepage__faq-items,
  .toveedo-homepage__cta-block {
    margin-left: 0;
    margin-right: 0;
  }

  .toveedo-homepage__safety-copy {
    width: 100%;
  }
}

@media (max-width: 48.75em) {
  .toveedo-homepage__pricing-accent,
  .toveedo-homepage__hero-blob--green {
    display: none;
  }

  .toveedo-homepage__hero {
    padding-top: 1.75rem;
  }

  .toveedo-homepage__hero-logo {
    width: min(13.5rem, 55vw);
  }

  .toveedo-homepage__hero-inner--header {
    flex-direction: row-reverse;
    align-items: center;
    gap: 1.1rem;
  }
  .toveedo-homepage__hero-logo-link {
    margin-top: 0;
  }

  .toveedo-homepage__hero-topbar {
    width: 100%;
    justify-content: flex-end;
  }

  .toveedo-homepage__hero-actions {
    margin-top: 2rem;
    flex-direction: column;
    align-items: stretch;
  }

  .toveedo-homepage__hero-button {
    width: 100%;
  }

  .toveedo-homepage__hero-title {
    width: 100%;
    font-size: clamp(3rem, 8vw, 4rem);
    line-height: 1.08;
  }

  .toveedo-homepage__gift-link {
    margin-left: 0;
  }

  .toveedo-homepage__pricing-title {
    max-width: 100%;
    font-size: 1rem;
  }

  .video-testimonials-grid--homepage .video-testimonials-grid__title,
  .video-testimonials-grid--homepage .video-testimonials-grid__subtitle {
    text-align: left;
  }

  .video-testimonials-grid__modal {
    padding: 0.85rem;
  }

  .video-testimonials-grid__modal-dialog {
    width: min(100%, 26rem);
    padding: 0.7rem;
  }

  .video-testimonials-grid__modal-close {
    top: -0.55rem;
    right: -0.55rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.75rem;
  }
}

@media (max-width: 26em) {
  .toveedo-homepage__hero-title {
    font-size: 2.5rem;
  }

  .toveedo-homepage__login-link {
    padding: 0.65rem 1.2rem;
    font-size: 0.95rem;
  }

  .page--support.page-shell--custom-background .editorial-page,
  .page--gift-card.page-shell--custom-background .editorial-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page--support.page-shell--custom-background .editorial-page__body,
  .page--gift-card.page-shell--custom-background .editorial-page__body {
    padding: 1.25rem;
    border-radius: 1.35rem;
  }
}
