@charset "UTF-8";

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

:root {
  --pink: #ff7698;
  --pink-dark: #ef567f;
  --pink-pale: #fff0f4;
  --blue: #4bbfe7;
  --blue-pale: #edf9fd;
  --navy: #10243b;
  --ink: #17304a;
  --muted: #64778a;
  --line: #dbe8ef;
  --paper: #ffffff;
  --soft: #f7fbfd;
  --warm: #ffb246;
  --green: #2ebf92;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  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: #fff;
  border-bottom: 1px solid var(--line);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
}

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

.brand img,
.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
}

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

.brand-copy strong,
.footer-brand strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
}

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

.site-nav {
  height: 100%;
}

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

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

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--pink-dark);
}

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

.mobile-actions {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(237, 249, 253, 0.92) 0%, rgba(255, 255, 255, 0.94) 50%, #fff 100%),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(75, 191, 231, 0.08) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(75, 191, 231, 0.08) 31px 32px);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 38%);
  align-items: center;
  gap: 80px;
  width: min(calc(100% - 40px), var(--container));
  min-height: 690px;
  margin: 0 auto;
  padding: 64px 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero h1 {
  margin-top: 14px;
  color: var(--pink);
  font-size: clamp(72px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 22px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}

.hero-intro {
  max-width: 650px;
  margin-top: 24px;
  color: #4f6579;
  font-size: 17px;
}

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

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

.hero-features i {
  width: 28px;
  height: 28px;
  background-size: 17px;
  border: 1px solid #b9ddeb;
  border-radius: 9px;
}

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

.primary-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 56px;
  gap: 10px;
  color: #fff;
  background: var(--pink);
  border-radius: 28px;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 160ms ease;
}

.primary-download:hover,
.primary-download:focus-visible {
  color: #fff;
  background: var(--pink-dark);
}

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

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  right: 122px;
  width: 430px;
  height: 430px;
  object-fit: contain;
  opacity: 0.2;
  transform: translateY(-50%);
  filter: saturate(0.8);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 308px;
  padding: 14px;
  background: #111a24;
  border: 2px solid #111a24;
  border-radius: 42px;
}

.phone-frame::before {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 82px;
  height: 22px;
  content: "";
  background: #111a24;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
}

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

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 8px 17px 0;
  font-size: 12px;
  font-weight: 700;
}

.status-icons {
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 1px;
}

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 17px 8px;
}

.phone-head strong {
  color: var(--pink);
  font-size: 19px;
}

.phone-head i {
  width: 22px;
  height: 22px;
}

.phone-search {
  display: flex;
  align-items: center;
  height: 36px;
  margin: 4px 17px 0;
  padding: 0 12px;
  gap: 8px;
  color: #8494a3;
  background: #f1f6f8;
  border-radius: 18px;
  font-size: 12px;
}

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

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 10px 17px 0;
  border-bottom: 1px solid #e5edf1;
}

.phone-tabs span {
  position: relative;
  padding: 7px 0 9px;
  text-align: center;
  font-size: 12px;
}

.phone-tabs .active {
  color: var(--pink-dark);
  font-weight: 700;
}

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

.phone-featured {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 92px;
  height: 122px;
  margin: 12px 17px 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 13px;
}

.phone-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
}

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

.phone-featured-copy strong {
  margin: 4px 0;
  font-size: 17px;
}

.phone-featured img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eaf4f7;
}

.phone-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 17px 8px;
}

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

.phone-list-title span {
  color: var(--pink-dark);
  font-size: 12px;
}

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

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

.phone-cover {
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 4;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f1f5f7;
  border-radius: 8px;
}

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

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

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

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

.phone-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 14px;
  padding: 9px 8px 10px;
  border-top: 1px solid #e5edf1;
}

.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #718394;
  font-size: 12px;
  line-height: 1.1;
}

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

.phone-nav .active {
  color: var(--pink-dark);
}

.section {
  padding: 92px 0;
}

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

