@property --scroll-in {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@property --scroll-past {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/urbanist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/urbanist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;

  --color-primary: #ff3145;
  --color-primary-glow: #f5b6ab;
  --color-bg: #0f0f0f;
  --color-surface-80: rgba(15, 15, 15, 0.8);
  --color-white: #ffffff;
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-25: rgba(255, 255, 255, 0.25);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-disabled: #999999;
  --color-black: #000000;
  --color-success: #28cd36;
  --color-input-border: #2b2b2b;

  --font-family-base: "Urbanist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-family-soft: "Quicksand", var(--font-family-base);

  --scrim-rise: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.62) 24%,
    rgba(0, 0, 0, 0.42) 46%,
    rgba(0, 0, 0, 0.22) 66%,
    rgba(0, 0, 0, 0.07) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  --content-max-width: 1440px;
  --content-padding-mobile: 20px;
  --content-padding-desktop: 70px;

  --header-height-mobile: 72px;
  --header-height-desktop: 93px;

  --breakpoint-desktop: 1024px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.215, 0.61, 0.355, 1);
  --duration-reveal: 1.15s;
  --duration-reveal-word: 1.5s;
  --reveal-word-stagger: 85ms;
  --duration-hover: 0.28s;
  --dot-grid-color: rgba(255, 255, 255, 0.09);
  --dot-grid-size: 32px;
  --dot-grid-dot: 1.5px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-anchor: none;
}

body {
  margin: 0;
  overflow-anchor: none;
  color: var(--color-white);
  background: var(--color-bg);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.section-container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-mobile);
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 var(--content-padding-desktop);
  }
}

.app-icon-sprite {
  display: none;
}

main {
  transition: opacity 0.22s ease;
}

main.is-page-transitioning {
  opacity: 0;
}

main > section[id] {
  scroll-margin-top: 88px;
}

@media (min-width: 1024px) {
  main > section[id] {
    scroll-margin-top: 108px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  text-align: center;
  color: var(--color-white);
  padding: 14.5px 24px;
  transition: transform var(--duration-hover) var(--ease-out-soft),
    background-color var(--duration-hover) ease, filter var(--duration-hover) ease;
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-primary);
  box-shadow: inset 0 0 15px 0 var(--color-primary-glow);
}

.btn--ghost {
  background: var(--color-surface-80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 16px 0 var(--color-white-25);
}

.btn--block {
  flex: 1 0 0;
  min-width: 0;
}

.btn--wide {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn--primary:hover {
    filter: brightness(1.07);
  }

  .btn--ghost:hover {
    background: rgba(38, 38, 38, 0.85);
  }
}

@media (min-width: 1024px) {
  .btn--lg {
    padding: 20px 16px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 1) 0%, rgba(15, 15, 15, 0) 100%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(15, 15, 15, 0.72);
  box-shadow: 0 1px 0 0 var(--color-white-10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: opacity;
  pointer-events: none;
}

.site-header--scrolled::before {
  opacity: 1;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-height-mobile);
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand {
  display: block;
  width: auto;
  height: 26px;
  aspect-ratio: 3025 / 500;
  object-fit: contain;
}

.site-header__nav {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-header__actions .btn {
  padding: 9px 14px;
  font-size: 13px;
}

.site-header__actions .btn--ghost {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 429px) {
  .site-header__brand {
    height: 22px;
  }

  .site-header__actions {
    gap: 6px;
  }

  .site-header__actions .btn {
    padding: 8px 11px;
    font-size: 12px;
  }
}

@media (max-width: 359px) {
  .site-header__inner {
    gap: 8px;
  }

  .site-header__brand {
    height: 18px;
  }

  .site-header__actions {
    gap: 4px;
  }

  .site-header__actions .btn {
    padding: 7px 9px;
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: var(--header-height-desktop);
  }

  .site-header__brand {
    height: 32px;
  }

  .site-header__nav {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0 16px;
  }

  .nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    padding: 4px;
    border-radius: 100px;
    background: var(--color-surface-80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 0 16px 0 var(--color-white-25);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-pill::-webkit-scrollbar {
    display: none;
  }

  .nav-pill__highlight {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    border-radius: 100px;
    background: var(--color-white-10);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
  }

  .nav-pill__tab {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 13px 18px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.25s ease;
  }

  .nav-pill__tab:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-pill__tab:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  .site-header__actions {
    flex-shrink: 0;
    margin-left: 0;
  }

  .site-header__actions .btn {
    padding: 12.5px 40px;
    font-size: 16px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-pill__tab {
    padding: 13px 15px;
  }

  .site-header__actions .btn {
    padding: 12.5px 24px;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: -11px;
  margin-right: -11px;
  padding: 0;
  border-radius: 12px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform 0.34s var(--ease-out-soft);
}

.site-header--menu-open .menu-toggle__bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.site-header--menu-open .menu-toggle__bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  background: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.site-header--menu-open .site-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s;
}

.site-menu__panel {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: calc(var(--header-height-mobile) + 24px);
  padding-bottom: 48px;
}

.site-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  translate: 0 18px;
}

.site-header--menu-open .site-menu__inner {
  animation: site-menu-rise 0.26s var(--ease-out-soft) forwards;
}

@keyframes site-menu-rise {
  to {
    translate: none;
  }
}

.site-menu__link,
.site-menu__sublink {
  display: inline-block;
  transform-origin: left center;
  transition: scale 0.3s var(--ease-out-soft), color 0.2s ease;
}

.site-menu__link {
  padding: 9px 0;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-white);
}

.site-menu__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: start;
  column-gap: 20px;
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-white-10);
}

.site-menu__sublink {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-70);
}


.site-menu__link:focus-visible,
.site-menu__sublink:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .site-menu__link:hover,
  .site-menu__sublink:hover {
    scale: 1.07;
  }

  .site-menu__sublink:hover {
    color: var(--color-white);
  }
}

.has-menu-open,
.has-menu-open body {
  overflow: hidden;
}

@media (max-height: 620px) {
  .site-menu__link {
    padding: 5px 0;
    font-size: clamp(22px, 6vw, 28px);
  }

  .site-menu__secondary {
    margin-top: 18px;
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-menu,
  .menu-toggle__bar {
    transition-duration: 0.01ms;
  }

  .site-menu__link,
  .site-menu__sublink {
    transition: none;
  }

  .site-menu__inner {
    translate: none;
  }

  .site-header--menu-open .site-menu__inner {
    animation: none;
  }

  .site-menu__link:hover,
  .site-menu__sublink:hover {
    scale: 1;
  }
}

@media (min-width: 1024px) {
  .menu-toggle,
  .site-menu {
    display: none;
  }
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-action {
  font-size: 14px;
  font-weight: 400;
  padding: 14.5px 24px;
}

.support-action__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.support-action--whatsapp .support-action__icon {
  color: #25d366;
}

.support-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  will-change: transform;
}

.support-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  background: #25d366;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform var(--duration-hover) var(--ease-out-soft),
    background-color var(--duration-hover) ease, opacity var(--duration-hover) ease;
}

.support-fab:hover {
  background: #1fb356;
  transform: translateY(-2px);
}

.support-fab--phone {
  background: var(--color-white);
  color: var(--color-bg);
}

.support-fab--phone:hover {
  background: #e6e6e6;
}

.support-fab--phone:focus-visible {
  outline-color: var(--color-primary);
}

.support-fab:active {
  transform: translateY(0) scale(0.97);
}

.support-fab:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.support-fab__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.has-menu-open .support-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 559px) {
  .support-dock {
    gap: 8px;
  }

  .support-fab {
    padding: 14px;
  }

  .support-fab__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-fab:hover {
    transform: none;
  }
}

.hero {
  position: relative;
  overflow-x: clip;
  background: var(--color-bg);
}

.hero__intro {
  position: relative;
  padding-top: 128px;
  padding-bottom: 24px;
}

.hero__pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 704px;
  height: 704px;
  transform: translate(-50%, -46%);
  opacity: calc(0.8 - var(--scroll-past, 0) * 0.8);
  pointer-events: none;
  z-index: 0;
}

