@charset "UTF-8";

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

:root {
  --ink: #211b16;
  --ink-soft: #665d54;
  --paper: #fffdf7;
  --paper-warm: #f6efe3;
  --yellow: #ffc928;
  --yellow-deep: #dca500;
  --orange: #ef743f;
  --mint: #4fa487;
  --brown: #3b2a20;
  --brown-deep: #211712;
  --line: #ded4c5;
  --white: #ffffff;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 201, 40, 0.7);
  outline-offset: 3px;
}

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

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

.container,
.header-inner,
.hero-inner,
.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  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: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 253, 247, 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;
  gap: 12px;
  flex: 0 0 auto;
}

.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: 20px;
  white-space: nowrap;
}

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

.site-nav ul {
  display: flex;
  align-items: stretch;
  gap: 38px;
  height: var(--header-height);
}

.site-nav li {
  display: flex;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--yellow-deep);
}

.site-nav a.is-active::after {
  background: var(--yellow);
}

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

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

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--ink);
  cursor: pointer;
}

.menu-toggle i,
.primary-link i,
.hero-points i,
.phone-title i,
.phone-search i,
.official-trigger .i-globe,
.review-identity i,
.download-link i,
.back-to-top i {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

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

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

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

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

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

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

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

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

.hero {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(90deg, var(--paper) 0 62%, #fff6d7 62% 100%);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  background-image:
    linear-gradient(rgba(33, 23, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 23, 18, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

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

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

.eyebrow,
.section-index {
  color: var(--yellow-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(68px, 6.2vw, 98px);
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-slogan {
  margin-top: 24px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-description {
  max-width: 610px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.hero-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 220px;
  min-height: 58px;
  padding: 0 28px;
  color: var(--white);
  background: var(--brown-deep);
  border: 1px solid var(--brown-deep);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-link .i-arrow {
  filter: invert(1);
}

.primary-link:hover {
  color: var(--ink);
  background: var(--yellow);
}

.primary-link:hover .i-arrow {
  filter: none;
}

.age-label {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

.hero-points {
  display: flex;
  margin-top: 34px;
  border-top: 1px solid var(--ink);
}

.hero-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 165px;
  padding: 18px 22px 0;
  font-size: 13px;
  font-weight: 700;
}

.hero-points li:first-child {
  padding-left: 0;
}

.hero-points li + li {
  border-left: 1px solid var(--line);
}

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

.phone-frame {
  position: relative;
  width: 330px;
  padding: 13px;
  background: #13110f;
  border: 2px solid #050505;
  border-radius: 42px;
  box-shadow: 18px 24px 0 rgba(33, 23, 18, 0.13);
}

.phone-status {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.phone-island {
  width: 90px;
  height: 22px;
  background: #050505;
  border-radius: 999px;
}

.phone-screen {
  position: relative;
  min-height: 604px;
  padding: 58px 16px 56px;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}

.phone-title,
.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-title strong {
  font-size: 23px;
}

.phone-title .i-search {
  width: 18px;
  height: 18px;
}

.phone-search {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 8px 0 12px;
  color: #8c847c;
  background: #f4f1ec;
  border-radius: 999px;
  font-size: 12px;
}

.phone-search i {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

.phone-search b {
  padding: 5px 11px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ece5dc;
  font-size: 12px;
  text-align: center;
}

.phone-tabs b {
  position: relative;
  color: var(--yellow-deep);
}

.phone-tabs b::after {
  position: absolute;
  right: 12px;
  bottom: -11px;
  left: 12px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.phone-feature {
  display: grid;
  grid-template-columns: 1fr 94px;
  min-height: 126px;
  margin-top: 14px;
  color: var(--white);
  background: var(--brown-deep);
  border-radius: 12px;
  overflow: hidden;
}

.phone-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
}

.phone-feature small,
.phone-feature span {
  font-size: 12px;
}

.phone-feature strong {
  margin: 5px 0;
  font-size: 17px;
  line-height: 1.3;
}

.phone-feature img {
  width: 100%;
  height: 100%;
  padding: 5px;
  background: #f8f4ed;
  object-fit: contain;
}

.phone-section-title {
  margin-top: 16px;
}

.phone-section-title strong {
  font-size: 14px;
}

.phone-section-title span {
  color: var(--ink-soft);
  font-size: 12px;
}

.phone-books {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.phone-books article {
  min-width: 0;
}

.phone-books figure {
  aspect-ratio: 3 / 4;
  padding: 3px;
  background: #f3eee7;
  border-radius: 6px;
}

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

.phone-books strong,
.phone-books span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-books strong {
  margin-top: 5px;
  font-size: 12px;
}

.phone-books span {
  color: var(--ink-soft);
  font-size: 12px;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 50px;
  padding-top: 14px;
  background: var(--white);
  border-top: 1px solid #e8e0d6;
  font-size: 12px;
  text-align: center;
}

.phone-nav b {
  color: var(--yellow-deep);
}

.section {
  padding: 92px 0;
}

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

.section-heading h2 {
  margin-top: 8px;
  font-size: 48px;
  line-height: 1.15;
}

.section-heading > p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 14px;
  text-align: right;
}

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

.lineup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 18px;
}

.lineup-focus {
  position: relative;
  min-height: 430px;
  background: var(--brown-deep);
  border: 1px solid var(--brown-deep);
  overflow: hidden;
}

.lineup-focus figure {
  width: 100%;
  height: 100%;
  min-height: 430px;
  padding: 18px 36%;
  background: #eadfce;
}

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

.lineup-focus-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(20, 12, 8, 0.96));
}

.lineup-focus-copy span {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.lineup-focus-copy h3 {
  margin-top: 10px;
  font-size: 34px;
}

.lineup-focus-copy p,
.lineup-focus-copy strong {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
}

.lineup-focus-copy strong {
  float: right;
}

.lineup-rows {
  display: grid;
  gap: 12px;
}

.lineup-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 134px;
  padding: 14px 18px 14px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.lineup-row:hover,
.lineup-row.is-selected {
  border-color: var(--yellow-deep);
  box-shadow: inset 5px 0 0 var(--yellow);
}

.lineup-row img {
  width: 110px;
  height: 104px;
  padding: 4px;
  background: #f6f0e8;
  object-fit: contain;
}

.lineup-row span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lineup-row small {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.lineup-row strong {
  margin-top: 4px;
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lineup-row em {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 12px;
  font-style: normal;
}

.lineup-row > b {
  color: var(--ink-soft);
  font-size: 12px;
  white-space: nowrap;
}

.channel-section {
  color: var(--white);
  background: var(--brown-deep);
}

.section-heading-dark .section-index {
  color: var(--yellow);
}

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

.channel-rails {
  border-top: 1px solid #695648;
}

.channel-rail {
  display: grid;
  grid-template-columns: 90px minmax(260px, 1fr) minmax(400px, 1.2fr);
  gap: 28px;
  align-items: center;
  min-height: 122px;
  padding: 24px 0;
  border-bottom: 1px solid #695648;
}

.channel-rail > b {
  color: var(--yellow);
  font-size: 34px;
}

.channel-rail h3 {
  font-size: 22px;
}

.channel-rail p {
  margin-top: 3px;
  color: #cdbeb2;
  font-size: 13px;
}

.channel-options {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.channel-pill {
  min-height: 38px;
  padding: 0 18px;
  color: #eee5dd;
  background: transparent;
  border: 1px solid #756255;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.channel-pill:hover,
.channel-pill.is-selected {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.screen-section,
.faq-section {
  background: var(--paper);
}

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

.screen-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.screen-viewport {
  aspect-ratio: 9 / 16;
  background: #f7f2e9;
}

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

.screen-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.screen-card figcaption b {
  color: var(--yellow-deep);
  font-size: 16px;
}

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

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

.faq-list,
.official-site {
  width: 100%;
  border-top: 1px solid var(--ink);
}

.faq-item,
.official-site {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 74px;
  padding: 16px 24px;
  background: var(--white);
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-trigger > span {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.faq-trigger b {
  color: var(--yellow-deep);
  font-size: 12px;
}

.faq-trigger > i:last-child {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-trigger > i:last-child::before,
.faq-trigger > i:last-child::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.faq-trigger > i:last-child::after {
  transform: rotate(90deg);
}

.faq-trigger[aria-expanded="true"] > i:last-child::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 68px 22px;
  background: var(--white);
}

.faq-answer p {
  color: var(--ink-soft);
  font-size: 14px;
}

.official-site {
  margin-top: 22px;
  border-top: 1px solid var(--ink);
}

.official-trigger .i-globe {
  width: 19px;
  height: 19px;
}

.official-site .faq-answer a {
  color: var(--yellow-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.review-section {
  background: #f2ece2;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 272px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
}

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

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

.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.review-identity .i-avatar {
  width: 42px;
  height: 42px;
  background-color: var(--brown-deep);
  background-size: 22px;
  border-radius: 50%;
}

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

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 86px;
  white-space: nowrap;
}

.review-rating .fa {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 2px;
  background-image: url("../icons/star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.review-rating .fa-star-o {
  opacity: 0.25;
}

.review-content {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.9;
}

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

.download-section {
  padding: 18px 0 16px;
  background: var(--paper);
}

.download-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  min-height: 132px;
  color: var(--ink);
  background: linear-gradient(105deg, #fff4c4 0%, #fffaf0 48%, #ffe58e 100%);
  border: 1px solid #f1d46b;
  overflow: hidden;
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 13px;
  background-size: 13px 24px;
  background-repeat: repeat-y;
  content: "";
}

.download-ticket::before {
  left: -1px;
  background-image: radial-gradient(circle at left center, var(--paper) 0 7px, transparent 7.5px);
}

.download-ticket::after {
  right: -1px;
  background-image: radial-gradient(circle at right center, var(--paper) 0 7px, transparent 7.5px);
}

.ticket-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px dashed var(--brown);
}

.ticket-number::before,
.ticket-number::after {
  position: absolute;
  right: -8px;
  width: 15px;
  height: 15px;
  background: var(--paper);
  border-radius: 50%;
  content: "";
}

.ticket-number::before {
  top: -8px;
}

.ticket-number::after {
  bottom: -8px;
}

.ticket-number strong {
  color: var(--yellow-deep);
  font-size: 58px;
  line-height: 1;
}

.ticket-number span {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.download-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 34px;
}

.download-copy p {
  display: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.download-copy h2 {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  line-height: 1.35;
}

.download-copy h3 {
  margin-top: 4px;
  font-size: 25px;
  line-height: 1.35;
}

.download-copy span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  align-self: center;
  min-height: 60px;
  margin: 0 26px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.download-link:hover {
  background: #ffda59;
}

.site-footer {
  padding: 24px 0 13px;
  color: var(--white);
  background: linear-gradient(105deg, #30221a 0%, #17100d 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding-bottom: 16px;
}

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

.footer-line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

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

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

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

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  color: #ae9e91;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 28px;
  bottom: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  cursor: pointer;
}

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

.back-to-top .i-up {
  filter: invert(1);
}

@media (max-width: 1040px) {
  .site-nav ul {
    gap: 24px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
  }

  .lineup-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  }

  .channel-rail {
    grid-template-columns: 70px minmax(220px, 1fr) minmax(360px, 1.2fr);
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

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

  .brand {
    gap: 8px;
  }

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

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

  .brand-copy span {
    display: block;
    max-width: none;
    margin-top: 2px;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    padding: 8px 14px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    overflow-y: auto;
  }

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

  .site-nav ul {
    display: block;
    height: auto;
  }

  .site-nav li {
    display: block;
  }

  .site-nav a {
    display: flex;
    min-height: 50px;
    border-bottom: 1px solid var(--line);
  }

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

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

  .hero::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding: 70px 0 64px;
  }

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

  .hero h1 {
    font-size: clamp(54px, 16vw, 78px);
    white-space: normal;
  }

  .hero-slogan {
    font-size: 28px;
  }

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

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

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

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

  .phone-frame {
    width: min(330px, 88vw);
  }

  .section {
    padding: 72px 0;
  }

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

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

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

  .channel-rail {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .channel-options {
    grid-column: 2;
    justify-content: flex-start;
  }

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

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

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

  .download-link {
    grid-column: 1 / -1;
    min-height: 74px;
  }
}

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

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

  .mobile-download {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

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

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

  .hero-slogan {
    font-size: 25px;
  }

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

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

  .hero-points li,
  .hero-points li:first-child {
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 16px 5px 0;
    font-size: 12px;
  }

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

  .lineup-focus,
  .lineup-focus figure {
    min-height: 360px;
  }

  .lineup-focus figure {
    padding: 16px 24%;
  }

  .lineup-focus-copy {
    padding: 24px;
  }

  .lineup-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
    padding: 12px;
  }

  .lineup-row img {
    width: 82px;
    height: 88px;
  }

  .lineup-row > b {
    grid-column: 2;
  }

  .channel-rail {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 0;
  }

  .channel-rail > b {
    font-size: 24px;
  }

  .channel-options {
    gap: 7px;
  }

  .channel-pill {
    padding: 0 12px;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-card figcaption {
    gap: 8px;
    min-height: 62px;
    padding: 10px;
  }

  .screen-card figcaption b,
  .screen-card figcaption strong {
    font-size: 12px;
  }

  .faq-trigger {
    min-height: 68px;
    padding: 14px;
  }

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

  .faq-answer {
    padding: 0 44px 20px;
    font-size: 13px;
  }

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

  .review-card {
    min-height: 244px;
    padding: 22px;
  }

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

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

  .ticket-number {
    min-height: 132px;
    border-right: 1px dashed var(--brown);
    border-bottom: 0;
  }

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

  .ticket-number span {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .download-copy {
    min-height: 132px;
    padding: 20px 18px;
    text-align: left;
  }

  .download-copy h3 {
    font-size: 19px;
  }

  .download-link {
    grid-column: 1 / -1;
    min-height: 72px;
    margin: 0;
    border-radius: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-line {
    width: 100%;
  }

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

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

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

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

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

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