:root {
  color-scheme: dark;
  --bg: #0c0d10;
  --muted: #97989f;
  --gold: #efbd68;
  --line: #ffffff15;
  --amber-glow: #c17a2a22;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: #f5f4f1;
  font-family: Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 0;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 1.6px;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
}
.brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 5.3px;
  margin-top: 4px;
  color: #a6a5a7;
}
.header nav {
  display: flex;
  gap: 29px;
  font-size: 13px;
  color: #b5b5bb;
}
.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.language {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #bbb;
  font-size: 17px;
}
.language select {
  background: transparent;
  color: #d6d6d8;
  border: 0;
  font-size: 12px;
  max-width: 115px;
  padding: 8px 0;
}
.language option {
  background: #17181b;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: rgba(28, 29, 33, 0.6);
  border: 1px solid #ffffff24;
  color: var(--gold);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 9px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 650;
  transition:
    transform 0.2s,
    background 0.2s;
  min-height: 52px;
}
.button:hover {
  transform: translateY(-2px);
  background: rgba(48, 49, 54, 0.72);
}
.button.small {
  padding: 11px 17px;
  font-size: 12px;
  min-height: 40px;
}
.secondary {
  background: rgba(28, 29, 33, 0.6);
  border-color: #ffffff24;
  color: var(--gold);
}
.secondary:hover {
  background: rgba(48, 49, 54, 0.72);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  align-items: center;
  gap: 20px;
  padding-top: 52px;
  padding-bottom: 54px;
}
.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 29px;
}
.eyebrow i,
.status-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #efbd68;
  box-shadow: 0 0 15px #efbd6855;
}
h1 {
  font-size: clamp(44px, 4.8vw, 67px);
  line-height: 1.08;
  letter-spacing: -2.8px;
  margin: 0;
  font-weight: 550;
}
h1 em {
  font-style: normal;
  color: var(--gold);
}
.lead {
  color: #aaaab1;
  font-size: 15px;
  line-height: 1.9;
  max-width: 465px;
  margin: 25px 0 31px;
}
.downloads {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.downloads small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 4px;
}
.platform-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
  flex-shrink: 0;
}
.platform-icon {
  filter: sepia(1) saturate(4) hue-rotate(350deg) brightness(1.12);
}
.platform-icon.no-filter {
  filter: none;
}
.ads-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: -9px 0 24px;
  padding: 9px 13px;
  border: 1px solid #efbd6833;
  border-radius: 999px;
  background: #efbd680b;
  color: #e8c98f;
  font-size: 12px;
  box-sizing: border-box;
}
.ads-promo #promo-text,
.ads-promo span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.play-mini {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #16120b;
  padding: 0;
}
.play-mini img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.subnote {
  color: #85858c;
  font-size: 11px;
  margin-top: 21px;
}
.subnote span {
  color: var(--gold);
  margin-right: 5px;
}
.hero-art {
  position: relative;
  min-width: 0;
  height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse, #ae77331c, transparent 69%);
}
.hero-image {
  position: relative;
  width: 115%;
  max-height: 535px;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 18px 40px #0008);
}
.orbit {
  position: absolute;
  border: 1px solid #c9954216;
  border-radius: 50%;
  width: 390px;
  height: 390px;
}
.orbit.one {
  animation: orbit-spin 28s linear infinite;
}
.orbit.two {
  width: 480px;
  height: 480px;
  border-style: dashed;
  animation: orbit-spin 42s linear infinite reverse;
}
@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
.floating-tag .coin {
  font-size: 18px;
}
.art-label {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 9px;
  letter-spacing: 2px;
  color: #646369;
}
.floating-tag {
  position: absolute;
  bottom: 45px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #1c1d22eb;
  border: 1px solid #ffffff1e;
  border-radius: 12px;
  padding: 15px 19px;
  box-shadow: 0 15px 40px #0005;
  backdrop-filter: blur(14px);
}
.coin {
  background: #efbd68;
  color: #352209;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}
.floating-tag small {
  display: block;
  font-size: 10px;
  color: #939298;
  margin-bottom: 5px;
}
.floating-tag strong {
  font-size: 13px;
  font-weight: 500;
}
.status-dot {
  margin-left: 20px;
  background: #8fae82;
}
.art-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 45px;
  color: #6d6963;
  font-size: 10px;
  letter-spacing: 3px;
  display: flex;
  justify-content: space-between;
}
.benefit-strip {
  border-block: 1px solid var(--line);
  background: #111216;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 18px;
}
.strip-inner div {
  font-size: 16px;
  color: #b0b0b7;
  display: flex;
  align-items: center;
  gap: 12px;
}
.strip-inner div span {
  color: var(--gold);
  font-size: 23px;
}
.strip-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #efbd6833;
  background: linear-gradient(145deg, #efbd6818, #efbd6805);
  color: var(--gold);
}
.strip-icon img {
  width: 18px;
  height: 18px;
}
.section {
  padding-top: 92px;
  padding-bottom: 40px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 32px;
}
h2 {
  font-size: 36px;
  letter-spacing: -1.2px;
  font-weight: 500;
  line-height: 1.2;
  margin: 15px 0;
}
.section-head > p {
  max-width: 340px;
}
.section p,
.how-copy > p,
.download-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.section .kicker,
.how-copy .kicker,
.download-panel .kicker {
  color: var(--gold);
  font-size: 13px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(135deg, #1b1c20, #131418);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 27px;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #66676d;
  font-size: 11px;
  margin-bottom: 33px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid #efbd682b;
  border-radius: 10px;
  background: #efbd680a;
  color: var(--gold);
  font-size: 25px;
}
.feature-icon img {
  width: 22px;
  height: 22px;
}
h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 11px;
}
.card p {
  font-size: 13px;
  margin: 0;
}
.how-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 50px;
}
.how-art {
  background: radial-gradient(ellipse, #a17b2512, transparent 70%);
  min-width: 0;
}
.how-art img {
  width: 100%;
  height: auto;
}
.steps {
  margin-top: 29px;
}
.step {
  display: flex;
  gap: 19px;
  margin-top: 25px;
}
.step > span {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #efbd6845;
  border-radius: 50%;
  color: var(--gold);
  font-size: 17px;
  font-weight: 600;
}
.step h3 {
  font-size: 16px;
  margin: 4px 0 7px;
}
.step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
.video-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 85px;
  border-top: 1px solid var(--line);
}
.video-copy > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  background: #111216;
  box-shadow: 0 25px 70px #0006;
}
.video-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #090a0dc9);
}
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border: 1px solid #ffffff66;
  border-radius: 50%;
  background: #0d0e12b3;
  color: var(--gold);
  padding-left: 3px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.video-play img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.video-frame > span {
  position: absolute;
  left: 22px;
  bottom: 19px;
  color: #d2d1d0;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 75px;
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 85px;
}
.reviews-section {
  padding: 10px 0 70px;
}
.reviews-head {
  margin-bottom: 28px;
}
.reviews-head h2 {
  margin: 10px 0 0;
}
.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 42s linear infinite;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.review-card {
  width: 320px;
  flex-shrink: 0;
  padding: 22px 20px 18px;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  background: linear-gradient(160deg, #1b1c20, #121318);
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.review-top strong {
  font-size: 14px;
  font-weight: 600;
}
.review-stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 13px;
}
.review-card p {
  color: #c6c6cc;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 14px;
  min-height: 72px;
}
.review-card small {
  color: #8a8a90;
  font-size: 11px;
  letter-spacing: 0.4px;
}
.text-link {
  font-size: 13px;
  color: var(--gold);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  padding: 23px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  color: var(--gold);
  font-size: 20px;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  margin: 0 22px 23px 0;
}
.download-panel {
  border: 1px solid #ffffff1c;
  border-radius: 18px;
  padding: 43px 40px;
  background: linear-gradient(
    135deg,
    rgba(35, 36, 40, 0.72),
    rgba(10, 11, 14, 0.58)
  );
  box-shadow:
    inset 0 1px #ffffff0a,
    0 24px 70px #0005;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.download-panel h2 {
  font-size: 31px;
}
.download-panel p {
  margin: 8px 0;
}
.download-panel .downloads {
  flex-shrink: 0;
}
footer {
  padding-top: 63px;
  padding-bottom: 25px;
}
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-top > a:last-child {
  font-size: 12px;
  color: #a7a6ad;
}
.footer-top .brand {
  font-size: 12px;
}
.footer-top img {
  height: 42px;
  width: 42px;
}
.subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  max-width: 420px;
}
.subscribe input {
  flex: 1;
  min-width: 180px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  background: rgba(28, 29, 33, 0.7);
  color: #ececef;
  font-size: 13px;
}
.subscribe input::placeholder {
  color: #8a8a90;
}
.subscribe .button {
  min-height: 40px;
  background: var(--gold);
  border-color: var(--gold);
  color: #16120b;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.subscribe .button:hover {
  background: #f0c97a;
  border-color: #f0c97a;
  color: #16120b;
}
.subscribe .button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.subscribe-msg {
  width: 100%;
  margin: 0;
  text-align: right;
  color: var(--gold);
  font-size: 12px;
}
.subscribe-msg[hidden] {
  display: none;
}
.footer-bottom {
  padding-top: 24px;
  font-size: 11px;
  color: #77777f;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.mobile-download {
  display: none;
}
.cloud-download-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("/icons/enter.svg") center / contain no-repeat;
  mask: url("/icons/enter.svg") center / contain no-repeat;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 710px;
  }
}

