@charset "UTF-8";

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

:root {
  --ink: #080a0f;
  --ink-soft: #111620;
  --yellow: #ffc400;
  --yellow-soft: #ffe89b;
  --ivory: #fffaf0;
  --cream: #f8f0de;
  --paper: #ffffff;
  --line: #ddd4c2;
  --text: #171711;
  --muted: #746e60;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--ivory);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

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

[hidden] {
  display: none !important;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  background: rgba(8, 10, 15, 0.98);
  border-bottom: 1px solid rgba(255, 196, 0, 0.3);
}

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

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

.brand-logo {
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 9px;
}

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

.brand-copy strong {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 5px;
  color: #92969e;
  font-size: 12px;
  white-space: nowrap;
}

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

.nav-link {
  position: relative;
  display: block;
  padding: 23px 17px 22px;
  color: #c5c7cd;
  font-size: 14px;
}

.nav-link::after {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

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

.mobile-download {
  display: inline-flex;
  height: 34px;
  align-items: center;
  padding: 0 11px;
  color: #0a0b0e;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  background: var(--yellow);
  border-radius: 6px;
}

.menu-button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid #383d46;
  border-radius: 6px;
}

.menu-button i {
  width: 18px;
  height: 18px;
  background: url("../icons/menu.svg") center / contain no-repeat;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.05), transparent 30%),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: calc(50% + 90px);
  width: 1px;
  content: "";
  background: linear-gradient(transparent, #ded5c2 18%, #ded5c2 82%, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 700px;
  padding: 58px 0;
  align-items: center;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  gap: 46px;
}

.hero-copy {
  min-width: 0;
  padding-right: 18px;
}

.hero-kicker,
.section-heading > span,
.download-heading > span {
  display: inline-flex;
  align-items: center;
  color: #aa7e00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-kicker::before {
  width: 28px;
  height: 2px;
  margin-right: 10px;
  content: "";
  background: var(--yellow);
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(50px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-slogan {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.3;
}

.hero-copy > p {
  max-width: 590px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.hero-benefits {
  display: grid;
  max-width: 620px;
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cfc5b1;
  border-bottom: 1px solid #cfc5b1;
}

.hero-benefits li {
  display: flex;
  min-width: 0;
  padding: 15px 14px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #cfc5b1;
}

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

.hero-benefits li:last-child {
  border-right: 0;
}

.hero-benefits li > i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-benefits span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-benefits strong {
  font-size: 13px;
}

.hero-benefits small {
  color: #8a8375;
  font-size: 12px;
  white-space: nowrap;
}

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

.primary-button,
.download-button {
  display: inline-flex;
  min-width: 230px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 24px;
  color: #0a0b0d;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 28px;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-button:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.primary-button i,
.download-button i {
  font-size: 19px;
  font-style: normal;
}

.age-label {
  margin-left: 20px;
  color: #817a6d;
  font-size: 12px;
}

.login-device {
  position: relative;
  width: 310px;
  min-height: 614px;
  padding: 8px;
  justify-self: end;
  background: #07090d;
  border: 2px solid #252a34;
  border-radius: 38px;
}

.device-speaker {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 73px;
  height: 18px;
  background: #05070a;
  border-radius: 0 0 13px 13px;
  transform: translateX(-50%);
}

.device-screen {
  min-height: 596px;
  padding: 48px 19px 24px;
  color: #fff;
  background: #0d111a;
  border: 1px solid #232a37;
  border-radius: 30px;
}

.login-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.login-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 11px;
}

.login-brand strong {
  margin-top: 10px;
  font-size: 15px;
}

.login-brand span {
  margin-top: 3px;
  color: #838a96;
  font-size: 12px;
}

.login-tabs {
  display: grid;
  margin-top: 25px;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #2b313d;
}

.login-tabs button {
  position: relative;
  min-height: 42px;
  padding: 0 5px;
  color: #7d8490;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  border: 0;
}

.login-tabs button::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
}

.login-tabs button.is-active {
  color: var(--yellow);
}

.login-tabs button.is-active::after {
  transform: scaleX(1);
}

.login-form {
  margin-top: 18px;
}

.login-form > label:not(.agreement) {
  display: block;
  margin-top: 13px;
}

.login-form > label:not(.agreement) > span:first-child {
  display: block;
  margin-bottom: 5px;
  color: #979daa;
  font-size: 12px;
}

.login-form input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
  outline: none;
  background: #141a25;
  border: 1px solid #2c3442;
  border-radius: 8px;
}

.login-form input:focus {
  border-color: var(--yellow);
}

.login-form input::placeholder {
  color: #69707d;
}

.code-field,
.password-field {
  position: relative;
  display: block;
}

.code-field input,
.password-field input {
  padding-right: 92px;
}

.send-code,
.password-toggle {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 78px;
  height: 32px;
  padding: 0 8px;
  color: #171208;
  font-size: 12px;
  font-weight: 800;
  background: var(--yellow);
  border: 0;
  border-radius: 6px;
}

.send-code:disabled {
  color: #7f858e;
  background: #2a303a;
  cursor: default;
}

.password-toggle {
  min-width: 52px;
}

.password-field input {
  padding-right: 67px;
}

.agreement {
  position: relative;
  display: flex;
  margin-top: 17px;
  align-items: flex-start;
  gap: 7px;
  color: #8e95a1;
  font-size: 12px;
  cursor: pointer;
}

.agreement input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.agreement i {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  background: #1a202b;
  border: 1px solid #454d5b;
  border-radius: 4px;
}

.agreement input:checked + i {
  background: var(--yellow);
  border-color: var(--yellow);
}

.agreement input:checked + i::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  content: "";
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
}