.hero__pattern img {
  transform: rotate(calc(var(--scroll-past, 0) * 210deg)) scale(calc(1 + var(--scroll-past, 0) * 0.12));
}

.hero__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, var(--color-bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 0 20px;
  transform: translateY(calc(var(--scroll-past, 0) * 52px));
}

.hero__title {
  width: 100%;
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
  background: radial-gradient(ellipse at center, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-white-70);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__intro {
    padding-top: 190px;
    padding-bottom: 32px;
  }

  .hero__pattern {
    width: 1400px;
    height: 1400px;
    transform: translate(-50%, -54%);
  }

  .hero__content {
    gap: 64px;
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
  }

  .hero__title {
    font-size: 64px;
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 24px;
  }

  .hero__actions .btn {
    width: 200px;
  }
}

.about {
  position: relative;
  background: var(--color-bg);
  padding: 64px 0;
  overflow-x: clip;
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.about__title {
  font-size: 32px;
  font-weight: 600;
}

.about__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-70);
}

.about__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__col,
.about__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.about-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  border-radius: 30px;
  background: var(--color-bg);
  padding: 24px;
  box-shadow: inset 0 0 25px 0 var(--color-white-25);
}

.about-card__title {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.about-card__highlight {
  color: var(--color-primary);
}

.about-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-disabled);
}

.about-card--sectors {
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card--hours {
  height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.hours-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hours-icons img {
  width: 60px;
  height: 60px;
}

.about-card--mood {
  height: 230px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-card__body--row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-card--playlists {
  height: 234px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card--spaces {
  height: 154px;
}

.about-card--stats {
  background: var(--color-primary);
  box-shadow: inset 0 0 35px 0 var(--color-primary-glow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card--stats .about-card__desc {
  color: var(--color-white-70);
}

.about-card__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.about-card__stat-number {
  font-size: 48px;
  font-weight: 600;
  text-align: right;
}

.about-card__stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-70);
  line-height: normal;
}

.about-card__sound {
  position: absolute;
  width: 74px;
  height: 74px;
  opacity: 0.7;
  transform: translate(-50%, -50%);
}

.about-card--spaces {
  position: relative;
}

.about-card__sound--a {
  left: calc(50% + 125px);
  top: calc(50% - 24px);
}

.about-card__sound--b {
  left: calc(50% - 47px);
  top: calc(50% + 58px);
}

.sector-marquee,
.mood-marquee,
.playlist-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sector-marquee {
  margin: 24px -56px 0;
  transform: rotate(-5.1deg);
}

.sector-marquee__row {
  display: flex;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.sector-marquee__row--reverse {
  animation-direction: reverse;
}

.sector-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  width: 157px;
  padding: 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
}

.sector-chip img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sector-chip--green {
  background: #009316;
  box-shadow: inset 0 0 10px 0 #e6ffb3;
}

.sector-chip--purple {
  background: #7201db;
  box-shadow: inset 0 0 10px 0 #ffcdfb;
}

.sector-chip--orange {
  background: #e25311;
  box-shadow: inset 0 0 10px 0 #fff9b8;
}

.sector-chip--red {
  background: #c43131;
  box-shadow: inset 0 0 10px 0 #ff88dd;
}

.sector-chip--blue {
  background: #3e62d9;
  box-shadow: inset 0 0 10px 0 #2cffea;
}

.sector-chip--pink {
  background: #df0089;
  box-shadow: inset 0 0 10px 0 #ffdada;
}

.mood-marquee {
  margin-top: auto;
  margin-left: -80px;
  margin-right: -80px;
}

.mood-marquee__row {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.mood-chip {
  position: relative;
  flex-shrink: 0;
  width: 115px;
  height: 115px;
  border-radius: 24px;
  overflow: hidden;
}

.mood-chip img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mood-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.mood-chip__label {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mood-chip__play {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 100px;
  background: var(--color-white);
}

.playlist-marquee {
  flex: 1;
  justify-content: center;
  margin: 0 -70px;
  transform: rotate(-11deg);
}

.playlist-marquee__row {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.playlist-marquee__row--reverse {
  animation-direction: reverse;
}

.playlist-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  width: 179px;
  padding: 10px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
}

.playlist-chip__avatar {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: #d9d9d9;
}

.playlist-chip__label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-chip__arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.playlist-chip--green {
  background: #009316;
  box-shadow: inset 0 0 20px 0 #e6ffb3;
}

.playlist-chip--purple {
  background: #7201db;
  box-shadow: inset 0 0 20px 0 #ffcdfb;
}

.playlist-chip--orange {
  background: #e25311;
  box-shadow: inset 0 0 20px 0 #fff9b8;
}

.playlist-chip--red {
  background: #c43131;
  box-shadow: inset 0 0 20px 0 #ff88dd;
}

.playlist-chip--blue {
  background: #3e62d9;
  box-shadow: inset 0 0 20px 0 #2cffea;
}

.playlist-chip--pink {
  background: #df0089;
  box-shadow: inset 0 0 20px 0 #ffdada;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .about {
    padding: 128px 0;
  }

  .about__inner {
    gap: 64px;
  }

  .about__head {
    gap: 16px;
  }

  .about__title {
    font-size: 48px;
  }

  .about__subtitle {
    font-size: 20px;
  }

  .about__grid {
    flex-direction: row;
    align-items: stretch;
    height: 630px;
  }

  .about-card {
    border-radius: 40px;
    padding: 32px;
    box-shadow: inset 0 0 50px 0 var(--color-white-25);
  }

  .about-card__title {
    font-size: 32px;
  }

  .about-card__desc {
    font-size: 18px;
  }

  .about__col {
    width: auto;
  }

  .about__col--primary {
    flex: 174 174 0%;
  }

  .about__col--secondary {
    flex: 100 100 0%;
    justify-content: center;
  }

  .about__row {
    flex-direction: row;
    height: 308px;
  }

  .about-card--sectors,
  .about-card--hours {
    height: 100%;
    flex: 1;
  }

  .about-card--mood {
    flex: 1;
    height: auto;
  }

  .about-card--playlists {
    flex: 1;
    height: auto;
  }

  .about-card--spaces {
    height: 234px;
    flex-shrink: 0;
  }

  .about-card--stats {
    flex: 84 84 0%;
    height: 100%;
    justify-content: space-between;
  }

  .about-card--stats .about-card__title {
    font-size: 32px;
  }

  .about-card__stat {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 0;
  }

  .about-card__stat-number {
    font-size: 64px;
  }

  .about-card__stat-label {
    font-size: 24px;
  }

  .sector-marquee {
    margin: 32px -27px 0;
    transform: rotate(-11.12deg);
  }

  .sector-chip {
    width: 124.575px;
    padding: 7.813px;
    font-size: 9.12px;
    box-shadow: inset 0 0 5.209px 0 var(--color-white-25);
  }

  .sector-chip img {
    width: 16px;
    height: 16px;
  }

  .mood-marquee {
    margin-left: -64px;
    margin-right: -64px;
  }

  .playlist-marquee {
    margin: 0 -40px;
  }

  .about-card__sound--a {
    left: calc(50% + 117.5px);
    top: calc(50% + 11px);
  }

  .about-card__sound--b {
    left: calc(50% - 101.5px);
    top: calc(50% + 78px);
  }
}
.hours-icons img {
  animation: about-icon-rise 620ms var(--ease-out-expo) backwards;
}

.hours-icons img:nth-child(1) {
  animation-delay: 260ms;
}

.hours-icons img:nth-child(2) {
  animation-delay: 400ms;
}

.hours-icons img:nth-child(3) {
  animation-delay: 540ms;
}

.about__grid.is-reveal-hidden .hours-icons img {
  animation: none;
  opacity: 0;
}

@keyframes about-icon-rise {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.68);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hours-icons img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.sectors {
  position: relative;
  background: var(--color-bg);
  overflow: clip;
  padding-top: 64px;
}

.sectors__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
  text-align: center;
}

.sectors__title {
  font-size: 32px;
  font-weight: 600;
}

.sectors__subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-70);
}

.sectors__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 56px;
  padding-bottom: 88px;
  text-align: center;
}

.sectors__more-text {
  max-width: 720px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-disabled);
}

