@charset "UTF-8";

:root {
  --paper: #fffaf6;
  --paper-deep: #fff1f5;
  --panel: #ffffff;
  --pink: #e75d9d;
  --pink-deep: #bb4078;
  --wine: #651f36;
  --ink: #3d2430;
  --muted: #836a73;
  --line: #edc6d5;
  --shadow: rgba(101, 31, 54, 0.12);
  --radius: 5px;
  --content: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

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

.page-width,
.nav-shell {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.icon::before {
  display: block;
  width: 1em;
  height: 1em;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid #f1dbe2;
  background: rgba(255, 250, 246, 0.98);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 205px;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  width: 43px;
  height: 43px;
  border-radius: var(--radius);
  object-fit: cover;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  display: block;
  padding: 8px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-download,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.nav-download {
  padding: 0 16px;
  border: 1px solid var(--pink);
  color: var(--pink-deep);
}

.nav-download .icon,
.button .icon {
  font-size: 17px;
}

.nav-download:hover,
.nav-download:focus-visible {
  background: var(--pink);
  color: #ffffff;
}

.nav-download:hover .icon::before,
.nav-download:focus-visible .icon::before {
  filter: invert(1);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 7vw, 108px);
  min-height: 590px;
  padding-top: 58px;
  padding-bottom: 62px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 472px;
  align-items: center;
  justify-content: flex-start;
}

.phone-frame {
  display: flex;
  width: 292px;
  height: 478px;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border: 2px solid var(--wine);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 12px 16px 0 #f5d8e3, 18px 24px 35px var(--shadow);
  transform: rotate(-3deg);
}

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

.hero-note {
  position: absolute;
  z-index: 2;
  bottom: 43px;
  left: 218px;
  width: 260px;
  padding: 17px;
  border: 1px solid #efbad0;
  border-radius: var(--radius);
  background: #fff6f8;
  box-shadow: 10px 11px 0 #f5cddd, 0 15px 28px var(--shadow);
}

.note-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--wine);
  font-size: 15px;
  font-weight: 900;
}

.note-title .icon {
  font-size: 16px;
}

.hero-note article {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  padding: 11px 0 0;
}

