@charset "UTF-8";

:root {
  --forest: #103829;
  --green: #168744;
  --green-deep: #075628;
  --leaf: #d9ee72;
  --mint: #f1f9ef;
  --paper: #ffffff;
  --line: #d9e6db;
  --text-soft: #668171;
  --footer: #063821;
  --content-width: 1240px;
  --radius: 5px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: inline-flex;
  flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid #e3ece4;
  background: rgba(255, 255, 255, 0.98);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--content-width));
  min-height: 74px;
  margin: 0 auto;
  gap: 34px;
}

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

.brand img {
  width: 41px;
  height: 41px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--text-soft);
  font-size: 12px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(19px, 3vw, 44px);
}

.desktop-nav a {
  display: block;
  padding: 26px 0 23px;
  border-bottom: 2px solid transparent;
  color: #456351;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

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

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.download-link .icon {
  font-size: 16px;
}

.download-link .icon::before,
.footer-socials .icon::before {
  filter: brightness(0) invert(1);
}

.download-link:hover,
.download-link:focus-visible {
  background: var(--green-deep);
  box-shadow: 4px 5px 0 var(--forest);
  transform: translate(-2px, -2px);
}

.download-link:active {
  box-shadow: none;
  transform: none;
}

.header-download {
  min-height: 39px;
  padding: 0 15px;
  font-size: 12px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.76fr);
  align-items: center;
  min-height: 680px;
  gap: 64px;
  padding: 58px 0 74px;
}