@media (min-width: 1024px) {
  .sectors {
    padding-top: 100px;
  }

  .sectors__head {
    gap: 16px;
    padding-bottom: 56px;
  }

  .sectors__title {
    font-size: 40px;
  }

  .sectors__subtitle {
    font-size: 18px;
  }

  .sectors__more {
    padding-top: 88px;
    padding-bottom: 124px;
  }

  .sectors__more-text {
    font-size: 16px;
  }
}

.sector-deck {
  --deal-step: 78ms;
  --deal-duration: 480ms;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-mobile);
  list-style: none;
}

.sector-tile {
  --tile-radius: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  border-radius: var(--tile-radius);
  box-shadow: inset 0 0 0 1px var(--color-white-10);
  isolation: isolate;
  animation: sector-deal var(--deal-duration) linear backwards;
  animation-delay: calc(var(--tile-index, 0) * var(--deal-step));
}

.sector-tile__cover {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.sector-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: var(--scrim-rise);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 0%;
  pointer-events: none;
  transition: background-size 820ms var(--ease-standard);
}

.sector-tile[data-preview-state="playing"]::after {
  background-size: 100% 150%;
}

.sector-tile__name {
  width: 100%;
  padding: 36px 14px 14px;
  border-radius: 0 0 var(--tile-radius) var(--tile-radius);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 16%,
    rgba(0, 0, 0, 0.6) 56%,
    rgba(0, 0, 0, 0) 100%
  );
  font-family: var(--font-family-soft);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.sector-tile__preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: none;
  color: var(--color-white);
  cursor: pointer;
}

.sector-tile__preview:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -4px;
}

.sector-tile__preview-icon {
  width: 44px;
  height: 44px;
  opacity: 0;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(0, 0, 0, 0.65));
  transition: opacity var(--duration-hover) var(--ease-out-soft),
    transform var(--duration-hover) var(--ease-out-soft);
}

.sector-tile__preview:active .sector-tile__preview-icon {
  transform: scale(0.9);
}

.sector-tile__preview-icon--pause {
  display: none;
}

.sector-tile[data-preview-state="playing"] .sector-tile__preview-icon--play {
  display: none;
}

.sector-tile[data-preview-state="playing"] .sector-tile__preview-icon--pause {
  display: block;
  opacity: 1;
}

.sector-tile__preview:focus-visible .sector-tile__preview-icon {
  opacity: 1;
}

.sector-deck__dust {
  position: absolute;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .sector-tile::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -3;
    border-radius: calc(var(--tile-radius) + 20px);
    background: radial-gradient(
      ellipse at center,
      rgba(255, 246, 226, 0.62),
      rgba(255, 238, 208, 0.24) 52%,
      rgba(255, 238, 208, 0) 76%
    );
    filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out-soft);
  }

  .sector-tile:hover::before {
    opacity: 1;
  }

  .sector-tile:hover .sector-tile__preview-icon--play {
    opacity: 1;
  }
}

.sector-deck.is-reveal-hidden .sector-tile {
  animation: none;
}

.sector-deck.is-reveal-hidden .sector-tile {
  opacity: 0;
}

.sector-tile:nth-child(1) {
  --tile-index: 0;
  --tile-tilt: -7deg;
}

.sector-tile:nth-child(2) {
  --tile-index: 1;
  --tile-tilt: 5deg;
}

.sector-tile:nth-child(3) {
  --tile-index: 2;
  --tile-tilt: -4deg;
}

.sector-tile:nth-child(4) {
  --tile-index: 3;
  --tile-tilt: 8deg;
}

.sector-tile:nth-child(5) {
  --tile-index: 4;
  --tile-tilt: -6deg;
}

.sector-tile:nth-child(6) {
  --tile-index: 5;
  --tile-tilt: 6deg;
}

.sector-tile:nth-child(7) {
  --tile-index: 6;
  --tile-tilt: -8deg;
}

.sector-tile:nth-child(8) {
  --tile-index: 7;
  --tile-tilt: 4deg;
}

.sector-tile:nth-child(9) {
  --tile-index: 8;
  --tile-tilt: -5deg;
}

.sector-tile:nth-child(10) {
  --tile-index: 9;
  --tile-tilt: 7deg;
}

@keyframes sector-deal {
  0% {
    opacity: 0;
    transform: translate3d(0, -62%, 0) scale(1.14) rotate(var(--tile-tilt, -6deg));
    animation-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }
  22% {
    opacity: 1;
  }
  60% {
    transform: translate3d(0, 0, 0) scale(1.05) rotate(0deg);
    animation-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
  }
  76% {
    transform: translate3d(0, 1.4%, 0) scale(0.975);
    animation-timing-function: var(--ease-out-soft);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .sector-deck {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 0 var(--content-padding-desktop);
  }

  .sector-tile {
    --tile-radius: 26px;
    aspect-ratio: 4 / 5;
  }

  .sector-tile__name {
    padding: 46px 18px 18px;
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sector-tile {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .sector-tile__preview-icon {
    transition: none;
  }

  .sector-tile::after {
    transition: none;
  }
}

.comparison {
  position: relative;
  background: var(--color-bg);
  padding: 64px 0;
}

.comparison__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.comparison__head {
  text-align: center;
}

.comparison__title {
  font-size: 32px;
  font-weight: 600;
}

.comparison__table-wrap {
  --comparison-divider-top: 44px;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 30px;
  box-shadow: inset 0 0 25px 0 var(--color-white-25);
}

.comparison__table-wrap::after {
  content: "";
  position: absolute;
  left: 45%;
  top: var(--comparison-divider-top);
  bottom: 0;
  z-index: 1;
  width: 2px;
  background: var(--color-primary);
  transform-origin: 50% 0;
  transform: scaleY(0);
  pointer-events: none;
  animation: comparison-divider 900ms var(--ease-out-expo) 220ms forwards;
}

.comparison__table-wrap.is-reveal-hidden::after {
  animation: none;
}

.comparison__table tr[data-reveal].is-reveal-hidden {
  opacity: 1;
  transform: none;
}

.comparison__panel {
  display: block;
  box-sizing: border-box;
  height: 100%;
  padding: 20px 24px;
  transition: transform 820ms var(--ease-out-expo) var(--reveal-delay, 0ms);
}

.comparison__table td:first-child .comparison__panel {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.05));
}

.comparison__table td:last-child .comparison__panel {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.05));
}

.comparison__cell {
  display: inline-block;
}

.comparison__table td:last-child .comparison__cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.comparison__tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.06em;
  color: var(--color-success);
  transform: scale(1);
  transition: transform 460ms var(--ease-out-expo) calc(var(--reveal-delay, 0ms) + 460ms),
    opacity 460ms var(--ease-out-expo) calc(var(--reveal-delay, 0ms) + 460ms);
}

.comparison__table tr.is-reveal-hidden td:first-child .comparison__panel {
  transform: translateX(-100%);
}

.comparison__table tr.is-reveal-hidden td:last-child .comparison__panel {
  transform: translateX(100%);
}

.comparison__table tr.is-reveal-hidden .comparison__tick {
  opacity: 0;
  transform: scale(0.2);
  transition: none;
}

@keyframes comparison-divider {
  to {
    transform: scaleY(1);
  }
}

.comparison__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--color-bg);
}

.comparison__table th,
.comparison__table td {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-white-10);
}

.comparison__table th {
  padding: 20px 24px;
  line-height: 24px;
}

.comparison__table td {
  height: 1px;
  padding: 0;
  overflow: hidden;
}

.comparison__table thead th {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
}

.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

@media (hover: hover) and (pointer: fine) {
  .comparison__table tbody tr {
    transition: background-color 0.25s ease;
  }

  .comparison__table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
  }
}

.comparison__table td:first-child {
  color: var(--color-disabled);
  width: 45%;
}

.comparison__table td:last-child,
.comparison__table th:last-child {
  color: var(--color-white);
}