.hero-note article + article {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.hero-note article .icon {
  color: var(--pink-deep);
  font-size: 20px;
}

.hero-note strong,
.hero-note small {
  display: block;
}

.hero-note strong {
  color: var(--wine);
  font-size: 13px;
}

.hero-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.eyebrow {
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  margin-top: 20px;
  color: var(--wine);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(42px, 5.3vw, 70px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.hero-copy h2 {
  margin-top: 17px;
  color: var(--ink);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(29px, 3.2vw, 43px);
  line-height: 1.25;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero-lead {
  max-width: 490px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.primary-button {
  min-width: 180px;
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid var(--pink);
  background: #ffffff;
  color: var(--pink-deep);
  box-shadow: 4px 4px 0 #f3cada;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--pink);
  color: #ffffff;
}

.primary-button:hover .icon::before,
.primary-button:focus-visible .icon::before {
  filter: invert(1);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 510px;
  margin-top: 39px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-meta li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 8px;
}

.hero-meta .icon {
  grid-row: span 2;
  color: var(--pink-deep);
  font-size: 21px;
}

.hero-meta span {
  color: var(--muted);
  font-size: 12px;
}

.hero-meta strong {
  display: block;
  margin-top: 3px;
  color: var(--wine);
  font-size: 13px;
}

.section-heading h2,
.preferences h2 {
  margin-top: 10px;
  color: var(--wine);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(29px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.06em;
}

.route {
  padding: 73px 0;
  border-top: 1px solid var(--line);
}

.section-heading > p:last-child {
  max-width: 450px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: 70px;
  margin-top: 35px;
}

.route-list {
  position: relative;
  display: grid;
  gap: 0;
}

.route-list::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 18px;
  width: 1px;
  content: "";
  background: #e8aac4;
}

.route-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.route-list li:first-child {
  border-top: 1px solid var(--line);
}

.route-list b {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--pink-deep);
  font-size: 13px;
}

.route-list h3 {
  color: var(--wine);
  font-size: 17px;
}

.route-list p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.route-board {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid #ecb3cd;
  border-radius: var(--radius);
  background: #fff4f7;
  box-shadow: 11px 11px 0 #f7dae5;
}

.board-label {
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.route-board h3 {
  margin-top: 11px;
  color: var(--wine);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(24px, 2.6vw, 33px);
  line-height: 1.25;
}

.route-board > p:not(.board-label) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.route-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.route-badges span {
  padding: 5px 9px;
  border: 1px solid #e9b7cc;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 700;
}

.screens {
  padding: 73px 0;
  background: var(--paper-deep);
  border-top: 1px solid #f2d4df;
  border-bottom: 1px solid #f2d4df;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.split-heading > p {
  margin-bottom: 4px;
}

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

.screen-card {
  overflow: hidden;
  border: 1px solid #efbdd2;
  border-radius: var(--radius);
  background: #ffffff;
}

.screen-image {
  display: flex;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  padding: 7px;
}

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

.screen-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  padding: 13px;
  border-top: 1px solid #f2cede;
}

.screen-card figcaption b {
  grid-row: span 2;
  color: var(--pink-deep);
  font-size: 12px;
}

.screen-card figcaption strong {
  color: var(--wine);
  font-size: 14px;
}

.screen-card figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.preferences {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 382px;
  align-items: center;
  gap: 84px;
  padding: 84px 0;
}

.preference-intro {
  max-width: 530px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.setting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.setting-grid article {
  display: grid;
  min-height: 91px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfd;
}

.setting-grid .icon {
  color: var(--pink-deep);
  font-size: 21px;
}

.setting-grid h3,
.preset-list h3 {
  color: var(--wine);
  font-size: 14px;
}

.setting-grid p,
.preset-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.reading-presets {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 11px;
  margin-top: 11px;
}

.preset-progress,
.preset-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff7f9;
}

.preset-progress {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 15px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.preset-progress i {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f0d7e0;
}

.preset-progress em {
  display: block;
  width: 67%;
  height: 100%;
  background: var(--pink);
}

.preset-list {
  display: grid;
  gap: 11px;
}

.preset-list article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 9px;
  padding: 11px;
}

.preset-list .icon {
  color: var(--pink-deep);
  font-size: 20px;
}

.preference-shot {
  display: flex;
  width: 382px;
  height: 565px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #e8a7c2;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 14px 16px 0 #f7dce6, 18px 23px 32px var(--shadow);
}

.preference-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq {
  padding-top: 67px;
}

.faq-list {
  display: grid;
  width: min(100%, 790px);
  gap: 10px;
  margin: 29px auto 0;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e4b9c9;
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-item button,
.official-toggle {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: transparent;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.faq-item button:hover,
.faq-item button:focus-visible,
.official-toggle:hover,
.official-toggle:focus-visible {
  background: #fff4f7;
}

.faq-item .icon,
.official-toggle .icon:last-child {
  color: var(--pink-deep);
  font-size: 17px;
}

.faq-item button[aria-expanded="true"] .icon,
.official-toggle[aria-expanded="true"] .icon:last-child {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 16px 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.official {
  padding-top: 18px;
  padding-bottom: 70px;
}

.official-toggle {
  border: 1px solid var(--wine);
  border-radius: var(--radius);
}

.official-toggle .icon:first-child {
  margin-right: 10px;
  color: var(--pink-deep);
  font-size: 18px;
}

.official-toggle span {
  margin-right: auto;
}

.official-link {
  display: block;
  padding: 15px 16px;
  border: 1px solid var(--wine);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #ffffff;
  color: var(--pink-deep);
  font-size: 14px;
}

.official-link[hidden] {
  display: none;
}

.reviews {
  padding: 70px 0;
  background: #fff5f7;
  border-top: 1px solid #f2d7e0;
}

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

.review-card {
  display: flex;
  min-height: 266px;
  flex-direction: column;
  padding: 17px;
  border: 1px solid #ebc6d5;
  border-radius: var(--radius);
  background: #ffffff;
}

.review-card header,
.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--pink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.review-card header b {
  color: var(--pink-deep);
  font-size: 12px;
}

.review-card > p {
  margin-top: 14px;
  color: #6e555e;
  font-size: 13px;
  line-height: 1.84;
}

.review-card footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0dce4;
  color: var(--muted);
  font-size: 12px;
}

.download {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  margin-bottom: 54px;
  padding: 34px 48px;
  border: 1px solid var(--pink-deep);
  border-radius: var(--radius);
  background: var(--wine);
  color: #ffffff;
}

.download .eyebrow {
  color: #f5b7d0;
}

.download h2 {
  margin-top: 10px;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.download-button {
  min-width: 176px;
  padding: 0 18px;
  background: #ffffff;
  color: var(--wine);
}

.download-button:hover,
.download-button:focus-visible {
  background: #f7c8da;
}

.site-footer {
  padding: 48px 0 20px;
  background: #491427;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.8fr) 1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  gap: 11px;
}

.footer-brand img {
  width: 45px;
  height: 45px;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.footer-brand p {
  margin-top: 7px;
  color: #e6b5c7;
  font-size: 12px;
}

.site-footer h2 {
  font-size: 14px;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: #e3bdc9;
  font-size: 12px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-follow > div {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}

.footer-follow a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #935168;
  border-radius: var(--radius);
}

.footer-follow .icon {
  font-size: 16px;
}

.footer-follow .icon::before {
  filter: invert(1);
}

.copyright {
  width: min(calc(100% - 48px), var(--content));
  margin: 35px auto 0;
  padding-top: 16px;
  border-top: 1px solid #75364b;
  color: #c593a4;
  font-size: 12px;
  text-align: center;
}

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

  .hero {
    gap: 48px;
  }

  .hero-note {
    left: 180px;
  }

  .preferences {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 45px;
  }

  .preference-shot {
    width: 340px;
    height: 510px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.8fr);
  }

  .footer-follow {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--pink);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--pink-deep);
    font-size: 20px;
  }

  .menu-toggle .icon {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle .icon::before {
    position: absolute;
    inset: 0;
    width: 20px;
    height: 20px;
    margin: auto;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: block;
    padding: 9px;
    border: 1px solid #ecb5cb;
    border-radius: var(--radius);
    background: #fffafc;
    box-shadow: 7px 8px 0 #f3cfdd;
  }

  .site-nav.is-open ul {
    display: grid;
    gap: 4px;
  }

  .site-nav.is-open a {
    display: block;
    padding: 12px 13px;
    border-left: 3px solid transparent;
    color: var(--wine);
    font-size: 14px;
    font-weight: 800;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible {
    border-left-color: var(--pink);
    background: #fff0f5;
  }

  .hero {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
    gap: 30px;
  }

  .hero-note {
    left: 150px;
  }

  .route-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .route-board {
    max-width: 560px;
  }

  .preferences {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
  }

  .preference-shot {
    width: 300px;
    height: 455px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .page-width,
  .nav-shell,
  .copyright {
    width: min(calc(100% - 32px), var(--content));
  }

  .nav-shell {
    gap: 9px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
    font-size: 15px;
  }

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

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

  .nav-download .icon {
    display: none;
  }

  .menu-toggle {
    width: 37px;
    height: 37px;
    font-size: 18px;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    padding-top: 43px;
    padding-bottom: 54px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(39px, 12vw, 51px);
  }

  .hero-copy h2 {
    margin-top: 13px;
    font-size: clamp(24px, 7vw, 30px);
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

  .primary-button {
    min-height: 46px;
    margin-top: 22px;
  }

  .hero-meta {
    max-width: 330px;
    margin: 29px auto 0;
    text-align: left;
  }

  .hero-meta li {
    grid-template-columns: 22px 1fr;
    gap: 5px;
  }

  .hero-meta .icon {
    font-size: 18px;
  }

  .hero-meta span,
  .hero-meta strong {
    font-size: 12px;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    min-height: 465px;
    margin-top: 36px;
    justify-content: flex-end;
  }

  .phone-frame {
    width: 270px;
    height: 440px;
    padding: 8px;
    transform: rotate(0);
  }

  .hero-note {
    bottom: 46px;
    left: 0;
    width: min(255px, calc(100vw - 48px));
    padding: 15px;
    text-align: left;
  }

  .hero-note article {
    grid-template-columns: 22px 1fr;
    padding-top: 9px;
  }

  .hero-note small {
    font-size: 12px;
  }

  .route,
  .screens,
  .preferences,
  .reviews {
    padding-top: 53px;
    padding-bottom: 53px;
  }

  .section-heading h2,
  .preferences h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .route-layout {
    margin-top: 27px;
  }

  .route-list li {
    grid-template-columns: 33px 1fr;
    gap: 13px;
    padding: 15px 0;
  }

  .route-list::before {
    left: 16px;
  }

  .route-list b {
    width: 33px;
    height: 33px;
    font-size: 12px;
  }

  .route-board {
    min-height: 0;
    padding: 24px;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    margin-top: 13px;
  }

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

  .screen-image {
    padding: 5px;
  }

  .screen-card figcaption {
    padding: 10px;
  }

  .screen-card figcaption span {
    display: none;
  }

  .preferences {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .preference-copy {
    width: 100%;
  }

  .setting-grid,
  .reading-presets {
    grid-template-columns: 1fr;
  }

  .setting-grid article {
    min-height: 69px;
  }

  .preference-shot {
    width: min(100%, 320px);
    height: 480px;
  }

  .faq {
    padding-top: 52px;
  }

  .faq-list {
    margin-top: 25px;
  }

  .official {
    padding-bottom: 53px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 25px;
  }

  .review-card {
    min-height: 0;
  }

  .review-card > p {
    margin-bottom: 18px;
  }

  .download {
    display: block;
    min-height: 0;
    margin-top: 50px;
    margin-bottom: 42px;
    padding: 29px 24px;
  }

  .download h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .download-button {
    width: 100%;
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 29px 20px;
  }

  .footer-brand,
  .footer-follow {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
  }

  .footer-follow > div {
    justify-content: center;
  }

  .site-footer nav {
    text-align: center;
  }
}

@media (max-width: 374px) {
  .brand span {
    font-size: 14px;
  }

  .nav-download {
    padding: 0 8px;
  }

  .hero-copy h2 {
    font-size: 23px;
  }

  .hero-meta {
    gap: 5px;
  }
}
