@charset "UTF-8";

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

:root {
  --brand: #ef1b27;
  --brand-dark: #b9101a;
  --ink: #151515;
  --ink-soft: #242424;
  --paper: #f6f2e9;
  --paper-light: #fffdf8;
  --muted: #706d68;
  --line: #d8d0c4;
  --green: #15b883;
  --content-width: 1200px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

button,
input,
output {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #ffbf3f;
  outline-offset: 3px;
}

.container,
.header-inner,
.hero-inner {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 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: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

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

.brand-copy strong {
  font-size: 19px;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

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

.site-nav a {
  position: relative;
  display: block;
  padding: 25px 0 23px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.mobile-actions {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(18, 18, 18, 0.88)),
    repeating-linear-gradient(90deg, transparent 0, transparent 59px, rgba(255, 255, 255, 0.04) 60px),
    #111111;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
  gap: 70px;
  align-items: center;
  min-height: 720px;
  padding: 70px 0;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow,
.section-index,
.panel-kicker,
.ticket-copy > span,
.ticket-number span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 18px 0 4px;
  color: var(--brand);
  font-size: clamp(86px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.hero-copy > h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.28;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 26px;
  color: #d8d3cc;
  font-size: 15px;
}

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

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 700;
}

.hero-features i,
.hero-download i,
.download-ticket a i,
.official-site summary > span i,
.back-top i,
.menu-toggle i {
  display: inline-block;
  flex: 0 0 auto;
}

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

.hero-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  min-height: 58px;
  padding: 14px 24px;
  color: #ffffff;
  background: var(--brand);
  border: 2px solid var(--brand);
  font-weight: 800;
}

.hero-download:hover {
  color: #ffffff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.hero-download i {
  width: 20px;
  height: 20px;
}

.age-label {
  display: block;
  margin-top: 10px;
  color: #aaa39b;
  font-size: 12px;
}

.picker-panel {
  padding: 28px;
  background: #1b1b1b;
  border: 1px solid #444444;
}

.picker-heading,
.dashboard-title,
.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.picker-heading {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #3a3a3a;
}

.picker-heading h2 {
  margin: 3px 0 0;
  font-size: 24px;
}

.panel-kicker {
  color: #ff7179;
}

.sync-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9ee8d3;
  font-size: 12px;
  white-space: nowrap;
}

.sync-state i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.picker-group {
  margin-bottom: 16px;
}

.picker-label {
  display: block;
  margin-bottom: 8px;
  color: #c7c1b9;
  font-size: 12px;
}

.segmented,
.choice-row,
.tag-grid {
  display: grid;
  gap: 6px;
}

.segmented {
  grid-template-columns: repeat(4, 1fr);
}

.choice-row {
  grid-template-columns: repeat(5, 1fr);
}

.tag-grid {
  grid-template-columns: repeat(4, 1fr);
}

.picker-panel button {
  min-height: 38px;
  padding: 7px 8px;
  color: #d9d3cb;
  background: #282828;
  border: 1px solid #3c3c3c;
  cursor: pointer;
  font-size: 12px;
}

.picker-panel button:hover,
.picker-panel button.is-active {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

.picker-range {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
}

.picker-range label,
.picker-range output {
  font-size: 12px;
}

.picker-range output {
  min-width: 72px;
  color: #bdb6ae;
  text-align: right;
}

.picker-range input {
  width: 100%;
  accent-color: var(--brand);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 12px;
  cursor: pointer;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-track {
  position: relative;
  width: 42px;
  height: 22px;
  background: #5d5d5d;
  border-radius: 22px;
}

.toggle-track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  content: "";
  background: #ffffff;
  border-radius: 50%;
}

.toggle-row input:checked + .toggle-track {
  background: var(--brand);
}

.toggle-row input:checked + .toggle-track::after {
  left: 23px;
}

.picker-panel .generate-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.generate-button i {
  width: 18px;
  height: 18px;
}

.picker-result {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 12px;
  background: #242424;
  border: 1px solid #3d3d3d;
}

.picker-result.is-refreshed {
  border-color: var(--brand);
}

.picker-result img {
  width: 60px;
  height: 74px;
  object-fit: cover;
}

.result-copy {
  min-width: 0;
}

.result-copy span,
.result-copy p {
  color: #aaa39b;
  font-size: 12px;
}

.result-copy h3 {
  margin: 2px 0 0;
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-copy p {
  margin: 0;
}

.picker-panel .save-pick {
  color: #ffffff;
  background: transparent;
  border-color: var(--brand);
  white-space: nowrap;
}

.picker-panel .save-pick.is-saved {
  color: #ffffff;
  background: var(--brand);
}

section {
  scroll-margin-top: var(--header-height);
}

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

.selection,
.watchlist,
.screens,
.faq-section,
.reviews,
.download-section {
  padding: 88px 0;
}

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

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.selection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  border: 1px solid var(--ink);
}

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

.selection-steps li {
  position: relative;
  display: flex;
  gap: 16px;
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.selection-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--paper-light);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
}

.step-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 50%;
  font-weight: 800;
}