.comparison__table th:last-child {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .comparison__table-wrap {
    overflow-x: visible;
    border-radius: 20px;
  }

  .comparison__table {
    min-width: 0;
  }

  .comparison__table th,
  .comparison__table td {
    font-size: 13px;
  }

  .comparison__table thead th {
    font-size: 13px;
  }

  .comparison__table th,
  .comparison__panel {
    padding: 12px 10px;
  }

  .comparison__table th {
    line-height: 20px;
  }

  .comparison__table td:last-child .comparison__cell {
    gap: 8px;
  }

  .comparison__tick {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 768px) {
  .comparison__table-wrap {
    --comparison-divider-top: 64px;
  }
}

@media (min-width: 1024px) {
  .comparison {
    padding: 100px 0;
  }

  .comparison__title {
    font-size: 40px;
  }

  .comparison__table-wrap {
    --comparison-divider-top: 72px;
  }

  .comparison__table th,
  .comparison__table td {
    font-size: 16px;
  }

  .comparison__table th {
    padding: 24px 32px;
  }

  .comparison__panel {
    padding: 24px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison__table-wrap::after {
    animation: none;
    transform: scaleY(1);
  }

  .comparison__panel,
  .comparison__tick {
    transition: none;
  }
}

.price {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  padding: 64px 0;
  --price-accent: #00c21d;
}

.price__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.price__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.price__title {
  font-size: 32px;
  font-weight: 600;
}

.price__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-70);
}

.price__plans {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price__periods {
  display: flex;
  justify-content: center;
}

.price__periods:empty {
  display: none;
}

.price__switch {
  display: flex;
  gap: 4px;
  width: 100%;
  max-width: 320px;
  height: 52px;
  padding: 4px;
  border: 1px solid var(--color-white-10);
  border-radius: 100px;
}

.price__switch-option {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: var(--color-white-70);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    background-color 240ms ease,
    color 240ms ease;
}

.price__switch-option--active {
  background: var(--price-accent);
  color: var(--color-black);
}

.price__switch-option:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .price__switch-option:not(.price__switch-option--active):hover {
    background: var(--color-white-10);
  }
}

.price__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.price__dust {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.price-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 round 30px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 30px;
  padding: 24px;
  background: var(--color-bg);
  box-shadow: inset 0 0 40px 0 var(--color-white-25);
  --surface-lift: -8px;
  --surface-glow-size: 50px;
  --surface-glow-alpha: 0.1;
}

.price-card--premium {
  background: #03200a;
  box-shadow: inset 0 0 44px 0 rgba(64, 220, 90, 0.5);
}

.price-card--premium .price-card__head {
  padding-right: 104px;
}

.price-card__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: 118px;
}

.price-card__head {
  display: flex;
  flex-direction: column;
}

.price-card__plan {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-disabled);
}

.price-card__name {
  font-size: 24px;
  font-weight: 600;
}

.price-card__price-group {
  display: flex;
  flex-direction: column;
}

.price-card__price {
  font-size: 32px;
  font-weight: 600;
}

.price-card__amount,
.price-card__period {
  white-space: nowrap;
}

.price-card__price--old {
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.5;
}

.price-card__price--old .price-card__period {
  font-size: 16px;
}

.price-card__period {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-disabled);
}

.price-card__price--note {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
  color: var(--color-white-70);
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
}

.price-card__feature img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.price-card__feature--off {
  color: var(--color-disabled);
}

.price-card__badge {
  position: absolute;
  top: -22px;
  right: -25px;
  width: 155px;
  height: 155px;
  pointer-events: none;
}

.price-card__badge span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 200px;
  padding: 8px 0;
  background: var(--price-accent);
  color: var(--color-white);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (min-width: 1024px) {
  .price {
    padding: 128px 0;
  }

  .price__inner {
    gap: 64px;
  }

  .price__title {
    font-size: 52px;
  }

  .price__subtitle {
    font-size: 24px;
    max-width: 900px;
  }

  .price__plans {
    gap: 24px;
  }

  .price__switch {
    height: 56px;
  }

  .price__switch-option {
    font-size: 16px;
  }

  .price__grid {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }

  .price-card {
    flex: 1 0 0;
    min-width: 0;
    max-width: 430px;
    clip-path: inset(0 round 40px);
    gap: 32px;
    border-radius: 40px;
    padding: 32px;
    container-type: inline-size;
  }

  .price-card__top {
    flex: 1 0 auto;
    gap: 16px;
    min-height: 178px;
  }

  .price-card--premium .price-card__head {
    padding-right: 128px;
  }

  .price-card__plan {
    font-size: 24px;
    font-weight: 500;
  }

  .price-card__name {
    font-size: 32px;
  }

  .price-card__price {
    font-size: min(48px, 13.2cqi);
  }

  .price-card__price--old {
    font-size: min(24px, 6.6cqi);
  }

  .price-card__price--old .price-card__period {
    font-size: 1em;
  }

  .price-card__period {
    font-size: calc(1em * 20 / 48);
  }

  .price-card__price--note {
    font-size: 18px;
    max-width: 340px;
  }

  .price-card__feature {
    font-size: 16px;
  }

  .price-card__feature img {
    width: 24px;
    height: 24px;
  }

  .price-card__badge {
    top: -27px;
    right: -30px;
    width: 186px;
    height: 186px;
  }

  .price-card__badge span {
    width: 240px;
    padding: 10px 0;
    font-size: 16px;
  }
}

.brands {
  position: relative;
  background: var(--color-bg);
  padding: 64px 0 32px;
  overflow: hidden;
  contain: layout paint;
}

.brands__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 44px;
}

.brands__title {
  font-size: 32px;
  font-weight: 600;
}

.brands__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-70);
}

.brand-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 1;
  pointer-events: none;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.brand-marquee__row {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  animation-duration: 56s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.brand-marquee__row[data-brand-track="ready"] {
  animation-name: brand-marquee-scroll;
}

.brand-plaque {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 104px;
  padding: 16px 24px;
  border-radius: 20px;
  background: var(--color-white);
}

.brand-plaque__logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes brand-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .brands {
    padding: 128px 0 56px;
  }

  .brands__head {
    margin-bottom: 88px;
  }

  .brands__title {
    font-size: 52px;
  }

  .brands__subtitle {
    font-size: 24px;
  }

  .brand-marquee::before,
  .brand-marquee::after {
    width: 96px;
  }

  .brand-marquee__row {
    gap: 20px;
    animation-duration: 73s;
  }

  .brand-plaque {
    width: 264px;
    height: 136px;
    padding: 20px 32px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee__row[data-brand-track="ready"] {
    animation-name: none;
  }
}

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  width: 100%;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.store-badge__img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-badge:active {
  transform: translateY(0) scale(0.98);
}

.store-badge:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .store-badge-row {
    gap: 12px;
  }

  .store-badge {
    width: calc(50% - 6px);
    max-width: 176px;
  }

  .store-badge__img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .store-badge-row {
    gap: 28px 36px;
  }

  .store-badge__img {
    height: 64px;
  }
}

.download {
  position: relative;
  overflow: hidden;
  contain: layout paint;
  background: var(--color-bg);
}

.download__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.download__light {
  position: absolute;
  left: calc(50% - 300px);
  bottom: -38px;
  width: 600px;
  height: 400px;
  background: radial-gradient(
    closest-side,
    rgba(255, 49, 69, 1) 0%,
    rgba(255, 49, 69, 0.85) 33%,
    rgba(255, 49, 69, 0.6) 50%,
    rgba(255, 49, 69, 0.36) 67%,
    rgba(255, 49, 69, 0.14) 83%,
    rgba(255, 49, 69, 0) 100%
  );
  opacity: calc(0.2 + var(--scroll-in, 1) * 0.3);
  z-index: 0;
  pointer-events: none;
  will-change: opacity;
}

.download__media {
  --download-media-width: 454.585px;
  --download-media-height: 423.8px;
  --download-media-scale: 1;
  position: relative;
  left: 50%;
  width: var(--download-media-width);
  height: var(--download-media-height);
  margin-bottom: calc(var(--download-media-height) * (var(--download-media-scale) - 1));
  transform: translateX(-50%) scale(var(--download-media-scale));
  transform-origin: top center;
  z-index: 1;
  pointer-events: none;
}