.section-heading h2 {
  position: relative;
  margin-top: 7px;
  padding-left: 19px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.section-heading h2::before {
  position: absolute;
  top: 9%;
  bottom: 8%;
  left: 0;
  width: 6px;
  content: "";
  background: var(--pink);
}

.section-heading > p {
  max-width: 520px;
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.radar-section {
  background: #fff;
}

.radar-board {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 18px;
}

.radar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: var(--blue-pale);
  border-right: 1px solid var(--line);
}

.radar-date span {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.radar-date strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 24px;
}

.radar-date small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.radar-list {
  padding: 14px 26px;
  background: #fff;
}

.radar-item {
  display: grid;
  grid-template-columns: 62px 62px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 100px;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.radar-item:last-child {
  border-bottom: 0;
}

.radar-item[hidden] {
  display: none;
}

.radar-item time {
  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 800;
}

.radar-cover {
  display: flex;
  width: 62px;
  height: 72px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f2f6f8;
  border-radius: 8px;
}

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

.radar-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.radar-info strong {
  color: var(--navy);
  font-size: 16px;
}

.radar-info small,
.radar-info em {
  margin-top: 2px;
  font-size: 12px;
  font-style: normal;
}

.radar-info small {
  color: var(--muted);
}

.radar-info em {
  color: var(--green);
}

.follow-button {
  min-width: 82px;
  height: 38px;
  padding: 0 15px;
  color: #fff;
  background: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 19px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.follow-button[aria-pressed="true"] {
  color: var(--pink-dark);
  background: #fff;
}

.radar-filter {
  padding: 28px 22px;
  background: var(--soft);
  border-left: 1px solid var(--line);
}

.radar-filter h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 17px;
}

.radar-filter h3 i {
  width: 20px;
  height: 20px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.filter-grid button {
  height: 38px;
  color: #5e7082;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
}

.filter-grid button:hover,
.filter-grid button:focus-visible,
.filter-grid button.is-active {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
}

.calendar-section {
  background: var(--blue-pale);
}

.calendar-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 228px;
  gap: 18px;
}

.calendar-main,
.calendar-stats {
  border: 1px solid #cfe5ef;
  background: #fff;
  border-radius: 18px;
}

.calendar-main {
  overflow: hidden;
}

.week-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 12px;
  gap: 7px;
  border-bottom: 1px solid var(--line);
}

.week-tabs button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--soft);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.week-tabs strong {
  font-size: 13px;
}

.week-tabs span,
.week-tabs em {
  font-size: 12px;
  font-style: normal;
}

.week-tabs span {
  color: var(--muted);
}

.week-tabs em {
  margin-top: 2px;
}

.week-tabs button.is-active {
  color: #fff;
  background: var(--pink);
}

.week-tabs button.is-active span {
  color: #fff;
}

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

.calendar-grid article {
  display: grid;
  grid-template-columns: 86px 54px minmax(0, 1fr);
  align-items: center;
  min-height: 112px;
  padding: 16px;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar-grid article:nth-child(even) {
  border-right: 0;
}

.calendar-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.calendar-grid article.is-muted {
  display: none;
}

.period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 7px;
  border-radius: 15px;
  font-size: 12px;
  text-align: center;
}

.period.sun {
  color: #e9882e;
  background: #fff3de;
}

.period.moon {
  color: #4976be;
  background: #edf2ff;
}

.calendar-grid img {
  width: 54px;
  height: 64px;
  object-fit: contain;
  background: #f3f7f9;
  border-radius: 7px;
}

.calendar-grid article > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.calendar-grid strong {
  color: var(--navy);
  font-size: 14px;
}

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

.calendar-stats {
  display: grid;
  align-content: center;
  padding: 18px;
}

.calendar-stats article {
  display: flex;
  align-items: center;
  min-height: 92px;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.calendar-stats article:last-child {
  border-bottom: 0;
}

.calendar-stats i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background-size: 24px;
}

.calendar-stats span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 12px;
}

.calendar-stats strong {
  color: var(--pink);
  font-size: 24px;
}

.screens-section {
  background: #fff;
}

.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;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1cad5;
  border-radius: 16px;
}

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

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

.screen-grid figcaption {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  background: var(--pink-pale);
  border-top: 1px solid #f1cad5;
}

.screen-grid figcaption strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 16px;
}

.screen-grid figcaption strong span {
  color: var(--pink);
  font-size: 18px;
}