.selection-steps h3 {
  margin: 4px 0 12px;
  font-size: 20px;
}

.selection-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.selection-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 30px;
  color: #ffffff;
  background: var(--ink);
}

.selection-note span {
  color: #d8d0c4;
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.selection-note p {
  margin: 30px 0 0;
  font-size: 15px;
}

.watchlist {
  color: #ffffff;
  background: #141414;
}

.section-heading-dark .section-index {
  color: #ff5963;
}

.section-heading-dark > p {
  color: #bcb5ad;
}

.watchlist-dashboard {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.watchlist-ledger,
.update-board {
  padding: 28px;
  background: #1d1d1d;
  border: 1px solid #383838;
}

.dashboard-title {
  padding-bottom: 18px;
  border-bottom: 1px solid #3c3c3c;
}

.dashboard-title h3 {
  margin: 0;
  font-size: 20px;
}

.dashboard-title button {
  padding: 7px 10px;
  color: #bcb5ad;
  background: transparent;
  border: 1px solid #474747;
  cursor: pointer;
  font-size: 12px;
}

.dashboard-title button:hover,
.dashboard-title button.is-on {
  color: #ffffff;
  border-color: var(--brand);
}

.watchlist-ledger ol li {
  display: grid;
  grid-template-columns: 34px 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid #353535;
}

.watchlist-ledger ol li:last-child {
  border-bottom: 0;
}

.rank {
  color: #ff5963;
  font-size: 17px;
  font-weight: 800;
}

.watchlist-ledger img {
  width: 48px;
  height: 58px;
  object-fit: cover;
}

.watchlist-ledger li div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.watchlist-ledger li strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watchlist-ledger li div span {
  color: #99928b;
  font-size: 12px;
}

.watchlist-ledger li > button {
  padding: 6px 8px;
  color: #ff6670;
  background: transparent;
  border: 1px solid #5f3337;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}

.watchlist-ledger li > button.is-active {
  color: #ffffff;
  background: var(--brand);
}

.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin: 18px 0;
}

.week-strip button {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 58px;
  padding: 6px 3px;
  color: #a9a39c;
  background: #272727;
  border: 1px solid #3b3b3b;
  cursor: pointer;
  font-size: 12px;
}

.week-strip button strong {
  font-size: 12px;
}

.week-strip button:hover,
.week-strip button.is-active {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

.update-items article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border-top: 1px solid #343434;
}

.update-items span,
.update-items em {
  color: #9f9992;
  font-size: 12px;
  font-style: normal;
}

.update-items strong {
  font-size: 14px;
}

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

.screen-grid figure {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--ink);
}

.screen-view {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #1b1b1b;
}

.screen-view img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.screen-grid figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px 16px;
  border-top: 1px solid var(--ink);
}

.screen-grid figcaption span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

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

.faq-section {
  background: #f0ebe2;
}

.faq-list,
.official-site {
  width: 100%;
}

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

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

.faq-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item > button > span {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 800;
}

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

.faq-item button > i,
.details-state {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-item button > i::before,
.faq-item button > i::after,
.details-state::before,
.details-state::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-item button > i::after,
.details-state::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] > i::after,
.official-site[open] .details-state::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 64px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.official-site {
  margin-top: 28px;
  background: var(--paper-light);
  border: 1px solid var(--ink);
}

.official-site summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
}

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

.official-site summary > span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.official-site summary > span i {
  width: 20px;
  height: 20px;
}

.official-answer {
  padding: 0 54px 22px;
}