@supports (width: calc(1px * tan(atan2(2px, 1px)))) {
  .download__media {
    --download-media-fit: calc(100vw - 2 * var(--content-padding-mobile));
    --download-media-scale: min(1, tan(atan2(var(--download-media-fit), var(--download-media-width))));
  }
}

.download__web {
  position: absolute;
  left: 0;
  top: 155px;
  transform: translateY(calc((1 - var(--scroll-in, 1)) * 46px));
  will-change: transform;
}

.device-laptop.download__web-frame {
  --app-demo-scale: 0.326;
  --laptop-bezel: 4px;
  --laptop-lid-radius: 7px;
  --laptop-lid-color: #3f3f3f;
  --laptop-lid-top: #4a4a4a;
  --laptop-screen-radius: 4px;
  --laptop-shadow: -11px 28px 44px 0 rgba(0, 0, 0, 0.9);
}

.download__phone {
  position: absolute;
  left: 308.915px;
  top: 76.034px;
  width: 145.67px;
  height: 305.932px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(calc((1 - var(--scroll-in, 1)) * 88px));
  transform-origin: center center;
  will-change: transform;
}

.device-frame.download__phone-frame {
  --app-demo-scale: 0.353;
  --device-frame-border: 4px;
  --device-frame-radius: 20px;
  --device-frame-notch-width: 40.49px;
  --device-frame-notch-height: 14px;
  --device-frame-notch-top: 5.04px;
}

.download__gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.download__content {
  position: relative;
  order: -1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 20px 16px;
}

.download__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.download__title {
  font-size: 32px;
  font-weight: 600;
}

.download__subtitle {
  max-width: 420px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-70);
}

.download__platforms-wrap {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--color-white-10);
  background: var(--color-bg);
  padding: 8px 0 36px;
}

.download__platforms {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .download__inner {
    display: block;
    min-height: 634px;
  }

  .download__light {
    left: 456px;
    top: 112px;
    bottom: auto;
    width: 600px;
    height: 400px;
  }

  .download__media {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    margin: 0;
    transform: none;
  }

  .download__web {
    left: min(616px, 48%);
    top: 258.51px;
  }

  .device-laptop.download__web-frame {
    --app-demo-scale: 0.575;
    --laptop-bezel: 8px;
    --laptop-lid-radius: 27.432px;
    --laptop-screen-radius: 12px;
  }

  .download__phone {
    left: min(1091px, 85%);
    top: 88px;
    width: auto;
    height: auto;
  }

  .device-frame.download__phone-frame {
    --app-demo-scale: 0.62;
    --device-frame-border: 8px;
    --device-frame-radius: 34.996px;
    --device-frame-notch-width: 62.097px;
    --device-frame-notch-height: 20.882px;
    --device-frame-notch-top: 21.32px;
  }

  .download__gradient {
    height: 100px;
  }

  .download__content {
    order: 0;
    padding: 128px 70px;
  }

  .download__head {
    gap: 16px;
    width: 500px;
  }

  .download__label {
    font-size: 15px;
  }

  .download__title {
    font-size: 52px;
  }

  .download__subtitle {
    max-width: 460px;
    font-size: 24px;
  }

  .download__platforms-wrap {
    padding: 24px 0 64px;
  }
}
.site-footer {
  background: var(--color-black);
  overflow: hidden;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.site-footer__menus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.site-footer__menu-list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.site-footer__menu--primary .site-footer__menu-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  max-width: 340px;
  text-align: left;
}

.site-footer__menu--social .site-footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  width: auto;
}

.site-footer__menu-title {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.site-footer__menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-disabled);
  transition: color 0.2s ease, transform 0.25s ease;
}

.site-footer__menu a:hover {
  color: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__menu a:hover {
    transform: translateX(3px);
  }
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 363px;
  text-align: center;
}

.site-footer__contact-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}

.site-footer__contact-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white-70);
}

.site-footer__contact-mail {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.2s ease;
}

.site-footer__contact-mail:hover {
  color: var(--color-white-70);
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn.site-footer__action {
  padding: 14.5px 32px;
  font-size: 14px;
  font-weight: 400;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4px 0 20px;
}

.site-footer__logo img {
  display: block;
  width: 140px;
  height: auto;
  aspect-ratio: 3025 / 500;
  object-fit: contain;
}

.site-footer__payment {
  background: var(--color-bg);
  border-top: 1px solid var(--color-white-10);
}

.site-footer__payment-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-footer__payment-title {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white-70);
}

.site-footer__payment-band {
  display: block;
  width: 456px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 456 / 32;
  opacity: 0.85;
}

.site-footer__info {
  background: var(--color-bg);
  border-top: 1px solid var(--color-white-10);
}

.site-footer__info-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white-70);
}

.site-footer__company {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin: 0;
  font-style: normal;
  text-align: center;
  line-height: 1.6;
  color: var(--color-white-55, rgba(254, 254, 254, 0.55));
}

.site-footer__company-name {
  color: var(--color-white-70);
  font-weight: 600;
}

.site-footer__company a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.site-footer__company-phone {
  white-space: nowrap;
}

.site-footer__company a:hover {
  color: var(--color-white);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.site-footer__legal > * {
  white-space: nowrap;
}

.site-footer__legal a {
  color: var(--color-white-70);
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .site-footer__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .site-footer__menus {
    flex-direction: row;
    align-items: flex-start;
    width: auto;
    gap: 48px;
  }

  .site-footer__menu {
    width: auto;
    align-items: flex-start;
  }

  .site-footer__menu-title {
    text-align: left;
    font-size: 16px;
  }

  .site-footer__menu a {
    font-size: 16px;
  }

  .site-footer__menu--primary .site-footer__menu-list {
    max-width: none;
    column-gap: 40px;
  }

  .site-footer__menu--social .site-footer__menu-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
  }

  .site-footer__contact {
    width: 363px;
    flex-shrink: 0;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__actions {
    justify-content: flex-start;
  }

  .site-footer__contact-title {
    font-size: 24px;
  }

  .site-footer__info-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
  }

  .site-footer__company {
    width: auto;
    flex: 0 1 auto;
    text-align: left;
  }

  .site-footer__legal {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 10px 20px;
  }

  .site-footer__payment-inner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .site-footer__logo {
    padding: 8px 0 24px;
  }

  .site-footer__logo img {
    width: 200px;
  }
}

.surface-card {
  --surface-lift: -6px;
  --surface-glow-size: 45px;
  --surface-glow-alpha: 0.12;
  position: relative;
  transition: transform 0.4s var(--ease-out-soft);
}

.surface-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--color-white-10),
    inset 0 0 var(--surface-glow-size) 0 rgba(255, 255, 255, var(--surface-glow-alpha));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .surface-card:hover {
    transform: translateY(var(--surface-lift));
  }

  .surface-card:hover::after {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .surface-card:hover {
    transform: none;
  }
}

.device-frame {
  --device-frame-border: 8px;
  --device-frame-radius: 44px;
  --device-frame-notch-width: 84px;
  --device-frame-notch-height: 26px;
  --device-frame-notch-top: 5px;
  position: relative;
  width: fit-content;
  height: fit-content;
  border: var(--device-frame-border) solid #3f3f3f;
  border-radius: var(--device-frame-radius);
  overflow: hidden;
  background: #000;
}

.device-frame__screen {
  position: relative;
  width: fit-content;
  height: fit-content;
  overflow: hidden;
}

.device-frame__notch {
  position: absolute;
  left: 50%;
  top: var(--device-frame-notch-top);
  z-index: 3;
  width: var(--device-frame-notch-width);
  height: var(--device-frame-notch-height);
  border-radius: 100px;
  background: #3f3f3f;
  transform: translateX(-50%);
}