.login-submit {
  width: 100%;
  height: 44px;
  margin-top: 17px;
  color: #08090b;
  font-size: 13px;
  font-weight: 900;
  background: var(--yellow);
  border: 0;
  border-radius: 22px;
}

.form-message {
  min-height: 20px;
  margin-top: 7px;
  color: #ffcb32;
  font-size: 12px;
  text-align: center;
}

.form-message.is-error {
  color: #ff8484;
}

.guest-button {
  display: block;
  margin: 4px auto 0;
  padding: 5px 8px;
  color: #7baeea;
  font-size: 12px;
  background: transparent;
  border: 0;
}

.page-section {
  padding: 94px 0;
}

.section-heading,
.download-heading {
  max-width: 700px;
}

.section-heading > span,
.download-heading > span {
  padding-left: 10px;
  border-left: 3px solid var(--yellow);
}

.section-heading h2,
.download-heading h2 {
  margin-top: 5px;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-heading > p,
.download-heading > p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 15px;
}

.journey-section {
  background: var(--ivory);
}

.journey-rail {
  display: grid;
  margin-top: 35px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #e0d6c1;
}

.journey-stage {
  position: relative;
  min-width: 0;
  min-height: 245px;
  padding: 27px;
  background: #fff5da;
  border-right: 1px solid #d9cdb5;
}

.journey-stage:last-child {
  border-right: 0;
}

.journey-stage::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -15px;
  display: grid;
  width: 30px;
  height: 30px;
  content: "›";
  place-items: center;
  color: #796b45;
  font-size: 24px;
  background: var(--ivory);
  border: 1px solid #d9cdb5;
  border-radius: 50%;
  transform: translateY(-50%);
}

.journey-stage:last-child::after {
  display: none;
}

.stage-index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #b09d6f;
  font-size: 12px;
  font-weight: 800;
}

.stage-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stage-heading i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  font-size: 17px;
  font-style: normal;
  background: var(--yellow);
  border-radius: 50%;
}

.stage-heading strong {
  font-size: 18px;
}

.journey-stage > p {
  margin-top: 11px;
  color: #756d5c;
  font-size: 13px;
}

.genre-chips {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 7px;
}

.genre-chips button {
  min-height: 30px;
  padding: 3px 11px;
  color: #655d50;
  font-size: 12px;
  background: #fffaf0;
  border: 1px solid #cfc2a8;
  border-radius: 16px;
}