.screen-grid figcaption small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.faq-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

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

.faq-item:last-child {
  border-bottom: 0;
}

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

.faq-item > button > span {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

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

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

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

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

.faq-item > button[aria-expanded="true"] {
  background: var(--pink-pale);
}

.faq-item > button[aria-expanded="true"] > i::after,
.official-site[open] .details-state::after {
  display: none;
}

.faq-answer {
  padding: 0 24px 22px 76px;
  background: var(--pink-pale);
}

.faq-answer p {
  color: #576b7e;
  font-size: 14px;
}

.official-site {
  width: 100%;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--navy);
}

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

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

.official-site summary > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.official-site summary i:first-child {
  width: 20px;
  height: 20px;
}

.official-site > div {
  padding: 0 56px 20px;
}

.official-site > div a {
  color: var(--blue);
  font-size: 14px;
  word-break: break-all;
}

.review-section {
  background: #fff;
}

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

.review-card {
  display: flex;
  min-height: 244px;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--pink);
  border-radius: 10px;
}

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

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

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

.review-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background-color: var(--pink-pale);
  background-size: 21px;
  border: 1px solid #f0bfd0;
  border-radius: 50%;
}

.review-user strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  display: flex;
  flex: 0 0 auto;
  color: var(--warm);
  font-size: 14px;
}

.review-rating .aiarticle-comment-rating-icon {
  display: inline-block;
  width: 14px;
  height: 18px;
  font-style: normal;
  line-height: 18px;
  text-align: center;
}

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

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

.review-card > p {
  margin-top: 18px;
  color: #41576a;
  font-size: 14px;
}

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

.download-section {
  padding: 0 0 92px;
  background: #fff;
}

.download-pass {
  position: relative;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 210px;
  min-height: 170px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff0f4 0%, #fff 55%, #eaf8fd 100%);
  border: 1px solid #f1cada;
  border-radius: 18px;
}

.download-pass::before,
.download-pass::after {
  position: absolute;
  top: -12px;
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  border: 1px solid #f1cada;
  border-radius: 50%;
}

.download-pass::before {
  left: 193px;
}

.download-pass::after {
  right: 198px;
}

.pass-number,
.pass-copy,
.pass-action {
  position: relative;
  z-index: 1;
}

.pass-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-right: 1px dashed #efb5c6;
}

.pass-number strong {
  color: var(--pink);
  font-size: 42px;
  line-height: 1;
}

.pass-number span {
  margin-top: 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.pass-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 42px;
}

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

.pass-copy h2 {
  margin-top: 5px;
  color: var(--navy);
  font-size: 25px;
  white-space: nowrap;
}

.pass-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.pass-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--pink);
  border-left: 1px dashed #efb5c6;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 160ms ease;
}

.pass-action:hover,
.pass-action:focus-visible {
  color: #fff;
  background: var(--pink-dark);
}

.site-footer {
  color: #fff;
  background: var(--navy);
}

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

.footer-brand strong {
  color: #fff;
}

.footer-brand small {
  color: #a8c0d4;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

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

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

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

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 160ms ease;
}

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

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