.device-laptop {
  --laptop-bezel: 10px;
  --laptop-chin: 22px;
  --laptop-lid-radius: 18px;
  --laptop-lid-color: #2b2b2b;
  --laptop-lid-top: #3c3c3c;
  --laptop-screen-radius: 6px;
  --laptop-shadow: 0 34px 64px -24px rgba(0, 0, 0, 0.85);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.device-laptop__lid {
  position: relative;
  padding: var(--laptop-bezel) var(--laptop-bezel) var(--laptop-chin);
  border-radius: var(--laptop-lid-radius);
  background: linear-gradient(180deg, var(--laptop-lid-top), var(--laptop-lid-color));
  box-shadow: var(--laptop-shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device-laptop__lid::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(var(--laptop-chin) / 2 - 1.5px);
  width: 56px;
  height: 3px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}

.device-laptop__screen {
  position: relative;
  width: fit-content;
  height: fit-content;
  border-radius: var(--laptop-screen-radius);
  overflow: hidden;
  background: var(--color-black);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.9);
}

.device-laptop--lid-only .device-laptop__lid {
  padding: var(--laptop-bezel);
}

.device-laptop--lid-only .device-laptop__lid::after {
  display: none;
}

.app-demo {
  --app-demo-canvas-w: 1280;
  --app-demo-canvas-h: 800;
  --app-demo-p: 0.833;
  --pane-drift: 0px;
  --demo-cols: 6;
  --demo-cols-sector: 5;
  --demo-tile-ratio: 5 / 4;
  --demo-text-2: #999999;
  --demo-glass: rgba(15, 15, 15, 0.92);
  --demo-glass-glow: rgba(255, 255, 255, 0.25);
  position: relative;
  width: calc(var(--app-demo-canvas-w) * 1px * var(--app-demo-scale, 0.5));
  height: calc(var(--app-demo-canvas-h) * 1px * var(--app-demo-scale, 0.5));
  overflow: hidden;
  contain: layout paint style;
  font-family: var(--font-family-base);
  pointer-events: none;
}

.app-demo--desktop.app-demo--live {
  --app-demo-canvas-w: 1440;
}

.app-demo--phone {
  --app-demo-canvas-w: 390;
  --app-demo-canvas-h: 844;
  --demo-cols: 3;
  --demo-cols-sector: 2;
  --demo-tile-ratio: 2 / 1;
}

.app-demo__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--app-demo-canvas-w) * 1px);
  height: calc(var(--app-demo-canvas-h) * 1px);
  transform-origin: 0 0;
  transform: scale(var(--app-demo-scale, 0.5));
  background-color: var(--color-black);
  background-image: radial-gradient(circle, var(--dot-grid-color) var(--dot-grid-dot), transparent var(--dot-grid-dot));
  background-size: var(--dot-grid-size) var(--dot-grid-size);
  background-position: 16px 16px;
}

.app-demo__icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: inherit;
}

.app-demo__rail {
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 180px;
  padding: 20px 12px;
  border-radius: 28px;
  background: var(--demo-glass);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.app-demo__rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8px;
  margin-bottom: 20px;
}

.app-demo__rail-logo {
  width: auto;
  height: 24px;
  aspect-ratio: 3025 / 500;
  object-fit: contain;
}

.app-demo__rail-list {
  position: relative;
}

.app-demo__rail-pill {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 42px;
  border-radius: 100px;
  background: var(--color-primary);
  box-shadow: inset 0 0 15px 0 var(--color-primary-glow);
  transform: translateY(calc(clamp(0, calc((0.62 - var(--app-demo-p)) * 10), 1) * 52px));
}

.app-demo__rail-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  opacity: calc(0.55 + var(--item-on, 0) * 0.45);
}

.app-demo__rail-item:nth-child(2) {
  --item-on: clamp(0, calc((var(--app-demo-p) - 0.62) * 10), 1);
}

.app-demo__rail-item:nth-child(3) {
  --item-on: clamp(0, calc((0.62 - var(--app-demo-p)) * 10), 1);
}

.app-demo__viewport {
  position: absolute;
  left: 212px;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.app-demo__pane {
  --pane-offset: calc(var(--app-demo-p) - var(--pane-center));
  --pane-distance: max(var(--pane-offset), calc(var(--pane-offset) * -1));
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 48px;
  transform: translateY(calc(var(--pane-offset) * -1 * var(--pane-drift)))
    scale(calc(1 - var(--pane-distance) * 0.16));
}

.app-demo__pane--sectors {
  --pane-center: 0.167;
  opacity: clamp(0, calc((0.39 - var(--app-demo-p)) * 10), 1);
}

.app-demo__pane--home {
  --pane-center: 0.833;
  opacity: clamp(0, calc((var(--app-demo-p) - 0.62) * 10), 1);
}

.app-demo__banner {
  margin: 0 0 20px;
  padding: 14px 20px;
  border-radius: 20px;
  background: linear-gradient(to right, rgba(255, 49, 69, 0.22), rgba(255, 49, 69, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 49, 69, 0.28);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
}

.app-demo__section {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.app-demo__section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
}

.app-demo__section-sub {
  margin: 4px 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--demo-text-2);
}

.app-demo__section-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--demo-text-2);
}

.app-demo__recent {
  padding: 12px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: var(--color-primary);
}

.app-demo__grid {
  display: grid;
  grid-template-columns: repeat(var(--demo-cols), minmax(0, 1fr));
  gap: 10px;
}

.app-demo__grid--releases {
  margin-top: 14px;
  row-gap: 16px;
}

.app-demo__grid--sectors {
  position: relative;
  grid-template-columns: repeat(var(--demo-cols-sector), minmax(0, 1fr));
  margin-top: 14px;
  margin-bottom: 28px;
}

.app-demo__cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(158deg, var(--demo-cover-a, #3a3a40), var(--demo-cover-b, #232326));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.app-demo__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-demo__tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
}

.app-demo__cover:nth-child(5n + 1) {
  --demo-cover-a: #3d3a44;
}

.app-demo__cover:nth-child(5n + 2) {
  --demo-cover-a: #38403f;
}

.app-demo__cover:nth-child(5n + 3) {
  --demo-cover-a: #413b3a;
}

.app-demo__cover:nth-child(5n + 4) {
  --demo-cover-a: #363b44;
}

.app-demo__tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: var(--demo-tile-ratio, 1);
  padding: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(158deg, var(--demo-cover-a, #3a3a40), var(--demo-cover-b, #232326));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  isolation: isolate;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-white);
}

.app-demo__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.85) 100%);
}

.app-demo__tile:nth-child(1) {
  --demo-cover-a: #290c4d;
}

.app-demo__tile:nth-child(2) {
  --demo-cover-a: #441304;
}

.app-demo__tile:nth-child(3) {
  --demo-cover-a: #040e4e;
}

.app-demo__tile:nth-child(4) {
  --demo-cover-a: #32030b;
}

.app-demo__tile:nth-child(5) {
  --demo-cover-a: #082311;
}

.app-demo__tile:nth-child(6) {
  --demo-cover-a: #58182d;
}

.app-demo__tile:nth-child(7) {
  --demo-cover-a: #254506;
}

.app-demo__tile:nth-child(8) {
  --demo-cover-a: #083a41;
}

.app-demo__tile:nth-child(9) {
  --demo-cover-a: #3c2504;
}

.app-demo__tile:nth-child(10) {
  --demo-cover-a: #304d39;
}


.app-demo__player {
  position: absolute;
  left: calc(212px + (var(--app-demo-canvas-w) * 1px - 212px - 560px) / 2);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 560px;
  height: 72px;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--demo-glass);
  box-shadow: inset 0 0 16px 0 var(--demo-glass-glow);
  color: var(--color-white);
  opacity: var(--player-on, 1);
  transform-origin: bottom center;
  transform: translateY(calc((1 - var(--player-on, 1)) * 24px)) scale(var(--player-zoom, 1));
}

.app-demo__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-demo__controls .app-demo__icon {
  width: 22px;
  height: 22px;
}

