.pricingBody .navLinks a.active {
  color: #fff;
}

.pricingPage {
  padding: 118px 0 0;
}

.pricingHero {
  width: min(980px, calc(100% - 34px));
  margin: 0 auto 42px;
  text-align: center;
}

.pricingHero h1 {
  font-size: clamp(46px, 7vw, 92px);
}

.pricingHero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.pricingGrid {
  width: min(1200px, calc(100% - 34px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.pricingGridFive {
  width: max-content;
  max-width: calc(100% - 34px);
  grid-template-columns: repeat(var(--plan-count, 5), minmax(0, 226px));
  justify-content: center;
}

.priceCard {
  position: relative;
  overflow: hidden;
  min-height: 504px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  padding: 28px 24px 22px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(12, 15, 26, .88);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  opacity: 1;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.loadingCard {
  min-height: 180px;
  display: grid;
  place-items: center;
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 900;
}

.freeCard {
  background:
    linear-gradient(90deg, rgba(36,215,255,.1), transparent 62%),
    linear-gradient(150deg, rgba(22,135,255,.2), rgba(255,255,255,.025)),
    rgba(12, 15, 26, .9);
}

.priceCard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(36,215,255,.14), transparent);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity .24s ease, transform .6s ease;
}

.priceCard:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background:
    linear-gradient(150deg, rgba(22,135,255,.18), rgba(255,255,255,.035)),
    rgba(12, 15, 26, .92);
}

.priceCard:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.priceCard.featured {
  border-color: rgba(36, 215, 255, .82);
  box-shadow: 0 30px 110px rgba(22,135,255,.24);
}

.recommend {
  position: absolute;
  right: 18px;
  top: 18px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: #06101f;
  background: linear-gradient(90deg, #24d7ff, #33d39f);
  font-size: 12px;
  font-weight: 950;
}

.activityRibbon {
  position: absolute;
  right: -34px;
  top: 22px;
  z-index: 2;
  width: 128px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  color: #211706;
  background: #ffd15d;
  font-size: 12px;
  font-weight: 950;
}

.planSymbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  color: rgba(255,255,255,.88);
  font-weight: 950;
}

.planLabel {
  margin: 24px 0 18px;
  color: rgba(226,240,255,.7);
  font-weight: 900;
}

.priceCard h2 {
  min-height: 52px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 24px;
  color: #fff;
  font-size: 30px;
}

.priceCard .planTitle {
  min-height: 32px;
  margin: 0 0 18px;
  display: block;
  font-size: 24px;
  line-height: 1.22;
}

.livePrice {
  min-height: 58px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0 0 20px;
  color: #fff;
}

.livePrice::before {
  content: "¥";
  font-size: 28px;
  font-weight: 950;
}

.livePrice span {
  font-size: clamp(42px, 4vw, 54px);
  line-height: .95;
  font-weight: 950;
}

.livePrice em {
  color: rgba(235,245,255,.78);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
}

.livePrice del {
  margin-left: auto;
  color: rgba(235,245,255,.5);
  font-size: 13px;
  font-weight: 900;
}

.promoBox {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  border: 1px solid rgba(255, 209, 93, .58);
  border-radius: 10px;
  padding: 12px;
  margin: 0 0 18px;
  background: rgba(255, 209, 93, .08);
}

.promoBox b {
  color: #ffd15d;
  font-size: 14px;
}

.promoBox strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: #ffd15d;
  font-size: 30px;
}

.promoBox small {
  color: rgba(255,255,255,.9);
  line-height: 1.35;
}

.priceCard h2 span {
  font-size: 22px;
}

.priceCard h2 em {
  color: rgba(235,245,255,.72);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}

.priceCard h2 del {
  margin-left: auto;
  color: rgba(235,245,255,.48);
  font-size: 14px;
  font-weight: 800;
}

.planButton {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  color: #07111e;
  background: #fff;
  font-weight: 950;
  transition: transform .22s ease, box-shadow .22s ease;
  border: 0;
  cursor: pointer;
}

.planButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(36,215,255,.22);
}

.planButton.accent {
  color: #06101f;
  background: linear-gradient(90deg, #24d7ff, #33d39f);
}

.planButton.muted {
  color: #fff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.1);
}

.planButton:disabled,
.planButton:disabled:hover {
  transform: none;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.08);
  box-shadow: none;
  cursor: not-allowed;
}

.priceCard ul {
  min-height: 154px;
  margin: 22px 0 18px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  list-style: none;
}

.priceCard li {
  position: relative;
  padding-left: 18px;
  margin: 0 0 13px;
  color: rgba(235,245,255,.82);
  line-height: 1.45;
}

.priceCard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(36,215,255,.7);
}

.priceCard small {
  color: var(--faint);
  font-weight: 800;
}

.sectionTitle {
  text-align: center;
  margin-bottom: 26px;
}

.sectionTitle h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
}

.compareSection,
.pricingVoices,
.pricingFaq {
  width: min(1180px, calc(100% - 34px));
  margin: 84px auto 0;
}

.compareWrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.compareTable {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compareTable th,
.compareTable td {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  text-align: left;
  color: rgba(235,245,255,.82);
}

.compareTable th {
  color: #fff;
  font-size: 18px;
}

.compareTable td:first-child {
  color: #fff;
  font-weight: 900;
}

.compareTable tr:last-child td {
  border-bottom: 0;
}

.pricingVoices {
  width: min(1240px, calc(100% - 34px));
}

.voiceStack {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  min-height: 440px;
}

.voiceCard {
  position: relative;
  width: 108px;
  min-width: 86px;
  display: grid;
  grid-template-columns: 108px minmax(0, 0fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(17, 20, 31, .92);
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
  cursor: default;
  outline: none;
  transition: width .42s cubic-bezier(.2,.8,.2,1), border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.voiceCard:nth-child(2),
.voiceCard:nth-child(5) {
  transform: translateY(32px);
}

.voiceCard:nth-child(3) {
  transform: translateY(-26px);
}

.voiceCard:nth-child(4) {
  transform: translateY(10px);
}

.voiceCard.active,
.voiceCard:hover,
.voiceCard:focus-visible,
.voiceStack:hover .voiceCard:hover,
.voiceStack:focus-within .voiceCard:focus-visible {
  width: 508px;
  grid-template-columns: 184px minmax(280px, 1fr);
  border-color: rgba(36,215,255,.52);
  box-shadow: 0 30px 100px rgba(22,135,255,.18);
  transform: translateY(-10px);
}

.voiceStack:hover .voiceCard.active:not(:hover),
.voiceStack:focus-within .voiceCard.active:not(:focus-visible) {
  width: 108px;
  grid-template-columns: 108px minmax(0, 0fr);
  border-color: rgba(255,255,255,.11);
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
}

.voicePortrait {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 23%, rgba(255,232,214,.9) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 38%, rgba(35,25,24,.95) 0 13%, transparent 14%),
    linear-gradient(180deg, #b8c7d3 0 28%, #f1c7aa 29% 55%, #163254 56% 100%);
}

.voicePortrait::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 78px;
  width: 76px;
  height: 82px;
  border-radius: 46% 46% 44% 44%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 36% 48%, #1a1d24 0 3px, transparent 4px),
    radial-gradient(circle at 64% 48%, #1a1d24 0 3px, transparent 4px),
    radial-gradient(ellipse at 50% 72%, rgba(184,76,76,.55) 0 10%, transparent 11%),
    linear-gradient(180deg, #f2cfb8, #dcaa8d);
  box-shadow: 0 20px 0 -6px rgba(255,255,255,.16);
}

.voicePortrait::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58px;
  width: 92px;
  height: 54px;
  border-radius: 48% 48% 28% 28%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #111827, #05070c);
  box-shadow: 16px 22px 0 -16px #0b1020, -18px 20px 0 -15px #0b1020;
}

.voicePortrait span {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.92);
  background: rgba(5,10,20,.44);
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.portraitTwo {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,232,214,.9) 0 13%, transparent 14%),
    linear-gradient(180deg, #c6d4dc 0 30%, #f3c9ae 31% 58%, #d9e3e9 59% 100%);
}

.portraitTwo::after,
.portraitFive::after {
  width: 102px;
  height: 62px;
  border-radius: 50% 50% 32% 32%;
  background: linear-gradient(135deg, #17120f, #030407);
}

.portraitThree {
  background:
    radial-gradient(circle at 50% 22%, rgba(255,232,214,.9) 0 12%, transparent 13%),
    linear-gradient(180deg, #afbfca 0 29%, #efc3a7 30% 57%, #0e1526 58% 100%);
}

.portraitFour {
  background:
    radial-gradient(circle at 50% 21%, rgba(255,232,214,.9) 0 13%, transparent 14%),
    linear-gradient(180deg, #bac8d0 0 30%, #e5b18f 31% 56%, #1d3a5d 57% 100%);
}

.portraitFive {
  background:
    radial-gradient(circle at 50% 22%, rgba(255,232,214,.9) 0 12%, transparent 13%),
    linear-gradient(180deg, #c4d0d8 0 30%, #f0c3a7 31% 57%, #efe6df 58% 100%);
}

.voiceCopy {
  width: 324px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 42px 36px 36px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .24s ease .12s, transform .32s ease .08s;
}

.voiceCard.active .voiceCopy,
.voiceCard:hover .voiceCopy,
.voiceCard:focus-visible .voiceCopy {
  opacity: 1;
  transform: translateX(0);
}

.voiceStack:hover .voiceCard.active:not(:hover) .voiceCopy,
.voiceStack:focus-within .voiceCard.active:not(:focus-visible) .voiceCopy {
  opacity: 0;
  transform: translateX(-16px);
}

.voiceCopy p {
  margin: 0;
  color: rgba(235,245,255,.9);
  font-size: 17px;
  line-height: 1.78;
}

.voiceCopy strong,
.voiceCopy span {
  display: block;
}

.voiceCopy strong {
  color: #fff;
  font-size: 17px;
}

.voiceCopy span {
  margin-top: 6px;
  color: rgba(36,215,255,.78);
  font-size: 13px;
  font-weight: 800;
}

.pricingFaq {
  display: grid;
  gap: 12px;
}

.pricingFaq details {
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 0 0 16px;
}

.pricingFaq summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.pricingFaq summary::after {
  content: "+";
  color: rgba(255,255,255,.7);
  font-size: 22px;
}

.pricingFaq details[open] summary::after {
  content: "-";
}

.pricingFaq p {
  max-width: 820px;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.75;
}

.pricingDownload {
  margin-top: 76px;
}

.pricingAccount {
  width: min(780px, calc(100% - 34px));
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -18px auto 28px;
  border: 1px solid rgba(36,215,255,.22);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255,255,255,.055);
  color: rgba(235,245,255,.8);
}

.pricingAccount[hidden] {
  display: none;
}

.pricingAccount b {
  color: #fff;
}

.pricingAccount button {
  min-height: 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.pricingAccount #loginTopBtn {
  min-width: 112px;
  border-color: rgba(36,215,255,.5);
  color: #06101f;
  background: linear-gradient(90deg, #24d7ff, #33d39f);
  font-weight: 900;
}

.payOverlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(16px);
}

.payOverlay[hidden] {
  display: none;
}

.payDialog {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(36,215,255,.34);
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(22,135,255,.18), rgba(255,255,255,.04)),
    rgba(7, 12, 24, .96);
  box-shadow: 0 34px 120px rgba(0,0,0,.58);
}

.payDialog h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
}

.modalClose {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.07);
  cursor: pointer;
  font-size: 22px;
}

.modalHint,
.formMessage {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.authTabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 14px;
}

.authTabs button,
.smsRow button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.07);
  cursor: pointer;
  font-weight: 900;
}