.official-answer a {
  color: var(--brand);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reviews {
  background: var(--paper-light);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
  border-top: 4px solid var(--brand);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-identity {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.review-identity strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-identity .i-avatar {
  display: inline-block;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  background-color: #171717;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  border-radius: 50%;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  color: var(--brand);
  white-space: nowrap;
}

.review-rating .fa {
  display: inline-block;
  font-style: normal;
}

.review-rating .fa-star::before {
  content: "★";
}

.review-rating .fa-star-o::before {
  content: "☆";
}

.review-card > p {
  margin: 22px 0 20px;
  color: #3d3a36;
  font-size: 14px;
}

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

.download-section {
  padding: 54px 0;
  background: #22110f;
}

.download-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px;
  align-items: stretch;
  min-height: 164px;
  color: #ffffff;
  background: linear-gradient(110deg, #8f1017, #c51620 52%, #951019);
  border: 1px solid #ff747b;
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  content: "";
  background: #22110f;
  border-radius: 50%;
  transform: translateY(-50%);
}

.download-ticket::before {
  left: -13px;
}

.download-ticket::after {
  right: -13px;
}

.ticket-number,
.ticket-copy,
.download-ticket > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px;
}

.ticket-number {
  border-right: 1px dashed rgba(255, 255, 255, 0.55);
}

.ticket-number strong {
  color: #ffffff;
  font-size: 58px;
  line-height: 1;
}

.ticket-number span {
  margin-top: 8px;
  color: #ffb1b5;
}

.ticket-copy > span {
  color: #ffb1b5;
}

.ticket-copy h2 {
  margin: 5px 0 6px;
  font-size: 28px;
  line-height: 1.2;
  white-space: nowrap;
}

.ticket-copy p {
  margin: 0;
  color: #ffd8da;
  font-size: 13px;
}

.download-ticket > a {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 28px;
  padding: 18px 24px;
  color: var(--brand-dark);
  background: #ffffff;
  border: 2px solid #ffffff;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.download-ticket > a:hover {
  color: #ffffff;
  background: #161616;
  border-color: #ffffff;
}

.download-ticket > a i {
  width: 20px;
  height: 20px;
}

.site-footer {
  color: #ffffff;
  background: #111111;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 120px;
}

.footer-brand .brand-copy span {
  color: #aba49d;
}

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

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

.footer-nav a:hover {
  color: #ffffff;
}

.copyright {
  margin: 0;
  padding: 20px 0 24px;
  color: #a8a19a;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #ffffff;
  background: var(--brand);
  border: 2px solid var(--ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

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

.back-top:hover {
  background: var(--brand-dark);
}

.back-top i {
  width: 20px;
  height: 20px;
}

.i-menu::before,
.i-search::before,
.i-star::before,
.i-list::before,
.i-download::before,
.i-spark::before,
.i-globe::before,
.i-cloud::before,
.i-top::before,
.i-avatar::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.i-menu::before {
  background-image: url("../icons/menu.svg");
}

.i-search::before {
  background-image: url("../icons/search.svg");
}

.i-star::before {
  background-image: url("../icons/star.svg");
}

.i-list::before {
  background-image: url("../icons/list.svg");
}

.i-download::before {
  background-image: url("../icons/download-white.svg");
}

.i-spark::before {
  background-image: url("../icons/spark.svg");
}

.i-globe::before {
  background-image: url("../icons/globe.svg");
}

.i-cloud::before {
  background-image: url("../icons/cloud-red.svg");
}

.download-ticket > a:hover .i-cloud::before {
  background-image: url("../icons/cloud-white.svg");
}

.i-top::before {
  background-image: url("../icons/top.svg");
}

.i-avatar::before {
  background-image: url("../icons/avatar.svg");
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 36px;
  }

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

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

  .selection-note {
    min-height: 150px;
  }

  .download-ticket {
    grid-template-columns: 170px minmax(0, 1fr) 230px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

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

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

  main,
  section,
  .site-header,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    height: var(--header-height);
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--paper-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--ink);
  }

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

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

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

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

  .site-nav a {
    padding: 14px 4px;
  }

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

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

  .mobile-download {
    display: grid;
    place-items: center;
    min-width: 84px;
    min-height: 42px;
    padding: 8px 12px;
    color: #ffffff;
    background: var(--brand);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--ink);
    cursor: pointer;
  }

  .menu-toggle i {
    width: 20px;
    height: 20px;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    display: block;
    width: calc(100% - 28px);
    max-width: var(--content-width);
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 70px 0;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    font-size: 78px;
    white-space: normal;
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: anywhere;
  }

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

  .picker-panel {
    width: min(100%, 620px);
    min-width: 0;
    max-width: 100%;
    margin: 40px auto 0;
  }

  .selection-layout,
  .selection-steps,
  .watchlist-dashboard,
  .screen-grid,
  .faq-list,
  .official-site,
  .review-grid,
  .download-ticket,
  .footer-main {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .watchlist-dashboard {
    grid-template-columns: 1fr;
  }

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

  .download-ticket {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .download-ticket > a {
    grid-column: 1 / -1;
    min-height: 62px;
    margin: 0;
    border: 0;
    border-top: 1px dashed rgba(143, 16, 23, 0.45);
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

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

  .brand-copy span {
    margin-top: 2px;
    font-size: 12px;
  }

  .selection,
  .watchlist,
  .screens,
  .faq-section,
  .reviews,
  .download-section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

  .selection-steps {
    grid-template-columns: 1fr;
  }

  .selection-steps li {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .selection-steps li:not(:last-child)::after {
    display: none;
  }

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

  .screen-grid figcaption {
    min-height: 58px;
    padding: 10px;
  }

  .screen-grid figcaption strong {
    font-size: 13px;
  }

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

  .footer-main {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 36px 0 28px;
    text-align: center;
  }

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

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

@media (max-width: 520px) {
  .header-inner {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 126px);
    gap: 6px;
  }

  .brand-copy {
    min-width: 0;
  }

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

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

  .mobile-actions {
    gap: 6px;
  }

  .mobile-download {
    min-width: 72px;
    min-height: 40px;
    padding: 7px 9px;
  }

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

  .hero-inner {
    width: calc(100% - 28px);
    padding: 54px 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 17vw, 64px);
    letter-spacing: -0.06em;
    overflow-wrap: anywhere;
  }

  .hero-copy > h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

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

  .hero-features li {
    min-width: 0;
    padding: 7px 10px;
  }

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

  .picker-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .segmented,
  .tag-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .picker-range {
    grid-template-columns: 1fr auto;
  }

  .picker-range input {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .picker-result {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .picker-result img {
    width: 52px;
    height: 64px;
  }

  .picker-result .save-pick {
    grid-column: 1 / -1;
  }

  .watchlist-ledger,
  .update-board {
    width: 100%;
    min-width: 0;
    padding: 18px 14px;
  }

  .dashboard-title {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
  }

  .dashboard-title h3,
  .dashboard-title button {
    min-width: 0;
  }

  .dashboard-title button {
    justify-self: start;
    max-width: 100%;
    padding: 6px 8px;
    white-space: nowrap;
  }

  .watchlist-ledger ol li {
    grid-template-columns: 26px 42px minmax(0, 1fr);
    gap: 8px;
    padding: 10px 0;
  }

  .watchlist-ledger li > button {
    grid-column: 3;
    justify-self: start;
    max-width: 100%;
    margin-top: 2px;
  }

  .watchlist-ledger li strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .week-strip {
    overflow: visible;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding-bottom: 0;
  }

  .week-strip button {
    width: 100%;
    min-width: 0;
    padding-right: 4px;
    padding-left: 4px;
  }

  .update-items article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 0;
  }

  .update-items em {
    grid-column: 2;
    justify-self: start;
  }

  .faq-item > button,
  .official-site summary {
    padding: 16px 12px;
  }

  .faq-item > button > span {
    gap: 12px;
    font-size: 14px;
  }

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

  .official-answer {
    padding: 0 44px 18px;
  }

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

  .review-user {
    align-items: flex-start;
  }

  .download-ticket {
    display: block;
  }

  .ticket-number {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-height: 80px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.55);
  }

  .ticket-number strong {
    font-size: 42px;
  }

  .ticket-number span {
    margin: 0;
  }

  .ticket-copy {
    padding: 24px 22px;
  }

  .ticket-copy h2 {
    font-size: 23px;
    white-space: normal;
  }

  .download-ticket > a {
    min-height: 62px;
  }

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

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

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

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

  .mobile-download {
    min-width: 66px;
    padding: 6px 7px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

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

  .screen-grid figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary {
    transition: none !important;
    animation: none !important;
  }

  a:active,
  button:active,
  summary:active {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