.genre-chips button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.wish-preview,
.resume-preview {
  display: flex;
  margin-top: 18px;
  align-items: center;
  gap: 10px;
}

.mini-covers {
  display: flex;
  gap: 6px;
}

.mini-covers img {
  width: 42px;
  height: 55px;
  object-fit: contain;
  background: #ece1c9;
}

.wish-add {
  width: 42px;
  height: 55px;
  color: #4c4434;
  font-size: 22px;
  background: #ffe9a0;
  border: 1px solid #d5c185;
}

.wish-add.is-active {
  color: #fff;
  background: var(--ink);
}

.resume-preview > img {
  width: 48px;
  height: 62px;
  object-fit: contain;
  background: #ece1c9;
}

.resume-preview > span {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.resume-preview strong {
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.resume-preview small {
  color: #867c69;
  font-size: 12px;
}

.resume-preview span > i {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 4px;
  margin-top: 8px;
  background: #d8ccb3;
}

.resume-preview span > i b {
  display: block;
  width: 58%;
  height: 100%;
  background: var(--yellow);
}

.resume-button {
  width: 31px;
  height: 31px;
  padding: 0;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.resume-button.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.discover-section {
  background: #f2ead8;
}

.discover-mosaic {
  display: grid;
  margin-top: 38px;
  grid-template-columns: minmax(0, 1.43fr) minmax(340px, 0.9fr);
  gap: 16px;
}

.feature-primary {
  display: grid;
  overflow: hidden;
  min-height: 430px;
  color: #fff;
  background: var(--ink);
  grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1.15fr);
}

.feature-copy {
  display: flex;
  padding: 42px 16px 42px 38px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.feature-copy > span,
.feature-secondary > div > span {
  display: inline-flex;
  padding: 5px 10px;
  color: #131006;
  font-size: 12px;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 4px;
}

.feature-copy > strong {
  margin-top: 18px;
  font-size: 30px;
}

.feature-copy > p {
  margin-top: 7px;
  color: #aaaeb7;
  font-size: 13px;
}

.feature-primary > img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  background: #111622;
}

.feature-button {
  display: inline-flex;
  min-height: 38px;
  margin-top: 27px;
  align-items: center;
  gap: 15px;
  padding: 7px 14px;
  color: #141108;
  font-size: 12px;
  font-weight: 800;
  background: var(--yellow);
  border: 0;
  border-radius: 20px;
}

.feature-button i {
  font-style: normal;
}

.feature-button.is-active {
  color: #fff;
  background: var(--ink-soft);
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-secondary {
  display: grid;
  overflow: hidden;
  min-height: 207px;
  padding: 26px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(100px, 0.9fr);
  gap: 16px;
  background: #ffe39a;
}

.feature-secondary > div:first-child {
  min-width: 0;
}

.feature-secondary > div > strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.35;
}

.feature-secondary > div > p {
  margin-top: 5px;
  color: #715f31;
  font-size: 12px;
}

.feature-secondary > div > span {
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.64);
}

.feature-secondary .feature-button {
  margin-top: 15px;
  color: #fff;
  background: var(--ink);
}

.feature-secondary > img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.35);
}

.wish-feature {
  background: #fff3cf;
}

.wish-sheet {
  position: relative;
  width: 118px;
  height: 142px;
  justify-self: center;
  padding: 32px 19px;
  background: #fffdf5;
  border: 1px solid #d9cba4;
  transform: rotate(3deg);
}

.wish-sheet i {
  display: block;
  height: 5px;
  margin-bottom: 13px;
  background: #ead9a6;
}

.wish-sheet b {
  position: absolute;
  right: -12px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-size: 19px;
  background: #f05b52;
  border-radius: 50%;
}

.feature-message {
  min-height: 22px;
  margin-top: 9px;
  color: #7b6b42;
  font-size: 12px;
  text-align: right;
}

.shots-section {
  background: var(--ivory);
}

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

.shots-grid figure {
  min-width: 0;
  background: #fff;
  border: 1px solid #ddd3bd;
}

.shot-viewport {
  aspect-ratio: 9 / 16;
  padding: 9px;
  background: #ece4d3;
}