/* Tablet + large phones: already collapse to single column */
@media (max-width: 980px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header {
    height: 84px;
    gap: 12px;
  }
  .header nav {
    display: none;
  }
  .brand {
    min-width: 0;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .brand span {
    min-width: 0;
  }
  .header-right {
    gap: 8px;
    flex-shrink: 0;
  }
  .header-right > .button {
    display: none;
  }
  .language {
    font-size: 14px;
  }
  .language select {
    max-width: 132px;
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .hero-copy {
    min-width: 0;
  }
  h1 {
    font-size: clamp(34px, 9vw, 46px);
    letter-spacing: -1.4px;
  }
  .lead {
    max-width: none;
    font-size: 14px;
    margin: 18px 0 20px;
  }
  .ads-promo {
    width: 100%;
    border-radius: 14px;
    align-items: flex-start;
    line-height: 1.5;
    gap: 12px;
    padding: 13px 14px;
    font-size: 15px;
    margin: 0 0 22px;
  }
  .play-mini {
    width: 38px;
    height: 38px;
  }
  .play-mini img {
    width: 22px;
    height: 22px;
  }
  .downloads {
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero .downloads {
    flex-direction: row;
    align-items: stretch;
  }
  .hero .downloads .button {
    display: inline-flex;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 13px 10px;
    white-space: normal;
    overflow: hidden;
  }
  .hero .downloads .button > span {
    display: block;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .hero .downloads .button > span > span {
    display: block;
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero .downloads .platform-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
  .hero .downloads small {
    font-size: 9px;
    margin-bottom: 2px;
  }
  .hero-art {
    height: auto;
    min-height: 280px;
    max-width: 420px;
    width: 100%;
    margin: 8px auto 0;
    aspect-ratio: 1 / 1;
  }
  .hero-image {
    width: 92%;
    max-height: none;
  }
  .orbit {
    width: min(72vw, 280px);
    height: min(72vw, 280px);
  }
  .orbit.two {
    width: min(88vw, 340px);
    height: min(88vw, 340px);
  }
  .floating-tag {
    left: 8px;
    right: 8px;
    bottom: 18px;
    width: auto;
    max-width: calc(100% - 16px);
    padding: 12px 14px;
  }
  .floating-tag strong {
    font-size: 12px;
  }
  .art-bottom {
    left: 8px;
    right: 8px;
  }
  .strip-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    min-height: 0;
    padding: 16px 0;
    gap: 14px;
  }
  .strip-inner div {
    font-size: 15px;
    line-height: 1.5;
    gap: 12px;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }
  .strip-icon {
    width: 32px;
    height: 32px;
  }
  .strip-icon img {
    width: 17px;
    height: 17px;
  }
  .section {
    padding-top: 56px;
    padding-bottom: 20px;
  }
  .section-head {
    display: block;
    margin-bottom: 22px;
    gap: 0;
  }
  .section-head > p {
    max-width: none;
  }
  h2 {
    font-size: clamp(26px, 7vw, 32px);
    letter-spacing: -0.8px;
  }
  .cards,
  .eras {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .how-section,
  .video-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .reviews-section {
    padding: 6px 0 48px;
  }
  .reviews-head {
    margin-bottom: 20px;
  }
  .review-card {
    width: 270px;
    padding: 18px 16px 15px;
  }
  .review-card p {
    font-size: 13px;
    min-height: 84px;
  }
  .how-art {
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }
  .how-copy {
    order: 1;
  }
  .video-frame {
    border-radius: 12px;
  }
  .download-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 20px;
  }
  .download-panel h2 {
    font-size: clamp(24px, 6.5vw, 30px);
  }
  .download-panel .downloads {
    width: 100%;
    flex-direction: column;
  }
  .download-panel .button {
    width: 100%;
    justify-content: center;
  }
  .download-panel .button > span {
    text-align: left;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  footer {
    padding-top: 36px;
    padding-bottom: 110px;
  }
  .subscribe {
    max-width: none;
    width: 100%;
    justify-content: stretch;
  }
  .footer-top .subscribe {
    display: none;
  }
  .subscribe-msg {
    text-align: left;
  }
  .mobile-download.mobile-subscribe {
    display: flex;
    position: fixed;
    z-index: 20;
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    box-shadow: 0 5px 35px #000a;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px;
    min-height: 48px;
    font-size: 14px;
    background: rgba(28, 29, 33, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid #ffffff24;
    border-radius: 12px;
    overflow: visible;
  }
  .mobile-subscribe input {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    height: 40px;
    margin: 0;
    box-sizing: border-box;
    background: rgba(12, 13, 16, 0.55);
  }
  .mobile-subscribe .button {
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 14px;
    min-height: 40px;
    white-space: nowrap;
    box-sizing: border-box;
    background: var(--gold);
    border-color: var(--gold);
    color: #16120b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mobile-subscribe .button:hover {
    background: #f0c97a;
    border-color: #f0c97a;
    color: #16120b;
  }
  .mobile-subscribe .subscribe-msg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 8px);
    width: auto;
    margin: 0;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(28, 29, 33, 0.92);
    border: 1px solid #ffffff1a;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header {
    height: 76px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand {
    font-size: 14px;
    gap: 10px;
  }
  .brand-sub {
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 2px;
  }
  .language select {
    max-width: 118px;
    font-size: 11px;
  }
  .mobile-download.mobile-subscribe {
    left: 12px;
    right: 12px;
    padding: 8px;
    gap: 6px;
  }
  .mobile-subscribe .button {
    padding: 10px 12px;
    font-size: 12px;
  }
  .hero .downloads .button {
    padding: 12px 8px;
    gap: 8px;
    font-size: 13px;
  }
  .hero .downloads .button > span > span {
    font-size: 13px;
  }
  .hero .downloads .platform-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  h1 {
    font-size: clamp(30px, 10vw, 38px);
  }
  .hero-art {
    min-height: 240px;
  }
  .card,
  .era {
    padding: 20px;
  }
  .step {
    gap: 14px;
  }
  summary {
    font-size: 13px;
    padding: 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
  .orbit.one,
  .orbit.two {
    animation: none !important;
  }
  .reviews-track {
    animation: none;
  }
}

.eras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.era {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 24px;
  background: linear-gradient(160deg, #1b1c20, #121318);
}
.era .era-no {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.era h3 {
  margin-bottom: 8px;
}
.era p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
@media (max-width: 980px) {
  .eras {
    grid-template-columns: 1fr;
  }
}

.legal-home {
  font-size: 13px;
  color: #b5b5bb;
  white-space: nowrap;
}
.legal-home:hover {
  color: var(--gold);
}
.legal-page {
  padding-top: 48px;
  padding-bottom: 72px;
  max-width: 800px;
}
.legal-page h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -1.4px;
  margin: 8px 0 12px;
  font-weight: 550;
}
.legal-updated {
  color: var(--gold);
  font-size: 13px;
  margin: 0 0 20px;
}
.legal-intro {
  color: #c8c8ce;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 36px;
}
.legal-body section {
  margin-bottom: 28px;
}
.legal-body h2 {
  font-size: 18px;
  font-weight: 650;
  margin: 0 0 10px;
  color: #f5f4f1;
}
.legal-body p {
  margin: 0;
  color: #aaaab1;
  font-size: 15px;
  line-height: 1.85;
}
.legal-footer {
  padding-top: 24px;
  padding-bottom: 40px;
  border-top: 1px solid var(--line);
}
.legal-footer .footer-bottom {
  width: 100%;
}

@media (max-width: 900px) {
  .legal-home {
    display: none;
  }
  .legal-page {
    padding-top: 28px;
    padding-bottom: 48px;
  }
}

