@charset "UTF-8";

/* 作者：搭客佬
链接：https://www.hgmgdjapp.cn/ */

:root {
  --ink: #171b25;
  --muted: #687184;
  --paper: #fffaf5;
  --white: #ffffff;
  --charcoal: #11151e;
  --charcoal-soft: #1a202b;
  --pink: #ee2f6d;
  --coral: #ff5c58;
  --yellow: #ffd84c;
  --rose-soft: #fff0f3;
  --line: #eadfe0;
  --green: #21b77b;
  --container: 1200px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: auto;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

ul,
ol,
p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container,
.header-inner,
.hero-inner,
.footer-inner,
.download-stage {
  width: min(calc(100% - 40px), var(--container));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.98);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  object-fit: contain;
}

.brand-text,
.footer-brand > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.3;
}

.brand strong,
.footer-brand strong {
  font-size: 18px;
  white-space: nowrap;
}

.brand small,
.footer-brand small {
  font-size: 12px;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
}

.main-nav ul {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--pink);
  content: "";
  opacity: 0;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--pink);
}

.main-nav a.is-active::after {
  opacity: 1;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--pink);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

[class^="i-"],
[class*=" i-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.i-menu { background-image: url("../icons/menu.svg"); }
.i-download { background-image: url("../icons/download.svg"); }
.i-search { background-image: url("../icons/search.svg"); }
.i-layers { background-image: url("../icons/layers.svg"); }
.i-bell { background-image: url("../icons/bell.svg"); }
.i-phone { background-image: url("../icons/phone.svg"); }
.i-shield { background-image: url("../icons/shield.svg"); }
.i-lock { background-image: url("../icons/lock.svg"); }
.i-eye { background-image: url("../icons/eye.svg"); }
.i-user { background-image: url("../icons/user.svg"); }
.i-plus { background-image: url("../icons/plus.svg"); }
.i-calendar { background-image: url("../icons/calendar.svg"); }
.i-globe { background-image: url("../icons/globe.svg"); }
.i-avatar { background-image: url("../icons/avatar.svg"); }
.i-top { background-image: url("../icons/top.svg"); }

.hero {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 216, 76, 0.2) 0 72px, transparent 73px),
    linear-gradient(90deg, var(--paper) 0 64%, #fff3f3 64% 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36%;
  background-image: linear-gradient(rgba(238, 47, 109, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 47, 109, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 86px;
}

.hero-copy {
  max-width: 735px;
  padding: 74px 0;
}

.eyebrow,
.section-index,
.download-copy > p {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 8px;
  font-size: clamp(64px, 6.2vw, 94px);
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.25;
}

.hero-description {
  max-width: 680px;
  margin-bottom: 26px;
  color: #515d70;
  font-size: 16px;
  line-height: 1.9;
}

.hero-points {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  display: inline-flex;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #e8d6d8;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-points i {
  width: 18px;
  height: 18px;
}

.hero-action {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.primary-download {
  display: inline-flex;
  min-width: 222px;
  min-height: 58px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  background: linear-gradient(110deg, var(--pink), var(--coral));
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.primary-download i,
.download-stage > a i {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}

.primary-download:hover {
  background: var(--charcoal);
}

.primary-download:hover i {
  filter: brightness(0) invert(1);
}

.age-label {
  color: var(--muted);
  font-size: 12px;
}

.hero-phone {
  display: flex;
  padding: 48px 0;
  justify-content: flex-end;
}

.phone-shell {
  position: relative;
  width: 310px;
  padding: 13px;
  border: 1px solid #12151b;
  border-radius: 46px;
  background: #12151b;
}

.phone-shell::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 94px;
  height: 27px;
  border-radius: 0 0 18px 18px;
  background: #12151b;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 588px;
  padding: 14px 16px 20px;
  border-radius: 31px;
  overflow: hidden;
  background: var(--white);
}

.phone-status {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
}

.phone-status > span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-status > span i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.phone-brand {
  display: flex;
  margin: 20px 0 12px;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}

.phone-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
}

.phone-brand strong {
  font-size: 15px;
}

.phone-welcome {
  margin-bottom: 17px;
  text-align: center;
}

.phone-welcome p {
  margin-bottom: 1px;
  font-size: 22px;
  font-weight: 900;
}

.phone-welcome span {
  color: var(--muted);
  font-size: 12px;
}

.auth-tabs {
  display: grid;
  margin-bottom: 14px;
  border-bottom: 1px solid #e1e3e7;
  grid-template-columns: repeat(2, 1fr);
}

.auth-tabs button {
  position: relative;
  min-height: 42px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.auth-tabs button.is-active {
  color: var(--pink);
}

.auth-tabs button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
}

.auth-form {
  display: none;
}

.auth-form.is-active {
  display: block;
}

.auth-form > label {
  display: block;
  margin-bottom: 10px;
}

.auth-form > label > span:first-child {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
}

.input-wrap {
  display: flex;
  height: 44px;
  padding: 0 10px;
  border: 1px solid #dde0e5;
  align-items: center;
  gap: 7px;
  background: #f8f9fb;
}

.input-wrap > i {
  width: 15px;
  height: 15px;
  opacity: 0.64;
}

.input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}

.input-wrap button {
  padding: 0;
  border: 0;
  color: var(--pink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}

.input-wrap .password-toggle {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.password-toggle i {
  width: 15px;
  height: 15px;
}

.auth-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 3px;
  border: 0;
  color: var(--white);
  background: var(--pink);
  cursor: pointer;
  font-weight: 900;
}

.auth-form > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.auth-form > p button {
  padding: 0;
  border: 0;
  color: var(--pink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.section-heading {
  display: grid;
  margin-bottom: 40px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 44px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  text-align: right;
}

.studio-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--charcoal);
}

.section-heading-light h2,
.section-heading-light > p {
  color: var(--white);
}

.section-heading-light > p {
  opacity: 0.74;
}

.studio-tabs {
  display: flex;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.studio-tabs button {
  min-width: 94px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #424957;
  color: #dbe0e8;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.studio-tabs button.is-active,
.studio-tabs button:hover {
  border-color: var(--pink);
  color: var(--white);
  background: var(--pink);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.8fr);
  gap: 16px;
}

.studio-feature,
.update-queue {
  border: 1px solid #363d48;
  background: var(--charcoal-soft);
}

.studio-feature {
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1.22fr);
}

.studio-feature figure {
  height: 100%;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #252c38;
}

.studio-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.studio-feature-copy {
  display: flex;
  padding: 36px;
  flex-direction: column;
  align-items: flex-start;
}

.studio-feature-copy > p {
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.studio-feature-copy h3 {
  margin-bottom: 9px;
  font-size: 30px;
}

.studio-feature-copy > span {
  color: #bfc6d2;
}

.studio-feature-copy ul {
  display: flex;
  margin: 22px 0;
  flex-wrap: wrap;
  gap: 7px;
}

.studio-feature-copy li {
  padding: 5px 10px;
  border: 1px solid #414a58;
  color: #d9dee6;
  font-size: 12px;
}

.follow-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: var(--pink);
  cursor: pointer;
  font-weight: 900;
}

.follow-button i {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

.follow-button.is-followed {
  color: var(--ink);
  background: var(--yellow);
}

.follow-button.is-followed i {
  filter: none;
}

.watch-progress {
  display: grid;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 8px 12px;
  font-size: 12px;
}

.watch-progress b {
  color: #aeb7c5;
  font-weight: 500;
}

.watch-progress > i {
  position: relative;
  height: 6px;
  grid-column: 1 / 3;
  background: #303845;
}

.watch-progress > i em {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--pink);
}

.watch-progress strong {
  grid-row: 1 / 3;
  grid-column: 3;
}

.update-queue {
  padding: 25px;
}

.queue-title,
.route-list-head {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  justify-content: space-between;
}

.queue-title h3,
.route-list-head h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.queue-title button {
  padding: 0;
  border: 0;
  color: #aeb7c5;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.update-queue ol {
  margin: 0;
}

.update-queue li {
  display: grid;
  min-height: 86px;
  padding: 12px 0;
  border-top: 1px solid #343b46;
  align-items: center;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
}

.update-queue img {
  width: 52px;
  height: 62px;
  object-fit: contain;
  background: #282f3a;
}

.update-queue li > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.update-queue li small {
  color: #9aa4b3;
  font-size: 12px;
}

.update-queue li > button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #47505e;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.route-section,
.screens-section,
.reviews-section {
  padding: 92px 0;
}

.route-section {
  background: var(--paper);
}

.route-board {
  border: 1px solid var(--line);
  background: var(--white);
}

.week-tabs {
  display: grid;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.week-tabs button {
  min-width: 0;
  min-height: 84px;
  padding: 12px 6px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.week-tabs button:last-child {
  border-right: 0;
}

.week-tabs button strong,
.week-tabs button span {
  display: block;
}

.week-tabs button span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.week-tabs button.is-active {
  color: var(--pink);
  background: var(--rose-soft);
}

.route-content {
  display: grid;
  padding: 26px;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
  gap: 20px;
}

.route-list {
  border: 1px solid var(--line);
}

.route-list-head {
  min-height: 60px;
  margin: 0;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.route-list-head span {
  color: var(--muted);
  font-size: 12px;
}

.route-list article {
  display: grid;
  min-height: 78px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
}

.route-list article:last-child {
  border-bottom: 0;
}

.route-list article img {
  width: 52px;
  height: 58px;
  object-fit: contain;
  background: #f4ecec;
}

.route-list article > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.route-list article small {
  color: var(--muted);
  font-size: 12px;
}

.route-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  white-space: nowrap;
}

.route-list input {
  position: absolute;
  opacity: 0;
}

.route-list label i {
  position: relative;
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #cfd3da;
  cursor: pointer;
}

.route-list label i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.route-list input:checked + i {
  background: var(--pink);
}

.route-list input:checked + i::after {
  left: 19px;
}

.route-note {
  display: flex;
  padding: 30px;
  align-items: flex-start;
  flex-direction: column;
  background: linear-gradient(145deg, #fff1d7, #fff8ed);
}

.route-note > i {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
}

.route-note h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.3;
}

.route-note p {
  color: #6d604f;
}

.route-note button {
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.screens-section {
  background: #fff8f5;
}

.screens-grid {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screens-grid figure {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  border: 1px solid #dfd4d4;
  flex-direction: column;
  background: #fff;
}

.screen-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #fff;
}

.screen-viewport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.screens-grid figcaption {
  display: grid;
  min-height: 100px;
  padding: 18px;
  align-items: start;
  grid-template-columns: 36px 1fr;
}

.screens-grid figcaption > span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  grid-row: 1 / 3;
}

.screens-grid figcaption strong {
  min-width: 0;
  font-size: 17px;
}

.screens-grid figcaption small {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.faq-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--charcoal);
}

.faq-section .section-heading h2,
.faq-section .section-heading > p {
  color: var(--white);
}

.faq-section .section-heading > p {
  opacity: 0.72;
}

.faq-list {
  border-top: 1px solid #444b56;
}

.faq-item {
  border-bottom: 1px solid #444b56;
}

.faq-item > button {
  display: grid;
  width: 100%;
  min-height: 76px;
  padding: 0 20px;
  border: 0;
  align-items: center;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  grid-template-columns: 42px 1fr 26px;
  gap: 12px;
  text-align: left;
}

.faq-item > button > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.faq-item > button > strong {
  font-size: 16px;
}

.faq-item > button > i,
.official-site summary > span {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-item > button > i::before,
.faq-item > button > i::after,
.official-site summary > span::before,
.official-site summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item > button > i::after,
.official-site summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open > button > i::after,
.official-site[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  padding: 0 62px 0 74px;
  overflow: hidden;
  color: #bdc4ce;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 24px;
}

.official-site {
  width: 100%;
  margin-top: 22px;
  border: 1px solid var(--yellow);
}

.official-site summary {
  display: grid;
  min-height: 74px;
  padding: 0 20px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 26px 1fr 22px;
  gap: 12px;
}

.official-site summary::-webkit-details-marker {
  display: none;
}

.official-site summary > i {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.official-site > div {
  padding: 0 58px 22px;
}

.official-site a {
  color: var(--yellow);
  overflow-wrap: anywhere;
}

.reviews-section {
  background: #f7ede9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 24px;
  border-top: 4px solid var(--pink);
  background: var(--white);
  flex-direction: column;
}

.review-card:nth-child(3n+2) {
  border-top-color: var(--yellow);
}

.review-head {
  display: grid;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
}

.review-head > i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--rose-soft);
  background-size: 24px 24px;
}

.review-head strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.review-rating {
  color: #f1ae00;
  white-space: nowrap;
}

.review-rating .aiarticle-comment-rating-icon {
  margin-left: 2px;
  font-size: 13px;
}

.review-card > p {
  margin: 18px 0 16px;
  line-height: 1.9;
}

.review-card > time {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding: 62px 0;
  background: linear-gradient(100deg, #9b174d, #251625 72%);
}

.download-stage {
  display: grid;
  min-height: 176px;
  align-items: stretch;
  grid-template-columns: 230px minmax(0, 1fr) 240px;
}

.download-note {
  display: flex;
  padding: 28px;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  flex-direction: column;
}

.download-note span {
  color: var(--yellow);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.download-note strong {
  margin-top: 6px;
  font-size: 16px;
}

.download-copy {
  padding: 26px 38px;
  color: #fff;
}

.download-copy > p {
  margin-bottom: 5px;
  color: var(--yellow);
}

.download-copy h2 {
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1.3;
  white-space: nowrap;
}

.download-copy > span {
  color: #e6cfd8;
}

.download-copy ul {
  display: flex;
  margin: 16px 0 0;
  flex-wrap: wrap;
  gap: 8px;
}

.download-copy li {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  font-size: 12px;
}

.download-stage > a {
  display: flex;
  min-height: 72px;
  padding: 0 24px;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.download-stage > a i {
  filter: none;
}

.download-stage > a:hover {
  color: var(--white);
  background: var(--pink);
}

.download-stage > a:hover i {
  filter: brightness(0) invert(1);
}

.site-footer {
  color: #fff;
  background: #11151e;
}

.footer-inner {
  padding: 38px 0 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand small {
  color: #9ba5b5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer-nav a {
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.copyright {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #9ba5b5;
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  cursor: pointer;
}

.back-top.is-visible {
  display: flex;
}

.back-top i {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 21px;
  }

  .hero-inner {
    gap: 42px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero h2 {
    font-size: 29px;
  }

  .studio-layout {
    grid-template-columns: 1fr;
  }

  .download-stage {
    grid-template-columns: 190px 1fr 200px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .header-inner,
  .hero-inner,
  .footer-inner,
  .download-stage {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: block;
    max-width: none;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: block;
    width: min(calc(100% - 28px), var(--container));
    margin: 0 auto;
  }

  .main-nav li {
    border-bottom: 1px solid var(--line);
  }

  .main-nav li:last-child {
    border-bottom: 0;
  }

  .main-nav a {
    min-height: 50px;
    padding: 0 4px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    background: var(--paper);
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 10px;
  }

  .hero-copy {
    width: 100%;
    max-width: 650px;
    padding: 62px 0 24px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 66px);
    white-space: normal;
  }

  .hero h2 {
    font-size: 27px;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-action {
    align-items: center;
  }

  .hero-phone {
    width: 100%;
    padding: 22px 0 58px;
    justify-content: center;
  }

  .phone-shell {
    width: min(300px, 86vw);
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading > p {
    margin-top: 12px;
    margin-bottom: 0;
    text-align: left;
  }

  .studio-section,
  .route-section,
  .screens-section,
  .faq-section,
  .reviews-section {
    padding: 72px 0;
  }

  .studio-feature {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .route-content {
    grid-template-columns: 1fr;
  }

  .week-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(7, minmax(100px, 1fr));
  }

  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-stage {
    grid-template-columns: 180px 1fr;
  }

  .download-stage > a {
    min-height: 66px;
    grid-column: 1 / 3;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 12px;
  }

  .mobile-download {
    min-height: 40px;
    padding: 0 11px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero h2 {
    margin-bottom: 16px;
    font-size: 23px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-points {
    gap: 7px;
  }

  .hero-points li {
    min-height: 39px;
    padding: 0 10px;
    font-size: 12px;
  }

  .primary-download {
    min-width: 210px;
  }

  .phone-screen {
    min-height: 568px;
  }

  .studio-section,
  .route-section,
  .screens-section,
  .faq-section,
  .reviews-section {
    padding: 58px 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .studio-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .studio-tabs button {
    min-width: 0;
    padding: 0 8px;
  }

  .studio-feature {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .studio-feature figure {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .studio-feature-copy {
    padding: 24px 18px;
  }

  .studio-feature-copy h3 {
    font-size: 25px;
  }

  .update-queue {
    width: 100%;
    min-width: 0;
    padding: 18px;
  }

  .studio-layout {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-feature-copy,
  .queue-title,
  .update-queue ol,
  .update-queue li,
  .update-queue li > span,
  .watch-progress {
    min-width: 0;
  }

  .studio-feature-copy > span,
  .update-queue strong,
  .update-queue small {
    overflow-wrap: anywhere;
  }

  .route-content {
    padding: 12px;
  }

  .route-list article {
    padding: 10px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .route-list article img {
    width: 48px;
    height: 54px;
  }

  .route-list label {
    padding-left: 60px;
    grid-column: 1 / 3;
    justify-content: space-between;
  }

  .route-note {
    padding: 24px;
  }

  .screens-grid {
    gap: 10px;
  }

  .screens-grid figcaption {
    min-height: 94px;
    padding: 12px 8px;
    grid-template-columns: 28px 1fr;
  }

  .screens-grid figcaption strong {
    font-size: 14px;
  }

  .faq-item > button {
    min-height: 74px;
    padding: 0 8px;
    grid-template-columns: 28px 1fr 20px;
    gap: 8px;
  }

  .faq-item > button > strong,
  .official-site strong {
    font-size: 14px;
  }

  .faq-answer > p {
    padding-right: 34px;
    padding-left: 36px;
    font-size: 13px;
  }

  .official-site summary {
    padding: 0 10px;
  }

  .official-site > div {
    padding: 0 38px 20px;
  }

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

  .review-card {
    min-height: 230px;
  }

  .download-section {
    padding: 44px 0;
  }

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

  .download-note {
    min-height: 104px;
    padding: 20px;
    text-align: center;
  }

  .download-note span {
    font-size: 26px;
  }

  .download-copy {
    padding: 24px 18px;
    text-align: center;
  }

  .download-copy h2 {
    font-size: 22px;
  }

  .download-copy ul {
    justify-content: center;
  }

  .download-stage > a {
    width: 100%;
    min-height: 64px;
  }

  .footer-inner {
    padding-top: 36px;
  }

  .footer-nav {
    gap: 12px 16px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  a,
  button,
  summary {
    transition: none !important;
    filter: none !important;
  }
}

@media (max-width: 374px) {
  .container,
  .header-inner,
  .hero-inner,
  .footer-inner,
  .download-stage {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-text {
    max-width: 118px;
  }

  .brand small {
    font-size: 12px;
  }

  .mobile-download {
    padding: 0 8px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .screens-grid figcaption {
    grid-template-columns: 24px 1fr;
  }
}
