html {
  font-size: calc(10000vw / 1920);
}
@media (min-aspect-ratio: 1440/1080) {
  html {
    font-size: calc(10000vh / 1080);
  }
}

:root {
  --main-font: "Work Sans", sans-serif;
  --color-black: #000000;
  --color-black-light: #181b1a;
  --color-light-purity: #E0D8EB;
  --color-fat-tuesday: #341F37;
  --color-bashful-pancy: #D8CEE6;
  --color-sugar-crystal: #F9F5FF;
  --color-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

body,
main {
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  background: var(--color-light-purity);
  font-family: var(--main-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-light-purity);
  background-image: url("https://cdn.zajno.com/dev/codepen/cicada/texture.png");
  background-repeat: repeat;
  mix-blend-mode: soft-light;
}
body::after {
  content: "";
  position: fixed;
  bottom: -3.76rem;
  left: 50%;
  width: 22.42rem;
  height: 8.86rem;
  background: var(--color-sugar-crystal);
  filter: blur(2.5rem);
  transform: translateX(-50%);
  z-index: 0;
}
body.mobile-menu-open {
  overflow: hidden;
}
body.modal-active {
  overflow: hidden;
}

main {
  position: relative;
  width: 100%;
  height: 14000px;
  flex: 1 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: auto;
  padding: 0.16rem 0.16rem 0;
  display: flex;
  justify-content: center;
  z-index: 100;
}
.header-wrapp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.24rem;
  width: min(13.2rem, 100%);
  padding: 0.08rem 0.1rem 0.08rem 0.2rem;
  background: rgba(249, 245, 255, 0.85);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 10rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0.1rem 0.4rem rgba(52, 31, 55, 0.08);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 0 0 auto;
}
.header-logo__img {
  display: block;
  width: 0.36rem;
  height: 0.36rem;
}
.header-logo__text {
  display: block;
  font-family: var(--main-font);
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--color-fat-tuesday);
}
.header-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.32rem;
}
.header-nav__link {
  font-family: var(--main-font);
  font-size: 0.17rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: rgba(52, 31, 55, 0.9);
  transition: opacity 0.2s ease;
}
.header-nav__link:hover {
  opacity: 0.75;
}
.header-nav__link_contact {
  display: none;
}
.header-burger {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header-burger span {
  display: block;
  width: 0.32rem;
  height: 0.04rem;
  background: var(--color-fat-tuesday);
  border-radius: 0.04rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header.menu-open .header-burger span:nth-child(1) {
  transform: translateY(0.14rem) rotate(45deg);
}
.header.menu-open .header-burger span:nth-child(2) {
  opacity: 0;
}
.header.menu-open .header-burger span:nth-child(3) {
  transform: translateY(-0.14rem) rotate(-45deg);
}
.header-cta {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.32rem;
}
.header-contact {
  font-family: var(--main-font);
  font-size: 0.17rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: rgba(52, 31, 55, 0.9);
  transition: opacity 0.2s ease;
}
.header-contact:hover {
  opacity: 0.75;
}
.header-download-wrap {
  position: relative;
  flex: 0 0 auto;
  display: flex;
}
.header-download {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 0 0 auto;
  font-family: var(--main-font);
  font-size: 0.17rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-sugar-crystal);
  background: var(--color-fat-tuesday);
  border: none;
  border-radius: 10rem;
  padding: 0.14rem 0.3rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header-download:hover {
  opacity: 0.88;
}
.header-download svg {
  width: 0.11rem;
  height: auto;
  transition: transform 0.25s ease;
}
.header-cta__menu {
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  gap: 0.1rem;
  padding-top: 0.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.header-cta__item {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  white-space: nowrap;
  font-family: var(--main-font);
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-sugar-crystal);
  background: var(--color-fat-tuesday);
  border-radius: 10rem;
  padding: 0.13rem 0.26rem;
  box-shadow: 0 0.1rem 0.3rem rgba(52, 31, 55, 0.25);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header-cta__item svg {
  width: 0.17rem;
  height: 0.17rem;
  fill: currentColor;
  flex: 0 0 auto;
}
.header-cta__item:hover {
  opacity: 0.88;
}
.header-cta__item:first-child {
  transform: translate(0.3rem, -0.12rem);
}
.header-cta__item:last-child {
  transform: translate(-0.3rem, -0.12rem);
}
.header-download-wrap:hover .header-cta__menu,
.header-download-wrap:focus-within .header-cta__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header-download-wrap:hover .header-cta__item,
.header-download-wrap:focus-within .header-cta__item {
  transform: translate(0, 0);
}
.header-download-wrap:hover .header-download svg,
.header-download-wrap:focus-within .header-download svg {
  transform: rotate(180deg);
}

.footer {
  width: 100%;
  flex: 0 0 auto;
}

a {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

.fluid-container {
  width: 100%;
  position: relative;
}

.container {
  position: relative;
  width: var(--container-width);
  min-width: var(--container-width);
  margin: 0 auto;
}

.row {
  display: flex;
  flex-direction: row;
}

.row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

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

.column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.s-visible,
.xs-visible,
.xxs-visible {
  display: none;
}

.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lazyLoaded {
  opacity: 1;
}

input::-webkit-input-placeholder, input::placeholder {
  transition: all 0.3s;
}
input:focus::-webkit-input-placeholder, input:focus::placeholder {
  color: transparent;
}

button[type=submit] {
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .s-hidden {
    display: none;
  }

  .s-visible {
    display: block;
  }
}
@media only screen and (max-width: 850px) {
  .xs-hidden {
    display: none;
  }

  .xs-visible {
    display: block;
  }
}
@media only screen and (max-width: 690px) {
  body.modal-active {
    position: fixed;
  }

  .xxs-visible {
    display: block;
  }

  .xxs-hidden {
    display: none;
  }
}
#main {
  padding: 0.1rem;
}

.banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  overflow: hidden;
  z-index: 1;
}
.banner-slide {
  z-index: 2;
}
.banner-title {
  position: absolute;
  top: 1.95rem;
  max-width: 9.57rem;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.07rem;
  text-align: center;
  z-index: 3;
}
.banner-title span {
  position: relative;
  display: inline-block;
}
.banner-title span::before {
  content: "";
  position: absolute;
  bottom: -0.04rem;
  left: 0;
  width: 100%;
  border-bottom: 4px solid currentColor;
  transform: rotate(-3deg);
}
.banner-subtitle {
  position: absolute;
  top: 2.6rem;
  max-width: 11.5rem;
  font-size: 0.68rem;
  line-height: 1.15;
  letter-spacing: -0.045rem;
  text-align: center;
  opacity: 0;
  z-index: 1;
}
.banner-text {
  position: absolute;
  top: 1.89rem;
  max-width: 6.87rem;
  font-size: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.0295rem;
  opacity: 0;
  z-index: 1;
}
.banner-tree {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 19rem;
  height: auto;
  transform: translateX(-50%);
  transform-origin: bottom;
  z-index: 2;
}
.banner-tree img, .banner-tree video {
  display: block;
  width: 100%;
}

.wings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
}
.wings-svg {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  width: 95vw;
  height: auto;
  transform: translateX(-50%);
  z-index: 3;
}
.wings-svg svg {
  width: 100%;
  height: auto;
}
.wings-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.tree {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.tree-name {
  position: absolute;
  top: 55%;
  left: 50%;
  width: max-content;
  max-width: 7.6rem;
  font-size: 0.44rem;
  letter-spacing: -0.028rem;
  text-align: center;
  padding: 0.22rem 0.4rem;
  background: var(--color-sugar-crystal);
  box-shadow: 0 0 0 1px var(--color-fat-tuesday), 0 0.3rem 0.8rem -0.3rem color-mix(in srgb, var(--color-fat-tuesday) 45%, transparent);
  border-radius: 0.14rem;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.tree-wrapp {
  position: absolute;
  top: 3.32rem;
  left: 50%;
  display: block;
  width: 9.5rem;
  transform: translateX(-50%) scale(0.82);
  transform-origin: top center;
  z-index: 1;
}
.tree-svg {
  display: none;
  width: 100%;
  height: auto;
}
.tree-circle {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 8.62rem;
  height: auto;
  aspect-ratio: 1/1;
  box-shadow: 0 0 0 1px var(--color-fat-tuesday);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
}
.tree-circle__small {
  box-shadow: 0 0 0 3px var(--color-fat-tuesday);
}
.tree-title {
  position: absolute;
  max-width: 2rem;
  font-size: 0.2rem;
  font-weight: 400;
  letter-spacing: -0.009rem;
  padding: 0.18rem;
  cursor: pointer;
  z-index: 2;
}
.tree-title span {
  opacity: 0;
  transform: translateY(100%);
}
.tree-title_top {
  top: -0.25rem;
  left: 50%;
  transform: translate(-50%, -100%);
  transform-origin: bottom center;
}
.tree-title_left-top {
  top: 0.18rem;
  right: 6.11rem;
  transform: translate(-100%, -50%);
  transform-origin: bottom right;
}
.tree-title_left {
  top: 2.13rem;
  left: -0.1rem;
  transform: translate(-100%, 0%);
  transform-origin: bottom right;
}
.tree-title_right-top {
  top: 0.18rem;
  left: 5.69rem;
  transform: translate(100%, -50%);
  transform-origin: bottom left;
}
.tree-title_right {
  top: 2.13rem;
  right: -0.1rem;
  transform: translate(100%, 0%);
  transform-origin: bottom left;
}
.tree-title__decor {
  position: absolute;
  top: 50%;
  width: 0.08rem;
  height: auto;
  transform: translateY(-50%);
  opacity: 0;
}
.tree-title__decor.left {
  left: 0.06rem;
}
.tree-title__decor.right {
  right: 0.06rem;
}
.tree-ball {
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  cursor: pointer;
  aspect-ratio: 1/1;
  opacity: 0;
  z-index: 2;
}
.tree-ball_top {
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
.tree-ball_left-top {
  top: 0.6rem;
  right: 7.39rem;
  transform: translate(0%, -50%);
}
.tree-ball_left {
  top: 2.5rem;
  left: 0;
  transform: translate(-50%, -100%);
}
.tree-ball_right-top {
  top: 0.6rem;
  left: 7.39rem;
  transform: translate(0%, -50%);
}
.tree-ball_right {
  top: 2.5rem;
  right: 0;
  transform: translate(50%, -100%);
}
.tree-ball span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--color-fat-tuesday);
  border-radius: 50%;
  pointer-events: none;
}
.tree-ball span:not(:first-child) {
  opacity: 0;
}
.tree-wings {
  position: absolute;
  bottom: -1.22rem;
  left: 50%;
  width: 15.15rem;
  height: 5.04rem;
  max-height: 100vh;
  transform: translateX(-50%) scale(0.75);
  transform-origin: center bottom;
  opacity: 0;
  z-index: 1;
}
.tree-wings__item {
  position: absolute;
}
.tree-wings__item img {
  width: 100%;
  height: auto;
}
.tree-wings__center {
  position: absolute;
  top: 1.28rem;
  left: 50%;
  width: 1.34rem;
  transform: translateX(-50%);
}
.tree-wings__top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 7.05rem;
  transform-origin: center right;
}
.tree-wings__top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 7.05rem;
  transform-origin: center left;
}
.tree-wings__bottom-left {
  position: absolute;
  top: 2.586rem;
  left: 3.496rem;
  width: 3.9rem;
  transform-origin: top right;
}
.tree-wings__bottom-right {
  position: absolute;
  top: 2.586rem;
  right: 3.496rem;
  width: 3.9rem;
  transform-origin: top left;
}

