@charset "UTF-8";
:root {
  --ink: #272264;
  --ink-soft: #635f91;
  --paper: #fffdf9;
  --white: #ffffff;
  --lavender: #eeeaff;
  --lavender-deep: #d9d1ff;
  --coral: #ff786a;
  --coral-deep: #f05f62;
  --cyan: #44cfe1;
  --line: #e7e2f1;
  --shadow: 0 14px 38px rgba(66, 56, 119, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: 74px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

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

button,
summary {
  font: inherit;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  height: 74px;
  border-bottom: 1px solid rgba(53, 43, 113, 0.09);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(16px);
}

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

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

.brand > img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-domain {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
  white-space: nowrap;
}

.main-nav ul,
.footer-links,
.hero-stamps {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul {
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: #5e5a80;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-tools {
  display: flex;
  align-items: center;
}

.desktop-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 5px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 7px 16px rgba(243, 102, 104, 0.18);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mobile-download,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  background: linear-gradient(117deg, #fffefb 0%, #fffdfb 58%, #f4f0ff 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(159, 139, 240, 0.23);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -116px;
  right: 10%;
}

.hero::after {
  bottom: -170px;
  left: -70px;
}

.hero-paper {
  position: absolute;
  z-index: -1;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(255, 210, 209, 0.48), rgba(245, 239, 255, 0.42));
  transform: rotate(-12deg);
}

.hero-paper-one {
  top: 53px;
  left: -40px;
  width: 170px;
  height: 110px;
}

.hero-paper-two {
  right: -48px;
  bottom: 52px;
  width: 200px;
  height: 130px;
  transform: rotate(14deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(470px, 1fr);
  align-items: center;
  min-height: 690px;
  gap: 80px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.hero-gallery {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  height: 600px;
}

.hero-phone {
  position: absolute;
  width: 250px;
  height: 450px;
  padding: 7px;
  border: 1px solid rgba(79, 61, 139, 0.28);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 22px 40px rgba(55, 45, 112, 0.18);
}

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

.hero-phone-main {
  z-index: 2;
  top: 61px;
  left: 116px;
}

.hero-phone-back {
  z-index: 1;
  opacity: 0.98;
  transform: scale(0.79);
}

.hero-phone-calendar {
  top: 112px;
  left: -38px;
  transform: rotate(-8deg) scale(0.79);
  transform-origin: center;
}

.hero-phone-profile {
  right: -10px;
  bottom: 42px;
  transform: rotate(7deg) scale(0.79);
  transform-origin: center;
}

.phone-time {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 18px;
  color: #54536b;
  font-size: 12px;
  font-weight: 700;
}

.scribble,
.hero-note {
  position: absolute;
  margin: 0;
  color: #8372d8;
  font-family: "Comic Sans MS", "Microsoft YaHei", cursive;
  font-size: 15px;
  font-style: italic;
  line-height: 1.45;
  transform: rotate(-8deg);
}

.scribble {
  top: 42px;
  right: 15px;
}

.hero-note {
  bottom: 58px;
  left: 18px;
}

.section-kicker {
  margin: 0 0 10px;
  color: #8a78dc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-copy h1,
.hero-headline,
h2 {
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.hero-copy h1 {
  margin: 0;
  color: #5548bf;
  font-size: clamp(68px, 8vw, 112px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.hero-headline {
  margin: 16px 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.hero-description {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.hero-stamps {
  gap: 10px;
  margin-top: 27px;
}

.hero-stamps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-width: 125px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(50, 39, 104, 0.05);
  color: #4e4a78;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-stamps span {
  color: var(--coral);
  font-size: 19px;
}

.hero-stamps small {
  display: block;
  margin-top: 3px;
  color: #9290ad;
  font-size: 12px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 12px 27px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(105deg, #ff8e79, #fc7067);
  box-shadow: 0 12px 22px rgba(243, 102, 104, 0.26);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(243, 102, 104, 0.32);
}

.button b,
.text-link b {
  font-size: 20px;
  line-height: 1;
}

.text-link {
  color: #5a5195;
  font-size: 14px;
  font-weight: 800;
}

.text-link b {
  display: inline-block;
  margin-left: 7px;
}

.age-label {
  display: block;
  margin-top: 17px;
  color: #8581a6;
  font-size: 12px;
}

.today-section {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #fffdf9, #fbf8ff);
}

.weekly-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid #f1e9df;
  border-radius: 5px;
  background: #fffaf0;
  box-shadow: 0 14px 30px rgba(96, 74, 127, 0.07);
}

.weekly-intro h2,
.section-heading h2,
.insight-copy h2,
.faq-intro h2,
.download-banner h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.weekly-intro p:not(.section-kicker),
.faq-intro p,
.insight-copy > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.weekly-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(75px, 1fr));
  gap: 10px;
}

.weekly-list article {
  min-width: 0;
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 5px;
}

.weekly-list article.is-today {
  border-color: rgba(255, 120, 106, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.weekly-list time {
  display: block;
  color: #645e89;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.weekly-list time small {
  display: block;
  margin-top: 2px;
  color: #9993a6;
  font-size: 12px;
  font-weight: 400;
}

.weekly-list .is-today time {
  color: var(--coral-deep);
}

.weekly-list img {
  width: 100%;
  height: 82px;
  margin-top: 8px;
  border-radius: 5px;
  object-fit: contain;
  background: #fff;
}

.weekly-list p,
.weekly-list span {
  display: block;
  margin: 5px 2px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weekly-list p {
  color: #4c4670;
  font-size: 12px;
  font-weight: 800;
}

.weekly-list span {
  margin-top: 0;
  color: #9993a6;
  font-size: 12px;
}

.screenshots-section {
  padding: 85px 0 92px;
  background: #f7f5ff;
}

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

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.section-heading h2::after,
.insight-copy h2::after,
.faq-intro h2::after {
  display: block;
  width: 62px;
  height: 3px;
  margin-top: 14px;
  border-radius: 5px;
  background: var(--coral);
  content: "";
  transform: rotate(-3deg);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-items: center;
}

.screen-card {
  width: 250px;
  margin: 0;
}

.screen-media {
  width: 250px;
  height: 450px;
  border: 1px solid rgba(77, 59, 130, 0.15);
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.screen-card figcaption {
  display: grid;
  grid-template-columns: 32px 1fr;
  margin-top: 13px;
  column-gap: 4px;
}

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

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

.screen-card figcaption span {
  color: var(--ink-soft);
  font-size: 12px;
}

.insights-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(112deg, #e8e2ff, #faf9ff);
}

.insights-section::before {
  position: absolute;
  top: -90px;
  right: 2%;
  width: 300px;
  height: 300px;
  border: 35px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.insights-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: center;
  gap: 70px;
}

.insight-copy {
  position: relative;
  z-index: 1;
}

.insight-board {
  position: relative;
  z-index: 1;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-row article {
  min-height: 125px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
}

.metric-row span,
.metric-row em {
  display: block;
  color: #706c96;
  font-size: 12px;
  font-style: normal;
}

.metric-row strong {
  display: block;
  margin-top: 5px;
  color: #483e9b;
  font-size: 34px;
  line-height: 1.1;
}

.metric-row strong small {
  margin-left: 3px;
  font-size: 12px;
}

.metric-row em {
  margin-top: 4px;
  color: var(--coral-deep);
}

.trend-chart {
  position: relative;
  margin-top: 20px;
  padding: 34px 22px 15px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.58);
  color: #7263dc;
}

.trend-chart svg {
  width: 100%;
  height: 155px;
}

.chart-label {
  position: absolute;
  top: 20px;
  right: 36px;
  padding: 7px 10px;
  border-radius: 5px;
  background: #fff;
  color: #5d5488;
  font-size: 12px;
  line-height: 1.4;
  box-shadow: 0 8px 16px rgba(66, 55, 120, 0.08);
}

.chart-label b {
  font-weight: 800;
}

.month-row {
  display: flex;
  justify-content: space-between;
  color: #817aa4;
  font-size: 12px;
}

.reviews-section {
  padding: 88px 0;
  background: var(--paper);
}

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

.review-card {
  position: relative;
  display: flex;
  gap: 14px;
  min-height: 182px;
  padding: 22px 22px 46px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(63, 50, 112, 0.06);
}

.review-card > img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.review-content {
  flex: 1;
  min-width: 0;
}

.review-content header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-content strong {
  font-size: 14px;
}

.rating {
  color: #f3a341;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.rating i {
  font-style: normal;
}

.review-content p {
  margin: 10px 0 8px;
  color: #5f5b81;
  font-size: 13px;
}

.review-content time {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: #aaa5b8;
  font-size: 12px;
}

.faq-section {
  padding: 86px 0;
  background: #fbf9ff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 90px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 14px;
  cursor: pointer;
  color: #4f4a76;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  color: #8778d8;
  font-size: 20px;
  font-weight: 400;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 14px 15px;
  color: #77728f;
  font-size: 13px;
}

.faq-list p a {
  color: #5f54bf;
  text-decoration: underline;
}

.download-section {
  padding: 82px 0;
  background: var(--paper);
}

.download-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 310px;
  padding: 50px 8%;
  overflow: hidden;
  border-radius: 5px;
  background: linear-gradient(105deg, #ffab99 0%, #ff7f77 42%, #b9b1ff 100%);
  color: #fff;
}

.download-banner::before {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.download-banner > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.download-banner .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.download-banner h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.download-banner p:not(.section-kicker) {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.download-banner .button-primary {
  color: var(--coral-deep);
  background: #fff;
  box-shadow: none;
}

.download-illustration {
  position: absolute;
  right: 8%;
  bottom: -18px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.download-illustration img {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 118px;
  height: 118px;
  transform: translateX(-50%);
  object-fit: contain;
}

.download-illustration span {
  position: absolute;
  top: 28px;
  right: 14px;
  font-size: 34px;
}

.download-illustration i {
  position: absolute;
  bottom: 36px;
  left: 28px;
  font-size: 12px;
  font-style: normal;
  transform: rotate(-8deg);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

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

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

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

.footer-links {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  color: #656180;
  font-size: 13px;
}

.footer-content > p {
  margin: 0;
  color: #85819b;
  font-size: 12px;
  white-space: nowrap;
}

.back-top {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(89, 77, 157, 0.35);
  border-radius: 50%;
  color: #5d50b8;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(68, 207, 225, 0.72);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(390px, 0.86fr) minmax(390px, 1fr);
    gap: 32px;
  }

  .hero-gallery {
    transform: scale(0.87);
    transform-origin: left center;
  }

  .weekly-card {
    grid-template-columns: 150px 1fr;
  }

  .weekly-list {
    overflow-x: auto;
    grid-template-columns: repeat(7, 100px);
    padding-bottom: 3px;
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }

  .faq-layout {
    gap: 48px;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 67px;
  }

  .site-header {
    height: 67px;
  }

  .nav-shell,
  .wrap {
    width: min(100% - 28px, 600px);
  }

  .brand {
    gap: 7px;
  }

  .brand > img {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 16px;
  }

  .main-nav {
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 0 solid var(--line);
    background: rgba(255, 253, 249, 0.98);
    opacity: 0;
    transition: max-height 0.22s ease, opacity 0.22s ease, border-width 0.22s ease;
  }

  .main-nav.is-open {
    max-height: 340px;
    border-bottom-width: 1px;
    opacity: 1;
  }

  .main-nav ul {
    display: grid;
    gap: 0;
    padding: 10px 14px 16px;
  }

  .main-nav a {
    display: block;
    padding: 12px 4px;
  }

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

  .mobile-download {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-right: 12px;
    padding: 7px 12px;
    border-radius: 5px;
    color: #fff;
    background: var(--coral);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .desktop-download {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 9px;
    border: 1px solid #cfc7ee;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: #5d5498;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column-reverse;
    gap: 10px;
    padding-top: 56px;
    padding-bottom: 20px;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 66px;
  }

  .hero-headline {
    margin-top: 13px;
    font-size: 37px;
  }

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

  .hero-stamps,
  .hero-actions {
    justify-content: center;
  }

  .hero-stamps {
    gap: 6px;
  }

  .hero-stamps li {
    grid-template-columns: 1fr;
    min-width: 91px;
    padding: 9px 7px;
    font-size: 12px;
  }

  .hero-stamps span {
    margin-bottom: 3px;
    font-size: 15px;
  }

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

  .hero-actions {
    gap: 14px;
  }

  .button {
    min-height: 47px;
    padding: 10px 19px;
  }

  .age-label {
    text-align: center;
  }

  .hero-gallery {
    width: 100%;
    height: 445px;
    margin-top: 4px;
    transform: none;
  }

  .hero-phone-main {
    top: 15px;
    left: calc(50% - 125px);
  }

  .hero-phone-calendar {
    top: 74px;
    left: calc(50% - 225px);
  }

  .hero-phone-profile {
    right: calc(50% - 225px);
    bottom: 14px;
  }

  .scribble {
    top: 8px;
    right: 0;
    font-size: 12px;
  }

  .hero-note {
    bottom: 6px;
    left: 4px;
    font-size: 12px;
  }

  .today-section,
  .screenshots-section,
  .insights-section,
  .reviews-section,
  .faq-section,
  .download-section {
    padding: 58px 0;
  }

  .weekly-card {
    display: block;
    padding: 18px;
  }

  .weekly-intro {
    margin-bottom: 18px;
    text-align: center;
  }

  .weekly-intro h2 {
    font-size: 34px;
  }

  .weekly-list {
    margin: 0 -3px;
  }

  .section-heading,
  .section-heading-wide {
    display: block;
    margin-bottom: 30px;
    text-align: center;
  }

  .section-heading > p {
    margin-top: 16px;
  }

  .section-heading h2::after,
  .insight-copy h2::after,
  .faq-intro h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .screenshot-grid {
    display: flex;
    width: calc(100% + 28px);
    margin: 0 -14px;
    padding: 0 14px 12px;
    overflow-x: auto;
    gap: 16px;
    scroll-padding: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .screen-card {
    flex: 0 0 250px;
    width: 250px;
    scroll-snap-align: start;
  }

  .insights-layout,
  .faq-layout {
    display: block;
  }

  .insight-copy,
  .faq-intro {
    margin-bottom: 30px;
    text-align: center;
  }

  .metric-row {
    gap: 8px;
  }

  .metric-row article {
    min-height: 113px;
    padding: 13px 9px;
  }

  .metric-row strong {
    font-size: 26px;
  }

  .metric-row strong small,
  .metric-row em,
  .metric-row span {
    font-size: 12px;
  }

  .trend-chart {
    padding: 45px 10px 14px;
  }

  .chart-label {
    right: 10px;
  }

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

  .review-card:nth-child(2) {
    transform: none;
  }

  .download-banner {
    min-height: 370px;
    padding: 38px 26px 190px;
    text-align: center;
  }

  .download-banner .button {
    margin-top: 4px;
  }

  .download-illustration {
    right: calc(50% - 125px);
    bottom: -76px;
    transform: scale(0.85);
  }

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

  .footer-links {
    gap: 12px 17px;
  }

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

@media (max-width: 390px) {
  .brand-domain {
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 57px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    font-size: 13px;
  }

  .hero-phone-calendar {
    left: calc(50% - 215px);
  }

  .hero-phone-profile {
    right: calc(50% - 215px);
  }
}