.app-demo__controls .app-demo__icon--small {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.app-demo__controls .app-demo__icon--play {
  width: 26px;
  height: 26px;
}

.app-demo__track {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.app-demo__track-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-demo__track-art {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.app-demo__track-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-demo__track-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--demo-text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-demo__progress {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-demo__time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.app-demo__bar {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.app-demo__bar-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--color-white);
  transform-origin: left center;
  transform: scaleX(var(--demo-bar, 0.38));
}

.app-demo__player-side {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
}

.app-demo__player-side .app-demo__icon--like {
  width: 26px;
  height: 26px;
}

.app-demo--phone .app-demo__viewport {
  left: 0;
}

.app-demo--phone .app-demo__pane {
  padding: 64px 16px 160px;
}

.app-demo--phone .app-demo__banner {
  font-size: 18px;
  padding: 12px 16px;
}

.app-demo--phone .app-demo__section-title {
  font-size: 18px;
}

.app-demo--phone .app-demo__tile {
  font-size: 14px;
}

.app-demo--phone .app-demo__player {
  left: 16px;
  right: 16px;
  width: auto;
  height: 64px;
  bottom: 84px;
  padding: 0 16px;
  gap: 14px;
}

.app-demo--phone .app-demo__track-art {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.app-demo--phone .app-demo__track-name {
  font-size: 16px;
}

.app-demo--phone .app-demo__progress,
.app-demo--phone .app-demo__player-side,
.app-demo--phone .app-demo__controls .app-demo__ctrl--small,
.app-demo--phone .app-demo__controls .app-demo__ctrl--prev {
  display: none;
}

.app-demo--phone .app-demo__track {
  order: 1;
}

.app-demo--phone .app-demo__controls {
  order: 2;
  gap: 10px;
}

.app-demo--phone .app-demo__controls .app-demo__icon--play {
  width: 26px;
  height: 26px;
}

.app-demo--phone .app-demo__controls .app-demo__icon--next {
  width: 30px;
  height: 30px;
}

.app-demo__navbar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: flex;
  align-items: center;
  height: 60px;
  padding: 5px;
  border-radius: 100px;
  background: var(--demo-glass);
  box-shadow: inset 0 0 16px 0 var(--demo-glass-glow);
}

.app-demo__navbar-pill {
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  width: calc((100% - 10px) / 5);
  border-radius: 100px;
  background: var(--color-primary);
  box-shadow: inset 0 0 15px 0 var(--color-primary-glow);
  transform: translateX(calc(clamp(0, calc((0.62 - var(--app-demo-p)) * 10), 1) * 100%));
}

.app-demo__navbar-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0;
  color: var(--color-white);
  opacity: calc(0.55 + var(--item-on, 0) * 0.45);
}

.app-demo__navbar-item:nth-child(2) {
  --item-on: clamp(0, calc((var(--app-demo-p) - 0.62) * 10), 1);
}

.app-demo__navbar-item:nth-child(3) {
  --item-on: clamp(0, calc((0.62 - var(--app-demo-p)) * 10), 1);
}

.app-demo__cover {
  width: 100%;
  padding: 0;
  border: 0;
}

.app-demo--live .app-demo__cover {
  cursor: pointer;
  transition: transform var(--duration-hover) var(--ease-out-soft);
}

.app-demo--live .app-demo__cover[data-player-active] {
  box-shadow: inset 0 0 0 2px var(--color-primary);
}

.app-demo__ctrl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 0;
  border-radius: 50%;
  background: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.12s var(--ease-out-soft), transform 0.08s ease-in-out;
}

.app-demo__ctrl:active {
  transform: scale(0.9);
}

.app-demo__ctrl--small {
  color: rgba(255, 255, 255, 0.5);
}

.app-demo__ctrl--small[aria-pressed="true"],
.app-demo__ctrl--small[data-repeat-mode="all"],
.app-demo__ctrl--small[data-repeat-mode="one"] {
  color: var(--color-white);
}

.app-demo__ctrl--small[aria-pressed="true"][data-player-shuffle] {
  color: var(--color-primary);
}

.app-demo__ctrl--small .app-demo__icon--small {
  opacity: 1;
}

.app-demo__bar-thumb {
  position: absolute;
  left: calc(100% * var(--player-progress, 0));
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%) scale(var(--thumb-on, 0));
  transition: transform 0.12s var(--ease-out-soft);
}

.app-demo--live .app-demo__bar {
  overflow: visible;
  cursor: pointer;
}

.app-demo--live .app-demo__bar-fill {
  transform: scaleX(var(--player-progress, 0));
}

.app-demo--live .app-demo__bar:hover,
.app-demo--live .app-demo__bar:focus-visible,
.app-demo--live .app-demo__bar[data-seeking] {
  --thumb-on: 1;
}

.app-demo__icon--state-pause,
.app-demo__icon--state-like-filled,
.app-demo__icon--state-repeat-one {
  display: none;
}

[data-player-root][data-playing] .app-demo__icon--state-play {
  display: none;
}

[data-player-root][data-playing] .app-demo__icon--state-pause {
  display: block;
}

[data-player-like][aria-pressed="true"] .app-demo__icon--state-like {
  display: none;
}

[data-player-like][aria-pressed="true"] .app-demo__icon--state-like-filled {
  display: block;
  color: var(--color-primary);
}

[data-player-repeat][data-repeat-mode="one"] .app-demo__icon--state-repeat {
  display: none;
}