[class^="icon-"],
[class*=" icon-"],
.review-avatar {
  display: inline-block;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

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

.icon-calendar {
  background-image: url("../icons/calendar.svg");
}

.icon-shelf {
  background-image: url("../icons/shelf.svg");
}

.icon-download {
  width: 20px;
  height: 20px;
  background-image: url("../icons/download.svg");
}

.icon-home {
  background-image: url("../icons/home.svg");
}

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

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

.icon-user,
.review-avatar {
  background-image: url("../icons/user.svg");
}

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

.icon-clock {
  background-image: url("../icons/clock.svg");
}

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

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

:focus-visible {
  outline: 3px solid rgba(75, 191, 231, 0.55);
  outline-offset: 3px;
}

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

  .hero-shell {
    gap: 30px;
  }

  .hero-watermark {
    right: 76px;
    width: 360px;
    height: 360px;
  }

  .radar-board {
    grid-template-columns: 120px minmax(0, 1fr) 220px;
  }

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

  .radar-cover {
    width: 54px;
    height: 64px;
  }

  .follow-button {
    grid-column: 3;
    justify-self: start;
    min-width: 72px;
    height: 32px;
    margin-top: -8px;
  }

  .pass-copy {
    padding-right: 24px;
    padding-left: 24px;
  }
}

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

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

  .header-shell {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

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

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

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

  .mobile-download {
    display: inline-flex;
    height: 38px;
    align-items: center;
    padding: 0 14px;
    color: #fff;
    background: var(--pink);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
  }

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--navy);
    cursor: pointer;
  }

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

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    height: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav ul {
    display: block;
    width: calc(100% - 32px);
    height: auto;
    margin: 0 auto;
    padding: 8px 0 14px;
  }

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

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

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .site-nav a::after {
    right: 35%;
    left: 35%;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 58px 0 64px;
  }

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

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

  .hero h2 {
    font-size: 30px;
  }

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

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

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

  .hero-visual {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-watermark {
    right: 50%;
    width: 340px;
    height: 340px;
    transform: translate(50%, -50%);
  }

  .phone-frame {
    width: 296px;
  }

  .section {
    padding: 72px 0;
  }

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

  .section-heading > p {
    max-width: none;
    text-align: left;
  }

  .radar-board {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .radar-filter {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .calendar-board {
    grid-template-columns: 1fr;
  }

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

  .calendar-stats article {
    justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .calendar-stats article:last-child {
    border-right: 0;
  }

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

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

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

  .pass-number {
    grid-row: 1 / span 2;
  }

  .pass-copy {
    padding: 24px;
  }

  .pass-copy h2 {
    font-size: 22px;
  }

  .pass-action {
    min-height: 58px;
    border-top: 1px dashed #efb5c6;
    border-left: 0;
  }
}

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

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

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

  .hero-shell {
    width: calc(100% - 28px);
    padding-top: 46px;
  }

  .hero h2 {
    font-size: 26px;
  }

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

  .hero-features {
    gap: 12px;
  }

  .hero-features li {
    font-size: 12px;
  }

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

  .radar-board {
    grid-template-columns: 1fr;
  }

  .radar-date {
    align-items: baseline;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .radar-date strong {
    margin: 0;
    font-size: 20px;
  }

  .radar-date small {
    margin: 0;
  }

  .radar-list {
    padding: 10px 16px;
  }

  .radar-item {
    grid-template-columns: 50px 50px minmax(0, 1fr);
    gap: 10px;
  }

  .radar-cover {
    width: 50px;
    height: 60px;
  }

  .radar-item time {
    font-size: 12px;
  }

  .radar-info strong {
    font-size: 14px;
  }

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

  .week-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(7, 74px);
  }

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

  .calendar-grid article,
  .calendar-grid article:nth-child(even),
  .calendar-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .calendar-grid article:last-child {
    border-bottom: 0;
  }

  .calendar-stats {
    grid-template-columns: 1fr;
  }

  .calendar-stats article {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .screen-grid figcaption {
    min-height: 82px;
    padding: 11px;
  }

  .screen-grid figcaption strong {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    font-size: 13px;
  }

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

  .faq-item > button {
    min-height: 64px;
    padding: 14px 16px;
  }

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

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

  .official-site summary {
    padding: 14px 16px;
  }

  .official-site summary > span {
    font-size: 13px;
  }

  .official-site > div {
    padding: 0 48px 18px;
  }

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

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

  .download-section {
    padding-bottom: 72px;
  }

  .download-pass {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .pass-number {
    align-items: center;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px dashed #efb5c6;
    text-align: center;
  }

  .pass-number strong {
    font-size: 36px;
  }

  .pass-copy {
    align-items: center;
    padding: 24px 18px;
    text-align: center;
  }

  .pass-copy h2 {
    font-size: 19px;
    white-space: normal;
  }

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

  .pass-action {
    min-height: 60px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

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

@media (max-width: 390px) {
  .header-shell {
    width: calc(100% - 18px);
  }

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

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

  .mobile-actions {
    gap: 6px;
  }

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

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

  .hero-features {
    gap: 8px;
  }

  .hero-features li {
    gap: 5px;
  }

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

  .phone-frame {
    width: 282px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