.authTabs button.active {
  color: #06101f;
  background: #fff;
}

.authForm {
  display: grid;
  gap: 10px;
}

.authForm input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255,255,255,.07);
  outline: none;
}

.authForm input:focus {
  border-color: rgba(36,215,255,.65);
  box-shadow: 0 0 0 3px rgba(36,215,255,.13);
}

.hidden {
  display: none !important;
}

.smsRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 8px;
}

.modalPrice {
  margin: 8px 0 12px;
  color: #fff;
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.modalAccount {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px;
  color: rgba(235,245,255,.86);
  background: rgba(255,255,255,.06);
}

.qrBox {
  width: 268px;
  height: 268px;
  display: grid;
  place-items: center;
  margin: 18px auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 10px;
  color: var(--muted);
  background: #fff;
}

.qrBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qrBox.successBox {
  gap: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 28%, rgba(51, 211, 159, .34), transparent 58%),
    rgba(51, 211, 159, .12);
  border-color: rgba(51, 211, 159, .72);
}

.successMark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06101f;
  background: linear-gradient(90deg, #24d7ff, #33d39f);
  font-size: 48px;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(51, 211, 159, .26);
}

.qrBox.successBox strong {
  font-size: 20px;
  font-weight: 950;
}

.modalActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.modalActions.successMode {
  grid-template-columns: 1fr;
}

@media (max-width: 920px) {
  .pricingGrid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .pricingBody .siteHeader {
    height: auto;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .pricingBody .navLinks {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    width: 100%;
    order: 3;
  }

  .pricingBody .pricingPage {
    padding-top: 136px;
  }
}

@media (max-width: 620px) {
  .pricingBody .pricingPage {
    padding-top: 132px;
  }

  .pricingBody .siteHeader {
    gap: 8px 12px;
  }

  .pricingBody .navLinks {
    gap: 18px;
  }

  .pricingHero h1 {
    font-size: 42px;
  }

  .pricingGrid {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .priceCard {
    min-height: auto;
  }

  .priceCard ul {
    min-height: 0;
  }

  .modalActions {
    grid-template-columns: 1fr;
  }

  .compareSection,
  .pricingVoices,
  .pricingFaq {
    width: calc(100% - 28px);
    margin-top: 62px;
  }

  .voiceStack {
    min-height: 0;
    flex-direction: column;
  }

  .voiceCard,
  .voiceCard.active,
  .voiceCard:hover,
  .voiceCard:focus-visible,
  .voiceStack:hover .voiceCard.active:not(:hover),
  .voiceStack:focus-within .voiceCard.active:not(:focus-visible) {
    width: 100%;
    grid-template-columns: 86px minmax(0, 1fr);
    transform: none;
  }

  .voiceCard:nth-child(n) {
    transform: none;
  }

  .voicePortrait {
    min-height: 220px;
  }

  .voiceCopy,
  .voiceCard.active .voiceCopy,
  .voiceCard:hover .voiceCopy,
  .voiceCard:focus-visible .voiceCopy,
  .voiceStack:hover .voiceCard.active:not(:hover) .voiceCopy,
  .voiceStack:focus-within .voiceCard.active:not(:focus-visible) .voiceCopy {
    width: auto;
    opacity: 1;
    transform: none;
    padding: 24px 18px;
  }

  .voiceCopy p {
    font-size: 15px;
  }

  .compareTable th,
  .compareTable td {
    padding: 16px;
  }
}