.shot-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080a0f;
}

.shots-grid figcaption {
  min-height: 78px;
  padding: 14px 15px;
  border-top: 3px solid var(--yellow);
}

.shots-grid figcaption strong,
.shots-grid figcaption span {
  display: block;
}

.shots-grid figcaption strong {
  font-size: 15px;
}

.shots-grid figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.guide-section {
  background: #fffdf7;
}

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

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

.faq-item summary {
  display: grid;
  min-height: 74px;
  padding: 0 5px;
  align-items: center;
  grid-template-columns: 58px minmax(0, 1fr) 34px;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary b {
  color: #ad8100;
  font-size: 12px;
}

.faq-item summary span {
  font-size: 16px;
  font-weight: 700;
}

.faq-item summary i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  font-size: 18px;
  font-style: normal;
  background: var(--yellow);
  border-radius: 50%;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 46px 22px 63px;
}

.faq-item > div p {
  color: var(--muted);
  font-size: 14px;
}

.faq-item a {
  color: #8f6900;
  font-weight: 800;
  text-decoration: underline;
}

.voices-section {
  background: var(--cream);
}

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

.voice-card {
  display: flex;
  min-height: 195px;
  padding: 23px;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd1ba;
}

.voice-user,
.voice-user > span {
  display: flex;
  align-items: center;
}

.voice-user {
  justify-content: space-between;
  gap: 12px;
}

.voice-user > span:first-child {
  min-width: 0;
  gap: 10px;
}

.voice-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  background: #ffe7a0 url("../icons/avatar.svg") center / 24px no-repeat;
  border-radius: 50%;
}

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

.voice-rating {
  flex: 0 0 auto;
  color: #c28f00;
  font-size: 12px;
}

.voice-rating i {
  margin-left: 2px;
  color: #e4a800;
}

.voice-card > p {
  margin-top: 18px;
  color: #4f4a40;
  font-size: 14px;
}

.voice-card > time {
  margin-top: auto;
  padding-top: 18px;
  color: #938c80;
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding: 88px 0 96px;
  color: #fff;
  background: var(--ink);
}

.download-heading > span {
  color: var(--yellow);
}

.download-heading h2 {
  color: #fff;
}

.download-heading > p {
  color: #989da6;
}

.download-ticket {
  position: relative;
  display: grid;
  min-height: 180px;
  margin-top: 36px;
  padding: 28px 30px;
  align-items: center;
  grid-template-columns: minmax(250px, 0.9fr) minmax(480px, 1.5fr) auto;
  gap: 25px;
  color: #171309;
  background: var(--yellow);
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  left: 35%;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.download-ticket::before {
  top: -12px;
}

.download-ticket::after {
  bottom: -12px;
}

.ticket-intro {
  padding-right: 22px;
  border-right: 1px dashed rgba(23, 19, 9, 0.45);
}

.ticket-intro > span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.ticket-intro > strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.ticket-intro > p {
  margin-top: 3px;
  color: #655111;
  font-size: 12px;
}

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

.ticket-steps li {
  display: grid;
  align-items: center;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 9px;
}

.ticket-steps b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 50%;
}

.ticket-steps span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ticket-steps strong {
  font-size: 13px;
}

.ticket-steps small {
  color: #735d17;
  font-size: 12px;
}

