main { overflow-x: clip; }

.hero { padding-block: clamp(36px, 7vw, 88px) 0; }

.hero-head {
  display: grid;
  gap: 28px;
  align-items: end;
}

@media (min-width: 960px) {
  .hero-head { grid-template-columns: minmax(0, 1fr) auto; gap: 48px; }
}

.hero h1 { font-size: clamp(2.9rem, .6rem + 7.6vw, 7rem); }

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

.hero-head { margin-top: 26px; }

.hero-cta { display: grid; justify-items: start; }

@media (min-width: 960px) {
  .hero-cta { justify-items: end; text-align: right; }
}

.player {
  position: relative;
  margin-top: clamp(36px, 6vw, 64px);
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(38% 60% at 50% 38%, rgba(255, 186, 120, .55), transparent 70%),
    radial-gradient(30% 50% at 84% 22%, rgba(0, 188, 231, .35), transparent 70%),
    radial-gradient(40% 60% at 12% 80%, rgba(201, 78, 255, .35), transparent 70%),
    linear-gradient(180deg, #2B2433 0%, #17141C 62%, #0D0C10 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 40px 90px -30px rgba(0, 0, 0, .8);
}

.player::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34%;
  height: 62%;
  transform: translateX(-50%);
  border-radius: 48% 48% 0 0 / 38% 38% 0 0;
  background: linear-gradient(180deg, #0A090C, #050506);
  opacity: .82;
  z-index: -1;
}

.player::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 58%;
  width: 13%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #0A090C;
  z-index: -1;
}

.cap {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 17%;
  text-align: center;
  font-size: clamp(20px, 4.6vw, 58px);
  line-height: 1.1;
  min-height: 1.2em;
}

.cap .capword { text-transform: none; color: #fff; }
.cap .w { display: inline-block; opacity: 0; transform: scale(.7) translateY(.08em); transition: opacity .12s, transform .28s cubic-bezier(.3, 1.4, .5, 1); }
.cap .w.on { opacity: 1; transform: none; }
.cap .w.now { color: var(--yellow); }

.bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 clamp(10px, 2vw, 20px) clamp(8px, 1.4vw, 14px);
  background: linear-gradient(0deg, rgba(0, 0, 0, .65), transparent);
}

.track { height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .25); overflow: hidden; }
.track i { display: block; height: 100%; width: 38%; background: var(--rain); }

.controls { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 18px); margin-top: clamp(6px, 1vw, 10px); }
.controls svg { width: clamp(16px, 2vw, 22px); height: clamp(16px, 2vw, 22px); }
.controls .time { font-size: clamp(11px, 1.2vw, 14px); color: rgba(255, 255, 255, .85); font-variant-numeric: tabular-nums; }
.controls .sp { flex: 1; }
.cc { position: relative; }
.cc::after { content: ""; position: absolute; left: 10%; right: 10%; bottom: -5px; height: 2px; border-radius: 1px; background: var(--red); }

.menu {
  position: absolute;
  right: clamp(10px, 2vw, 20px);
  bottom: clamp(52px, 7vw, 76px);
  width: 220px;
  padding: 8px 0;
  border-radius: 12px;
  background: rgba(28, 28, 32, .9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.menu h3 { margin: 0; padding: 6px 16px 8px; font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .6); border-bottom: 1px solid rgba(255, 255, 255, .08); }

.langs { list-style: none; margin: 6px 0 0; padding: 0; }

.langs button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 34px;
  padding: 4px 16px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
}

.langs button:hover { background: rgba(255, 255, 255, .08); }
.langs button::before { content: ""; width: 14px; height: 14px; flex: none; }
.langs button[aria-pressed="true"]::before { background: no-repeat center / 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E"); }

.chips { display: none; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }

.chips button {
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
}

.chips button[aria-pressed="true"] { background: #fff; border-color: #fff; color: #111; }

@media (max-width: 759px) {
  .menu { display: none; }
  .chips { display: flex; }
}

.player-note { margin: 16px 0 0; font-size: 15px; color: rgba(255, 255, 255, .55); max-width: 44em; }

.how { padding-block: clamp(80px, 12vw, 150px) clamp(40px, 6vw, 80px); }

.how-grid { display: grid; gap: 56px; margin: 0; padding: 0; list-style: none; }

@media (min-width: 900px) {
  .how-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
}

.how h2 { font-size: clamp(2.4rem, 1.2rem + 3.4vw, 3.6rem); }
.how .lead { font-size: 17px; margin-top: 18px; }

.how .capword { text-transform: none; }

.pricing { padding-block: clamp(80px, 12vw, 150px); text-align: center; }
.pricing h2 { font-size: clamp(2.6rem, 1rem + 6.2vw, 5.6rem); }
.pricing .display .l { margin-inline: auto; }
.pricing .plan-card { margin: 48px auto 0; text-align: left; }
.pricing .lead { margin: 32px auto 0; }
.pricing .free { margin: 14px auto 0; font-size: 15px; color: rgba(255, 255, 255, .5); max-width: 32em; }

.faq { padding-block: 0 clamp(80px, 10vw, 120px); max-width: 760px; }
.faq h2 { font-family: var(--display); font-weight: 800; letter-spacing: -.03em; font-size: clamp(1.8rem, 1rem + 2vw, 2.4rem); margin: 0 0 18px; }

.faq details { border-top: 1px solid rgba(255, 255, 255, .1); }
.faq details:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; line-height: 1; color: rgba(255, 255, 255, .5); transition: transform .3s var(--k); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: rgba(255, 255, 255, .62); max-width: 40em; }