.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.kicker::before {
  display: inline-block;
  width: 33px;
  height: 2px;
  margin: 0 10px 4px 0;
  content: "";
  background: var(--leaf);
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(52px, 5.7vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
}

.hero-tagline {
  margin-top: 11px;
  color: var(--green);
  font-size: clamp(27px, 3vw, 41px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-summary {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 14px;
}

.hero-download {
  min-height: 56px;
  margin-top: 26px;
  padding: 0 25px;
}

.hero-meta {
  display: flex;
  gap: 0;
  width: min(100%, 430px);
  margin-top: 29px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-meta span {
  padding: 0 17px;
  border-right: 1px solid var(--line);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.hero-meta span:first-child {
  padding-left: 0;
}

.hero-meta span:last-child {
  border-right: 0;
}

.hero-copy {
  position: relative;
}

.hero-mascot {
  display: none;
  position: absolute;
  right: 13%;
  bottom: -82px;
  width: clamp(95px, 11vw, 145px);
  height: auto;
}

.hero-stage {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 460px;
}

.phone-preview {
  z-index: 1;
  display: flex;
  width: 280px;
  height: 480px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0;
  padding: 8px;
  border: 7px solid #1b2a3e;
  border-radius: var(--radius);
  background: #1b2a3e;
  box-shadow: 0 19px 30px rgba(20, 38, 59, 0.16);
}

.phone-preview img {
  width: 250px;
  max-width: 100%;
  height: 450px;
  object-fit: contain;
  border-radius: 0;
  background: #ffffff;
}

.journey-note {
  position: absolute;
  z-index: 2;
  bottom: 67px;
  right: 134px;
  left: auto;
  width: 280px;
  padding: 21px 19px 18px;
  border: 1px solid #d2e0eb;
  border-radius: var(--radius);
  background: #ffffff;
  color: #173b5d;
  box-shadow: 0 16px 28px rgba(28, 54, 85, 0.15);
}

.journey-note h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #17406b;
  font-size: 15px;
  line-height: 1.2;
}

.journey-note h2 .icon {
  color: #168de1;
  font-size: 15px;
}

.continue-title {
  margin-top: 19px;
  color: #163a61;
  font-size: 17px;
  font-weight: 900;
}

.continue-copy {
  margin-top: 4px;
  color: #6f89a1;
  font-size: 12px;
}

.continue-progress {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfeaf2;
}

.continue-progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: #67b7ef;
}

.continue-action {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  border: 1px solid #cdddeb;
  border-radius: var(--radius);
  color: #1878bf;
  font-size: 13px;
  font-weight: 800;
}

.reading-atlas {
  display: grid;
  grid-template-columns: 0.91fr 1.09fr;
  margin-top: 30px;
  border: 1px solid #cce1ce;
  border-radius: var(--radius);
  overflow: hidden;
}

.atlas-copy,
.atlas-route {
  min-height: 478px;
  padding: 49px clamp(32px, 5vw, 70px);
}

.atlas-copy {
  background: var(--mint);
}

.atlas-copy h2,
.display-heading h2,
.review-heading h2 {
  margin-top: 9px;
  font-size: clamp(35px, 4vw, 51px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.atlas-lead {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
}

.atlas-copy ol {
  display: grid;
  gap: 19px;
  margin-top: 34px;
}

.atlas-copy li {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 11px;
}

.atlas-copy li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.atlas-copy h3,
.route-entry h3 {
  font-size: 15px;
  font-weight: 900;
}

.atlas-copy li p,
.route-entry p {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.48;
}

.atlas-route {
  position: relative;
  padding-left: clamp(88px, 10vw, 148px);
  border-left: 1px solid #cce1ce;
  background: #fbfffa;
}

.atlas-route::before {
  position: absolute;
  top: 105px;
  bottom: 78px;
  left: clamp(80px, 9.2vw, 136px);
  width: 2px;
  content: "";
  background: var(--green);
}

.route-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid #c8dfc9;
  border-radius: var(--radius);
  background: #eef9ec;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.route-list {
  display: grid;
  gap: 27px;
  margin-top: 33px;
}

.route-entry {
  display: grid;
  grid-template-columns: 89px 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.route-entry time {
  color: #609d72;
  font-size: 12px;
  font-weight: 800;
}

.route-entry .icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #c1dbc5;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--green);
  font-size: 15px;
}

.route-end {
  margin: 36px 0 0 99px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.screens {
  margin-top: 68px;
  background: #eef8f0;
}

.screens-inner {
  padding: 78px 0 61px;
}

.display-heading {
  margin-bottom: 35px;
}

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

.screen-intro {
  max-width: 450px;
  margin-bottom: 5px;
  color: var(--text-soft);
  font-size: 14px;
  text-align: right;
}

.screens-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.screen-card {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  border: 1px solid #cfe0d0;
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.screen-image {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 512px;
}

.screen-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.screen-card figcaption {
  display: flex;
  align-items: center;
  min-height: 57px;
  gap: 13px;
  padding: 10px 12px;
  line-height: 1.3;
}

.screen-card figcaption b {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.screen-card figcaption strong {
  font-size: 15px;
  font-weight: 900;
}

.screen-card figcaption span {
  margin-left: auto;
  color: #ff625a;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.faq-area {
  padding: 76px 0 17px;
  border-top: 1px solid var(--line);
}

.small-heading h2 {
  font-size: clamp(30px, 3.7vw, 42px);
}

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

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

.faq-item button,
.official-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 53px;
  padding: 11px 16px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.faq-item button .icon,
.official-toggle > .icon {
  font-size: 17px;
  transition: transform 180ms ease;
}

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

.faq-answer {
  padding: 0 16px 15px;
  color: var(--text-soft);
  font-size: 12px;
}

.official-site {
  padding-bottom: 96px;
}

.official-toggle {
  min-height: 59px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
}

.official-toggle > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.official-toggle > span .icon {
  color: var(--green);
  font-size: 17px;
}

.official-content {
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.official-content a {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews {
  padding-bottom: 87px;
}

.review-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 33px;
}

.review-heading > p {
  margin-bottom: 5px;
  color: var(--text-soft);
  font-size: 13px;
}

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

.review-card {
  display: flex;
  min-height: 275px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.review-top b {
  display: grid;
  width: 31px;
  height: 25px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.review-top span {
  color: #c3dec8;
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 0.65;
}

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

.review-card footer {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
}

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

.review-card time {
  font-size: 12px;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 46px;
  padding: 47px clamp(30px, 5vw, 68px);
  border-radius: var(--radius);
  background: var(--green-deep);
  color: #ffffff;
}

.download-panel .kicker {
  color: var(--leaf);
}

.download-panel .kicker::before {
  background: #ffffff;
}

.download-panel h2 {
  margin-top: 8px;
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.download-cta {
  min-width: 210px;
  min-height: 58px;
  border-color: #ffffff;
  background: #ffffff;
  color: var(--green-deep);
}

.download-cta .icon::before {
  filter: none;
}

.download-cta:hover,
.download-cta:focus-visible {
  background: var(--leaf);
  box-shadow: 4px 5px 0 #d0ec72;
}

.site-footer {
  padding: 57px 0 18px;
  background: var(--footer);
  color: #ffffff;
  text-align: center;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr) 1.25fr;
  gap: 32px;
}

.footer-brand .brand img {
  width: 39px;
  height: 39px;
}

.footer-brand p {
  margin-top: 15px;
  color: #b2d2ba;
  font-size: 12px;
  line-height: 1.65;
}

.footer-nav h2,
.footer-socials h2 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 900;
}

.footer-nav ul {
  display: grid;
  gap: 4px;
}

.footer-nav a {
  color: #b2d2ba;
  font-size: 12px;
  transition: color 180ms ease;
}

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

.footer-socials > div {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  transition: background 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--green);
}

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

.copyright {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 40px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #83ad91;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1180px) {
  .screen-image img {
    height: 100%;
  }

  .screen-image {
    height: 430px;
  }
}

@media (max-width: 1060px) {
  .screens-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .screen-image {
    height: 470px;
  }
}

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

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--green);
    border-radius: var(--radius);
    color: var(--green);
  }

  .menu-toggle .icon {
    font-size: 19px;
  }

  .mobile-menu {
    position: absolute;
    right: 24px;
    left: 24px;
    display: block;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 13px 28px rgba(10, 57, 31, 0.14);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu ul {
    display: grid;
    gap: 3px;
  }

  .mobile-menu a {
    display: block;
    padding: 10px 12px;
    border-left: 3px solid transparent;
    color: var(--forest);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    border-left-color: var(--green);
    background: var(--mint);
    color: var(--green);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(335px, 0.7fr);
    gap: 28px;
  }

  .hero-mascot {
    right: 2%;
  }

  .journey-note {
    right: 112px;
    left: auto;
  }

  .atlas-copy,
  .atlas-route {
    padding: 43px 35px;
  }

  .atlas-route {
    padding-left: 82px;
  }

  .atlas-route::before {
    left: 73px;
  }

  .route-entry {
    grid-template-columns: 80px 36px minmax(0, 1fr);
  }

  .route-end {
    margin-left: 89px;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-top: 64px;
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

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

  .nav-shell {
    min-height: 64px;
    gap: 14px;
  }

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

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

  .brand small,
  .header-download .icon {
    display: none;
  }

  .header-download {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 37px;
    height: 36px;
  }

  .mobile-menu {
    top: 64px;
    right: 16px;
    left: 16px;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 35px;
    padding: 50px 0 60px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 60px);
  }

  .hero-tagline {
    font-size: clamp(27px, 8vw, 35px);
  }

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

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

  .hero-meta span {
    padding: 0 12px;
  }

  .hero-mascot {
    display: none;
  }

  .hero-stage {
    min-height: 480px;
    justify-content: flex-end;
    width: 100%;
  }

  .phone-preview {
    width: 280px;
    height: 480px;
    max-width: 100%;
    padding: 8px;
    border-radius: var(--radius);
  }

  .phone-preview img {
    width: 250px;
    max-width: calc(100vw - 70px);
    height: 450px;
    object-fit: contain;
    border-radius: 0;
  }

  .journey-note {
    display: block;
    right: auto;
    bottom: 67px;
    left: 0;
    width: min(100%, 280px);
  }

  .reading-atlas {
    display: block;
    margin-top: 14px;
  }

  .atlas-copy,
  .atlas-route {
    min-height: 0;
    padding: 38px 26px;
  }

  .atlas-copy {
    border-bottom: 1px solid #cce1ce;
  }

  .atlas-copy h2,
  .display-heading h2,
  .review-heading h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .atlas-copy ol {
    margin-top: 28px;
  }

  .atlas-route {
    padding-left: 53px;
    border-left: 0;
  }

  .atlas-route::before {
    top: 89px;
    bottom: 64px;
    left: 43px;
  }

  .route-list {
    gap: 26px;
  }

  .route-entry {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .route-entry .icon {
    position: absolute;
    top: 19px;
    left: -25px;
    width: 27px;
    height: 27px;
    font-size: 14px;
  }

  .route-end {
    margin-left: 0;
    font-size: 13px;
  }

  .screens {
    margin-top: 46px;
  }

  .screens-inner {
    width: calc(100% - 24px);
    padding: 58px 0 47px;
  }

  .display-heading {
    margin-bottom: 28px;
  }

  .screen-heading {
    display: block;
  }

  .screen-intro {
    margin-top: 13px;
    margin-bottom: 0;
    font-size: 13px;
    text-align: left;
  }

  .screens-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 9px;
  }

  .screen-card figcaption {
    min-height: 46px;
    gap: 7px;
    padding: 8px;
  }

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

  .screen-image {
    width: 100%;
    min-height: 240px;
    height: 72vw;
    max-height: 275px;
    aspect-ratio: auto;
  }

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

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

  .faq-area {
    padding: 58px 0 15px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .official-site {
    padding-bottom: 73px;
  }

  .official-toggle {
    min-height: 56px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .reviews {
    padding-bottom: 70px;
  }

  .review-heading {
    display: block;
    margin-bottom: 26px;
  }

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

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

  .review-card {
    min-height: 0;
    padding: 21px;
  }

  .download-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 37px 25px;
    margin-bottom: 30px;
  }

  .download-cta {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding-top: 43px;
  }

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

  .footer-brand,
  .footer-socials {
    grid-column: 1 / -1;
  }

  .copyright {
    margin-top: 34px;
  }
}

@media (max-width: 374px) {
  .page-width,
  .nav-shell,
  .copyright {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .nav-actions {
    gap: 7px;
  }

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

  .hero-meta span {
    padding: 0 8px;
  }
}