[data-player-repeat][data-repeat-mode="one"] .app-demo__icon--state-repeat-one {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .app-demo--live .app-demo__cover:hover {
    transform: scale(1.04);
  }

  .app-demo__ctrl:not(.app-demo__ctrl--play):hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

.app-demo--live {
  pointer-events: auto;
}

.app-demo__pane--playlist {
  --pane-center: 0.833;
  opacity: clamp(0, calc((var(--app-demo-p) - 0.62) * 10), 1);
}

.app-demo__tile {
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform var(--duration-hover) var(--ease-out-soft);
}

@media (hover: hover) and (pointer: fine) {
  .app-demo__tile:hover {
    transform: scale(1.03);
  }
}

.app-demo--experience {
  --app-demo-canvas-h: 720;
  --app-demo-p: 0.833;
  --demo-radius: 26px;
  --demo-frame-width: 2px;
  border-radius: var(--demo-radius);
  box-shadow: 0 0 0 var(--demo-frame-width) var(--color-white), 0 34px 64px -24px rgba(0, 0, 0, 0.85);
}

.app-demo--experience .app-demo__canvas {
  border-radius: calc(var(--demo-radius) / var(--app-demo-scale, 1));
}

[data-demo-view="library"] .app-demo--experience {
  --app-demo-p: 0.167;
}

.app-demo--experience .app-demo__pane {
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s var(--ease-out-soft), transform 0.42s var(--ease-out-soft),
    visibility 0s linear 0.42s;
}

[data-demo-view="library"] .app-demo--experience .app-demo__pane--sectors,
[data-demo-view="home"] .app-demo--experience .app-demo__pane--playlist {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s, 0s;
}

.app-demo--experience .app-demo__rail-item,
.app-demo--experience .app-demo__navbar-item {
  transition: opacity var(--duration-hover) var(--ease-out-soft);
}

.app-demo--experience [data-demo-view-target] {
  border: 0;
  background: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.app-demo--experience .app-demo__grid--releases {
  min-height: 376px;
}

.app-demo__dust {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.app-demo--live .app-demo__tile::after,
.app-demo--live .app-demo__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background-color 320ms var(--ease-out-soft);
}

.app-demo--live .app-demo__tile::after {
  z-index: -1;
}

.app-demo__play {
  --play-icon-size: 40px;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.app-demo__play-icon {
  width: var(--play-icon-size);
  height: var(--play-icon-size);
  color: var(--color-white);
  opacity: 0;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(0, 0, 0, 0.65));
  transition: opacity var(--duration-hover) var(--ease-out-soft);
}

.app-demo__play-icon--pause {
  position: absolute;
}

.app-demo--phone .app-demo__play {
  --play-icon-size: 30px;
}

[data-player-root][data-playing] .app-demo__tile[aria-pressed="true"]::after,
[data-player-root][data-playing] .app-demo__cover[data-player-active]::after {
  background-color: rgba(0, 0, 0, 0.62);
}

[data-player-root][data-playing] .app-demo__tile[aria-pressed="true"] .app-demo__play-icon--play,
[data-player-root][data-playing] .app-demo__cover[data-player-active] .app-demo__play-icon--play {
  opacity: 0;
}

[data-player-root][data-playing] .app-demo__tile[aria-pressed="true"] .app-demo__play-icon--pause,
[data-player-root][data-playing] .app-demo__cover[data-player-active] .app-demo__play-icon--pause {
  opacity: 1;
}

.app-demo--phone.app-demo--experience {
  --app-demo-canvas-h: 780;
  --demo-radius: 20px;
}

.app-demo--phone.app-demo--experience .app-demo__pane {
  padding: 40px 16px 160px;
}

.app-demo--phone.app-demo--experience .app-demo__grid--releases {
  min-height: 241px;
}

.app-demo--phone.app-demo--experience .app-demo__cover:nth-child(n + 7) {
  display: none;
}

.app-demo--desktop.app-demo--experience .app-demo__player {
  --player-zoom: 1.18;
}

@media (prefers-reduced-motion: reduce) {
  .app-demo--experience .app-demo__pane {
    transition: visibility 0s linear 0s;
  }
}

@media (hover: hover) and (pointer: fine) {
  .app-demo--live .app-demo__tile:hover::after,
  .app-demo--live .app-demo__cover:hover::after {
    background-color: rgba(0, 0, 0, 0.62);
  }

  .app-demo--live .app-demo__tile:hover .app-demo__play-icon--play,
  .app-demo--live .app-demo__cover:hover .app-demo__play-icon--play {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-demo--live .app-demo__tile::after,
  .app-demo--live .app-demo__cover::after,
  .app-demo__play-icon {
    transition: none;
  }
}

@media (hover: none) {
  .app-demo--live .app-demo__play-icon--play {
    opacity: 1;
  }
}

.experience {
  --stage-gutter: 40;
  --stage-max: 390;
  --stage-canvas-w: 390;
  --app-demo-scale: calc(
    min(var(--viewport-w, 390) - var(--stage-gutter), var(--stage-max)) / var(--stage-canvas-w)
  );
  position: relative;
  background: var(--color-bg);
  padding: 0 0 64px;
  overflow-x: clip;
}

.experience__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 72px;
  padding-bottom: 28px;
  text-align: center;
}

.experience__title {
  max-width: 20ch;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.experience__subtitle {
  max-width: 46ch;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white-70);
}

.experience__stage {
  display: flex;
  justify-content: center;
}

.experience__device {
  position: relative;
}

.experience__audio {
  display: none;
}

.experience .app-demo--desktop {
  display: none;
}

.experience__actions {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}

@media (min-width: 1024px) {
  .experience {
    --stage-gutter: 140;
    --stage-max: 1160;
    --stage-canvas-w: 1440;
    padding: 0 0 100px;
  }

  .experience__intro {
    gap: 14px;
    padding-top: 104px;
    padding-bottom: 40px;
  }

  .experience__title {
    font-size: 44px;
  }

  .experience__subtitle {
    font-size: 18px;
  }

  .experience .app-demo--desktop {
    display: block;
  }

  .experience .app-demo--phone {
    display: none;
  }
}

@media (max-height: 700px) {
  .experience__title {
    font-size: 26px;
  }

  .experience__intro {
    padding-top: 56px;
    padding-bottom: 24px;
  }
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background: var(--color-bg);
  box-shadow: inset 0 0 40px 0 var(--color-white-25);
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.field__label {
  padding-left: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-70);
}

.field__input {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 56px;
  padding: 0 22px;
  border-radius: 100px;
  border: 1.5px solid var(--color-input-border);
  background-color: var(--color-bg);
  background-image: none;
  color: var(--color-white);
  caret-color: var(--color-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  transition: border-color 180ms var(--ease-standard);
}

.field__input::placeholder {
  color: var(--color-disabled);
  font-size: 14px;
}

.field__input:focus,
.field__input:focus-visible {
  outline: none;
  border-color: var(--color-primary);
}

.field__input--textarea {
  height: auto;
  padding: 16px 22px;
  border-radius: 24px;
  min-height: 120px;
  line-height: 1.5;
  resize: vertical;
}

.field__input--select {
  padding-right: 40px;
  text-align: left;
  cursor: pointer;
}

.field--select::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 12px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.field__input:-webkit-autofill,
.field__input:-webkit-autofill:hover,
.field__input:-webkit-autofill:focus,
.field__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--color-bg) inset;
  box-shadow: 0 0 0 1000px var(--color-bg) inset;
  -webkit-text-fill-color: var(--color-white);
  caret-color: var(--color-primary);
}

.contact-page {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg);
  padding-top: 132px;
  padding-bottom: 64px;
  min-height: calc(100vh - 320px);
}

.contact-page--section {
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 0;
}

.page-contact .site-footer__contact {
  display: none;
}

.contact-page__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-page__title {
  font-size: 28px;
  font-weight: 600;
}

.contact-page__subtitle {
  max-width: 520px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-70);
}

.contact-page__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.contact-page__support {
  justify-content: center;
  width: 100%;
  max-width: 620px;
  margin: 28px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-white-10);
}

.contact-page__form .field__input--textarea {
  min-height: 140px;
}

.contact-page__submit {
  width: 100%;
  margin-top: 8px;
}

.contact-page__submit[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.contact-page__status {
  min-height: 20px;
  margin: 0;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white-70);
}

.contact-page__status:empty {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-page__status--success {
  color: var(--color-success);
}

.contact-page__status--error {
  color: var(--color-primary);
}

@media (min-width: 560px) {
  .contact-page__form .field-row {
    flex-direction: row;
  }

  .contact-page__form .field-row > .field {
    flex: 1 1 0;
  }
}

@media (min-width: 1024px) {
  .contact-page {
    padding-top: 164px;
    padding-bottom: 100px;
  }

  .contact-page--section {
    padding-top: 100px;
    padding-bottom: 56px;
  }

  .contact-page__head {
    gap: 16px;
    margin-bottom: 56px;
  }

  .contact-page__title {
    font-size: 48px;
  }

  .contact-page__subtitle {
    font-size: 16px;
  }

  .contact-page__grid {
    gap: 32px;
  }

  .contact-page__form {
    padding: 40px;
    border-radius: 40px;
    gap: 20px;
  }

  .contact-page__submit {
    width: auto;
    align-self: flex-start;
    padding: 14.5px 48px;
  }

}

[data-reveal] {
  transition: opacity var(--duration-reveal) var(--ease-out-expo) var(--reveal-delay, 0ms),
    transform var(--duration-reveal) var(--ease-out-expo) var(--reveal-delay, 0ms),
    filter var(--duration-reveal) var(--ease-out-expo) var(--reveal-delay, 0ms);
}

[data-reveal].is-reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

[data-reveal="fade"].is-reveal-hidden {
  transform: none;
}

[data-reveal="words"].is-reveal-hidden,
[data-reveal="trigger"].is-reveal-hidden {
  opacity: 1;
  transform: none;
}

[data-reveal-order="2"] {
  --reveal-delay: 90ms;
}

[data-reveal-order="3"] {
  --reveal-delay: 180ms;
}

[data-reveal-order="4"] {
  --reveal-delay: 270ms;
}

[data-reveal-order="5"] {
  --reveal-delay: 360ms;
}

.reveal-word {
  --reveal-word-delay: calc(var(--reveal-word-index, 0) * var(--reveal-word-stagger));
  display: inline-block;
  transition: opacity var(--duration-reveal-word) var(--ease-out-expo) var(--reveal-word-delay),
    transform var(--duration-reveal-word) var(--ease-out-expo) var(--reveal-word-delay),
    filter var(--duration-reveal-word) var(--ease-out-expo) var(--reveal-word-delay);
}

[data-reveal="words"].is-reveal-hidden .reveal-word {
  opacity: 0;
  transform: translateY(0.55em);
  filter: blur(12px);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal].is-reveal-hidden,
  [data-reveal="words"].is-reveal-hidden .reveal-word {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