.download-button {
  min-width: 145px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.download-button:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

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

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

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

.footer-nav a {
  color: #a6a9b0;
  font-size: 12px;
}

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

.footer-bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #747983;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.back-top i {
  width: 20px;
  height: 20px;
  background: url("../icons/top.svg") center / contain no-repeat;
}

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

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    gap: 26px;
  }

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

  .journey-stage {
    padding: 23px 20px;
  }

  .discover-mosaic {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  }

  .feature-primary {
    grid-template-columns: 1fr;
  }

  .feature-primary > img {
    height: 230px;
  }

  .feature-copy {
    padding: 28px;
  }

  .download-ticket {
    grid-template-columns: minmax(210px, 0.8fr) minmax(420px, 1.5fr);
  }

  .download-button {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

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

  .container {
    width: min(100% - 32px, 760px);
  }

  .mobile-actions {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background: #0b0e14;
    border-top: 1px solid #252a33;
    border-bottom: 1px solid #343a44;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav ul {
    display: block;
    width: min(100% - 32px, 760px);
    margin: 0 auto;
    padding: 8px 0 14px;
  }

  .nav-link {
    padding: 12px 5px;
    border-bottom: 1px solid #1f242d;
  }

  .nav-link::after {
    display: none;
  }

  .hero::before {
    display: none;
  }

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

  .login-device {
    justify-self: center;
  }

  .journey-rail {
    grid-template-columns: 1fr;
  }

  .journey-stage {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #d9cdb5;
  }

  .journey-stage:last-child {
    border-bottom: 0;
  }

  .journey-stage::after {
    top: auto;
    right: 50%;
    bottom: -15px;
    transform: translateX(50%) rotate(90deg);
  }

  .discover-mosaic {
    grid-template-columns: 1fr;
  }

  .feature-primary {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .feature-primary > img {
    height: 100%;
  }

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

  .feature-secondary {
    grid-template-columns: 1fr;
  }

  .wish-sheet {
    display: none;
  }

  .feature-secondary > img {
    height: 160px;
  }

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

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

  .download-ticket {
    grid-template-columns: 1fr;
  }

  .download-ticket::before,
  .download-ticket::after {
    display: none;
  }

  .ticket-intro {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px dashed rgba(23, 19, 9, 0.45);
  }

  .download-button {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .page-section {
    padding: 72px 0;
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    text-align: center;
  }

  .hero-copy > p,
  .hero-benefits {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-benefits li {
    justify-content: center;
  }

  .hero-benefits span {
    text-align: center;
  }

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

  .age-label {
    margin-left: 0;
  }

  .footer-main {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header .container {
    width: calc(100% - 20px);
  }

  .header-inner {
    gap: 5px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 7px;
  }

  .brand-logo {
    width: 33px;
    height: 33px;
    border-radius: 7px;
  }

  .brand-copy strong {
    overflow: visible;
    max-width: none;
    font-size: 13px;
    text-overflow: clip;
  }

  .brand-copy small {
    overflow: visible;
    max-width: none;
    margin-top: 3px;
    font-size: 12px;
    text-overflow: clip;
  }

  .mobile-actions {
    flex: 0 0 auto;
    gap: 5px;
  }

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

  .menu-button {
    width: 32px;
    height: 32px;
  }

  .main-nav ul {
    width: calc(100% - 28px);
  }

  .hero-inner {
    padding: 52px 0 62px;
    gap: 43px;
  }

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

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

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefits li,
  .hero-benefits li:first-child {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid #cfc5b1;
  }

  .hero-benefits li:last-child {
    border-bottom: 0;
  }

  .primary-button {
    width: 100%;
  }

  .login-device {
    width: min(310px, 100%);
    min-height: 0;
  }

  .device-screen {
    min-height: 580px;
    padding-right: 15px;
    padding-left: 15px;
  }

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

  .journey-stage {
    padding: 23px 18px;
  }

  .feature-primary {
    grid-template-columns: 1fr;
  }

  .feature-primary > img {
    height: 260px;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .feature-secondary {
    min-height: 190px;
  }

  .shots-grid {
    gap: 10px;
  }

  .shot-viewport {
    padding: 5px;
  }

  .shots-grid figcaption {
    min-height: 88px;
    padding: 11px 9px;
  }

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

  .faq-item summary {
    min-height: 70px;
    grid-template-columns: 39px minmax(0, 1fr) 31px;
  }

  .faq-item summary span {
    font-size: 14px;
  }

  .faq-item > div {
    padding: 0 36px 20px 44px;
  }

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

  .download-ticket {
    padding: 25px 21px;
  }

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

  .download-button {
    width: 100%;
  }

  .footer-bottom {
    padding: 17px 0;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

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

@media (max-width: 360px) {
  .mobile-download {
    padding: 0 6px;
  }

  .device-screen {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (hover: none), (pointer: coarse) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
