@charset "UTF-8";

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

:root {
  --paper: #fff9f1;
  --paper-soft: #fffdf8;
  --blush: #f7d5de;
  --blush-light: #fff0f4;
  --coral: #f05572;
  --coral-dark: #cf3657;
  --wine: #64142d;
  --wine-dark: #3d0d1d;
  --ink: #1d1718;
  --muted: #76676b;
  --line: #e7cfd5;
  --yellow: #ffd74a;
  --white: #ffffff;
  --header-height: 76px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.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, 248, 0.98);
  border-bottom: 1px solid var(--line);
}

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

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

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

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.brand-copy,
.footer-brand > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  font-weight: 800;
}

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

.site-nav {
  height: 100%;
}

.site-nav ul,
.footer-nav ul,
.hero-features {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul {
  align-items: stretch;
  gap: 6px;
  height: 100%;
}

.site-nav li,
.site-nav a {
  height: 100%;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

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

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

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

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

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

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

.hero {
  overflow: hidden;
  background-color: var(--paper-soft);
  background-image: radial-gradient(circle, rgba(240, 85, 114, 0.14) 1px, transparent 1.4px);
  background-size: 18px 18px;
  border-bottom: 1px solid var(--line);
}

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

.hero-copy {
  max-width: 720px;
  padding: 70px 0;
}

.eyebrow,
.section-index,
.finder-note > span,
.download-copy > span {
  display: block;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0 2px;
  color: var(--wine);
  font-size: clamp(64px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-copy h2 {
  max-width: 660px;
  margin: 0 0 24px;
  font-size: clamp(25px, 2.35vw, 38px);
  line-height: 1.25;
}

.hero-summary {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-features {
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wine-dark);
  font-size: 14px;
  font-weight: 700;
}

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

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

.primary-link {
  display: inline-flex;
  min-width: 250px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 7px 7px 0 var(--wine);
  font-size: 18px;
  font-weight: 800;
}

.primary-link:hover {
  color: var(--white);
  background: var(--wine);
  box-shadow: 7px 7px 0 var(--coral);
}

.primary-link i {
  width: 20px;
  height: 20px;
}

.age-label {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.hero-device {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
}

.phone-shell {
  position: relative;
  width: 308px;
  padding: 13px;
  background: #101012;
  border: 2px solid #050506;
  border-radius: 42px;
  box-shadow: 20px 22px 0 rgba(100, 20, 45, 0.13);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  width: 88px;
  height: 22px;
  background: #09090a;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 568px;
  overflow: hidden;
  padding: 18px 13px 61px;
  background: var(--white);
  border-radius: 30px;
}

.phone-status,
.phone-brand-row,
.phone-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  height: 24px;
  padding: 0 3px;
  font-size: 12px;
  font-weight: 800;
}

.phone-brand-row {
  margin-top: 8px;
  color: var(--wine);
}

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

.phone-brand-row i {
  width: 20px;
  height: 20px;
}

.phone-search {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 14px;
  color: #92858a;
  background: #f4eef0;
  border-radius: 20px;
  font-size: 12px;
}

.phone-search i {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
  border-bottom: 1px solid #eadde1;
}

.phone-tabs button {
  position: relative;
  padding: 11px 2px 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
}

.phone-tabs button.is-active {
  color: var(--coral-dark);
  font-weight: 800;
}

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

.phone-feature {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 12px;
  padding: 20px 16px;
  color: var(--white);
  background-color: var(--wine);
  background-image: linear-gradient(135deg, transparent 0 56%, rgba(255, 255, 255, 0.14) 56% 70%, transparent 70%), radial-gradient(circle at 88% 22%, var(--coral) 0 27%, transparent 28%);
  border-radius: 14px;
}

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

.phone-feature strong {
  max-width: 185px;
  margin: 3px 0;
  font-size: 19px;
  line-height: 1.22;
}

.phone-list-title {
  margin-top: 13px;
}

.phone-list-title strong,
.phone-list-title span {
  font-size: 12px;
}

.phone-list-title span {
  color: var(--muted);
}

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

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

.phone-cover {
  display: flex;
  width: 100%;
  height: 84px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blush-light);
  border-radius: 7px;
}

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

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

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

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

.phone-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 55px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-top: 1px solid #eadde1;
}

.phone-bottom-nav span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  color: #8b7f83;
  font-size: 12px;
}

.phone-bottom-nav span.is-active {
  color: var(--coral-dark);
  font-weight: 800;
}

.phone-bottom-nav i {
  width: 17px;
  height: 17px;
}

.finder-section,
.screens-section,
.help-section,
.reviews-section,
.download-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.finder-section,
.help-section {
  background: var(--paper);
}

.screens-section,
.reviews-section {
  background: var(--blush-light);
}

.content-wrap {
  padding-top: 92px;
  padding-bottom: 92px;
}

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

.section-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: -40px;
}