.sound {
  position: fixed;
  bottom: 0.63rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.045rem;
  width: 0.78rem;
  aspect-ratio: 1/1;
  background: var(--color-bashful-pancy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 100;
}
.sound-item {
  width: 0.05rem;
  height: 0.17rem;
  border-radius: 0.03rem;
  background: var(--color-fat-tuesday);
}
.sound-item:nth-child(odd) {
  height: 0.27rem;
}
/* ============ AI Echo logo lockup ============ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  width: auto;
}
.header-logo .header-logo__img {
  width: 0.6rem;
  height: 0.6rem;
}
.header-logo__text {
  white-space: nowrap;
}

/* ============ Attachment style tooltips (design 1d: technical annotation) ============ */
.tree-tooltip {
  position: absolute;
  bottom: calc(100% + 0.15rem);
  left: 50%;
  transform: translateX(-50%);
  width: 4.7rem;
  padding: 0.3rem 0.32rem;
  text-align: left;
  color: var(--color-fat-tuesday);
  background: var(--color-sugar-crystal);
  border-radius: 0.04rem;
  opacity: 0;
  pointer-events: none;
  transform-origin: center bottom;
  z-index: 5;
}
.tree-tooltip__corner {
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
}
.tree-tooltip__corner.tl {
  top: 0;
  left: 0;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.tree-tooltip__corner.tr {
  top: 0;
  right: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.tree-tooltip__corner.bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.tree-tooltip__corner.br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.tree-tooltip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.16rem;
}
.tree-tooltip__name {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 0.18rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tree-tooltip__index {
  font-family: "Space Mono", monospace;
  font-size: 0.15rem;
  opacity: 0.5;
}
.tree-tooltip__text {
  margin: 0 0 0.2rem;
  font-family: var(--main-font);
  font-size: 0.22rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.45;
}
.tree-tooltip__traits {
  display: flex;
  flex-direction: column;
  gap: 0.09rem;
  border-top: 1px dashed color-mix(in srgb, currentColor 30%, transparent);
  padding-top: 0.17rem;
  font-family: var(--main-font);
  font-size: 0.17rem;
  font-weight: 500;
  line-height: 1.35;
}
.tree-title_left-top .tree-tooltip {
  left: 30%;
}
.tree-title_right-top .tree-tooltip {
  left: 70%;
}
.tree-title_left .tree-tooltip {
  left: auto;
  right: calc(100% + 0.12rem);
  bottom: -0.1rem;
  transform: none;
  transform-origin: right bottom;
}
.tree-title_right .tree-tooltip {
  left: calc(100% + 0.12rem);
  right: auto;
  bottom: -0.1rem;
  transform: none;
  transform-origin: left bottom;
}

/* ============ Traction section ============ */
.traction {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
  pointer-events: none;
  color: var(--color-fat-tuesday);
}
.traction-board {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  max-width: 13.2rem;
  padding: 0 0.4rem;
}
.traction-stat {
  position: relative;
  opacity: 0;
}
.traction-hero {
  text-align: left;
}
.traction-badge {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.35rem;
  font-size: 0.14rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2F9E55;
}
.traction-badge__dot {
  position: relative;
  width: 0.11rem;
  height: 0.11rem;
  border-radius: 50%;
  background: currentColor;
}
.traction-badge__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  animation: dot-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes dot-ping {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  80%, 100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.traction-label {
  font-size: 0.13rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.65;
  margin-bottom: 0.14rem;
}
.traction-num {
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03rem;
}
.traction-num_anchor {
  font-size: 1.35rem;
  letter-spacing: -0.07rem;
}
.traction-caption {
  margin-top: 0.25rem;
  font-size: 0.3rem;
  font-weight: 500;
  letter-spacing: -0.012rem;
}
.traction-card {
  flex: 0 0 auto;
  opacity: 0;
  width: 5.4rem;
  padding: 0.5rem 0.55rem;
  background: var(--color-fat-tuesday);
  border-radius: 0.3rem;
  color: var(--color-sugar-crystal);
}
.traction-card .traction-stat + .traction-stat {
  margin-top: 0.32rem;
  padding-top: 0.32rem;
  border-top: 1px solid rgba(249, 245, 255, 0.16);
}

.community {
  position: relative;
  z-index: 30;
  background: var(--color-sugar-crystal);
  padding: 1.2rem 0 1.4rem;
}
.community-head {
  max-width: 13.2rem;
  margin: 0 auto;
  padding: 0 0.4rem;
}
.community-title {
  max-width: 7.5rem;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-fat-tuesday);
}
.community-rating {
  display: flex;
  align-items: center;
  gap: 0.14rem;
  margin-top: 0.22rem;
}
.community-rating__stars {
  font-size: 0.2rem;
  letter-spacing: 0.04em;
  color: var(--color-fat-tuesday);
}
.community-rating__text {
  font-size: 0.17rem;
  font-weight: 500;
  color: rgba(52, 31, 55, 0.7);
}
.community-wall {
  display: flex;
  align-items: flex-start;
  gap: 0.24rem;
  max-width: 13.2rem;
  margin: 0.5rem auto 0;
  padding: 0 0.4rem;
}
.community-col {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  flex: 1 1 0;
  min-width: 0;
}
.community-col:nth-child(2) {
  margin-top: 0.45rem;
}
.community-col:nth-child(3) {
  margin-top: 0.9rem;
}
.community-col:nth-child(4) {
  margin-top: 0.25rem;
}
.community-card {
  position: relative;
  width: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.community-card--review {
  display: flex;
  flex-direction: column;
  padding: 0.24rem;
  background: var(--color-white);
  box-shadow: 0 0.16rem 0.4rem rgba(52, 31, 55, 0.1);
}
.community-card__stars {
  font-size: 0.18rem;
  letter-spacing: 0.04em;
  color: var(--color-fat-tuesday);
}
.community-card__title {
  margin-top: 0.18rem;
  font-size: 0.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-fat-tuesday);
}
.community-card__quote {
  margin-top: 0.12rem;
  font-size: 0.15rem;
  line-height: 1.6;
  color: rgba(52, 31, 55, 0.8);
}
.community-card__name {
  margin-top: 0.18rem;
  font-size: 0.16rem;
  font-weight: 600;
  color: var(--color-fat-tuesday);
}
.community-card__name span {
  display: block;
  margin-top: 0.04rem;
  font-size: 0.12rem;
  font-weight: 400;
  color: rgba(52, 31, 55, 0.55);
}
.community-card--video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 9/16;
  padding: 0.24rem;
  background: var(--color-fat-tuesday);
  border: 2px dashed rgba(249, 245, 255, 0.4);
}
.community-card__play {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-fat-tuesday);
  font-size: 0.15rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.2);
}
.community-card__placeholder {
  text-align: center;
  font-size: 0.17rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(249, 245, 255, 0.8);
}
.community-card__placeholder em {
  display: block;
  margin-top: 0.08rem;
  font-style: normal;
  font-size: 0.12rem;
  opacity: 0.6;
}
.community-card__badge {
  position: absolute;
  left: 0.14rem;
  right: 0.14rem;
  bottom: 0.14rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.1rem 0.12rem;
  background: rgba(18, 18, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.14rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.community-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--color-bashful-pancy);
  color: var(--color-fat-tuesday);
  font-size: 0.15rem;
  font-weight: 600;
  flex: 0 0 auto;
}
.community-card__handle {
  font-size: 0.13rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
}
.community-card__handle em {
  display: block;
  font-style: normal;
  font-size: 0.11rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.header-cta.open .header-cta__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header-cta.open .header-cta__item {
  transform: translate(0, 0);
}
.header-cta.open .header-download svg {
  transform: rotate(180deg);
}

@media only screen and (max-width: 768px) {
  html {
    font-size: min(13.8888888889vw, 6.5vh);
    font-size: min(13.8888888889vw, 6.5svh);
  }
  .header {
    padding: 0.12rem 0.12rem 0;
  }
  .header-wrapp {
    padding: 0.1rem 0.12rem 0.1rem 0.22rem;
  }
  .header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.12rem);
    transform: translateY(-0.12rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.14rem;
    background: rgba(249, 245, 255, 0.96);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-radius: 0.36rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0.2rem 0.6rem rgba(52, 31, 55, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .header-nav__link {
    font-size: 0.3rem;
    text-align: center;
    padding: 0.26rem 0.3rem;
    border-radius: 0.24rem;
  }
  .header-nav__link:not(:last-child) {
    border-bottom: 1px solid rgba(52, 31, 55, 0.08);
  }
  .header-nav__link_contact {
    display: block;
  }
  .header.menu-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header-burger {
    display: flex;
  }
  .header-contact {
    display: none;
  }
  .header-logo {
    gap: 0.12rem;
  }
  .header-logo__img {
    width: 0.5rem;
    height: 0.5rem;
  }
  .header-logo__text {
    font-size: 0.3rem;
  }
  .header-download {
    font-size: 0.26rem;
    padding: 0.2rem 0.34rem;
    gap: 0.12rem;
  }
  .header-download svg {
    width: 0.16rem;
  }
  .header-cta__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.12rem;
    padding-top: 0.12rem;
  }
  .header-cta__item {
    justify-content: center;
    font-size: 0.26rem;
    padding: 0.2rem 0.36rem;
  }
  .header-cta__item svg {
    width: 0.26rem;
    height: 0.26rem;
  }
  .header-cta__item:first-child, .header-cta__item:last-child {
    transform: translate(0, -0.12rem);
  }
  .banner {
    padding: 0 0.3rem;
  }
  .banner-title {
    top: 40%;
    left: 0.3rem;
    right: 0.3rem;
    max-width: none;
    font-size: 0.76rem;
    letter-spacing: -0.04rem;
  }
  .banner-subtitle {
    top: 38%;
    left: 0.3rem;
    right: 0.3rem;
    max-width: none;
    font-size: 0.54rem;
    letter-spacing: -0.026rem;
  }
  .banner-text {
    top: 36%;
    left: 0.3rem;
    right: 0.3rem;
    max-width: none;
    font-size: 0.4rem;
    letter-spacing: -0.018rem;
  }
  .banner-tree {
    width: 175vw;
  }
  .wings-svg {
    width: 155vw;
    bottom: 1.3rem;
  }
  .tree-wrapp {
    top: calc(100vh - 8.8rem);
    transform: translateX(-50%) scale(0.7);
  }
  .tree-name {
    top: 27%;
    max-width: 86vw;
    font-size: 0.32rem;
    letter-spacing: -0.014rem;
    padding: 0.24rem 0.32rem;
  }
  .tree-title {
    max-width: none;
    font-size: 0.38rem;
    letter-spacing: -0.012rem;
    padding: 0.2rem;
  }
  .tree-title_left {
    transform: translate(-0.06rem, -120%);
  }
  .tree-title_right {
    transform: translate(0.06rem, -120%);
  }
  .tree-ball {
    width: 0.24rem;
    height: 0.24rem;
  }
  .tree-tooltip {
    display: none;
  }
  .tree-cards {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.55rem;
    height: 0;
    z-index: 5;
    pointer-events: none;
  }
  .tree-cards .tree-tooltip {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(86vw, 6.6rem);
    padding: 0.4rem 0.42rem;
    opacity: 0;
    transform: none;
    box-shadow: 0 0.15rem 0.5rem rgba(52, 31, 55, 0.25);
  }
  .tooltip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    background: rgba(24, 15, 26, 0.45);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 300;
  }
  .tooltip-modal .tree-tooltip {
    display: block;
    position: static;
    width: min(86vw, 6.6rem);
    padding: 0.4rem 0.42rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .tooltip-modal .tree-tooltip__head,
  .tree-cards .tree-tooltip__head {
    margin-bottom: 0.2rem;
  }
  .tooltip-modal .tree-tooltip__name,
  .tree-cards .tree-tooltip__name {
    font-size: 0.26rem;
  }
  .tooltip-modal .tree-tooltip__index,
  .tree-cards .tree-tooltip__index {
    font-size: 0.22rem;
  }
  .tooltip-modal .tree-tooltip__text,
  .tree-cards .tree-tooltip__text {
    margin: 0 0 0.26rem;
    font-size: 0.3rem;
  }
  .tooltip-modal .tree-tooltip__traits,
  .tree-cards .tree-tooltip__traits {
    gap: 0.14rem;
    padding-top: 0.24rem;
    font-size: 0.24rem;
  }
  .tooltip-modal .tree-tooltip__corner,
  .tree-cards .tree-tooltip__corner {
    width: 0.24rem;
    height: 0.24rem;
  }
  .traction-board {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0 0.35rem;
  }
  .traction-hero {
    text-align: center;
  }
  .traction-badge {
    justify-content: center;
    font-size: 0.24rem;
    gap: 0.16rem;
  }
  .traction-badge__dot {
    width: 0.18rem;
    height: 0.18rem;
  }
  .traction-label {
    font-size: 0.22rem;
    letter-spacing: 0.1em;
  }
  .traction-num {
    font-size: 0.56rem;
  }
  .traction-num_anchor {
    font-size: 1.4rem;
    letter-spacing: -0.06rem;
  }
  .traction-caption {
    font-size: 0.4rem;
  }
  .traction-card {
    width: 100%;
    padding: 0.5rem 0.45rem;
  }
  .community {
    padding: 1rem 0 1.1rem;
  }
  .community-head {
    padding: 0 0.35rem;
  }
  .community-title {
    max-width: 100%;
  }
  .community-rating {
    gap: 0.18rem;
    margin-top: 0.3rem;
  }
  .community-rating__stars {
    font-size: 0.3rem;
  }
  .community-rating__text {
    font-size: 0.26rem;
  }
  .community-wall {
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.55rem;
    padding: 0 0.35rem;
  }
  .community-col {
    gap: 0.35rem;
  }
  .community-col:nth-child(2), .community-col:nth-child(3), .community-col:nth-child(4) {
    margin-top: 0;
  }
  .community-card {
    border-radius: 0.28rem;
  }
  .community-card--review {
    padding: 0.38rem 0.36rem;
  }
  .community-card--video {
    aspect-ratio: 3/4;
    padding: 0.36rem;
  }
  .community-card__stars {
    font-size: 0.28rem;
  }
  .community-card__title {
    margin-top: 0.22rem;
    font-size: 0.32rem;
  }
  .community-card__quote {
    margin-top: 0.16rem;
    font-size: 0.27rem;
  }
  .community-card__name {
    margin-top: 0.24rem;
    font-size: 0.26rem;
  }
  .community-card__name span {
    font-size: 0.21rem;
  }
  .community-card__play {
    width: 0.64rem;
    height: 0.64rem;
    font-size: 0.24rem;
  }
  .community-card__placeholder {
    font-size: 0.3rem;
  }
  .community-card__placeholder em {
    font-size: 0.22rem;
  }
  .community-card__badge {
    left: 0.2rem;
    right: 0.2rem;
    bottom: 0.2rem;
    gap: 0.14rem;
    padding: 0.16rem 0.18rem;
    border-radius: 0.2rem;
  }
  .community-card__avatar {
    width: 0.52rem;
    height: 0.52rem;
    font-size: 0.24rem;
  }
  .community-card__handle {
    font-size: 0.23rem;
  }
  .community-card__handle em {
    font-size: 0.19rem;
  }
}
.footer {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  flex-wrap: wrap;
  padding: 0.4rem max(0.3rem, calc((100% - 13.2rem) / 2)) 0.5rem;
  background: var(--color-sugar-crystal);
}
.footer-copy {
  font-family: var(--main-font);
  font-size: 0.17rem;
  color: rgba(52, 31, 55, 0.7);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.36rem;
}
.footer-links__item {
  font-family: var(--main-font);
  font-size: 0.17rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: rgba(52, 31, 55, 0.9);
  transition: opacity 0.2s ease;
}
.footer-links__item:hover {
  opacity: 0.75;
}
@media only screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    padding: 0.45rem 0.3rem 0.55rem;
    text-align: center;
  }
  .footer-copy {
    font-size: 0.24rem;
    order: 2;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.24rem;
    column-gap: 0.4rem;
    max-width: 100%;
  }
  .footer-links__item {
    font-size: 0.24rem;
  }
}
