@charset "UTF-8";

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

:root {
  --ink: #071a36;
  --ink-deep: #031127;
  --blue: #1d5fe9;
  --ice: #eaf5ff;
  --ice-strong: #cfe8ff;
  --coral: #ff5964;
  --paper: #f8fbff;
  --white: #ffffff;
  --muted: #61738d;
  --line: #b9cee5;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

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

ul {
  padding: 0;
  list-style: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(166, 196, 226, .22);
  background: var(--ink-deep);
}

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

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

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  color: var(--white);
  font-size: 18px;
  white-space: nowrap;
}

.brand-copy span {
  color: #a9bed5;
  font-size: 12px;
  white-space: nowrap;
}

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

.main-nav a {
  position: relative;
  display: block;
  padding: 27px 0 24px;
  color: #d9e7f6;
  font-weight: 700;
  white-space: nowrap;
}

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

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

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

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

.header-download {
  padding: 9px 14px;
  color: var(--white);
  background: var(--coral);
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid #6f87a2;
  place-items: center;
}

[class^="i-"],
[class*=" i-"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.i-menu { background-image: url("../icons/menu.svg"); }
.i-search { background-image: url("../icons/search.svg"); }
.i-heart { background-image: url("../icons/heart.svg"); }
.i-bell { background-image: url("../icons/bell.svg"); }
.i-download { background-image: url("../icons/download.svg"); }
.i-mail { background-image: url("../icons/mail.svg"); }
.i-user { background-image: url("../icons/user.svg"); }
.i-lock { background-image: url("../icons/lock.svg"); }
.i-eye { background-image: url("../icons/eye.svg"); }
.i-globe { background-image: url("../icons/globe.svg"); }
.i-arrow { background-image: url("../icons/arrow.svg"); }
.i-top { background-image: url("../icons/top.svg"); }
.i-avatar { background-image: url("../icons/avatar.svg"); }

main {
  padding-top: var(--header-height);
}

.hero {
  min-height: 690px;
  color: var(--white);
  background:
    linear-gradient(rgba(69, 128, 205, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 128, 205, .09) 1px, transparent 1px),
    var(--ink-deep);
  background-size: 42px 42px;
}

.hero-inner {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 80px;
}

.hero-copy {
  max-width: 690px;
  padding: 72px 0;
}

.eyebrow,
.section-index {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(72px, 8vw, 124px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .94;
  white-space: nowrap;
}

.hero-copy h2 {
  margin-top: 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
}

.hero-description {
  max-width: 650px;
  margin-top: 22px;
  color: #bad0e7;
  font-size: 16px;
}

.feature-list {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.feature-list i {
  filter: brightness(0) saturate(100%) invert(48%) sepia(81%) saturate(2650%) hue-rotate(326deg) brightness(104%) contrast(104%);
}

.primary-download {
  display: inline-flex;
  min-width: 214px;
  height: 58px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  background: var(--coral);
  font-size: 17px;
  font-weight: 800;
}

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

.primary-download:hover {
  color: var(--ink-deep);
  background: var(--ice);
}

.primary-download:hover i {
  filter: none;
}

.update-label {
  display: block;
  margin-top: 10px;
  color: #91aac5;
  font-size: 12px;
}

.hero-phone-wrap {
  display: flex;
  justify-content: flex-end;
}

.phone-shell {
  position: relative;
  width: 292px;
  padding: 13px;
  border: 2px solid #8399b3;
  border-radius: 42px;
  background: #050c16;
}

.phone-shell::before {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #050c16;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 548px;
  overflow: hidden;
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
}

.phone-status {
  display: flex;
  height: 44px;
  padding: 12px 18px 0;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
}

.phone-signal {
  letter-spacing: 2px;
}

.phone-app {
  padding: 18px 22px 24px;
}

.phone-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.phone-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
}

.phone-logo strong {
  font-size: 16px;
}

.phone-kicker {
  margin-top: 19px;
  font-size: 23px;
  font-weight: 900;
}

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

.auth-tabs {
  display: grid;
  margin-top: 16px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.auth-tab {
  position: relative;
  padding: 10px 4px;
  color: var(--muted);
  font-weight: 700;
}

.auth-tab.is-active {
  color: var(--blue);
}

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

.auth-form {
  display: grid;
  margin-top: 14px;
  gap: 9px;
}

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

.input-shell {
  display: flex;
  height: 43px;
  border: 1px solid #d4deea;
  align-items: center;
  background: #f6f9fc;
}

.input-shell > i {
  margin-left: 12px;
  opacity: .65;
}

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

.password-toggle {
  display: grid;
  width: 42px;
  height: 100%;
  flex: 0 0 42px;
  place-items: center;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.remember {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.remember input {
  accent-color: var(--blue);
}

.text-button {
  color: var(--blue);
  font-size: 12px;
}

.auth-submit {
  height: 43px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.auth-message {
  min-height: 20px;
  color: var(--coral);
  font-size: 12px;
  text-align: center;
}

.section {
  padding: 100px 0;
}

.section-heading {
  display: flex;
  margin-bottom: 52px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
}

.section-heading > p {
  max-width: 460px;
  padding-bottom: 8px;
  color: var(--muted);
  text-align: right;
}

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

.route-layout {
  display: grid;
  border: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.today-board,
.genre-board {
  padding: 40px;
}

.today-board {
  border-right: 1px solid var(--line);
}

.board-head,
.genre-head {
  display: flex;
  min-height: 72px;
  align-items: flex-start;
  justify-content: space-between;
}

.board-head div,
.shelf-title {
  display: flex;
  flex-direction: column;
}

.board-head span,
.genre-head p,
.shelf-title span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.board-head strong,
.genre-head h3,
.shelf-title strong {
  margin-top: 3px;
  font-size: 25px;
}

.live-badge {
  padding: 5px 10px;
  color: var(--coral) !important;
  border: 1px solid #ffbdc1;
  background: #fff0f1;
  letter-spacing: 0 !important;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  width: 100%;
  min-height: 74px;
  border-bottom: 1px solid #dfe9f3;
  align-items: center;
  grid-template-columns: 66px 20px 1fr;
  text-align: left;
}

.timeline-item time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.route-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.timeline-item strong,
.timeline-item small {
  display: block;
}

.timeline-item strong {
  font-size: 16px;
}

.timeline-item small {
  color: var(--muted);
  font-size: 12px;
}

.timeline-item.is-active {
  color: var(--blue);
}

.timeline-item.is-active .route-dot {
  background: var(--coral);
  border-color: var(--coral);
}

.genre-head {
  display: block;
}

.genre-grid {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.genre-card {
  min-height: 115px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.genre-card span,
.genre-card strong,
.genre-card small {
  display: block;
}

.genre-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.genre-card strong {
  margin-top: 5px;
  font-size: 18px;
}

.genre-card small {
  color: var(--muted);
  font-size: 12px;
}

.genre-card.is-active {
  color: var(--white);
  background: var(--blue);
}

.genre-card.is-active span,
.genre-card.is-active small {
  color: var(--white);
}

.genre-result {
  margin-top: 20px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--ice);
  font-size: 12px;
}

.tracker-section {
  color: var(--white);
  background: var(--ink-deep);
}

.light-heading > p {
  color: #a9bed5;
}

.tracker-layout {
  display: grid;
  grid-template-columns: 1.4fr .75fr;
  gap: 20px;
}

.week-panel,
.shelf-panel {
  border: 1px solid #315071;
  background: #071b36;
}

.week-tabs {
  display: grid;
  border-bottom: 1px solid #315071;
  grid-template-columns: repeat(4, 1fr);
}

.week-tab {
  min-height: 58px;
  color: #99b1ca;
  border-right: 1px solid #315071;
  font-weight: 800;
}

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

.week-tab.is-active {
  color: var(--ink-deep);
  background: var(--coral);
}

.week-list {
  padding: 12px 28px 20px;
}

.week-list article {
  display: grid;
  min-height: 82px;
  border-bottom: 1px solid #27435f;
  align-items: center;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
}

.week-list article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.week-list article strong,
.week-list article p {
  display: block;
}

.week-list article strong {
  font-size: 16px;
}

.week-list article p {
  color: #a9bed5;
  font-size: 12px;
}

.week-list article em {
  color: #8cd8ff;
  font-size: 12px;
  font-style: normal;
}

.shelf-panel {
  padding: 28px;
}

.shelf-title span {
  color: var(--coral);
}

.shelf-stats {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid #315071;
  border-left: 1px solid #315071;
  grid-template-columns: repeat(3, 1fr);
}

.shelf-stats div {
  display: flex;
  min-height: 96px;
  border-right: 1px solid #315071;
  border-bottom: 1px solid #315071;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shelf-stats strong {
  color: var(--coral);
  font-size: 26px;
}

.shelf-stats span {
  color: #aac0d6;
  font-size: 12px;
}

.progress-group {
  margin-top: 22px;
}

.progress-group p {
  display: flex;
  margin-top: 12px;
  justify-content: space-between;
  font-size: 12px;
}

.progress {
  display: block;
  height: 6px;
  margin-top: 6px;
  background: #24405d;
}

.progress i {
  display: block;
  height: 100%;
  background: var(--coral);
}

.shelf-button {
  width: 100%;
  height: 46px;
  margin-top: 26px;
  color: var(--white);
  border: 1px solid #597593;
  font-weight: 800;
}

.shelf-button.is-refreshed {
  color: var(--ink-deep);
  background: var(--ice-strong);
}

.screens-section {
  background: #f8fbff;
}

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

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

.screen-image {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #edf4fb;
}

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

.screen-card figcaption {
  display: grid;
  min-height: 92px;
  padding: 18px;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
}

.screen-card figcaption > span {
  color: var(--coral);
  font-weight: 900;
  grid-row: 1 / 3;
}

.screen-card figcaption strong {
  font-size: 16px;
}

.screen-card figcaption small {
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: var(--ice);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item > button,
.website-faq > button {
  display: flex;
  width: 100%;
  min-height: 70px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.faq-item button span,
.website-faq button span {
  display: flex;
  align-items: center;
  gap: 22px;
}

.faq-item em {
  color: var(--coral);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.faq-item strong,
.website-faq strong {
  font-size: 16px;
}

.faq-item button > i,
.toggle-mark {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item button > i::before,
.faq-item button > i::after,
.toggle-mark::before,
.toggle-mark::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-item button > i::after,
.toggle-mark::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] > i::after,
.website-faq button[aria-expanded="true"] .toggle-mark::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 72px 24px;
  color: var(--muted);
}

.website-faq {
  width: 100%;
  margin-top: 24px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.website-faq .i-globe {
  filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(2392%) hue-rotate(212deg) brightness(95%) contrast(92%);
}

.website-answer {
  padding: 0 66px 22px;
}

.website-answer a {
  color: var(--blue);
  word-break: break-all;
}

.reviews-section {
  color: var(--white);
  background: var(--ink-deep);
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 238px;
  padding: 24px 24px 52px;
  border-top: 3px solid var(--coral);
  flex-direction: column;
  background: #0a2241;
}

.review-card:nth-child(even) {
  border-top-color: #70c7ff;
}

.review-head {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
}

.review-head .i-avatar {
  width: 42px;
  height: 42px;
  border: 1px solid #507295;
  border-radius: 50%;
  background-color: #0e2b50;
  background-size: 22px;
}

.review-head strong {
  font-size: 14px;
}

.review-rating {
  display: inline-flex;
  color: #ffd25c;
  gap: 2px;
}

.review-rating i {
  color: #ffd25c;
}

.review-card > p {
  margin-top: 20px;
  color: #d3e3f2;
  font-size: 14px;
  line-height: 1.9;
}

.review-card time {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: #8fa9c3;
  font-size: 12px;
}

.download-section {
  padding: 62px 0;
  background: var(--ice-strong);
}

.boarding-pass {
  display: grid;
  min-height: 190px;
  border: 1px solid var(--ink);
  grid-template-columns: 190px 1fr 240px;
  background: var(--white);
}

.pass-code {
  position: relative;
  display: flex;
  padding: 30px;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  background: var(--coral);
}

.pass-code::after {
  position: absolute;
  top: 16px;
  right: -1px;
  bottom: 16px;
  border-right: 2px dashed var(--white);
  content: "";
}

.pass-code span,
.pass-code small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.pass-code strong {
  font-size: 46px;
  line-height: 1.1;
}

.pass-copy {
  display: flex;
  padding: 30px 42px;
  flex-direction: column;
  justify-content: center;
}

.pass-copy p {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.pass-copy h2 {
  margin-top: 5px;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.25;
}

.pass-copy > span {
  margin-top: 7px;
  color: var(--muted);
}

.pass-download {
  display: flex;
  padding: 28px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

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

.pass-download:hover {
  color: var(--white);
  background: var(--ink);
}

.site-footer {
  color: var(--white);
  background: var(--ink-deep);
}

.footer-inner {
  display: grid;
  min-height: 190px;
  padding: 38px 0 22px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 26px;
}

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

.footer-nav a {
  color: #c9d8e8;
  font-weight: 700;
}

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

.copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .35);
  color: #91a8c0;
  grid-column: 1 / -1;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  opacity: 0;
  pointer-events: none;
  background: var(--coral);
  place-items: center;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

:focus-visible {
  outline: 3px solid #7bcaff;
  outline-offset: 3px;
}

@media (max-width: 960px) {
  :root {
    --header-height: 66px;
  }

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

  .site-header {
    position: fixed;
    transform: none;
    will-change: auto;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

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

  .brand-copy span {
    display: block;
    max-width: 145px;
    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;
    padding: 14px;
    border-top: 1px solid #213a57;
    background: var(--ink-deep);
  }

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

  .main-nav ul {
    display: block;
  }

  .main-nav li + li {
    border-top: 1px solid #1f3854;
  }

  .main-nav a {
    padding: 14px 8px;
  }

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

  main {
    padding-top: var(--header-height);
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    padding: 70px 0 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 90px);
  }

  .hero-copy h2 {
    font-size: 28px;
  }

  .hero-description {
    margin-inline: auto;
  }

  .feature-list {
    justify-content: center;
  }

  .primary-download {
    margin-top: 28px;
  }

  .hero-phone-wrap {
    padding: 8px 0 60px;
    justify-content: center;
  }

  .phone-shell {
    width: 276px;
  }

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

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
    text-align: left;
  }

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

  .section-heading > p {
    max-width: 100%;
    margin-top: 12px;
    text-align: left;
  }

  .route-layout,
  .tracker-layout {
    grid-template-columns: 1fr;
  }

  .today-board {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .boarding-pass {
    grid-template-columns: 150px 1fr 190px;
  }

  .pass-code {
    padding: 24px;
  }

  .pass-copy {
    padding: 26px;
  }
}

@media (max-width: 640px) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }

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

  a:active,
  button:active {
    opacity: 1;
  }

  .header-inner,
  .container,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .brand-copy span {
    max-width: 112px;
  }

  .header-download {
    padding: 9px 11px;
    font-size: 12px;
  }

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

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

  .hero h1 {
    font-size: clamp(48px, 18vw, 70px);
  }

  .hero-copy h2 {
    font-size: 25px;
  }

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

  .feature-list {
    gap: 12px 16px;
  }

  .section {
    padding: 58px 0;
  }

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

  .today-board,
  .genre-board {
    padding: 24px 18px;
  }

  .timeline-item {
    grid-template-columns: 54px 18px 1fr;
  }

  .genre-card {
    min-height: 105px;
    padding: 16px;
  }

  .tracker-layout {
    gap: 14px;
  }

  .week-list {
    padding: 8px 14px 16px;
  }

  .week-list article {
    grid-template-columns: 54px 1fr;
    gap: 10px;
  }

  .week-list article em {
    grid-column: 2;
  }

  .shelf-panel {
    padding: 20px 16px;
  }

  .screens-grid {
    gap: 10px;
  }

  .screen-card figcaption {
    min-height: 100px;
    padding: 14px 10px;
    grid-template-columns: 28px 1fr;
  }

  .screen-card figcaption strong {
    font-size: 14px;
  }

  .faq-item > button,
  .website-faq > button {
    min-height: 66px;
    padding: 0 14px;
  }

  .faq-item button span,
  .website-faq button span {
    gap: 10px;
  }

  .faq-item strong,
  .website-faq strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 42px 20px;
  }

  .website-answer {
    padding: 0 46px 18px;
  }

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

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

  .boarding-pass {
    grid-template-columns: 1fr;
  }

  .pass-code {
    min-height: 120px;
  }

  .pass-code::after {
    top: auto;
    right: 16px;
    bottom: -1px;
    left: 16px;
    border-right: 0;
    border-bottom: 2px dashed var(--white);
  }

  .pass-copy {
    padding: 26px 22px;
  }

  .pass-download {
    min-height: 72px;
  }

  .footer-inner {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
    gap: 12px 20px;
  }

  .copyright {
    width: 100%;
  }

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

@media (max-width: 390px) {
  .brand-copy span {
    max-width: 88px;
    font-size: 12px;
  }

  .header-download {
    padding-inline: 9px;
  }

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

  .feature-list {
    display: grid;
    grid-template-columns: repeat(3, auto);
  }
}