.section-heading h2 {
  margin: 0;
  color: var(--wine-dark);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.1;
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
}

.finder-console {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.finder-search {
  display: grid;
  height: 54px;
  grid-template-columns: 22px minmax(0, 1fr) 92px;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.finder-search i {
  width: 20px;
  height: 20px;
}

.finder-search input {
  min-width: 0;
  height: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.finder-search button {
  align-self: stretch;
  color: var(--white);
  background: var(--wine);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0 0;
}

.filter-row > span {
  width: 82px;
  color: var(--wine-dark);
  font-size: 13px;
  font-weight: 800;
}

.filter-row button {
  min-height: 34px;
  padding: 6px 14px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  font-size: 12px;
}

.filter-row button:hover,
.filter-row button.is-active {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.finder-results {
  margin-top: 20px;
  border-top: 2px solid var(--wine);
}

.finder-results article {
  display: grid;
  min-height: 64px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.result-number {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 900;
}

.result-main strong,
.result-main small {
  display: block;
}

.result-main strong {
  font-size: 15px;
}

.result-main small,
.result-status {
  color: var(--muted);
  font-size: 12px;
}

.result-status {
  padding: 5px 10px;
  color: var(--coral-dark);
  background: var(--blush-light);
}

.empty-result {
  margin: 20px 0 0;
  padding: 18px;
  text-align: center;
  background: var(--blush-light);
  font-size: 13px;
}

.finder-note {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  background-color: var(--wine-dark);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 15px 15px;
}

.finder-note > span {
  color: var(--blush);
}

.finder-note strong {
  display: block;
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.45;
}

.finder-note p {
  margin: 20px 0 0;
  padding-top: 20px;
  color: #ead5dc;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
}

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

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

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

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

.screen-grid figcaption {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

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

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

.faq-list {
  width: 100%;
  border-top: 2px solid var(--wine-dark);
}

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

.faq-item > button {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 56px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  text-align: left;
  background: var(--paper-soft);
  border: 0;
  cursor: pointer;
}

.faq-item > button:hover {
  background: var(--blush-light);
}

.faq-number {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

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

.faq-symbol,
.details-symbol {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.faq-symbol::before,
.faq-symbol::after,
.details-symbol::before,
.details-symbol::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
  background: currentColor;
  content: "";
}

.faq-symbol::after,
.details-symbol::after {
  transform: rotate(90deg);
}

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

.faq-answer {
  padding: 20px 84px;
  background: var(--blush-light);
}

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

.official-site {
  width: 100%;
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--wine);
}

.official-site summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  cursor: pointer;
  list-style: none;
}

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

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

.official-site summary i {
  width: 22px;
  height: 22px;
}

.official-site summary strong {
  font-size: 16px;
}

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

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

.official-answer a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.review-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border-top: 4px solid var(--coral);
  box-shadow: 0 12px 30px rgba(100, 20, 45, 0.07);
}

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

.review-meta,
.review-person {
  display: flex;
  align-items: center;
}

.review-meta {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.review-person {
  min-width: 0;
  gap: 10px;
}

.review-person i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background-color: var(--wine-dark);
  background-size: 20px 20px;
  border-radius: 50%;
}

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

.review-rating {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  color: var(--coral);
  white-space: nowrap;
}

.aiarticle-comment-rating-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 1px;
  color: var(--coral);
  font-style: normal;
  line-height: 15px;
  text-align: center;
}

.aiarticle-comment-rating-icon::before {
  font-size: 13px;
}

.fa-star.aiarticle-comment-rating-icon::before {
  content: "★";
}

.fa-star-o.aiarticle-comment-rating-icon::before {
  content: "☆";
}

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

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

.download-section {
  padding: 54px 0;
  color: var(--white);
  background-color: var(--wine-dark);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 16px 16px;
}

.download-section .content-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.download-drawer {
  display: grid;
  min-height: 176px;
  grid-template-columns: 154px minmax(0, 1fr) 260px;
  align-items: stretch;
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--blush);
}

.download-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: var(--wine);
  border-right: 1px dashed rgba(255, 255, 255, 0.48);
}

.download-marker span {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.download-marker small {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.download-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 40px;
  color: var(--ink);
}

.download-copy h2 {
  margin: 7px 0 5px;
  color: var(--wine-dark);
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.2;
}

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

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--coral);
  font-size: 20px;
  font-weight: 900;
}

.download-link:hover {
  color: var(--white);
  background: var(--wine);
}

.download-link i {
  width: 24px;
  height: 24px;
}

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

.footer-inner {
  padding-top: 38px;
  padding-bottom: 24px;
}

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

.footer-brand img {
  border-color: rgba(255, 255, 255, 0.36);
}

.footer-brand span span {
  color: #f1ced8;
}

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

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin: 0;
  color: #f4dce3;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: var(--wine);
  border: 2px solid var(--coral);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

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

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

.i-menu,
.i-download,
.i-search,
.i-compass,
.i-heart,
.i-bell,
.i-grid,
.i-book,
.i-user,
.i-avatar,
.i-globe,
.i-arrow-right,
.i-arrow-up {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

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

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

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

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

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

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

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

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

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

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

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

.i-arrow-up {
  background-image: url("../images/top.png");
}

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

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

  .site-header {
    height: var(--header-height);
    background: var(--paper-soft);
  }

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

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

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

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

  .mobile-actions {
    display: flex;
  }

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

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

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

  .site-nav li,
  .site-nav a {
    height: auto;
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 8px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 68px 0 72px;
  }

  .hero-copy {
    max-width: none;
    padding: 0;
    text-align: center;
  }

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

  .hero-copy h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(24px, 7vw, 34px);
  }

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

  .hero-features {
    justify-content: center;
    gap: 15px 22px;
  }

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

  .hero-device {
    justify-content: center;
    justify-self: center;
  }

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

  .content-wrap {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  .section-heading .section-index {
    grid-column: auto;
    margin-bottom: 0;
  }

  .section-heading h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

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

  .finder-note {
    min-height: 250px;
  }

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

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

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

@media (max-width: 640px) {
  .header-inner {
    width: calc(100% - 20px);
  }

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

  .brand-copy span {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-download {
    min-height: 38px;
    padding: 0 10px;
  }

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

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

  .hero-copy h1 {
    margin-top: 12px;
  }

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

  .primary-link {
    width: min(100%, 280px);
    min-width: 0;
  }

  .section-heading p {
    font-size: 14px;
  }

  .finder-console {
    padding: 14px;
  }

  .finder-search {
    height: auto;
    min-height: 52px;
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 0 12px;
  }

  .finder-search button {
    min-height: 44px;
    grid-column: 1 / -1;
    margin: 0 -12px;
  }

  .filter-row > span {
    width: 100%;
  }

  .finder-results article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 0;
  }

  .result-status {
    grid-column: 2;
    justify-self: start;
  }

  .finder-note {
    padding: 24px;
  }

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

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

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

  .faq-item > button {
    min-height: 66px;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    padding: 0 12px;
  }

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

  .faq-answer {
    padding: 18px 46px;
  }

  .official-site summary {
    min-height: 68px;
    padding: 0 14px;
  }

  .official-site summary strong {
    font-size: 14px;
  }

  .official-answer {
    padding: 0 48px 20px;
  }

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

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

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

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

  .download-marker {
    min-height: 92px;
    flex-direction: row;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.48);
  }

  .download-marker span {
    font-size: 40px;
  }

  .download-marker small {
    margin-top: 0;
  }

  .download-copy {
    align-items: center;
    padding: 28px 20px;
    text-align: center;
  }

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

  .download-link {
    min-height: 68px;
    grid-column: auto;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-main,
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

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

  .footer-bottom {
    gap: 8px;
  }

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

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

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

@media (max-width: 374px) {
  .header-inner {
    width: calc(100% - 14px);
  }

  .brand {
    gap: 5px;
  }

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

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

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

  .mobile-actions {
    gap: 5px;
  }

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

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

  .hero-features {
    gap: 12px;
  }

  .screen-grid {
    gap: 8px;
  }
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
